From e191485ca943d3286b0ef0dd064ae7e75a825b39 Mon Sep 17 00:00:00 2001 From: "alex.hill@gmail.com" Date: Thu, 7 Nov 2024 15:45:53 +0000 Subject: [PATCH] censor points based on limits --- NAMESPACE | 1 + R/biokinetics.R | 240 +- R/cpp11.R | 4 +- R/plot.R | 103 +- R/utils.R | 20 +- inst/ba2_full.rds | 4496 ++++++++-------- inst/delta_full.rds | 4512 ++++++++-------- inst/xbb_full.rds | 2080 ++++---- man/convert_log2_scale.Rd | 23 + man/convert_log2_scale_inverse.Rd | 4 +- src/convert_log_scale_inverse.cpp | 4 +- src/cpp11.cpp | 6 +- src/stan/antibody_kinetics_main.stan | 9 +- .../_snaps/plots/inputdata-covariates.svg | 3956 +++++++------- tests/testthat/_snaps/plots/inputdata.svg | 3944 +++++++------- .../_snaps/plots/inputdatanolimits.svg | 3932 +++++++------- .../plots/populationtrajectories-data.svg | 4564 +++++++++-------- .../plots/populationtrajectories-logscale.svg | 4564 +++++++++-------- .../testthat/_snaps/plots/priorpredictive.svg | 4552 ++++++++-------- tests/testthat/test-convert-log-scale.R | 12 +- tests/testthat/test-data.R | 48 +- tests/testthat/test-plots.R | 15 +- vignettes/biokinetics.Rmd | 4 +- vignettes/data.Rmd | 15 +- 24 files changed, 18577 insertions(+), 18531 deletions(-) create mode 100644 man/convert_log2_scale.Rd diff --git a/NAMESPACE b/NAMESPACE index 093109e..c32925d 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -5,6 +5,7 @@ S3method(plot,biokinetics_priors) export(add_exposure_data) export(biokinetics) export(biokinetics_priors) +export(convert_log2_scale) export(convert_log2_scale_inverse) export(plot_sero_data) importFrom(R6,R6Class) diff --git a/R/biokinetics.R b/R/biokinetics.R index 5796286..b67e942 100644 --- a/R/biokinetics.R +++ b/R/biokinetics.R @@ -11,8 +11,9 @@ biokinetics <- R6::R6Class( scale = NULL, priors = NULL, preds_sd = NULL, - upper_limit = NULL, - lower_limit = NULL, + upper_detection_limit = NULL, + lower_detection_limit = NULL, + smallest_value = NULL, data = NULL, covariate_formula = NULL, fitted = NULL, @@ -28,28 +29,28 @@ biokinetics <- R6::R6Class( stop("Model has not been fitted yet. Call 'fit' before calling this function.") } }, - get_upper_detection_limit = function(upper_limit) { - if (is.null(upper_limit)) { - private$upper_limit <- max(private$data$value) + get_upper_detection_limit = function(upper_detection_limit) { + if (is.null(upper_detection_limit)) { + private$upper_detection_limit <- max(private$data$value) } else { max_value <- max(private$data$value) - if (max_value > upper_limit) { - warning(sprintf("Data contains a value of %s which is greater than the upper detection limit %s", - max_value, upper_limit)) + if (max_value >= upper_detection_limit) { + warning(sprintf("Data contains values >= the upper detection limit %s. These will be censored.", + upper_detection_limit)) } - private$upper_limit <- upper_limit + private$upper_detection_limit <- upper_detection_limit } }, - get_lower_detection_limit = function(lower_limit) { - if (is.null(lower_limit)) { - private$lower_limit <- min(private$data$value) + get_lower_detection_limit = function(lower_detection_limit) { + if (is.null(lower_detection_limit)) { + private$lower_detection_limit <- min(private$data$value) } else { min_value <- min(private$data$value) - if (min_value < lower_limit) { - warning(sprintf("Data contains a value of %s which is smaller than the lower detection limit %s", - min_value, lower_limit)) + if (min_value <= lower_detection_limit) { + warning(sprintf("Data contains values <= the lower detection limit %s. These will be censored.", + lower_detection_limit)) } - private$lower_limit <- lower_limit + private$lower_detection_limit <- lower_detection_limit } }, model_matrix_with_dummy = function(data) { @@ -110,7 +111,7 @@ biokinetics <- R6::R6Class( if ("p" %in% colnames(dt)) { dt_out <- dt_out[private$covariate_lookup_table, on = "p", nomatch = NULL][, `:=`(p = NULL)] } - data.table::setnames(dt_out, "t", "time_since_last_exp", skip_absent=TRUE) + data.table::setnames(dt_out, "t", "time_since_last_exp", skip_absent = TRUE) dt_out }, summarise_pop_fit = function(time_range, @@ -177,38 +178,37 @@ biokinetics <- R6::R6Class( data.table::setcolorder(dt_out, c("t", "p", "k")) if (!has_covariates) { - dt_out[, p:= NULL] + dt_out[, p := NULL] } dt_out }, prepare_stan_data = function() { - pid <- value <- censored <- titre_type <- obs_id <- time_since_last_exp <- NULL + pid <- value <- censored_lo <- censored_hi <- titre_type <- obs_id <- time_since_last_exp <- NULL stan_data <- list( N = private$data[, .N], N_events = private$data[, data.table::uniqueN(pid)], id = private$data[, private$pid_lookup[pid]], value = private$data[, value], - censored = private$data[, censored], titre_type = private$data[, private$titre_type_lookup[titre_type]], preds_sd = private$preds_sd, K = private$data[, data.table::uniqueN(titre_type)], - N_uncens = private$data[censored == 0, .N], - N_lo = private$data[censored == -2, .N], - N_hi = private$data[censored == 1, .N], - uncens_idx = private$data[censored == 0, obs_id], - cens_lo_idx = private$data[censored == -2, obs_id], - cens_hi_idx = private$data[censored == 1, obs_id]) + N_uncens = private$data[!censored_lo & !censored_hi, .N], + N_lo = private$data[censored_lo == TRUE, .N], + N_hi = private$data[censored_hi == TRUE, .N], + uncens_idx = private$data[censored_lo == FALSE & censored_hi == FALSE, obs_id], + cens_lo_idx = private$data[censored_lo == TRUE, obs_id], + cens_hi_idx = private$data[censored_hi == TRUE, obs_id]) stan_data$t <- private$data[, time_since_last_exp] stan_data$X <- private$design_matrix stan_data$P <- ncol(private$design_matrix) if (private$scale == "natural") { # do the same transformation as used on the data - stan_data$upper_limit <- log2(private$upper_limit / private$lower_limit) - stan_data$lower_limit <- log2(private$lower_limit / private$lower_limit) + stan_data$upper_detection_limit <- log2(private$upper_detection_limit / private$smallest_value) + stan_data$lower_detection_limit <- log2(private$lower_detection_limit / private$smallest_value) } else { - stan_data$upper_limit <- private$upper_limit - stan_data$lower_limit <- private$lower_limit + stan_data$upper_detection_limit <- private$upper_detection_limit + stan_data$lower_detection_limit <- private$lower_detection_limit } private$stan_input_data <- c(stan_data, private$priors) }, @@ -237,23 +237,23 @@ biokinetics <- R6::R6Class( } ), public = list( - #' @description Initialise the kinetics model. - #' @return An epikinetics::biokinetics object. - #' @param data Optional data table of model inputs. One of data or file must be provided. See the data vignette - #' for required columns: \code{vignette("data", package = "epikinetics")}. - #' @param file_path Optional file path to model inputs in CSV format. One of data or file must be provided. - #' @param priors Object of type \link[epikinetics]{biokinetics_priors}. Default biokinetics_priors(). - #' @param covariate_formula Formula specifying linear regression model. Note all variables in the formula - #' will be treated as categorical variables. Default ~0. - #' @param preds_sd Standard deviation of predictor coefficients. Default 0.25. - #' @param scale One of "log" or "natural". Default "natural". Is provided data on a log or a natural scale? If on a natural scale it - #' will be converted to a log scale for model fitting. - #' @param upper_detection_limit Optional upper detection limit of the titre used. This is needed to construct a likelihood for upper censored - #' values, so only needs to be provided if you have such values in the dataset. If not provided and you have censored values, the model will default - #' to using the largest value in the dataset as the upper detection limit. - #' @param lower_detection_limit Optional lower detection limit of the titre used. This is needed to construct a likelihood for lower censored - #' values, so only needs to be provided if you have such values in the dataset. If not provided and you have censored values, the model will default - #' to using the smallest value in the dataset as the lower detection limit. + #' @description Initialise the kinetics model. + #' @return An epikinetics::biokinetics object. + #' @param data Optional data table of model inputs. One of data or file must be provided. See the data vignette + #' for required columns: \code{vignette("data", package = "epikinetics")}. + #' @param file_path Optional file path to model inputs in CSV format. One of data or file must be provided. + #' @param priors Object of type \link[epikinetics]{biokinetics_priors}. Default biokinetics_priors(). + #' @param covariate_formula Formula specifying linear regression model. Note all variables in the formula + #' will be treated as categorical variables. Default ~0. + #' @param preds_sd Standard deviation of predictor coefficients. Default 0.25. + #' @param scale One of "log" or "natural". Default "natural". Is provided data on a log or a natural scale? If on a natural scale it + #' will be converted to a log scale for model fitting. + #' @param upper_detection_limit Optional upper detection limit of the titre used. This is needed to construct a likelihood for upper censored + #' values, so only needs to be provided if you have such values in the dataset. If not provided, the model will default + #' to using the largest value in the dataset as the upper detection limit. + #' @param lower_detection_limit Optional lower detection limit of the titre used. This is needed to construct a likelihood for lower censored + #' values, so only needs to be provided if you have such values in the dataset. If not provided, the model will default + #' to using the smallest value in the dataset as the lower detection limit. initialize = function(priors = biokinetics_priors(), data = NULL, file_path = NULL, @@ -287,20 +287,21 @@ biokinetics <- R6::R6Class( validate_required_cols(private$data) validate_formula_vars(private$all_formula_vars, private$data) logger::log_info("Preparing data for stan") + # this is used to scale the data if natural scale data is provided + private$smallest_value <- min(private$data$value) + private$get_upper_detection_limit(upper_detection_limit) + private$get_lower_detection_limit(lower_detection_limit) private$data[, `:=`(obs_id = seq_len(.N), - time_since_last_exp = as.integer(day - last_exp_day, units = "days"))] - if (!("censored" %in% colnames(private$data))) { - private$data$censored <- 0 - } + time_since_last_exp = as.integer(day - last_exp_day, units = "days"), + censored_lo = value <= private$lower_detection_limit, + censored_hi = value >= private$upper_detection_limit)] private$construct_design_matrix() private$build_covariate_lookup_table() private$build_pid_lookup() private$build_titre_type_lookup() - private$get_upper_detection_limit(upper_detection_limit) - private$get_lower_detection_limit(lower_detection_limit) if (scale == "natural") { private$data <- convert_log2_scale(private$data, - lower_limit = private$lower_limit, + smallest_value = private$smallest_value, vars_to_transform = "value") } private$prepare_stan_data() @@ -310,54 +311,56 @@ biokinetics <- R6::R6Class( package = "epikinetics" ) }, - #' @description Plot the kinetics trajectory predicted by the model priors. - #' Note that this is on a log scale, regardless of whether the data was provided - #' on a log or a natural scale. - #' @return A ggplot2 object. - #' @param tmax Integer. The number of time points in each simulated trajectory. Default 150. - #' @param n_draws Integer. The number of trajectories to simulate. Default 2000. + #' @description Plot the kinetics trajectory predicted by the model priors. + #' Note that this is on a log scale, regardless of whether the data was provided + #' on a log or a natural scale. + #' @return A ggplot2 object. + #' @param tmax Integer. The number of time points in each simulated trajectory. Default 150. + #' @param n_draws Integer. The number of trajectories to simulate. Default 2000. plot_prior_predictive = function(tmax = 150, n_draws = 2000) { plot(private$priors, tmax = tmax, n_draws = n_draws, - data = private$data) + data = private$data, + upper_detection_limit = private$stan_input_data$upper_detection_limit, + lower_detection_limit = private$stan_input_data$lower_detection_limit) }, - #' @description Plot model input data with a smoothing function. Note that - #' this plot is of the data as provided to the Stan model so is on a log scale, - #' regardless of whether data was provided on a log or a natural scale. - #' @param tmax Integer. Maximum time since last exposure to include. Default 150. - #' @return A ggplot2 object. + #' @description Plot model input data with a smoothing function. Note that + #' this plot is of the data as provided to the Stan model so is on a log scale, + #' regardless of whether data was provided on a log or a natural scale. + #' @param tmax Integer. Maximum time since last exposure to include. Default 150. + #' @return A ggplot2 object. plot_model_inputs = function(tmax = 150) { plot_sero_data(private$data, tmax = tmax, covariates = private$all_formula_vars, - upper_detection_limit = private$stan_input_data$upper_limit, - lower_detection_limit = private$stan_input_data$lower_limit) + upper_detection_limit = private$stan_input_data$upper_detection_limit, + lower_detection_limit = private$stan_input_data$lower_detection_limit) }, - #' @description View the data that is passed to the stan model, for debugging purposes. - #' @return A list of arguments that will be passed to the stan model. + #' @description View the data that is passed to the stan model, for debugging purposes. + #' @return A list of arguments that will be passed to the stan model. get_stan_data = function() { private$stan_input_data }, - #' @description View the mapping of human readable covariate names to the model variable p. - #' @return A data.table mapping the model variable p to human readable covariates. + #' @description View the mapping of human readable covariate names to the model variable p. + #' @return A data.table mapping the model variable p to human readable covariates. get_covariate_lookup_table = function() { private$covariate_lookup_table }, - #' @description Fit the model and return CmdStanMCMC fitted model object. - #' @return A CmdStanMCMC fitted model object: - #' @param ... Named arguments to the `sample()` method of CmdStan model. - #' objects: + #' @description Fit the model and return CmdStanMCMC fitted model object. + #' @return A CmdStanMCMC fitted model object: + #' @param ... Named arguments to the `sample()` method of CmdStan model. + #' objects: fit = function(...) { logger::log_info("Fitting model") private$fitted <- private$model$sample(private$stan_input_data, ...) private$fitted }, - #' @description Extract fitted population parameters - #' @return A data.table - #' @param n_draws Integer. Default 2000. - #' @param human_readable_covariates Logical. Default TRUE. + #' @description Extract fitted population parameters + #' @return A data.table + #' @param n_draws Integer. Default 2000. + #' @param human_readable_covariates Logical. Default TRUE. extract_population_parameters = function(n_draws = 2000, human_readable_covariates = TRUE) { private$check_fitted() @@ -372,7 +375,7 @@ biokinetics <- R6::R6Class( logger::log_info("Extracting parameters") dt_out <- private$extract_parameters(params, n_draws) - if (has_covariates){ + if (has_covariates) { data.table::setcolorder(dt_out, c("p", "k", ".draw")) } else { data.table::setcolorder(dt_out, c("k", ".draw")) @@ -390,11 +393,11 @@ biokinetics <- R6::R6Class( } dt_out }, - #' @description Extract fitted individual parameters - #' @return A data.table - #' @param n_draws Integer. Default 2000. - #' @param include_variation_params Logical - #' @param human_readable_covariates Logical. Default TRUE. + #' @description Extract fitted individual parameters + #' @return A data.table + #' @param n_draws Integer. Default 2000. + #' @param include_variation_params Logical + #' @param human_readable_covariates Logical. Default TRUE. extract_individual_parameters = function(n_draws = 2000, include_variation_params = TRUE, human_readable_covariates = TRUE) { @@ -427,17 +430,17 @@ biokinetics <- R6::R6Class( } dt_out }, - #' @description Process the model results into a data table of titre values over time. - #' @return A data.table containing titre values at time points. If summarise = TRUE, columns are time_since_last_exp, - #' me, lo, hi, titre_type, and a column for each covariate in the hierarchical model. If summarise = FALSE, columns are - #' time_since_last_exp, .draw, t0_pop, tp_pop, ts_pop, m1_pop, m2_pop, m3_pop, beta_t0, beta_tp, beta_ts, beta_m1, beta_m2, beta_m3, mu - #' titre_type and a column for each covariate in the hierarchical model. See the data vignette for details: - #' \code{vignette("data", package = "epikinetics")} - #' @param t_max Integer. Maximum number of time points to include. - #' @param summarise Boolean. Default TRUE. If TRUE, summarises over draws from posterior parameter distributions to - #' return 0.025, 0.5 and 0.975 quantiles, labelled lo, me and hi, respectively. If FALSE returns values for individual - #' draws from posterior parameter distributions. - #' @param n_draws Integer. Maximum number of samples to include. Default 2000. + #' @description Process the model results into a data table of titre values over time. + #' @return A data.table containing titre values at time points. If summarise = TRUE, columns are time_since_last_exp, + #' me, lo, hi, titre_type, and a column for each covariate in the hierarchical model. If summarise = FALSE, columns are + #' time_since_last_exp, .draw, t0_pop, tp_pop, ts_pop, m1_pop, m2_pop, m3_pop, beta_t0, beta_tp, beta_ts, beta_m1, beta_m2, beta_m3, mu + #' titre_type and a column for each covariate in the hierarchical model. See the data vignette for details: + #' \code{vignette("data", package = "epikinetics")} + #' @param t_max Integer. Maximum number of time points to include. + #' @param summarise Boolean. Default TRUE. If TRUE, summarises over draws from posterior parameter distributions to + #' return 0.025, 0.5 and 0.975 quantiles, labelled lo, me and hi, respectively. If FALSE returns values for individual + #' draws from posterior parameter distributions. + #' @param n_draws Integer. Maximum number of samples to include. Default 2000. simulate_population_trajectories = function( t_max = 150, summarise = TRUE, @@ -464,12 +467,12 @@ biokinetics <- R6::R6Class( dt_out <- convert_log2_scale_inverse( dt_out, vars_to_transform = c("me", "lo", "hi"), - lower_limit = private$lower_limit) + smallest_value = private$smallest_value) } else { dt_out <- convert_log2_scale_inverse( dt_out, vars_to_transform = "mu", - lower_limit = private$lower_limit) + smallest_value = private$smallest_value) } } @@ -477,13 +480,16 @@ biokinetics <- R6::R6Class( attr(dt_out, "summarised") <- summarise attr(dt_out, "scale") <- private$scale attr(dt_out, "covariates") <- private$all_formula_vars + attr(dt_out, "upper_detection_limit") <- private$upper_detection_limit + attr(dt_out, "lower_detection_limit") <- private$lower_detection_limit + dt_out }, - #' @description Process the stan model results into a data.table. - #' @return A data.table of peak and set titre values. Columns are tire_type, mu_p, mu_s, rel_drop_me, mu_p_me, - #' mu_s_me, and a column for each covariate. See the data vignette for details: - #' \code{vignette("data", package = "epikinetics")} - #' @param n_draws Integer. Maximum number of samples to include. Default 2000. + #' @description Process the stan model results into a data.table. + #' @return A data.table of peak and set titre values. Columns are tire_type, mu_p, mu_s, rel_drop_me, mu_p_me, + #' mu_s_me, and a column for each covariate. See the data vignette for details: + #' \code{vignette("data", package = "epikinetics")} + #' @param n_draws Integer. Maximum number of samples to include. Default 2000. population_stationary_points = function(n_draws = 2000) { private$check_fitted() validate_numeric(n_draws) @@ -514,7 +520,7 @@ biokinetics <- R6::R6Class( dt_peak_switch <- convert_log2_scale_inverse( dt_peak_switch, vars_to_transform = c("mu_0", "mu_p", "mu_s"), - lower_limit = private$lower_limit) + smallest_value = private$smallest_value) } logger::log_info("Calculating medians") @@ -529,17 +535,17 @@ biokinetics <- R6::R6Class( mu_s_me = quantile(mu_s, 0.5)), by = c(private$all_formula_vars, "titre_type")] }, - #' @description Simulate individual trajectories from the model. This is - #' computationally expensive and may take a while to run if n_draws is large. - #' @return A data.table. If summarise = TRUE columns are calendar_date, titre_type, me, lo, hi, time_shift. - #' If summarise = FALSE, columns are pid, draw, time_since_last_exp, mu, titre_type, exposure_day, calendar_day, time_shift - #' and a column for each covariate in the regression model. See the data vignette for details: - #' \code{vignette("data", package = "epikinetics")}. - #' @param summarise Boolean. If TRUE, average the individual trajectories to get lo, me and - #' hi values for the population, disaggregated by titre type. If FALSE return the indidivudal trajectories. - #' Default TRUE. - #' @param n_draws Integer. Maximum number of samples to draw. Default 2000. - #' @param time_shift Integer. Number of days to adjust the exposure day by. Default 0. + #' @description Simulate individual trajectories from the model. This is + #' computationally expensive and may take a while to run if n_draws is large. + #' @return A data.table. If summarise = TRUE columns are calendar_date, titre_type, me, lo, hi, time_shift. + #' If summarise = FALSE, columns are pid, draw, time_since_last_exp, mu, titre_type, exposure_day, calendar_day, time_shift + #' and a column for each covariate in the regression model. See the data vignette for details: + #' \code{vignette("data", package = "epikinetics")}. + #' @param summarise Boolean. If TRUE, average the individual trajectories to get lo, me and + #' hi values for the population, disaggregated by titre type. If FALSE return the indidivudal trajectories. + #' Default TRUE. + #' @param n_draws Integer. Maximum number of samples to draw. Default 2000. + #' @param time_shift Integer. Number of days to adjust the exposure day by. Default 0. simulate_individual_trajectories = function( summarise = TRUE, n_draws = 2000, @@ -580,7 +586,7 @@ biokinetics <- R6::R6Class( dt_params_ind_traj <- data.table::setDT(convert_log2_scale_inverse_cpp( dt_params_ind_traj, vars_to_transform = "mu", - lower_limit = private$lower_limit)) + smallest_value = private$smallest_value)) } # convert numeric pid to original pid diff --git a/R/cpp11.R b/R/cpp11.R index 4b43411..ce587fa 100644 --- a/R/cpp11.R +++ b/R/cpp11.R @@ -1,7 +1,7 @@ # Generated by cpp11: do not edit by hand -convert_log2_scale_inverse_cpp <- function(dt, vars_to_transform, lower_limit) { - .Call(`_epikinetics_convert_log2_scale_inverse_cpp`, dt, vars_to_transform, lower_limit) +convert_log2_scale_inverse_cpp <- function(dt, vars_to_transform, smallest_value) { + .Call(`_epikinetics_convert_log2_scale_inverse_cpp`, dt, vars_to_transform, smallest_value) } simulate_trajectories_cpp <- function(person_params) { diff --git a/R/plot.R b/R/plot.R index 8a01dd7..5c0c297 100644 --- a/R/plot.R +++ b/R/plot.R @@ -9,11 +9,15 @@ #' @param tmax Integer. The number of time points in each simulated trajectory. Default 150. #' @param n_draws Integer. The number of trajectories to simulate. Default 2000. #' @param data Optional data.frame with columns time_since_last_exp and value. The raw data to compare to. +#' @param upper_detection_limit Optional upper detection limit. +#' @param lower_detection_limit Optional lower detection limit. plot.biokinetics_priors <- function(x, ..., tmax = 150, n_draws = 2000, - data = NULL) { + data = NULL, + upper_detection_limit = NULL, + lower_detection_limit = NULL) { # Declare variables to suppress notes when compiling package # https://github.com/Rdatatable/data.table/issues/850#issuecomment-259466153 @@ -47,14 +51,13 @@ plot.biokinetics_priors <- function(x, geom_ribbon(aes(x = t, ymin = lo, ymax = hi), alpha = 0.5) if (!is.null(data)) { - add_censored_indicator(data) dat <- data[time_since_last_exp <= tmax,] plot <- plot + geom_point(data = dat, size = 0.5, aes(x = time_since_last_exp, - y = value, - shape = censored)) + - guides(shape = guide_legend(title = "Censored")) + y = value)) + + plot <- add_limits(plot, upper_detection_limit, lower_detection_limit) } plot } @@ -67,51 +70,27 @@ plot.biokinetics_priors <- function(x, #' @param data A data.table with required columns time_since_last_exp, value and titre_type. #' @param tmax Integer. The number of time points in each simulated trajectory. Default 150. #' @param covariates Optional vector of covariate names to facet by (these must correspond to columns in the data.table) -#' @param upper_detection_limit Optional upper detection limit. If provided, will be represented as a dashed line. -#' @param lower_detection_limit Optional lower detection limit. If provided, will be represented as a dashed line. +#' @param upper_detection_limit Optional upper detection limit. +#' @param lower_detection_limit Optional lower detection limit. plot_sero_data <- function(data, tmax = 150, covariates = character(0), upper_detection_limit = NULL, lower_detection_limit = NULL) { validate_required_cols(data, c("time_since_last_exp", "value", "titre_type")) - add_censored_indicator(data) - data <- data[time_since_last_exp <= tmax, ] + data <- data[time_since_last_exp <= tmax,] # Declare variables to suppress notes when compiling package # https://github.com/Rdatatable/data.table/issues/850#issuecomment-259466153 time_since_last_exp <- value <- titre_type <- censored <- NULL plot <- ggplot(data) + - geom_point(aes(x = time_since_last_exp, y = value, colour = titre_type, shape = censored), + geom_point(aes(x = time_since_last_exp, y = value, colour = titre_type), size = 0.5, alpha = 0.5) + geom_smooth(aes(x = time_since_last_exp, y = value, colour = titre_type)) + facet_wrap(eval(parse(text = facet_formula(covariates)))) + - guides(shape = guide_legend(title = "Censored"), - colour = guide_legend(title = "Titre type")) + guides(colour = guide_legend(title = "Titre type")) - if (!is.null(lower_detection_limit)) { - plot <- plot + - geom_hline(yintercept = lower_detection_limit, - linetype = 'dotted') + - annotate("text", x = 1, - y = lower_detection_limit, - label = "Lower detection limit", - vjust = -0.5, - hjust = 0, - size = 3) - } - if (!is.null(upper_detection_limit)) { - plot <- plot + - geom_hline(yintercept = upper_detection_limit, - linetype = 'dotted') + - annotate("text", x = 1, - y = upper_detection_limit, - label = "Upper detection limit", - vjust = -0.5, - hjust = 0, - size = 3) - } - plot + add_limits(plot, upper_detection_limit, lower_detection_limit) } #' Plot method for "biokinetics_population_trajectories" class @@ -122,13 +101,16 @@ plot_sero_data <- function(data, #' @param \dots Further arguments passed to the method. #' @param data Optional data.table containing raw data as provided to the biokinetics model. #' @export -plot.biokinetics_population_trajectories <- function(x, ..., data = NULL) { +plot.biokinetics_population_trajectories <- function(x, ..., + data = NULL) { covariates <- attr(x, "covariates") + upper_detection_limit <- attr(x, "upper_detection_limit") + lower_detection_limit <- attr(x, "lower_detection_limit") # Declare variables to suppress notes when compiling package # https://github.com/Rdatatable/data.table/issues/850#issuecomment-259466153 time_since_last_exp <- value <- me <- titre_type <- lo <- hi <- NULL - day <- last_exp_day <- censored <- mu <- .draw <- NULL + day <- last_exp_day <- mu <- .draw <- NULL if (attr(x, "summarised")) { plot <- ggplot(x) + @@ -144,35 +126,50 @@ plot.biokinetics_population_trajectories <- function(x, ..., data = NULL) { } if (!is.null(data)) { validate_required_cols(data) - add_censored_indicator(data) plot <- plot + geom_point(data = data, aes(x = as.integer(day - last_exp_day, units = "days"), - y = value, shape = censored), size = 0.5, alpha = 0.5) + y = value), size = 0.5, alpha = 0.5) } if (attr(x, "scale") == "natural") { plot <- plot + scale_y_continuous(trans = "log2") } - plot + + plot <- plot + facet_wrap(eval(parse(text = facet_formula(covariates)))) + guides(fill = guide_legend(title = "Titre type"), - colour = "none", - shape = guide_legend(title = "Censored")) + colour = "none") + if (!is.null(data)) { + plot <- add_limits(plot, upper_detection_limit, lower_detection_limit) + } + plot } facet_formula <- function(covariates) { paste("~", paste(c("titre_type", covariates), collapse = "+")) } -add_censored_indicator <- function(data) { - # Declare variables to suppress notes when compiling package - # https://github.com/Rdatatable/data.table/issues/850#issuecomment-259466153 - censored <- NULL - if (!("censored" %in% colnames(data))) { - # censored is an optional column in input data - # if not present, treat all points as uncensored - data[, censored := FALSE] - } else { - data[, censored := censored != 0] +add_limits <- function(plot, upper_detection_limit, lower_detection_limit) { + if (!is.null(lower_detection_limit)) { + plot <- plot + + geom_hline(yintercept = lower_detection_limit, + linetype = 'dotted') + + annotate("text", x = 1, + y = lower_detection_limit, + label = "Lower detection limit", + vjust = -0.5, + hjust = 0, + size = 3) } -} + if (!is.null(upper_detection_limit)) { + plot <- plot + + geom_hline(yintercept = upper_detection_limit, + linetype = 'dotted') + + annotate("text", x = 1, + y = upper_detection_limit, + label = "Upper detection limit", + vjust = -0.5, + hjust = 0, + size = 3) + } + plot +} \ No newline at end of file diff --git a/R/utils.R b/R/utils.R index 4089cb2..c69be0d 100644 --- a/R/utils.R +++ b/R/utils.R @@ -1,10 +1,20 @@ +#' @title Base 2 log scale conversion +#' +#' @description Natural scale data is converted to a base 2 log scale before model fitting. +#' This function does not modify the provided data.table in-place, but returns a transformed copy. +#' @return A data.table, identical to the input data but with specified columns transformed. +#' @param dt_in data.table containing data to be transformed to base 2 log scale. +#' @param vars_to_transform Names of columns to apply the transformation to. +#' @param smallest_value The lowest value in the original dataset. Used to get the data onto +#' a scale that starts at zero. +#' @export convert_log2_scale <- function( dt_in, - lower_limit, + smallest_value, vars_to_transform = "value") { dt_out <- data.table::copy(dt_in) for (var in vars_to_transform) { - dt_out[, (var) := log2(get(var) / lower_limit)] + dt_out[, (var) := log2(get(var) / smallest_value)] } return(dt_out) } @@ -17,12 +27,12 @@ convert_log2_scale <- function( #' @return A data.table, identical to the input data but with specified columns transformed. #' @param dt_in data.table containing data to be transformed from base 2 log to natural scale. #' @param vars_to_transform Names of columns to apply the transformation to. -#' @param lower_limit The lowest value in the original dataset. +#' @param smallest_value The lowest value in the original dataset. #' @export -convert_log2_scale_inverse <- function(dt_in, vars_to_transform, lower_limit) { +convert_log2_scale_inverse <- function(dt_in, vars_to_transform, smallest_value) { dt_out <- data.table::copy(dt_in) for (var in vars_to_transform) { - dt_out[, (var) := lower_limit * 2^(get(var))] + dt_out[, (var) := smallest_value * 2^(get(var))] } dt_out } diff --git a/inst/ba2_full.rds b/inst/ba2_full.rds index 0cc420b..0d38ee6 100644 --- a/inst/ba2_full.rds +++ b/inst/ba2_full.rds @@ -1,2248 +1,2248 @@ -pid,day,last_exp_day,titre_type,value,censored,infection_history,last_vax_type,exp_num -1,2022-01-31,2021-12-26,Delta,2560,1,Infection naive,BNT162b2,5 -1,2022-01-31,2021-12-26,BA.1,1841.32228,0,Infection naive,BNT162b2,5 -1,2022-01-31,2021-12-26,BA.2,786.8526775,0,Infection naive,BNT162b2,5 -2,2021-10-27,2021-10-12,Delta,525.304331599999,0,Infection naive,BNT162b2,3 -2,2022-01-12,2021-10-12,Delta,382.1490912,0,Infection naive,BNT162b2,3 -2,2021-10-27,2021-10-12,BA.1,263.071225699999,0,Infection naive,BNT162b2,3 -2,2022-01-12,2021-10-12,BA.1,216.744635999999,0,Infection naive,BNT162b2,3 -3,2022-01-10,2022-01-10,Delta,893.4876545,0,Infection naive,BNT162b2,4 -3,2022-02-10,2022-01-10,Delta,1369.203683,0,Infection naive,BNT162b2,4 -3,2022-01-10,2022-01-10,BA.1,599.6392433,0,Infection naive,BNT162b2,4 -3,2022-02-10,2022-01-10,BA.1,777.256284300001,0,Infection naive,BNT162b2,4 -3,2022-01-10,2022-01-10,BA.2,497.083846099999,0,Infection naive,BNT162b2,4 -3,2022-02-10,2022-01-10,BA.2,401.3743087,0,Infection naive,BNT162b2,4 -4,2021-10-25,2021-10-01,Delta,1409.385207,0,Infection naive,BNT162b2,5 -4,2022-01-06,2021-10-01,Delta,377.488430999999,0,Infection naive,BNT162b2,5 -4,2021-10-25,2021-10-01,BA.1,1056.316015,0,Infection naive,BNT162b2,5 -4,2022-01-06,2021-10-01,BA.1,437.7584327,0,Infection naive,BNT162b2,5 -4,2021-10-25,2021-10-01,BA.2,418.2542913,0,Infection naive,BNT162b2,5 -4,2022-01-06,2021-10-01,BA.2,201.0073495,0,Infection naive,BNT162b2,5 -5,2022-01-25,2021-12-07,Delta,832.982871400002,0,Infection naive,BNT162b2,3 -5,2022-01-25,2021-12-07,BA.1,283.6676231,0,Infection naive,BNT162b2,3 -5,2022-01-25,2021-12-07,BA.2,469.144198143753,0,Infection naive,BNT162b2,3 -6,2022-01-31,2021-12-18,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -6,2022-04-19,2021-12-18,Delta,2553.37451600001,0,Previously infected (Pre-Omicron),BNT162b2,4 -6,2022-07-14,2021-12-18,Delta,2252.582483,0,Previously infected (Pre-Omicron),BNT162b2,4 -6,2022-01-31,2021-12-18,BA.1,1182.765086,0,Previously infected (Pre-Omicron),BNT162b2,4 -6,2022-04-19,2021-12-18,BA.1,575.943483199999,0,Previously infected (Pre-Omicron),BNT162b2,4 -6,2022-07-14,2021-12-18,BA.1,531.790000500001,0,Previously infected (Pre-Omicron),BNT162b2,4 -6,2022-01-31,2021-12-18,BA.2,938.437374200003,0,Previously infected (Pre-Omicron),BNT162b2,4 -6,2022-04-19,2021-12-18,BA.2,468.3225154,0,Previously infected (Pre-Omicron),BNT162b2,4 -6,2022-07-14,2021-12-18,BA.2,451.791586600002,0,Previously infected (Pre-Omicron),BNT162b2,4 -7,2021-12-20,2021-11-29,Delta,918.902747700002,0,Infection naive,BNT162b2,3 -7,2022-03-08,2021-11-29,Delta,1034.327612,0,Infection naive,BNT162b2,3 -7,2021-12-20,2021-11-29,BA.1,401.726264699999,0,Infection naive,BNT162b2,3 -7,2022-03-08,2021-11-29,BA.1,491.4520162,0,Infection naive,BNT162b2,3 -7,2021-12-20,2021-11-29,BA.2,196.650717500001,0,Infection naive,BNT162b2,3 -8,2022-01-06,2021-12-06,Delta,364.802713224805,0,Infection naive,BNT162b2,3 -8,2022-04-21,2021-12-06,Delta,389.248195900001,0,Infection naive,BNT162b2,3 -8,2022-01-06,2021-12-06,BA.1,516.628685860199,0,Infection naive,BNT162b2,3 -8,2022-04-21,2021-12-06,BA.1,256.2439771,0,Infection naive,BNT162b2,3 -8,2022-01-06,2021-12-06,BA.2,736.790847334061,0,Infection naive,BNT162b2,3 -8,2022-04-21,2021-12-06,BA.2,154.1250214,0,Infection naive,BNT162b2,3 -9,2022-01-26,2021-12-12,Delta,1494.62989678618,0,Infection naive,BNT162b2,3 -9,2022-01-26,2021-12-12,BA.1,2560,1,Infection naive,BNT162b2,3 -9,2022-01-26,2021-12-12,BA.2,2560,1,Infection naive,BNT162b2,3 -10,2021-10-21,2021-09-30,Delta,275.338830600001,0,Infection naive,BNT162b2,3 -10,2021-12-02,2021-09-30,Delta,222.519481960325,0,Infection naive,BNT162b2,3 -10,2022-07-06,2021-09-30,Delta,95.4232674300003,0,Infection naive,BNT162b2,3 -10,2022-07-06,2021-09-30,Delta,95.4232674300003,0,Infection naive,BNT162b2,3 -10,2021-10-21,2021-09-30,BA.1,224.2817545,0,Infection naive,BNT162b2,3 -10,2021-12-02,2021-09-30,BA.1,216.934694411597,0,Infection naive,BNT162b2,3 -10,2022-07-06,2021-09-30,BA.1,176.243669900001,0,Infection naive,BNT162b2,3 -10,2022-07-06,2021-09-30,BA.1,176.243669900001,0,Infection naive,BNT162b2,3 -11,2022-01-26,2021-12-28,Delta,1052.619085,0,Infection naive,BNT162b2,4 -11,2022-01-26,2021-12-28,BA.1,777.256284300001,0,Infection naive,BNT162b2,4 -11,2022-01-26,2021-12-28,BA.2,563.954573599998,0,Infection naive,BNT162b2,4 -12,2022-02-15,2022-01-21,Delta,1547.960618,0,Previously infected (Pre-Omicron),BNT162b2,4 -12,2022-02-15,2022-01-21,BA.1,1334.839449,0,Previously infected (Pre-Omicron),BNT162b2,4 -12,2022-02-15,2022-01-21,BA.2,803.580098599998,0,Previously infected (Pre-Omicron),BNT162b2,4 -13,2022-01-18,2021-12-29,Delta,2560,1,Previously infected (Pre-Omicron),mRNA1273,5 -13,2022-03-21,2021-12-29,Delta,1795.108826,0,Previously infected (Pre-Omicron),mRNA1273,5 -13,2022-01-18,2021-12-29,BA.1,657.444254099999,0,Previously infected (Pre-Omicron),mRNA1273,5 -13,2022-03-21,2021-12-29,BA.1,485.032991799999,0,Previously infected (Pre-Omicron),mRNA1273,5 -13,2022-01-18,2021-12-29,BA.2,689.914094700002,0,Previously infected (Pre-Omicron),mRNA1273,5 -13,2022-03-21,2021-12-29,BA.2,435.462322499999,0,Previously infected (Pre-Omicron),mRNA1273,5 -14,2021-12-14,2021-11-18,Delta,677.925384779656,0,Previously infected (Pre-Omicron),BNT162b2,4 -14,2021-12-14,2021-11-18,BA.1,396.826842859785,0,Previously infected (Pre-Omicron),BNT162b2,4 -14,2021-12-14,2021-11-18,BA.2,317.903315890815,0,Previously infected (Pre-Omicron),BNT162b2,4 -15,2022-01-26,2022-01-10,Delta,2386.733906,0,Infection naive,BNT162b2,4 -15,2022-04-06,2022-01-10,Delta,1247.723964,0,Infection naive,BNT162b2,4 -15,2022-01-26,2022-01-10,BA.1,860.439512300003,0,Infection naive,BNT162b2,4 -15,2022-04-06,2022-01-10,BA.1,1242.267821,0,Infection naive,BNT162b2,4 -15,2022-01-26,2022-01-10,BA.2,992.584030600003,0,Infection naive,BNT162b2,4 -15,2022-04-06,2022-01-10,BA.2,806.402372399998,0,Infection naive,BNT162b2,4 -16,2022-01-27,2021-12-11,Delta,759.0782163,0,Infection naive,BNT162b2,3 -16,2022-04-07,2021-12-11,Delta,519.352771,0,Infection naive,BNT162b2,3 -16,2022-07-13,2021-12-11,Delta,268.193212000001,0,Infection naive,BNT162b2,3 -16,2022-01-27,2021-12-11,BA.1,276.0637809,0,Infection naive,BNT162b2,3 -16,2022-01-27,2021-12-11,BA.2,634.793822199081,0,Infection naive,BNT162b2,3 -16,2022-04-07,2021-12-11,BA.2,377.15771,0,Infection naive,BNT162b2,3 -16,2022-07-13,2021-12-11,BA.2,131.8610017,0,Infection naive,BNT162b2,3 -17,2021-09-17,2021-09-01,Delta,549.3187728,0,Infection naive,AZD1222,3 -17,2021-09-17,2021-09-01,BA.1,228.4481903,0,Infection naive,AZD1222,3 -18,2021-12-21,2021-12-03,Delta,639.260602917257,0,Infection naive,BNT162b2,3 -18,2021-12-21,2021-12-03,BA.1,980.478554046567,0,Infection naive,BNT162b2,3 -18,2021-12-21,2021-12-03,BA.2,1962.98825310995,0,Infection naive,BNT162b2,3 -19,2022-01-19,2021-12-23,Delta,2560,1,Infection naive,BNT162b2,4 -19,2022-04-12,2021-12-23,Delta,2560,1,Infection naive,BNT162b2,4 -19,2022-01-19,2021-12-23,BA.1,2560,1,Infection naive,BNT162b2,4 -19,2022-04-12,2021-12-23,BA.1,2560,1,Infection naive,BNT162b2,4 -19,2022-01-19,2021-12-23,BA.2,1054.46593,0,Infection naive,BNT162b2,4 -19,2022-04-12,2021-12-23,BA.2,908.491820100001,0,Infection naive,BNT162b2,4 -20,2022-01-31,2022-01-17,Delta,1174.500613,0,Previously infected (Pre-Omicron),BNT162b2,5 -20,2022-01-31,2022-01-17,BA.1,1338.354,0,Previously infected (Pre-Omicron),BNT162b2,5 -20,2022-01-31,2022-01-17,BA.2,677.925384800002,0,Previously infected (Pre-Omicron),BNT162b2,5 -21,2022-01-27,2021-12-23,Delta,2560,1,Infection naive,BNT162b2,4 -21,2022-01-27,2021-12-23,BA.1,2560,1,Infection naive,BNT162b2,4 -21,2022-01-27,2021-12-23,BA.2,1562.95734,0,Infection naive,BNT162b2,4 -22,2022-01-12,2021-12-24,Delta,2094.528381,0,Infection naive,BNT162b2,5 -22,2022-01-12,2021-12-24,BA.1,1715.128513,0,Infection naive,BNT162b2,5 -22,2022-01-12,2021-12-24,BA.2,1029.804626,0,Infection naive,BNT162b2,5 -23,2022-01-11,2021-12-07,Delta,492.745979450075,0,Previously infected (Pre-Omicron),AZD1222,5 -23,2022-01-11,2021-12-07,BA.1,647.153232721685,0,Previously infected (Pre-Omicron),AZD1222,5 -23,2022-01-11,2021-12-07,BA.2,1860.79135993889,0,Previously infected (Pre-Omicron),AZD1222,5 -24,2021-12-20,2021-12-08,Delta,329.824271979385,0,Infection naive,BNT162b2,3 -24,2021-12-20,2021-12-08,BA.1,186.903521306488,0,Infection naive,BNT162b2,3 -24,2021-12-20,2021-12-08,BA.2,391.300627889382,0,Infection naive,BNT162b2,3 -25,2022-01-12,2021-12-18,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,5 -25,2022-01-12,2021-12-18,BA.1,2560,1,Previously infected (Pre-Omicron),BNT162b2,5 -25,2022-01-12,2021-12-18,BA.2,1607.41537599999,0,Previously infected (Pre-Omicron),BNT162b2,5 -26,2022-01-18,2021-12-12,Delta,1148.03780629789,0,Previously infected (Pre-Omicron),BNT162b2,4 -26,2022-01-18,2021-12-12,BA.1,835.176064472936,0,Previously infected (Pre-Omicron),BNT162b2,4 -26,2022-01-18,2021-12-12,BA.2,1012.79692277529,0,Previously infected (Pre-Omicron),BNT162b2,4 -27,2021-10-18,2021-09-22,Delta,697.208848591141,0,Infection naive,BNT162b2,3 -27,2021-12-21,2021-09-22,Delta,1348.953272,0,Infection naive,BNT162b2,3 -27,2021-10-18,2021-09-22,BA.1,605.448578890923,0,Infection naive,BNT162b2,3 -27,2021-12-21,2021-09-22,BA.1,526.225990299999,0,Infection naive,BNT162b2,3 -27,2021-10-18,2021-09-22,BA.2,823.545393429733,0,Infection naive,BNT162b2,3 -27,2021-12-21,2021-09-22,BA.2,535.062801700002,0,Infection naive,BNT162b2,3 -28,2021-12-16,2021-12-01,Delta,469.144198143753,0,Infection naive,BNT162b2,3 -28,2021-12-16,2021-12-01,BA.1,241.841242919635,0,Infection naive,BNT162b2,3 -28,2021-12-16,2021-12-01,BA.2,429.39806936829,0,Infection naive,BNT162b2,3 -29,2022-01-06,2021-12-14,Delta,1230.34814591358,0,Infection naive,AZD1222,4 -29,2022-01-06,2021-12-14,BA.1,687.499510511047,0,Infection naive,AZD1222,4 -29,2022-01-06,2021-12-14,BA.2,886.467160348459,0,Infection naive,AZD1222,4 -30,2022-01-06,2021-12-10,Delta,1012.79692277529,0,Infection naive,BNT162b2,3 -30,2022-03-21,2021-12-10,Delta,1172.443533,0,Infection naive,BNT162b2,3 -30,2022-07-20,2021-12-10,Delta,780.670057600001,0,Infection naive,BNT162b2,3 -30,2022-01-06,2021-12-10,BA.1,643.19481164692,0,Infection naive,BNT162b2,3 -30,2022-03-21,2021-12-10,BA.1,490.161451000001,0,Infection naive,BNT162b2,3 -30,2022-07-20,2021-12-10,BA.1,452.584265500002,0,Infection naive,BNT162b2,3 -30,2022-01-06,2021-12-10,BA.2,1005.72008784219,0,Infection naive,BNT162b2,3 -30,2022-03-21,2021-12-10,BA.2,373.538846600001,0,Infection naive,BNT162b2,3 -30,2022-07-20,2021-12-10,BA.2,281.9325226,0,Infection naive,BNT162b2,3 -31,2021-10-08,2021-10-08,Delta,85.0723322500003,0,Infection naive,BNT162b2,3 -31,2021-10-08,2021-10-08,BA.1,104.7137773,0,Infection naive,BNT162b2,3 -31,2021-10-08,2021-10-08,BA.2,65.74692666,0,Infection naive,BNT162b2,3 -32,2021-10-20,2021-10-01,Delta,579.996158456378,0,Previously infected (Pre-Omicron),BNT162b2,4 -32,2021-10-20,2021-10-01,BA.1,391.64375049163,0,Previously infected (Pre-Omicron),BNT162b2,4 -32,2021-10-20,2021-10-01,BA.2,529.000680191154,0,Previously infected (Pre-Omicron),BNT162b2,4 -33,2021-10-08,2021-10-08,Delta,360.669594000001,0,Infection naive,BNT162b2,3 -33,2021-11-02,2021-10-08,Delta,1423.03940300001,0,Infection naive,BNT162b2,3 -33,2022-01-13,2021-10-08,Delta,902.1438084,0,Infection naive,BNT162b2,3 -33,2022-07-13,2021-10-08,Delta,499.704875,0,Infection naive,BNT162b2,3 -33,2022-09-29,2021-10-08,Delta,920.51498399223,0,Infection naive,BNT162b2,3 -33,2021-10-08,2021-10-08,BA.1,176.089261200001,0,Infection naive,BNT162b2,3 -33,2021-11-02,2021-10-08,BA.1,609.174697899999,0,Infection naive,BNT162b2,3 -33,2022-01-13,2021-10-08,BA.1,551.731425900001,0,Infection naive,BNT162b2,3 -33,2022-07-13,2021-10-08,BA.1,466.683464700001,0,Infection naive,BNT162b2,3 -33,2022-09-29,2021-10-08,BA.1,462.205593339281,0,Infection naive,BNT162b2,3 -33,2021-10-08,2021-10-08,BA.2,252.0119885,0,Infection naive,BNT162b2,3 -34,2022-02-15,2022-01-06,Delta,1964.709553,0,Infection naive,BNT162b2,4 -34,2022-07-27,2022-01-06,Delta,951.690628333103,0,Infection naive,BNT162b2,4 -34,2022-02-15,2022-01-06,BA.1,981.338313300001,0,Infection naive,BNT162b2,4 -34,2022-07-27,2022-01-06,BA.1,566.928199132255,0,Infection naive,BNT162b2,4 -34,2022-02-15,2022-01-06,BA.2,552.6994515,0,Infection naive,BNT162b2,4 -34,2022-07-27,2022-01-06,BA.2,455.768913171908,0,Infection naive,BNT162b2,4 -35,2021-12-20,2021-12-03,Delta,1383.680854,0,Previously infected (Pre-Omicron),mRNA1273,4 -35,2022-03-21,2021-12-03,Delta,845.487564100002,0,Previously infected (Pre-Omicron),mRNA1273,4 -35,2021-12-20,2021-12-03,BA.1,686.897185999998,0,Previously infected (Pre-Omicron),mRNA1273,4 -35,2022-03-21,2021-12-03,BA.1,226.8519274,0,Previously infected (Pre-Omicron),mRNA1273,4 -35,2021-12-20,2021-12-03,BA.2,337.4268752,0,Previously infected (Pre-Omicron),mRNA1273,4 -35,2022-03-21,2021-12-03,BA.2,173.3329236,0,Previously infected (Pre-Omicron),mRNA1273,4 -36,2022-01-12,2021-12-29,Delta,1596.183694,0,Infection naive,BNT162b2,4 -36,2022-04-07,2021-12-29,Delta,2407.745409,0,Infection naive,BNT162b2,4 -36,2022-01-12,2021-12-29,BA.1,1694.210941,0,Infection naive,BNT162b2,4 -36,2022-04-07,2021-12-29,BA.1,992.584030600003,0,Infection naive,BNT162b2,4 -36,2022-01-12,2021-12-29,BA.2,675.552759,0,Infection naive,BNT162b2,4 -36,2022-04-07,2021-12-29,BA.2,759.0782163,0,Infection naive,BNT162b2,4 -37,2022-01-06,2021-12-10,Delta,557.076628047233,0,Infection naive,BNT162b2,3 -37,2022-01-06,2021-12-10,BA.1,497.083846128015,0,Infection naive,BNT162b2,3 -37,2022-01-06,2021-12-10,BA.2,688.705744441976,0,Infection naive,BNT162b2,3 -38,2022-01-25,2022-01-21,Delta,1709.12585,0,Previously infected (Omicron),BNT162b2,4 -38,2022-04-19,2022-01-21,Delta,595.449313599998,0,Previously infected (Omicron),BNT162b2,4 -38,2022-04-19,2022-01-21,Delta,595.449313599998,0,Previously infected (Omicron),BNT162b2,4 -38,2022-01-25,2022-01-21,BA.1,630.358252700001,0,Previously infected (Omicron),BNT162b2,4 -38,2022-04-19,2022-01-21,BA.1,600.165053300002,0,Previously infected (Omicron),BNT162b2,4 -38,2022-04-19,2022-01-21,BA.1,600.165053300002,0,Previously infected (Omicron),BNT162b2,4 -38,2022-01-25,2022-01-21,BA.2,839.579789552457,0,Previously infected (Omicron),BNT162b2,4 -38,2022-04-19,2022-01-21,BA.2,361.936310700001,0,Previously infected (Omicron),BNT162b2,4 -38,2022-04-19,2022-01-21,BA.2,361.936310700001,0,Previously infected (Omicron),BNT162b2,4 -39,2022-01-27,2021-12-25,Delta,1833.270406,0,Infection naive,BNT162b2,4 -39,2022-01-27,2021-12-25,BA.1,770.473456500002,0,Infection naive,BNT162b2,4 -39,2022-01-27,2021-12-25,BA.2,804.989998629278,0,Infection naive,BNT162b2,4 -40,2021-12-14,2021-12-14,Delta,63.0935002600001,0,Infection naive,BNT162b2,3 -40,2022-01-18,2021-12-14,Delta,635.350458433831,0,Infection naive,BNT162b2,3 -40,2021-12-14,2021-12-14,BA.1,5,-1,Infection naive,BNT162b2,3 -40,2022-01-18,2021-12-14,BA.1,432.419565403068,0,Infection naive,BNT162b2,3 -40,2021-12-14,2021-12-14,BA.2,65.6893251900002,0,Infection naive,BNT162b2,3 -40,2022-01-18,2021-12-14,BA.2,545.480453207638,0,Infection naive,BNT162b2,3 -41,2021-10-11,2021-09-09,Delta,898.986455599049,0,Infection naive,BNT162b2,3 -41,2021-10-11,2021-09-09,BA.1,1137.02227650801,0,Infection naive,BNT162b2,3 -41,2021-10-11,2021-09-09,BA.2,1480.28878357321,0,Infection naive,BNT162b2,3 -42,2022-01-06,2021-12-19,Delta,2560,1,Previously infected (Omicron),BNT162b2,4 -42,2022-04-19,2021-12-19,Delta,2560,1,Previously infected (Omicron),BNT162b2,4 -42,2022-07-14,2021-12-19,Delta,2560,1,Previously infected (Omicron),BNT162b2,4 -42,2022-01-06,2021-12-19,BA.1,1488.094066,0,Previously infected (Omicron),BNT162b2,4 -42,2022-04-19,2021-12-19,BA.1,2365.905763,0,Previously infected (Omicron),BNT162b2,4 -42,2022-07-14,2021-12-19,BA.1,922.130048999999,0,Previously infected (Omicron),BNT162b2,4 -42,2022-01-06,2021-12-19,BA.2,1084.460021,0,Previously infected (Omicron),BNT162b2,4 -42,2022-04-19,2021-12-19,BA.2,1136.026121,0,Previously infected (Omicron),BNT162b2,4 -42,2022-07-14,2021-12-19,BA.2,1186.919105,0,Previously infected (Omicron),BNT162b2,4 -43,2021-12-15,2021-12-03,Delta,659.753280476606,0,Infection naive,BNT162b2,3 -43,2022-03-21,2021-12-03,Delta,421.566711600001,0,Infection naive,BNT162b2,3 -43,2021-12-15,2021-12-03,BA.1,171.820311329011,0,Infection naive,BNT162b2,3 -43,2022-03-21,2021-12-03,BA.1,221.740700900001,0,Infection naive,BNT162b2,3 -43,2021-12-15,2021-12-03,BA.2,280.945805803223,0,Infection naive,BNT162b2,3 -43,2022-03-21,2021-12-03,BA.2,216.175459200001,0,Infection naive,BNT162b2,3 -44,2021-12-15,2021-12-15,Delta,5,-1,Infection naive,BNT162b2,3 -44,2022-01-10,2021-12-15,Delta,163.3038598957,0,Infection naive,BNT162b2,3 -44,2022-03-21,2021-12-15,Delta,111.534972,0,Infection naive,BNT162b2,3 -44,2021-12-15,2021-12-15,BA.1,5,-1,Infection naive,BNT162b2,3 -44,2022-01-10,2021-12-15,BA.1,133.723232907625,0,Infection naive,BNT162b2,3 -44,2022-03-21,2021-12-15,BA.1,75.5125462099998,0,Infection naive,BNT162b2,3 -44,2021-12-15,2021-12-15,BA.2,5,-1,Infection naive,BNT162b2,3 -44,2022-01-10,2021-12-15,BA.2,233.304689105237,0,Infection naive,BNT162b2,3 -44,2022-03-21,2021-12-15,BA.2,107.7867745,0,Infection naive,BNT162b2,3 -45,2021-12-22,2021-12-22,Delta,208.544860600001,0,Infection naive,BNT162b2,4 -45,2022-02-03,2021-12-22,Delta,2560,1,Infection naive,BNT162b2,4 -45,2022-07-05,2021-12-22,Delta,2560,1,Infection naive,BNT162b2,4 -45,2021-12-22,2021-12-22,BA.1,102.3544593,0,Infection naive,BNT162b2,4 -45,2022-02-03,2021-12-22,BA.1,2264.45992400001,0,Infection naive,BNT162b2,4 -45,2022-07-05,2021-12-22,BA.1,2560,1,Infection naive,BNT162b2,4 -45,2021-12-22,2021-12-22,BA.2,126.7613477,0,Infection naive,BNT162b2,4 -45,2022-02-03,2021-12-22,BA.2,757.748728500003,0,Infection naive,BNT162b2,4 -45,2022-07-05,2021-12-22,BA.2,1256.503679,0,Infection naive,BNT162b2,4 -46,2022-01-06,2021-12-24,Delta,1686.802367,0,Infection naive,mRNA1273,4 -46,2022-03-21,2021-12-24,Delta,617.7778794,0,Infection naive,mRNA1273,4 -46,2022-06-16,2021-12-24,Delta,1122.171236,0,Infection naive,mRNA1273,4 -46,2022-01-06,2021-12-24,BA.1,945.040768600001,0,Infection naive,mRNA1273,4 -46,2022-03-21,2021-12-24,BA.1,500.581618900002,0,Infection naive,mRNA1273,4 -46,2022-06-16,2021-12-24,BA.1,950.856843600001,0,Infection naive,mRNA1273,4 -46,2022-01-06,2021-12-24,BA.2,490.161451000001,0,Infection naive,mRNA1273,4 -46,2022-03-21,2021-12-24,BA.2,418.2542913,0,Infection naive,mRNA1273,4 -46,2022-06-16,2021-12-24,BA.2,487.5904789,0,Infection naive,mRNA1273,4 -47,2022-01-31,2022-01-16,Delta,1375.217338,0,Infection naive,BNT162b2,4 -47,2022-04-19,2022-01-16,Delta,1008.368088,0,Infection naive,BNT162b2,4 -47,2022-01-31,2022-01-16,BA.1,812.076691199999,0,Infection naive,BNT162b2,4 -47,2022-04-19,2022-01-16,BA.1,914.884500000004,0,Infection naive,BNT162b2,4 -47,2022-01-31,2022-01-16,BA.2,533.190171200002,0,Infection naive,BNT162b2,4 -47,2022-04-19,2022-01-16,BA.2,792.389433300002,0,Infection naive,BNT162b2,4 -48,2022-01-10,2021-12-10,Delta,183.334015305209,0,Previously infected (Pre-Omicron),BNT162b2,4 -48,2022-01-10,2021-12-10,BA.1,360.353608095522,0,Previously infected (Pre-Omicron),BNT162b2,4 -48,2022-01-10,2021-12-10,BA.2,434.318787559875,0,Previously infected (Pre-Omicron),BNT162b2,4 -49,2022-01-11,2021-12-30,Delta,1254.302975,0,Infection naive,BNT162b2,4 -49,2022-01-11,2021-12-30,BA.1,634.7938222,0,Infection naive,BNT162b2,4 -49,2022-01-11,2021-12-30,BA.2,548.356668199999,0,Infection naive,BNT162b2,4 -50,2021-10-21,2021-10-02,Delta,676.738032100001,0,Infection naive,BNT162b2,3 -50,2022-01-12,2021-10-02,Delta,573.927777099999,0,Infection naive,BNT162b2,3 -50,2022-07-06,2021-10-02,Delta,187.889028099999,0,Infection naive,BNT162b2,3 -50,2022-09-20,2021-10-02,Delta,164.164930194523,0,Infection naive,BNT162b2,3 -50,2021-10-21,2021-10-02,BA.1,455.768913199999,0,Infection naive,BNT162b2,3 -50,2022-01-12,2021-10-02,BA.1,248.5024668,0,Infection naive,BNT162b2,3 -50,2022-07-06,2021-10-02,BA.1,116.6338259,0,Infection naive,BNT162b2,3 -50,2022-09-20,2021-10-02,BA.1,58.6664985238951,0,Infection naive,BNT162b2,3 -51,2022-01-11,2021-12-22,Delta,2560,1,Infection naive,BNT162b2,5 -51,2022-03-21,2021-12-22,Delta,2560,1,Infection naive,BNT162b2,5 -51,2022-07-06,2021-12-22,Delta,2560,1,Infection naive,BNT162b2,5 -51,2022-07-06,2021-12-22,Delta,2560,1,Infection naive,BNT162b2,5 -51,2022-01-11,2021-12-22,BA.1,736.145338300002,0,Infection naive,BNT162b2,5 -51,2022-01-11,2021-12-22,BA.2,667.8989231,0,Infection naive,BNT162b2,5 -51,2022-03-21,2021-12-22,BA.2,924.5579612,0,Infection naive,BNT162b2,5 -51,2022-07-06,2021-12-22,BA.2,609.708869300002,0,Infection naive,BNT162b2,5 -51,2022-07-06,2021-12-22,BA.2,609.708869300002,0,Infection naive,BNT162b2,5 -52,2021-11-30,2021-10-24,Delta,1230.34814591358,0,Infection naive,BNT162b2,3 -52,2022-01-27,2021-10-24,Delta,639.821155999999,0,Infection naive,BNT162b2,3 -52,2021-11-30,2021-10-24,BA.1,580.504743868716,0,Infection naive,BNT162b2,3 -52,2022-01-27,2021-10-24,BA.1,604.388165800002,0,Infection naive,BNT162b2,3 -52,2021-11-30,2021-10-24,BA.2,680.902888607987,0,Infection naive,BNT162b2,3 -52,2022-01-27,2021-10-24,BA.2,339.503505299999,0,Infection naive,BNT162b2,3 -53,2021-12-02,2021-10-30,Delta,559.033150806869,0,Infection naive,BNT162b2,3 -53,2021-12-02,2021-10-30,BA.1,112.615528487616,0,Infection naive,BNT162b2,3 -53,2021-12-02,2021-10-30,BA.2,206.724966827605,0,Infection naive,BNT162b2,3 -54,2021-12-01,2021-12-01,Delta,205.460499000001,0,Infection naive,BNT162b2,3 -54,2022-01-12,2021-12-01,Delta,2560,1,Infection naive,BNT162b2,3 -54,2022-03-21,2021-12-01,Delta,914.884500000004,0,Infection naive,BNT162b2,3 -54,2021-12-01,2021-12-01,BA.1,43.50973627,0,Infection naive,BNT162b2,3 -54,2022-01-12,2021-12-01,BA.1,660.331803100001,0,Infection naive,BNT162b2,3 -54,2022-03-21,2021-12-01,BA.1,467.9122138,0,Infection naive,BNT162b2,3 -54,2021-12-01,2021-12-01,BA.2,58.0526829299998,0,Infection naive,BNT162b2,3 -54,2022-01-12,2021-12-01,BA.2,725.257808159829,0,Infection naive,BNT162b2,3 -54,2022-03-21,2021-12-01,BA.2,380.811633100001,0,Infection naive,BNT162b2,3 -55,2022-02-15,2022-01-24,Delta,2560,1,Infection naive,BNT162b2,4 -55,2022-07-20,2022-01-24,Delta,2560,1,Infection naive,BNT162b2,4 -55,2022-02-15,2022-01-24,BA.1,2288.403017,0,Infection naive,BNT162b2,4 -55,2022-07-20,2022-01-24,BA.1,1908.695751,0,Infection naive,BNT162b2,4 -55,2022-02-15,2022-01-24,BA.2,1558.852975,0,Infection naive,BNT162b2,4 -55,2022-07-20,2022-01-24,BA.2,1964.709553,0,Infection naive,BNT162b2,4 -56,2021-11-01,2021-10-09,Delta,1603.194263,0,Infection naive,BNT162b2,3 -56,2022-01-19,2021-10-09,Delta,2560,1,Infection naive,BNT162b2,3 -56,2021-11-01,2021-10-09,BA.1,1239.005595,0,Infection naive,BNT162b2,3 -56,2022-01-19,2021-10-09,BA.1,830.795437600003,0,Infection naive,BNT162b2,3 -57,2021-10-21,2021-10-02,Delta,586.128703399999,0,Infection naive,BNT162b2,3 -57,2022-01-12,2021-10-02,Delta,416.425317199999,0,Infection naive,BNT162b2,3 -57,2022-07-11,2021-10-02,Delta,245.686998900001,0,Infection naive,BNT162b2,3 -57,2022-07-11,2021-10-02,Delta,245.686998900001,0,Infection naive,BNT162b2,3 -57,2021-10-21,2021-10-02,BA.1,156.5759152,0,Infection naive,BNT162b2,3 -57,2022-01-12,2021-10-02,BA.1,249.59391,0,Infection naive,BNT162b2,3 -57,2022-07-11,2021-10-02,BA.1,162.0207154,0,Infection naive,BNT162b2,3 -57,2022-07-11,2021-10-02,BA.1,162.0207154,0,Infection naive,BNT162b2,3 -58,2022-01-19,2022-01-04,Delta,1100.73987442066,0,Infection naive,BNT162b2,3 -58,2022-01-19,2022-01-04,BA.1,1190.04419096171,0,Infection naive,BNT162b2,3 -58,2022-01-19,2022-01-04,BA.2,1045.2639959483,0,Infection naive,BNT162b2,3 -59,2022-01-18,2021-12-09,Delta,527.149266068104,0,Previously infected (Pre-Omicron),BNT162b2,4 -59,2022-01-18,2021-12-09,BA.1,292.248355338979,0,Previously infected (Pre-Omicron),BNT162b2,4 -59,2022-01-18,2021-12-09,BA.2,638.700540969852,0,Previously infected (Pre-Omicron),BNT162b2,4 -60,2022-01-12,2021-12-17,Delta,555.613731000002,0,Previously infected (Omicron),BNT162b2,6 -60,2022-01-12,2021-12-17,BA.1,258.2733353,0,Previously infected (Omicron),BNT162b2,6 -60,2022-01-12,2021-12-17,BA.2,263.071225699999,0,Previously infected (Omicron),BNT162b2,6 -61,2021-10-07,2021-10-07,Delta,391.300627900001,0,Previously infected (Pre-Omicron),BNT162b2,4 -61,2021-10-29,2021-10-07,Delta,816.358617699999,0,Previously infected (Pre-Omicron),BNT162b2,4 -61,2021-10-07,2021-10-07,BA.1,255.5710741,0,Previously infected (Pre-Omicron),BNT162b2,4 -61,2021-10-29,2021-10-07,BA.1,366.726248800001,0,Previously infected (Pre-Omicron),BNT162b2,4 -61,2021-10-07,2021-10-07,BA.2,223.105362200001,0,Previously infected (Pre-Omicron),BNT162b2,4 -62,2021-11-15,2021-10-11,Delta,2560,1,Infection naive,mRNA1273,3 -62,2022-01-17,2021-10-11,Delta,1695.69655631292,0,Infection naive,mRNA1273,3 -62,2021-11-15,2021-10-11,BA.1,694.160040823457,0,Infection naive,mRNA1273,3 -62,2022-01-17,2021-10-11,BA.1,762.412150017302,0,Infection naive,mRNA1273,3 -62,2021-11-15,2021-10-11,BA.2,784.786382830833,0,Infection naive,mRNA1273,3 -62,2022-01-17,2021-10-11,BA.2,849.201014794138,0,Infection naive,mRNA1273,3 -63,2021-10-27,2021-10-08,Delta,406.6861773,0,Infection naive,BNT162b2,3 -63,2021-12-20,2021-10-08,Delta,479.117567700001,0,Infection naive,BNT162b2,3 -63,2022-03-22,2021-10-08,Delta,248.9384702,0,Infection naive,BNT162b2,3 -63,2022-04-21,2021-10-08,Delta,189.7093066,0,Infection naive,BNT162b2,3 -63,2021-10-27,2021-10-08,BA.1,322.675662900001,0,Infection naive,BNT162b2,3 -63,2021-12-20,2021-10-08,BA.1,220.577636799999,0,Infection naive,BNT162b2,3 -63,2022-03-22,2021-10-08,BA.1,91.4117737899999,0,Infection naive,BNT162b2,3 -63,2022-04-21,2021-10-08,BA.1,141.0674732,0,Infection naive,BNT162b2,3 -64,2022-01-25,2022-01-02,Delta,1088.26877973307,0,Infection naive,BNT162b2,2 -64,2022-01-25,2022-01-02,BA.1,2560,1,Infection naive,BNT162b2,2 -64,2022-01-25,2022-01-02,BA.2,2560,1,Infection naive,BNT162b2,2 -65,2021-12-20,2021-12-20,Delta,73.8111644569211,0,Infection naive,BNT162b2,4 -65,2022-01-13,2021-12-20,Delta,2182.614743,0,Infection naive,BNT162b2,4 -65,2022-02-23,2021-12-20,Delta,2560,1,Infection naive,BNT162b2,4 -65,2022-09-06,2021-12-20,Delta,2560,1,Infection naive,BNT162b2,4 -65,2021-12-20,2021-12-20,BA.1,42.6040323104691,0,Infection naive,BNT162b2,4 -65,2022-01-13,2021-12-20,BA.1,817.074464,0,Infection naive,BNT162b2,4 -65,2021-12-20,2021-12-20,BA.2,74.8535761806253,0,Infection naive,BNT162b2,4 -65,2022-01-13,2021-12-20,BA.2,559.523354199999,0,Infection naive,BNT162b2,4 -66,2022-01-12,2021-12-30,Delta,2560,1,Infection naive,BNT162b2,4 -66,2022-01-12,2021-12-30,BA.1,2560,1,Infection naive,BNT162b2,4 -66,2022-01-12,2021-12-30,BA.2,1462.235298,0,Infection naive,BNT162b2,4 -67,2021-12-20,2021-11-13,Delta,455.369609939532,0,Infection naive,BNT162b2,3 -67,2022-07-20,2021-11-13,Delta,509.880820300002,0,Infection naive,BNT162b2,3 -67,2021-12-20,2021-11-13,BA.1,598.589004952263,0,Infection naive,BNT162b2,3 -67,2022-07-20,2021-11-13,BA.1,152.6461774,0,Infection naive,BNT162b2,3 -67,2021-12-20,2021-11-13,BA.2,644.323311950038,0,Infection naive,BNT162b2,3 -67,2022-07-20,2021-11-13,BA.2,163.4470573,0,Infection naive,BNT162b2,3 -68,2022-01-26,2021-12-13,Delta,306.950832300001,0,Infection naive,mRNA1273,3 -68,2022-03-21,2021-12-13,Delta,170.1716794,0,Infection naive,mRNA1273,3 -68,2022-01-26,2021-12-13,BA.1,244.3983328,0,Infection naive,mRNA1273,3 -68,2022-03-21,2021-12-13,BA.1,87.2624425099998,0,Infection naive,mRNA1273,3 -68,2022-01-26,2021-12-13,BA.2,196.1343078,0,Infection naive,mRNA1273,3 -68,2022-03-21,2021-12-13,BA.2,124.122668,0,Infection naive,mRNA1273,3 -69,2022-02-08,2022-01-20,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -69,2022-07-21,2022-01-20,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -69,2022-02-08,2022-01-20,BA.1,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -69,2022-07-21,2022-01-20,BA.1,1100.73987442066,0,Previously infected (Pre-Omicron),BNT162b2,4 -69,2022-02-08,2022-01-20,BA.2,2029.46997799999,0,Previously infected (Pre-Omicron),BNT162b2,4 -69,2022-07-21,2022-01-20,BA.2,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -70,2022-01-06,2021-12-18,Delta,596.494043302553,0,Infection naive,BNT162b2,3 -70,2022-01-06,2021-12-18,BA.1,902.14380841629,0,Infection naive,BNT162b2,3 -70,2022-01-06,2021-12-18,BA.2,2302.48656184692,0,Infection naive,BNT162b2,3 -71,2022-01-27,2021-12-25,Delta,2560,1,Infection naive,BNT162b2,4 -71,2022-04-12,2021-12-25,Delta,2560,1,Infection naive,BNT162b2,4 -71,2022-04-12,2021-12-25,Delta,2560,1,Infection naive,BNT162b2,4 -71,2023-01-12,2021-12-25,Delta,2256.53469183447,0,Infection naive,BNT162b2,4 -71,2022-01-27,2021-12-25,BA.1,1495.940504,0,Infection naive,BNT162b2,4 -71,2022-04-12,2021-12-25,BA.1,2560,1,Infection naive,BNT162b2,4 -71,2022-04-12,2021-12-25,BA.1,2560,1,Infection naive,BNT162b2,4 -71,2023-01-12,2021-12-25,BA.1,753.113831544595,0,Infection naive,BNT162b2,4 -71,2022-01-27,2021-12-25,BA.2,1499.87922383217,0,Infection naive,BNT162b2,4 -71,2023-01-12,2021-12-25,BA.2,405.262843496997,0,Infection naive,BNT162b2,4 -72,2021-10-21,2021-10-07,Delta,188.218683830027,0,Infection naive,BNT162b2,3 -72,2021-10-21,2021-10-07,BA.1,286.164878031783,0,Infection naive,BNT162b2,3 -72,2022-01-12,2021-10-07,BA.1,170.470249599999,0,Infection naive,BNT162b2,3 -72,2021-10-21,2021-10-07,BA.2,649.426115777702,0,Infection naive,BNT162b2,3 -72,2022-01-12,2021-10-07,BA.2,141.5629198,0,Infection naive,BNT162b2,3 -73,2021-10-21,2021-10-03,Delta,1030.707638,0,Infection naive,BNT162b2,3 -73,2021-10-21,2021-10-03,BA.1,511.2233054,0,Infection naive,BNT162b2,3 -74,2021-10-01,2021-10-01,Delta,988.243583799999,0,Infection naive,BNT162b2,3 -74,2021-10-21,2021-10-01,Delta,685.093376925567,0,Infection naive,BNT162b2,3 -74,2022-01-18,2021-10-01,Delta,433.938277000001,0,Infection naive,BNT162b2,3 -74,2021-10-01,2021-10-01,BA.1,227.050848700001,0,Infection naive,BNT162b2,3 -74,2021-10-21,2021-10-01,BA.1,563.954573563992,0,Infection naive,BNT162b2,3 -74,2022-01-18,2021-10-01,BA.1,144.192705,0,Infection naive,BNT162b2,3 -74,2021-10-01,2021-10-01,BA.2,250.031828300001,0,Infection naive,BNT162b2,3 -74,2021-10-21,2021-10-01,BA.2,732.926266060021,0,Infection naive,BNT162b2,3 -74,2022-01-18,2021-10-01,BA.2,89.0394470600002,0,Infection naive,BNT162b2,3 -75,2021-11-15,2021-10-18,Delta,479.537694977315,0,Previously infected (Pre-Omicron),BNT162b2,4 -75,2022-01-31,2021-10-18,Delta,451.395767999999,0,Previously infected (Pre-Omicron),BNT162b2,4 -75,2022-07-13,2021-10-18,Delta,155.4818539,0,Previously infected (Pre-Omicron),BNT162b2,4 -75,2021-11-15,2021-10-18,BA.1,510.327923138681,0,Previously infected (Pre-Omicron),BNT162b2,4 -75,2022-01-31,2021-10-18,BA.1,172.1217741,0,Previously infected (Pre-Omicron),BNT162b2,4 -75,2022-07-13,2021-10-18,BA.1,242.053308,0,Previously infected (Pre-Omicron),BNT162b2,4 -75,2021-11-15,2021-10-18,BA.2,667.898923085107,0,Previously infected (Pre-Omicron),BNT162b2,4 -75,2022-01-31,2021-10-18,BA.2,229.854131600001,0,Previously infected (Pre-Omicron),BNT162b2,4 -75,2022-07-13,2021-10-18,BA.2,171.0689624,0,Previously infected (Pre-Omicron),BNT162b2,4 -76,2022-01-25,2021-12-20,Delta,2560,1,Infection naive,BNT162b2,4 -76,2022-07-21,2021-12-20,Delta,1980.26933035355,0,Infection naive,BNT162b2,4 -76,2022-01-25,2021-12-20,BA.1,1854.27890100001,0,Infection naive,BNT162b2,4 -76,2022-07-21,2021-12-20,BA.1,711.406747031582,0,Infection naive,BNT162b2,4 -76,2022-01-25,2021-12-20,BA.2,1110.430188,0,Infection naive,BNT162b2,4 -76,2022-07-21,2021-12-20,BA.2,927.805124355957,0,Infection naive,BNT162b2,4 -77,2021-09-27,2021-09-24,Delta,112.912038309139,0,Previously infected (Pre-Omicron),BNT162b2,4 -77,2021-09-27,2021-09-24,BA.1,42.0475663387378,0,Previously infected (Pre-Omicron),BNT162b2,4 -77,2021-09-27,2021-09-24,BA.2,111.437255202695,0,Previously infected (Pre-Omicron),BNT162b2,4 -78,2021-12-23,2021-12-08,Delta,2560,1,Infection naive,BNT162b2,5 -78,2022-07-06,2021-12-08,Delta,2560,1,Infection naive,BNT162b2,5 -78,2022-10-20,2021-12-08,Delta,2560,1,Infection naive,BNT162b2,5 -78,2021-12-23,2021-12-08,BA.1,2560,1,Infection naive,BNT162b2,5 -78,2022-07-06,2021-12-08,BA.1,2560,1,Infection naive,BNT162b2,5 -78,2022-10-20,2021-12-08,BA.1,1560.21989763772,0,Infection naive,BNT162b2,5 -78,2021-12-23,2021-12-08,BA.2,882.590749500003,0,Infection naive,BNT162b2,5 -79,2021-12-20,2021-12-18,Delta,725.893770200002,0,Previously infected (Pre-Omicron),BNT162b2,4 -79,2022-01-27,2021-12-18,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -79,2021-12-20,2021-12-18,BA.1,313.476190800001,0,Previously infected (Pre-Omicron),BNT162b2,4 -79,2022-01-27,2021-12-18,BA.1,428.646000000001,0,Previously infected (Pre-Omicron),BNT162b2,4 -79,2021-12-20,2021-12-18,BA.2,424.161164400001,0,Previously infected (Pre-Omicron),BNT162b2,4 -79,2022-01-27,2021-12-18,BA.2,1106.54386713216,0,Previously infected (Pre-Omicron),BNT162b2,4 -80,2022-01-26,2022-01-10,Delta,2560,1,Infection naive,mRNA1273,4 -80,2022-04-12,2022-01-10,Delta,2560,1,Infection naive,mRNA1273,4 -80,2022-04-12,2022-01-10,Delta,2560,1,Infection naive,mRNA1273,4 -80,2022-07-20,2022-01-10,Delta,2560,1,Infection naive,mRNA1273,4 -80,2022-10-04,2022-01-10,Delta,2560,1,Infection naive,mRNA1273,4 -80,2022-12-08,2022-01-10,Delta,2560,1,Infection naive,mRNA1273,4 -80,2022-01-26,2022-01-10,BA.1,829.340340599999,0,Infection naive,mRNA1273,4 -80,2022-04-12,2022-01-10,BA.1,490.161451000001,0,Infection naive,mRNA1273,4 -80,2022-04-12,2022-01-10,BA.1,490.161451000001,0,Infection naive,mRNA1273,4 -80,2022-07-20,2022-01-10,BA.1,560.505050999999,0,Infection naive,mRNA1273,4 -80,2022-10-04,2022-01-10,BA.1,527.61151124497,0,Infection naive,mRNA1273,4 -80,2022-01-26,2022-01-10,BA.2,682.097548600003,0,Infection naive,mRNA1273,4 -80,2022-04-12,2022-01-10,BA.2,427.145810499999,0,Infection naive,mRNA1273,4 -80,2022-04-12,2022-01-10,BA.2,427.145810499999,0,Infection naive,mRNA1273,4 -80,2022-07-20,2022-01-10,BA.2,494.910160200001,0,Infection naive,mRNA1273,4 -80,2022-10-04,2022-01-10,BA.2,543.57136262849,0,Infection naive,mRNA1273,4 -80,2022-12-08,2022-01-10,BA.2,1023.50565348644,0,Infection naive,mRNA1273,4 -81,2021-10-20,2021-10-05,Delta,1613.06081980431,0,Infection naive,BNT162b2,3 -81,2022-01-31,2021-10-05,Delta,731.642582100002,0,Infection naive,BNT162b2,3 -81,2022-07-06,2021-10-05,Delta,283.916364800001,0,Infection naive,BNT162b2,3 -81,2022-07-06,2021-10-05,Delta,283.916364800001,0,Infection naive,BNT162b2,3 -81,2021-10-20,2021-10-05,BA.1,561.488470203461,0,Infection naive,BNT162b2,3 -81,2022-01-31,2021-10-05,BA.1,412.429677500001,0,Infection naive,BNT162b2,3 -81,2022-07-06,2021-10-05,BA.1,280.2080351,0,Infection naive,BNT162b2,3 -81,2022-07-06,2021-10-05,BA.1,280.2080351,0,Infection naive,BNT162b2,3 -81,2021-10-20,2021-10-05,BA.2,860.439512263544,0,Infection naive,BNT162b2,3 -81,2022-01-31,2021-10-05,BA.2,249.1567586,0,Infection naive,BNT162b2,3 -81,2022-07-06,2021-10-05,BA.2,157.2636095,0,Infection naive,BNT162b2,3 -81,2022-07-06,2021-10-05,BA.2,157.2636095,0,Infection naive,BNT162b2,3 -82,2021-12-20,2021-12-17,Delta,5,-1,Infection naive,BNT162b2,3 -82,2022-01-26,2021-12-17,Delta,248.720372925193,0,Infection naive,BNT162b2,3 -82,2021-12-20,2021-12-17,BA.1,5,-1,Infection naive,BNT162b2,3 -82,2022-01-26,2021-12-17,BA.1,385.851371049329,0,Infection naive,BNT162b2,3 -82,2021-12-20,2021-12-17,BA.2,93.5188578000003,0,Infection naive,BNT162b2,3 -82,2022-01-26,2021-12-17,BA.2,471.204717896184,0,Infection naive,BNT162b2,3 -83,2021-12-20,2021-12-20,Delta,2560,1,Previously infected (Pre-Omicron),mRNA1273,4 -83,2022-01-06,2021-12-20,Delta,2560,1,Previously infected (Pre-Omicron),mRNA1273,4 -83,2022-03-21,2021-12-20,Delta,2560,1,Previously infected (Pre-Omicron),mRNA1273,4 -83,2022-07-11,2021-12-20,Delta,2560,1,Previously infected (Pre-Omicron),mRNA1273,4 -83,2021-12-20,2021-12-20,BA.1,1377.630189,0,Previously infected (Pre-Omicron),mRNA1273,4 -83,2022-01-06,2021-12-20,BA.1,2560,1,Previously infected (Pre-Omicron),mRNA1273,4 -83,2022-03-21,2021-12-20,BA.1,2560,1,Previously infected (Pre-Omicron),mRNA1273,4 -83,2022-07-11,2021-12-20,BA.1,795.8696726,0,Previously infected (Pre-Omicron),mRNA1273,4 -83,2021-12-20,2021-12-20,BA.2,730.3611464,0,Previously infected (Pre-Omicron),mRNA1273,4 -83,2022-01-06,2021-12-20,BA.2,983.922117299998,0,Previously infected (Pre-Omicron),mRNA1273,4 -83,2022-03-21,2021-12-20,BA.2,877.961425299999,0,Previously infected (Pre-Omicron),mRNA1273,4 -83,2022-07-11,2021-12-20,BA.2,435.462322499999,0,Previously infected (Pre-Omicron),mRNA1273,4 -84,2022-01-06,2021-12-13,Delta,1160.176496,0,Infection naive,BNT162b2,4 -84,2022-03-28,2021-12-13,Delta,1862.423045,0,Infection naive,BNT162b2,4 -84,2022-01-06,2021-12-13,BA.1,1362.022,0,Infection naive,BNT162b2,4 -84,2022-03-28,2021-12-13,BA.1,1438.085801,0,Infection naive,BNT162b2,4 -84,2022-01-06,2021-12-13,BA.2,752.454021800001,0,Infection naive,BNT162b2,4 -84,2022-03-28,2021-12-13,BA.2,1194.223775,0,Infection naive,BNT162b2,4 -85,2022-01-06,2021-12-04,Delta,705.198563751346,0,Infection naive,BNT162b2,3 -85,2022-04-21,2021-12-04,Delta,1405.68412700001,0,Infection naive,BNT162b2,3 -85,2022-01-06,2021-12-04,BA.1,1731.74476597151,0,Infection naive,BNT162b2,3 -85,2022-04-21,2021-12-04,BA.1,830.795437600003,0,Infection naive,BNT162b2,3 -85,2022-01-06,2021-12-04,BA.2,2560,1,Infection naive,BNT162b2,3 -85,2022-04-21,2021-12-04,BA.2,607.57499,0,Infection naive,BNT162b2,3 -86,2021-10-20,2021-10-02,Delta,2242.73221967106,0,Infection naive,BNT162b2,3 -86,2021-12-02,2021-10-02,Delta,478.278417060802,0,Infection naive,BNT162b2,3 -86,2022-06-22,2021-10-02,Delta,867.253876999999,0,Infection naive,BNT162b2,3 -86,2022-09-30,2021-10-02,Delta,440.066649973921,0,Infection naive,BNT162b2,3 -86,2021-10-20,2021-10-02,BA.1,1334.83944884466,0,Infection naive,BNT162b2,3 -86,2021-12-02,2021-10-02,BA.1,456.568570363404,0,Infection naive,BNT162b2,3 -86,2022-06-22,2021-10-02,BA.1,369.630585900001,0,Infection naive,BNT162b2,3 -86,2022-09-30,2021-10-02,BA.1,195.790788319935,0,Infection naive,BNT162b2,3 -86,2021-10-20,2021-10-02,BA.2,1463.51749908181,0,Infection naive,BNT162b2,3 -86,2021-12-02,2021-10-02,BA.2,1022.60895100414,0,Infection naive,BNT162b2,3 -86,2022-06-22,2021-10-02,BA.2,334.482275799999,0,Infection naive,BNT162b2,3 -86,2022-09-30,2021-10-02,BA.2,192.388511149953,0,Infection naive,BNT162b2,3 -87,2021-10-05,2021-10-05,Delta,86.1981966500001,0,Infection naive,BNT162b2,3 -87,2021-10-20,2021-10-05,Delta,634.793822199081,0,Infection naive,BNT162b2,3 -87,2022-01-26,2021-10-05,Delta,128.1016491,0,Infection naive,BNT162b2,3 -87,2021-10-05,2021-10-05,BA.1,58.1035879999999,0,Infection naive,BNT162b2,3 -87,2021-10-20,2021-10-05,BA.1,356.270896028839,0,Infection naive,BNT162b2,3 -87,2022-01-26,2021-10-05,BA.1,41.5711784200001,0,Infection naive,BNT162b2,3 -87,2021-10-05,2021-10-05,BA.2,53.8376226599999,0,Infection naive,BNT162b2,3 -87,2021-10-20,2021-10-05,BA.2,671.420627505641,0,Infection naive,BNT162b2,3 -87,2022-01-26,2021-10-05,BA.2,208.544860611618,0,Infection naive,BNT162b2,3 -88,2021-10-26,2021-10-06,Delta,318.4610847,0,Infection naive,BNT162b2,3 -88,2022-01-18,2021-10-06,Delta,254.676618,0,Infection naive,BNT162b2,3 -88,2022-07-19,2021-10-06,Delta,204.741421500001,0,Infection naive,BNT162b2,3 -88,2021-10-26,2021-10-06,BA.1,201.5365896,0,Infection naive,BNT162b2,3 -88,2022-01-18,2021-10-06,BA.1,95.17268356,0,Infection naive,BNT162b2,3 -89,2022-01-06,2021-11-24,Delta,478.278417060802,0,Infection naive,BNT162b2,3 -89,2022-01-06,2021-11-24,BA.1,198.381923093367,0,Infection naive,BNT162b2,3 -89,2022-01-06,2021-11-24,BA.2,525.304331585598,0,Infection naive,BNT162b2,3 -90,2021-10-27,2021-10-13,Delta,1253.204069,0,Infection naive,BNT162b2,3 -90,2022-01-27,2021-10-13,Delta,777.937842600003,0,Infection naive,BNT162b2,3 -90,2021-10-27,2021-10-13,BA.1,402.783985499999,0,Infection naive,BNT162b2,3 -90,2022-01-27,2021-10-13,BA.1,704.580733000001,0,Infection naive,BNT162b2,3 -91,2021-11-23,2021-11-23,Delta,393.0192523,0,Infection naive,BNT162b2,3 -91,2021-12-07,2021-11-23,Delta,758.413181071472,0,Infection naive,BNT162b2,3 -91,2022-06-22,2021-11-23,Delta,507.6511747,0,Infection naive,BNT162b2,3 -91,2022-12-08,2021-11-23,Delta,385.513323202657,0,Infection naive,BNT162b2,3 -91,2021-11-23,2021-11-23,BA.1,95.08930191,0,Infection naive,BNT162b2,3 -91,2021-12-07,2021-11-23,BA.1,605.97948295064,0,Infection naive,BNT162b2,3 -91,2022-06-22,2021-11-23,BA.1,245.2566903,0,Infection naive,BNT162b2,3 -91,2022-12-08,2021-11-23,BA.1,181.574908335024,0,Infection naive,BNT162b2,3 -91,2021-11-23,2021-11-23,BA.2,167.8018667,0,Infection naive,BNT162b2,3 -91,2021-12-07,2021-11-23,BA.2,682.695664406201,0,Infection naive,BNT162b2,3 -91,2022-06-22,2021-11-23,BA.2,237.8471221,0,Infection naive,BNT162b2,3 -91,2022-12-08,2021-11-23,BA.2,170.320899089179,0,Infection naive,BNT162b2,3 -92,2022-01-26,2021-12-11,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -92,2022-04-21,2021-12-11,Delta,1339.527572,0,Previously infected (Pre-Omicron),BNT162b2,4 -92,2022-04-21,2021-12-11,Delta,1339.527572,0,Previously infected (Pre-Omicron),BNT162b2,4 -92,2022-07-11,2021-12-11,Delta,1047.097936,0,Previously infected (Pre-Omicron),BNT162b2,4 -92,2022-01-26,2021-12-11,BA.1,561.488470200001,0,Previously infected (Pre-Omicron),BNT162b2,4 -92,2022-04-21,2021-12-11,BA.1,491.021450699999,0,Previously infected (Pre-Omicron),BNT162b2,4 -92,2022-04-21,2021-12-11,BA.1,491.021450699999,0,Previously infected (Pre-Omicron),BNT162b2,4 -92,2022-07-11,2021-12-11,BA.1,705.8169363,0,Previously infected (Pre-Omicron),BNT162b2,4 -92,2022-01-26,2021-12-11,BA.2,1403.22214069468,0,Previously infected (Pre-Omicron),BNT162b2,4 -92,2022-04-21,2021-12-11,BA.2,609.708869300002,0,Previously infected (Pre-Omicron),BNT162b2,4 -92,2022-04-21,2021-12-11,BA.2,609.708869300002,0,Previously infected (Pre-Omicron),BNT162b2,4 -92,2022-07-11,2021-12-11,BA.2,514.369532699999,0,Previously infected (Pre-Omicron),BNT162b2,4 -93,2021-10-27,2021-10-12,Delta,461.396063199999,0,Previously infected (Pre-Omicron),BNT162b2,4 -93,2021-10-27,2021-10-12,BA.1,317.346524,0,Previously infected (Pre-Omicron),BNT162b2,4 -93,2022-01-17,2021-10-12,BA.1,340.994632500001,0,Previously infected (Pre-Omicron),BNT162b2,4 -93,2022-06-16,2021-10-12,BA.1,328.094293000001,0,Previously infected (Pre-Omicron),BNT162b2,4 -93,2022-10-27,2021-10-12,BA.1,362.889266906423,0,Previously infected (Pre-Omicron),BNT162b2,4 -94,2022-01-19,2021-12-28,Delta,1292.244697,0,Infection naive,mRNA1273,5 -94,2022-01-19,2021-12-28,BA.1,810.654379200002,0,Infection naive,mRNA1273,5 -94,2022-01-19,2021-12-28,BA.2,455.369609900001,0,Infection naive,mRNA1273,5 -95,2022-01-18,2021-12-11,Delta,2013.52361069303,0,Infection naive,BNT162b2,4 -95,2022-01-18,2021-12-11,BA.1,762.412150017302,0,Infection naive,BNT162b2,4 -95,2022-01-18,2021-12-11,BA.2,1725.68394821212,0,Infection naive,BNT162b2,4 -96,2021-09-24,2021-09-24,Delta,126.4284692,0,Infection naive,BNT162b2,3 -96,2021-10-12,2021-09-24,Delta,516.176062835152,0,Infection naive,BNT162b2,3 -96,2022-01-17,2021-09-24,Delta,996.070109799998,0,Infection naive,BNT162b2,3 -96,2022-07-14,2021-09-24,Delta,702.114817999998,0,Infection naive,BNT162b2,3 -96,2022-10-04,2021-09-24,Delta,678.519842098598,0,Infection naive,BNT162b2,3 -96,2021-09-24,2021-09-24,BA.1,64.3219282100001,0,Infection naive,BNT162b2,3 -96,2021-10-12,2021-09-24,BA.1,322.392963844851,0,Infection naive,BNT162b2,3 -96,2022-01-17,2021-09-24,BA.1,306.4132232,0,Infection naive,BNT162b2,3 -96,2022-07-14,2021-09-24,BA.1,344.2982058,0,Infection naive,BNT162b2,3 -96,2022-10-04,2021-09-24,BA.1,171.970976643965,0,Infection naive,BNT162b2,3 -96,2021-09-24,2021-09-24,BA.2,42.56670654,0,Infection naive,BNT162b2,3 -96,2021-10-12,2021-09-24,BA.2,740.026893096432,0,Infection naive,BNT162b2,3 -96,2022-01-17,2021-09-24,BA.2,282.922704900001,0,Infection naive,BNT162b2,3 -96,2022-07-14,2021-09-24,BA.2,176.8626597,0,Infection naive,BNT162b2,3 -97,2021-12-02,2021-11-07,Delta,345.50742418597,0,Infection naive,BNT162b2,3 -97,2021-12-02,2021-11-07,BA.1,227.648659770731,0,Infection naive,BNT162b2,3 -97,2021-12-02,2021-11-07,BA.2,298.984816192322,0,Infection naive,BNT162b2,3 -98,2022-01-06,2021-12-02,Delta,1344.23216015257,0,Infection naive,BNT162b2,3 -98,2022-04-07,2021-12-02,Delta,2560,1,Infection naive,BNT162b2,3 -98,2022-01-06,2021-12-02,BA.1,659.175264710604,0,Infection naive,BNT162b2,3 -98,2022-04-07,2021-12-02,BA.1,775.894958500002,0,Infection naive,BNT162b2,3 -98,2022-01-06,2021-12-02,BA.2,1049.85488105074,0,Infection naive,BNT162b2,3 -98,2022-04-07,2021-12-02,BA.2,481.221891299999,0,Infection naive,BNT162b2,3 -99,2022-01-26,2022-01-21,Delta,660.331803091456,0,Previously infected (Omicron),BNT162b2,4 -99,2022-02-23,2022-01-21,Delta,2560,1,Previously infected (Omicron),BNT162b2,4 -99,2022-04-21,2022-01-21,Delta,2560,1,Previously infected (Omicron),BNT162b2,4 -99,2022-06-16,2022-01-21,Delta,2560,1,Previously infected (Omicron),BNT162b2,4 -99,2022-12-01,2022-01-21,Delta,2560,1,Previously infected (Omicron),BNT162b2,4 -99,2022-01-26,2022-01-21,BA.1,2343.20467654482,0,Previously infected (Omicron),BNT162b2,4 -99,2022-02-23,2022-01-21,BA.1,2560,1,Previously infected (Omicron),BNT162b2,4 -99,2022-04-21,2022-01-21,BA.1,2560,1,Previously infected (Omicron),BNT162b2,4 -99,2022-06-16,2022-01-21,BA.1,2560,1,Previously infected (Omicron),BNT162b2,4 -99,2022-12-01,2022-01-21,BA.1,2560,1,Previously infected (Omicron),BNT162b2,4 -99,2022-01-26,2022-01-21,BA.2,2560,1,Previously infected (Omicron),BNT162b2,4 -99,2022-02-23,2022-01-21,BA.2,2560,1,Previously infected (Omicron),BNT162b2,4 -99,2022-04-21,2022-01-21,BA.2,1852.65435,0,Previously infected (Omicron),BNT162b2,4 -99,2022-06-16,2022-01-21,BA.2,1968.156682,0,Previously infected (Omicron),BNT162b2,4 -99,2022-12-01,2022-01-21,BA.2,2152.21962566734,0,Previously infected (Omicron),BNT162b2,4 -100,2022-01-19,2022-01-01,Delta,2560,1,Infection naive,BNT162b2,4 -100,2022-01-19,2022-01-01,BA.1,1174.500613,0,Infection naive,BNT162b2,4 -100,2022-01-19,2022-01-01,BA.2,724.6224033,0,Infection naive,BNT162b2,4 -101,2021-10-12,2021-09-24,Delta,946.698864667414,0,Infection naive,BNT162b2,3 -101,2021-12-21,2021-09-24,Delta,765.089836800002,0,Infection naive,BNT162b2,3 -101,2021-10-12,2021-09-24,BA.1,906.10609793011,0,Infection naive,BNT162b2,3 -101,2021-12-21,2021-09-24,BA.1,732.926266099998,0,Infection naive,BNT162b2,3 -101,2021-10-12,2021-09-24,BA.2,1109.45732967998,0,Infection naive,BNT162b2,3 -101,2021-12-21,2021-09-24,BA.2,476.604522400001,0,Infection naive,BNT162b2,3 -102,2021-10-21,2021-10-21,Delta,5,-1,Infection naive,BNT162b2,3 -102,2021-11-15,2021-10-21,Delta,388.226020488708,0,Infection naive,BNT162b2,3 -102,2022-01-12,2021-10-21,Delta,265.3871612,0,Infection naive,BNT162b2,3 -102,2022-07-06,2021-10-21,Delta,77.8649621299998,0,Infection naive,BNT162b2,3 -102,2022-10-31,2021-10-21,Delta,59.9136687389031,0,Infection naive,BNT162b2,3 -102,2021-10-21,2021-10-21,BA.1,5,-1,Infection naive,BNT162b2,3 -102,2021-11-15,2021-10-21,BA.1,334.775575709082,0,Infection naive,BNT162b2,3 -102,2022-01-12,2021-10-21,BA.1,113.1101451,0,Infection naive,BNT162b2,3 -102,2022-07-06,2021-10-21,BA.1,100.5758351,0,Infection naive,BNT162b2,3 -102,2022-10-31,2021-10-21,BA.1,41.353131194697,0,Infection naive,BNT162b2,3 -102,2021-10-21,2021-10-21,BA.2,5,-1,Infection naive,BNT162b2,3 -102,2021-11-15,2021-10-21,BA.2,434.318787559875,0,Infection naive,BNT162b2,3 -102,2022-01-12,2021-10-21,BA.2,186.903521306488,0,Infection naive,BNT162b2,3 -102,2022-07-06,2021-10-21,BA.2,97.6228182400002,0,Infection naive,BNT162b2,3 -102,2022-10-31,2021-10-21,BA.2,49.1901673085593,0,Infection naive,BNT162b2,3 -103,2022-01-06,2021-12-10,Delta,1426.78617904542,0,Previously infected (Pre-Omicron),BNT162b2,4 -103,2022-01-06,2021-12-10,BA.1,855.176489958022,0,Previously infected (Pre-Omicron),BNT162b2,4 -103,2022-01-06,2021-12-10,BA.2,2405.63596138669,0,Previously infected (Pre-Omicron),BNT162b2,4 -104,2022-01-11,2021-12-06,Delta,904.519098069626,0,Previously infected (Pre-Omicron),BNT162b2,4 -104,2022-01-11,2021-12-06,BA.1,793.084261557086,0,Previously infected (Pre-Omicron),BNT162b2,4 -104,2022-01-11,2021-12-06,BA.2,1021.71303413094,0,Previously infected (Pre-Omicron),BNT162b2,4 -105,2022-01-19,2022-01-06,Delta,1280.967756,0,Infection naive,BNT162b2,4 -105,2022-01-19,2022-01-06,BA.1,1056.316015,0,Infection naive,BNT162b2,4 -105,2022-01-19,2022-01-06,BA.2,526.687425899999,0,Infection naive,BNT162b2,4 -106,2021-10-21,2021-10-01,Delta,47.7877573284979,0,Infection naive,BNT162b2,3 -106,2022-06-22,2021-10-01,Delta,40.88461104,0,Infection naive,BNT162b2,3 -106,2022-10-27,2021-10-01,Delta,40.813003674215,0,Infection naive,BNT162b2,3 -106,2021-10-21,2021-10-01,BA.1,5,-1,Infection naive,BNT162b2,3 -106,2021-10-21,2021-10-01,BA.2,5,-1,Infection naive,BNT162b2,3 -107,2022-01-06,2021-12-06,Delta,396.479179303829,0,Infection naive,BNT162b2,3 -107,2022-03-21,2021-12-06,Delta,417.521739700002,0,Infection naive,BNT162b2,3 -107,2022-01-06,2021-12-06,BA.1,307.219990500133,0,Infection naive,BNT162b2,3 -107,2022-03-21,2021-12-06,BA.1,297.1560255,0,Infection naive,BNT162b2,3 -107,2022-01-06,2021-12-06,BA.2,352.852443564168,0,Infection naive,BNT162b2,3 -107,2022-03-21,2021-12-06,BA.2,216.744635999999,0,Infection naive,BNT162b2,3 -108,2022-01-18,2022-01-04,Delta,935.973014299998,0,Infection naive,BNT162b2,5 -108,2022-01-18,2022-01-04,BA.1,688.102363199999,0,Infection naive,BNT162b2,5 -108,2022-01-18,2022-01-04,BA.2,411.3466269,0,Infection naive,BNT162b2,5 -109,2022-01-19,2021-12-22,Delta,2560,1,Previously infected (Pre-Omicron),mRNA1273,4 -109,2022-03-21,2021-12-22,Delta,2560,1,Previously infected (Pre-Omicron),mRNA1273,4 -109,2022-07-13,2021-12-22,Delta,1716.632471,0,Previously infected (Pre-Omicron),mRNA1273,4 -109,2022-12-15,2021-12-22,Delta,1978.53439863325,0,Previously infected (Pre-Omicron),mRNA1273,4 -109,2022-01-19,2021-12-22,BA.1,1898.684348,0,Previously infected (Pre-Omicron),mRNA1273,4 -109,2022-03-21,2021-12-22,BA.1,1320.873296,0,Previously infected (Pre-Omicron),mRNA1273,4 -109,2022-07-13,2021-12-22,BA.1,692.3371593,0,Previously infected (Pre-Omicron),mRNA1273,4 -109,2022-12-15,2021-12-22,BA.1,551.731425861521,0,Previously infected (Pre-Omicron),mRNA1273,4 -109,2022-01-19,2021-12-22,BA.2,940.908222600001,0,Previously infected (Pre-Omicron),mRNA1273,4 -109,2022-03-21,2021-12-22,BA.2,779.9861056,0,Previously infected (Pre-Omicron),mRNA1273,4 -109,2022-07-13,2021-12-22,BA.2,474.9364861,0,Previously infected (Pre-Omicron),mRNA1273,4 -109,2022-12-15,2021-12-22,BA.2,456.968924936853,0,Previously infected (Pre-Omicron),mRNA1273,4 -110,2021-11-30,2021-11-19,Delta,450.605170671148,0,Previously infected (Pre-Omicron),BNT162b2,4 -110,2022-01-17,2021-11-19,Delta,243.756536681588,0,Previously infected (Pre-Omicron),BNT162b2,4 -110,2022-07-11,2021-11-19,Delta,183.6556791,0,Previously infected (Pre-Omicron),BNT162b2,4 -110,2022-07-11,2021-11-19,Delta,183.6556791,0,Previously infected (Pre-Omicron),BNT162b2,4 -110,2021-11-30,2021-11-19,BA.1,48.7609029313075,0,Previously infected (Pre-Omicron),BNT162b2,4 -110,2022-01-17,2021-11-19,BA.1,5,-1,Previously infected (Pre-Omicron),BNT162b2,4 -110,2021-11-30,2021-11-19,BA.2,85.2963225104831,0,Previously infected (Pre-Omicron),BNT162b2,4 -110,2022-01-17,2021-11-19,BA.2,68.2123499119002,0,Previously infected (Pre-Omicron),BNT162b2,4 -110,2022-07-11,2021-11-19,BA.2,5,-1,Previously infected (Pre-Omicron),BNT162b2,4 -110,2022-07-11,2021-11-19,BA.2,5,-1,Previously infected (Pre-Omicron),BNT162b2,4 -111,2022-01-12,2021-12-06,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -111,2022-07-27,2021-12-06,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -111,2022-01-12,2021-12-06,BA.1,434.699631799999,0,Previously infected (Pre-Omicron),BNT162b2,4 -111,2022-07-27,2021-12-06,BA.1,350.079939108501,0,Previously infected (Pre-Omicron),BNT162b2,4 -111,2022-01-12,2021-12-06,BA.2,189.7093066,0,Previously infected (Pre-Omicron),BNT162b2,4 -111,2022-07-27,2021-12-06,BA.2,365.442768096204,0,Previously infected (Pre-Omicron),BNT162b2,4 -112,2021-12-20,2021-12-06,Delta,485.883993530426,0,Infection naive,BNT162b2,3 -112,2021-12-20,2021-12-06,BA.1,674.960901206037,0,Infection naive,BNT162b2,3 -112,2021-12-20,2021-12-06,BA.2,855.176489958022,0,Infection naive,BNT162b2,3 -113,2021-11-01,2021-10-15,Delta,705.8169363,0,Previously infected (Pre-Omicron),BNT162b2,4 -113,2022-01-19,2021-10-15,Delta,182.8525756,0,Previously infected (Pre-Omicron),BNT162b2,4 -113,2022-07-13,2021-10-15,Delta,256.2439771,0,Previously infected (Pre-Omicron),BNT162b2,4 -113,2022-07-13,2021-10-15,Delta,256.2439771,0,Previously infected (Pre-Omicron),BNT162b2,4 -113,2021-11-01,2021-10-15,BA.1,536.001581899998,0,Previously infected (Pre-Omicron),BNT162b2,4 -113,2022-01-19,2021-10-15,BA.1,186.0862154,0,Previously infected (Pre-Omicron),BNT162b2,4 -113,2022-07-13,2021-10-15,BA.1,260.090697499999,0,Previously infected (Pre-Omicron),BNT162b2,4 -113,2022-07-13,2021-10-15,BA.1,260.090697499999,0,Previously infected (Pre-Omicron),BNT162b2,4 -113,2021-11-01,2021-10-15,BA.2,441.999458800001,0,Previously infected (Pre-Omicron),BNT162b2,4 -113,2022-01-19,2021-10-15,BA.2,174.5525954,0,Previously infected (Pre-Omicron),BNT162b2,4 -113,2022-07-13,2021-10-15,BA.2,121.85892,0,Previously infected (Pre-Omicron),BNT162b2,4 -113,2022-07-13,2021-10-15,BA.2,121.85892,0,Previously infected (Pre-Omicron),BNT162b2,4 -114,2022-01-31,2021-12-30,Delta,2560,1,Infection naive,BNT162b2,3 -114,2022-01-31,2021-12-30,BA.1,2192.200965,0,Infection naive,BNT162b2,3 -114,2022-01-31,2021-12-30,BA.2,2560,1,Infection naive,BNT162b2,3 -115,2021-09-22,2021-09-03,Delta,881.817503800291,0,Infection naive,AZD1222,3 -115,2022-01-12,2021-09-03,Delta,966.824398900001,0,Infection naive,AZD1222,3 -115,2021-09-22,2021-09-03,BA.1,619.404450928868,0,Infection naive,AZD1222,3 -115,2022-01-12,2021-09-03,BA.1,135.6117638,0,Infection naive,AZD1222,3 -115,2021-09-22,2021-09-03,BA.2,1429.28950868425,0,Infection naive,AZD1222,3 -115,2022-01-12,2021-09-03,BA.2,427.895247765584,0,Infection naive,AZD1222,3 -116,2022-01-06,2021-12-21,Delta,905.312250251336,0,Infection naive,BNT162b2,3 -116,2022-04-21,2021-12-21,Delta,1223.894781,0,Infection naive,BNT162b2,3 -116,2022-07-14,2021-12-21,Delta,1842.936893,0,Infection naive,BNT162b2,3 -116,2023-01-05,2021-12-21,Delta,858.932495161422,0,Infection naive,BNT162b2,3 -116,2022-01-06,2021-12-21,BA.1,1224.96798616404,0,Infection naive,BNT162b2,3 -116,2022-04-21,2021-12-21,BA.1,667.313770799999,0,Infection naive,BNT162b2,3 -116,2022-07-14,2021-12-21,BA.1,625.4052728,0,Infection naive,BNT162b2,3 -116,2023-01-05,2021-12-21,BA.1,615.076413434405,0,Infection naive,BNT162b2,3 -116,2022-01-06,2021-12-21,BA.2,2560,1,Infection naive,BNT162b2,3 -116,2022-04-21,2021-12-21,BA.2,524.844107700001,0,Infection naive,BNT162b2,3 -116,2022-07-14,2021-12-21,BA.2,389.589518799999,0,Infection naive,BNT162b2,3 -116,2023-01-05,2021-12-21,BA.2,624.309906535474,0,Infection naive,BNT162b2,3 -117,2022-01-06,2021-12-21,Delta,1546.60443626851,0,Infection naive,mRNA1273,3 -117,2022-04-12,2021-12-21,Delta,820.663122000002,0,Infection naive,mRNA1273,3 -117,2022-07-21,2021-12-21,Delta,287.1699249,0,Infection naive,mRNA1273,3 -117,2022-12-08,2021-12-21,Delta,181.256888894638,0,Infection naive,mRNA1273,3 -117,2022-01-06,2021-12-21,BA.1,1130.06748942786,0,Infection naive,mRNA1273,3 -117,2022-04-12,2021-12-21,BA.1,461.800650900001,0,Infection naive,mRNA1273,3 -117,2022-07-21,2021-12-21,BA.1,204.3828271,0,Infection naive,mRNA1273,3 -117,2022-12-08,2021-12-21,BA.1,161.595244946913,0,Infection naive,mRNA1273,3 -117,2022-01-06,2021-12-21,BA.2,2560,1,Infection naive,mRNA1273,3 -117,2022-04-12,2021-12-21,BA.2,323.525248199999,0,Infection naive,mRNA1273,3 -117,2022-07-21,2021-12-21,BA.2,141.3149794,0,Infection naive,mRNA1273,3 -117,2022-12-08,2021-12-21,BA.2,98.5685930758967,0,Infection naive,mRNA1273,3 -118,2022-01-19,2021-12-20,Delta,1060.025929,0,Previously infected (Omicron),BNT162b2,5 -118,2022-04-19,2021-12-20,Delta,1384.894172,0,Previously infected (Omicron),BNT162b2,5 -118,2022-07-11,2021-12-20,Delta,594.927635100002,0,Previously infected (Omicron),BNT162b2,5 -118,2022-07-11,2021-12-20,Delta,594.927635100002,0,Previously infected (Omicron),BNT162b2,5 -118,2022-01-19,2021-12-20,BA.1,747.196311400003,0,Previously infected (Omicron),BNT162b2,5 -118,2022-04-19,2021-12-20,BA.1,1048.935094,0,Previously infected (Omicron),BNT162b2,5 -118,2022-07-11,2021-12-20,BA.1,666.7291313,0,Previously infected (Omicron),BNT162b2,5 -118,2022-07-11,2021-12-20,BA.1,666.7291313,0,Previously infected (Omicron),BNT162b2,5 -118,2022-01-19,2021-12-20,BA.2,888.801174300003,0,Previously infected (Omicron),BNT162b2,5 -118,2022-04-19,2021-12-20,BA.2,600.6913244,0,Previously infected (Omicron),BNT162b2,5 -118,2022-07-11,2021-12-20,BA.2,400.6713215,0,Previously infected (Omicron),BNT162b2,5 -118,2022-07-11,2021-12-20,BA.2,400.6713215,0,Previously infected (Omicron),BNT162b2,5 -119,2021-10-20,2021-09-27,Delta,1825.25374202778,0,Previously infected (Pre-Omicron),BNT162b2,4 -119,2022-01-06,2021-09-27,Delta,868.014352099999,0,Previously infected (Pre-Omicron),BNT162b2,4 -119,2021-10-20,2021-09-27,BA.1,995.197443873579,0,Previously infected (Pre-Omicron),BNT162b2,4 -119,2022-01-06,2021-09-27,BA.1,901.353432100001,0,Previously infected (Pre-Omicron),BNT162b2,4 -119,2021-10-20,2021-09-27,BA.2,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -119,2022-01-06,2021-09-27,BA.2,1316.25046,0,Previously infected (Pre-Omicron),BNT162b2,4 -120,2022-01-26,2021-12-19,Delta,2560,1,Previously infected (Pre-Omicron),mRNA1273,4 -120,2022-04-21,2021-12-19,Delta,1026.200481,0,Previously infected (Pre-Omicron),mRNA1273,4 -120,2022-04-21,2021-12-19,Delta,1026.200481,0,Previously infected (Pre-Omicron),mRNA1273,4 -120,2022-01-26,2021-12-19,BA.1,732.284142800002,0,Previously infected (Pre-Omicron),mRNA1273,4 -120,2022-04-21,2021-12-19,BA.1,429.021869900001,0,Previously infected (Pre-Omicron),mRNA1273,4 -120,2022-04-21,2021-12-19,BA.1,429.021869900001,0,Previously infected (Pre-Omicron),mRNA1273,4 -120,2022-01-26,2021-12-19,BA.2,2232.92503000905,0,Previously infected (Pre-Omicron),mRNA1273,4 -120,2022-04-21,2021-12-19,BA.2,416.0604833,0,Previously infected (Pre-Omicron),mRNA1273,4 -120,2022-04-21,2021-12-19,BA.2,416.0604833,0,Previously infected (Pre-Omicron),mRNA1273,4 -121,2022-01-11,2021-11-22,Delta,319.859791848912,0,Previously infected (Pre-Omicron),BNT162b2,4 -121,2022-01-11,2021-11-22,BA.1,361.936310663897,0,Previously infected (Pre-Omicron),BNT162b2,4 -121,2022-01-11,2021-11-22,BA.2,732.926266060021,0,Previously infected (Pre-Omicron),BNT162b2,4 -122,2022-01-17,2021-12-13,Delta,1809.325428,0,Infection naive,BNT162b2,4 -122,2022-07-12,2021-12-13,Delta,1682.372782,0,Infection naive,BNT162b2,4 -122,2022-07-12,2021-12-13,Delta,1682.372782,0,Infection naive,BNT162b2,4 -122,2022-01-17,2021-12-13,BA.1,1423.03940300001,0,Infection naive,BNT162b2,4 -122,2022-07-12,2021-12-13,BA.1,1021.713034,0,Infection naive,BNT162b2,4 -122,2022-07-12,2021-12-13,BA.1,1021.713034,0,Infection naive,BNT162b2,4 -122,2022-01-17,2021-12-13,BA.2,571.919125600001,0,Infection naive,BNT162b2,4 -122,2022-07-12,2021-12-13,BA.2,800.066142600001,0,Infection naive,BNT162b2,4 -122,2022-07-12,2021-12-13,BA.2,800.066142600001,0,Infection naive,BNT162b2,4 -123,2021-12-14,2021-11-23,Delta,751.794790045685,0,Infection naive,BNT162b2,3 -123,2021-12-14,2021-11-23,BA.1,584.077350753164,0,Infection naive,BNT162b2,3 -123,2021-12-14,2021-11-23,BA.2,688.102363162634,0,Infection naive,BNT162b2,3 -124,2021-10-27,2021-10-09,Delta,851.436909299999,0,Infection naive,BNT162b2,3 -124,2021-12-02,2021-10-09,Delta,643.758814517845,0,Infection naive,BNT162b2,3 -124,2021-10-27,2021-10-09,BA.1,579.996158500001,0,Infection naive,BNT162b2,3 -124,2021-12-02,2021-10-09,BA.1,525.304331585598,0,Infection naive,BNT162b2,3 -125,2021-10-20,2021-10-04,Delta,239.3109074,0,Infection naive,BNT162b2,3 -125,2022-01-19,2021-10-04,Delta,328.3819914,0,Infection naive,BNT162b2,3 -125,2021-10-20,2021-10-04,BA.1,176.8626597,0,Infection naive,BNT162b2,3 -125,2022-01-19,2021-10-04,BA.1,219.4206732,0,Infection naive,BNT162b2,3 -126,2022-02-08,2022-01-18,Delta,1171.416345,0,Infection naive,BNT162b2,4 -126,2022-08-09,2022-01-18,Delta,1434.3093521188,0,Infection naive,BNT162b2,4 -126,2022-02-08,2022-01-18,BA.1,891.922755200002,0,Infection naive,BNT162b2,4 -126,2022-08-09,2022-01-18,BA.1,799.365197432719,0,Infection naive,BNT162b2,4 -126,2022-02-08,2022-01-18,BA.2,398.569738900001,0,Infection naive,BNT162b2,4 -126,2022-08-09,2022-01-18,BA.2,484.608050076034,0,Infection naive,BNT162b2,4 -127,2022-01-12,2021-12-10,Delta,2157.886289,0,Previously infected (Pre-Omicron),BNT162b2,4 -127,2022-01-12,2021-12-10,BA.1,788.233228899999,0,Previously infected (Pre-Omicron),BNT162b2,4 -127,2022-01-12,2021-12-10,BA.2,1028.000974,0,Previously infected (Pre-Omicron),BNT162b2,4 -128,2021-12-14,2021-12-14,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -128,2022-01-11,2021-12-14,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -128,2022-03-21,2021-12-14,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -128,2022-06-22,2021-12-14,Delta,1888.725457,0,Previously infected (Pre-Omicron),BNT162b2,4 -128,2022-10-20,2021-12-14,Delta,1428.03729532716,0,Previously infected (Pre-Omicron),BNT162b2,4 -128,2021-12-14,2021-12-14,BA.1,761.076822999998,0,Previously infected (Pre-Omicron),BNT162b2,4 -128,2022-01-11,2021-12-14,BA.1,1067.484891,0,Previously infected (Pre-Omicron),BNT162b2,4 -128,2022-03-21,2021-12-14,BA.1,673.188437100001,0,Previously infected (Pre-Omicron),BNT162b2,4 -128,2022-06-22,2021-12-14,BA.1,585.102128100001,0,Previously infected (Pre-Omicron),BNT162b2,4 -128,2022-10-20,2021-12-14,BA.1,406.329875859312,0,Previously infected (Pre-Omicron),BNT162b2,4 -128,2021-12-14,2021-12-14,BA.2,1251.009145,0,Previously infected (Pre-Omicron),BNT162b2,4 -128,2022-01-11,2021-12-14,BA.2,1119.224387,0,Previously infected (Pre-Omicron),BNT162b2,4 -128,2022-03-21,2021-12-14,BA.2,674.369561900001,0,Previously infected (Pre-Omicron),BNT162b2,4 -128,2022-06-22,2021-12-14,BA.2,652.850416600002,0,Previously infected (Pre-Omicron),BNT162b2,4 -128,2022-10-20,2021-12-14,BA.2,630.910999527615,0,Previously infected (Pre-Omicron),BNT162b2,4 -129,2022-01-18,2021-12-21,Delta,594.406413669098,0,Infection naive,BNT162b2,3 -129,2022-01-18,2021-12-21,BA.1,482.4889192154,0,Infection naive,BNT162b2,3 -129,2022-01-18,2021-12-21,BA.2,1110.43018752612,0,Infection naive,BNT162b2,3 -130,2022-01-26,2021-12-11,Delta,248.938470151488,0,Infection naive,BNT162b2,3 -130,2022-04-07,2021-12-11,Delta,107.1274787,0,Infection naive,BNT162b2,3 -130,2022-01-26,2021-12-11,BA.1,97.1959257665426,0,Infection naive,BNT162b2,3 -130,2022-04-07,2021-12-11,BA.1,126.5393315,0,Infection naive,BNT162b2,3 -130,2022-01-26,2021-12-11,BA.2,216.365018507366,0,Infection naive,BNT162b2,3 -130,2022-04-07,2021-12-11,BA.2,109.9817347,0,Infection naive,BNT162b2,3 -131,2022-01-17,2021-12-09,Delta,191.715183458719,0,Infection naive,BNT162b2,3 -131,2022-01-17,2021-12-09,BA.1,110.174700267007,0,Infection naive,BNT162b2,3 -131,2022-01-17,2021-12-09,BA.2,448.241677271544,0,Infection naive,BNT162b2,3 -132,2021-10-21,2021-09-30,Delta,1329.00236159531,0,Infection naive,BNT162b2,3 -132,2022-01-11,2021-09-30,Delta,564.944045000001,0,Infection naive,BNT162b2,3 -132,2022-07-27,2021-09-30,Delta,222.909897582925,0,Infection naive,BNT162b2,3 -132,2021-10-21,2021-09-30,BA.1,560.505051014568,0,Infection naive,BNT162b2,3 -132,2022-01-11,2021-09-30,BA.1,478.6978085,0,Infection naive,BNT162b2,3 -132,2022-07-27,2021-09-30,BA.1,167.801866746035,0,Infection naive,BNT162b2,3 -132,2021-10-21,2021-09-30,BA.2,830.795437608514,0,Infection naive,BNT162b2,3 -132,2022-01-11,2021-09-30,BA.2,328.958145200001,0,Infection naive,BNT162b2,3 -132,2022-07-27,2021-09-30,BA.2,222.714604222492,0,Infection naive,BNT162b2,3 -133,2022-01-11,2021-12-09,Delta,201.183608230365,0,Infection naive,"",1 -133,2022-01-11,2021-12-09,BA.1,225.266818316376,0,Infection naive,"",1 -133,2022-01-11,2021-12-09,BA.2,220.577636829959,0,Infection naive,"",1 -134,2022-01-11,2021-11-26,Delta,422.306360200001,0,Previously infected (Pre-Omicron),mRNA1273,5 -134,2022-01-11,2021-11-26,BA.1,213.3519169,0,Previously infected (Pre-Omicron),mRNA1273,5 -134,2022-01-11,2021-11-26,BA.2,153.9899911,0,Previously infected (Pre-Omicron),mRNA1273,5 -135,2021-09-29,2021-09-29,Delta,452.584265500002,0,Infection naive,BNT162b2,3 -135,2021-09-29,2021-09-29,BA.1,205.1006451,0,Infection naive,BNT162b2,3 -135,2021-09-29,2021-09-29,BA.2,130.1387196,0,Infection naive,BNT162b2,3 -136,2022-01-19,2022-01-03,Delta,2560,1,Infection naive,BNT162b2,3 -136,2022-07-06,2022-01-03,Delta,1133.042888,0,Infection naive,BNT162b2,3 -136,2022-01-19,2022-01-03,BA.1,1170.390057,0,Infection naive,BNT162b2,3 -136,2022-07-06,2022-01-03,BA.1,895.055299400003,0,Infection naive,BNT162b2,3 -136,2022-12-15,2022-01-03,BA.1,1193.17750477203,0,Infection naive,BNT162b2,3 -136,2022-01-19,2022-01-03,BA.2,2560,1,Infection naive,BNT162b2,3 -136,2022-07-06,2022-01-03,BA.2,952.525144200001,0,Infection naive,BNT162b2,3 -136,2022-12-15,2022-01-03,BA.2,1712.12455101151,0,Infection naive,BNT162b2,3 -137,2021-10-26,2021-10-08,Delta,729.0819551,0,Infection naive,BNT162b2,3 -137,2022-01-18,2021-10-08,Delta,893.487654462252,0,Infection naive,BNT162b2,3 -137,2021-10-26,2021-10-08,BA.1,910.0857901,0,Infection naive,BNT162b2,3 -137,2022-01-18,2021-10-08,BA.1,607.57498998905,0,Infection naive,BNT162b2,3 -138,2022-02-04,2022-01-23,Delta,2560,1,Infection naive,mRNA1273,5 -138,2022-02-04,2022-01-23,BA.1,1152.069859,0,Infection naive,mRNA1273,5 -138,2022-02-04,2022-01-23,BA.2,710.160753399998,0,Infection naive,mRNA1273,5 -139,2022-01-27,2021-12-26,Delta,1053.542103,0,Infection naive,BNT162b2,4 -139,2022-04-19,2021-12-26,Delta,527.149266099999,0,Infection naive,BNT162b2,4 -139,2022-04-19,2021-12-26,Delta,527.149266099999,0,Infection naive,BNT162b2,4 -139,2022-01-27,2021-12-26,BA.1,931.8801205,0,Infection naive,BNT162b2,4 -139,2022-04-19,2021-12-26,BA.1,732.926266099998,0,Infection naive,BNT162b2,4 -139,2022-04-19,2021-12-26,BA.1,732.926266099998,0,Infection naive,BNT162b2,4 -139,2022-01-27,2021-12-26,BA.2,519.352770993268,0,Infection naive,BNT162b2,4 -139,2022-04-19,2021-12-26,BA.2,269.607344,0,Infection naive,BNT162b2,4 -139,2022-04-19,2021-12-26,BA.2,269.607344,0,Infection naive,BNT162b2,4 -140,2021-12-21,2021-12-06,Delta,2065.3599553615,0,Previously infected (Pre-Omicron),BNT162b2,4 -140,2022-04-07,2021-12-06,Delta,1292.244697,0,Previously infected (Pre-Omicron),BNT162b2,4 -140,2021-12-21,2021-12-06,BA.1,975.335793284432,0,Previously infected (Pre-Omicron),BNT162b2,4 -140,2022-04-07,2021-12-06,BA.1,418.621048999999,0,Previously infected (Pre-Omicron),BNT162b2,4 -140,2021-12-21,2021-12-06,BA.2,1095.9264755573,0,Previously infected (Pre-Omicron),BNT162b2,4 -140,2022-04-07,2021-12-06,BA.2,314.853003900001,0,Previously infected (Pre-Omicron),BNT162b2,4 -141,2022-01-31,2022-01-08,Delta,2560,1,Previously infected (Pre-Omicron),mRNA1273,4 -141,2022-05-03,2022-01-08,Delta,1317.40465,0,Previously infected (Pre-Omicron),mRNA1273,4 -141,2022-12-15,2022-01-08,Delta,2560,1,Previously infected (Pre-Omicron),mRNA1273,4 -141,2022-01-31,2022-01-08,BA.1,1247.723964,0,Previously infected (Pre-Omicron),mRNA1273,4 -141,2022-05-03,2022-01-08,BA.1,449.028127800001,0,Previously infected (Pre-Omicron),mRNA1273,4 -141,2022-12-15,2022-01-08,BA.1,443.940756585861,0,Previously infected (Pre-Omicron),mRNA1273,4 -141,2022-01-31,2022-01-08,BA.2,685.0933769,0,Previously infected (Pre-Omicron),mRNA1273,4 -141,2022-05-03,2022-01-08,BA.2,205.6406626,0,Previously infected (Pre-Omicron),mRNA1273,4 -142,2021-10-20,2021-10-06,Delta,889.580543835703,0,Infection naive,BNT162b2,3 -142,2022-01-17,2021-10-06,Delta,257.5951031,0,Infection naive,BNT162b2,3 -142,2021-10-20,2021-10-06,BA.1,365.122600409615,0,Infection naive,BNT162b2,3 -142,2022-01-17,2021-10-06,BA.1,160.6068206,0,Infection naive,BNT162b2,3 -142,2021-10-20,2021-10-06,BA.2,437.758432735648,0,Infection naive,BNT162b2,3 -142,2022-01-17,2021-10-06,BA.2,175.9349878,0,Infection naive,BNT162b2,3 -143,2021-10-12,2021-09-22,Delta,578.980323970047,0,Infection naive,BNT162b2,3 -143,2021-10-12,2021-09-22,BA.1,802.876074867062,0,Infection naive,BNT162b2,3 -143,2021-10-12,2021-09-22,BA.2,769.798437800932,0,Infection naive,BNT162b2,3 -144,2021-09-30,2021-09-30,Delta,207.4510108,0,Infection naive,BNT162b2,3 -144,2021-10-21,2021-09-30,Delta,707.675309266372,0,Infection naive,BNT162b2,3 -144,2022-01-18,2021-09-30,Delta,762.41215,0,Infection naive,BNT162b2,3 -144,2022-07-14,2021-09-30,Delta,305.8765556,0,Infection naive,BNT162b2,3 -144,2022-10-21,2021-09-30,Delta,282.427179783672,0,Infection naive,BNT162b2,3 -144,2021-09-30,2021-09-30,BA.1,123.9052733,0,Infection naive,BNT162b2,3 -144,2021-10-21,2021-09-30,BA.1,751.136135887677,0,Infection naive,BNT162b2,3 -144,2022-01-18,2021-09-30,BA.1,491.4520162,0,Infection naive,BNT162b2,3 -144,2022-07-14,2021-09-30,BA.1,298.9848162,0,Infection naive,BNT162b2,3 -144,2022-10-21,2021-09-30,BA.1,222.909897582925,0,Infection naive,BNT162b2,3 -144,2021-09-30,2021-09-30,BA.2,123.0394955,0,Infection naive,BNT162b2,3 -144,2021-10-21,2021-09-30,BA.2,1059.09723044599,0,Infection naive,BNT162b2,3 -144,2022-01-18,2021-09-30,BA.2,328.3819914,0,Infection naive,BNT162b2,3 -144,2022-07-14,2021-09-30,BA.2,196.47843,0,Infection naive,BNT162b2,3 -144,2022-10-21,2021-09-30,BA.2,262.610469488951,0,Infection naive,BNT162b2,3 -145,2022-01-18,2021-12-21,Delta,2050.92842300001,0,Infection naive,BNT162b2,5 -145,2022-01-18,2021-12-21,BA.1,1082.560643,0,Infection naive,BNT162b2,5 -145,2022-01-18,2021-12-21,BA.2,663.813607499998,0,Infection naive,BNT162b2,5 -146,2022-01-24,2022-01-12,Delta,480.800288500001,0,Infection naive,BNT162b2,5 -146,2022-01-24,2022-01-12,BA.1,520.2639875,0,Infection naive,BNT162b2,5 -146,2022-01-24,2022-01-12,BA.2,405.2628435,0,Infection naive,BNT162b2,5 -147,2022-01-17,2021-12-20,Delta,2560,1,Infection naive,BNT162b2,5 -147,2022-01-17,2021-12-20,BA.1,2560,1,Infection naive,BNT162b2,5 -147,2022-01-17,2021-12-20,BA.2,1992.456524,0,Infection naive,BNT162b2,5 -148,2021-09-14,2021-09-05,Delta,1880.46629489882,0,Previously infected (Pre-Omicron),BNT162b2,2 -148,2021-09-14,2021-09-05,BA.1,411.707327372007,0,Previously infected (Pre-Omicron),BNT162b2,2 -148,2021-09-14,2021-09-05,BA.2,405.973886610915,0,Previously infected (Pre-Omicron),BNT162b2,2 -149,2022-03-01,2022-01-13,Delta,2560,1,Previously infected (Omicron),BNT162b2,4 -149,2022-04-21,2022-01-13,Delta,2560,1,Previously infected (Omicron),BNT162b2,4 -149,2022-04-21,2022-01-13,Delta,2560,1,Previously infected (Omicron),BNT162b2,4 -149,2022-03-01,2022-01-13,BA.1,507.206416999999,0,Previously infected (Omicron),BNT162b2,4 -149,2022-04-21,2022-01-13,BA.1,469.55558,0,Previously infected (Omicron),BNT162b2,4 -149,2022-04-21,2022-01-13,BA.1,469.55558,0,Previously infected (Omicron),BNT162b2,4 -149,2022-03-01,2022-01-13,BA.2,926.992266000003,0,Previously infected (Omicron),BNT162b2,4 -149,2022-04-21,2022-01-13,BA.2,736.145338300002,0,Previously infected (Omicron),BNT162b2,4 -149,2022-04-21,2022-01-13,BA.2,736.145338300002,0,Previously infected (Omicron),BNT162b2,4 -150,2022-01-18,2022-01-18,Delta,570.417251700001,0,Infection naive,BNT162b2,5 -150,2022-01-18,2022-01-18,BA.1,278.738300900001,0,Infection naive,BNT162b2,5 -150,2022-01-18,2022-01-18,BA.2,245.0418187,0,Infection naive,BNT162b2,5 -151,2021-10-26,2021-10-08,Delta,526.687425899999,0,Infection naive,BNT162b2,3 -151,2022-06-16,2021-10-08,Delta,130.7102996,0,Infection naive,BNT162b2,3 -151,2021-10-26,2021-10-08,BA.1,294.304785699999,0,Infection naive,BNT162b2,3 -151,2022-06-16,2021-10-08,BA.1,135.0187504,0,Infection naive,BNT162b2,3 -151,2023-01-16,2021-10-08,BA.1,225.464349655178,0,Infection naive,BNT162b2,3 -152,2022-01-19,2021-12-20,Delta,2560,1,Infection naive,BNT162b2,4 -152,2022-04-21,2021-12-20,Delta,2560,1,Infection naive,BNT162b2,4 -152,2022-01-19,2021-12-20,BA.1,1613.06082,0,Infection naive,BNT162b2,4 -152,2022-04-21,2021-12-20,BA.1,1143.017579,0,Infection naive,BNT162b2,4 -152,2022-01-19,2021-12-20,BA.2,2560,1,Infection naive,BNT162b2,4 -152,2022-04-21,2021-12-20,BA.2,1049.854881,0,Infection naive,BNT162b2,4 -153,2021-12-10,2021-12-10,Delta,5,-1,Infection naive,BNT162b2,3 -153,2022-01-06,2021-12-10,Delta,1067.48489126961,0,Infection naive,BNT162b2,3 -153,2021-12-10,2021-12-10,BA.1,5,-1,Infection naive,BNT162b2,3 -153,2022-01-06,2021-12-10,BA.1,456.968924936853,0,Infection naive,BNT162b2,3 -153,2021-12-10,2021-12-10,BA.2,52.0283781100002,0,Infection naive,BNT162b2,3 -153,2022-01-06,2021-12-10,BA.2,723.353263113297,0,Infection naive,BNT162b2,3 -154,2022-01-25,2021-12-15,Delta,2560,1,Previously infected (Pre-Omicron),mRNA1273,4 -154,2022-01-25,2021-12-15,BA.1,495.344135599999,0,Previously infected (Pre-Omicron),mRNA1273,4 -154,2022-01-25,2021-12-15,BA.2,1408.15043227409,0,Previously infected (Pre-Omicron),mRNA1273,4 -155,2022-01-17,2021-12-30,Delta,2560,1,Infection naive,BNT162b2,4 -155,2022-07-28,2021-12-30,Delta,2560,1,Infection naive,BNT162b2,4 -155,2022-10-20,2021-12-30,Delta,2560,1,Infection naive,BNT162b2,4 -155,2022-01-17,2021-12-30,BA.1,2560,1,Infection naive,BNT162b2,4 -155,2022-07-28,2021-12-30,BA.1,971.922280731385,0,Infection naive,BNT162b2,4 -155,2022-10-20,2021-12-30,BA.1,1415.57534258718,0,Infection naive,BNT162b2,4 -155,2022-01-17,2021-12-30,BA.2,731.001583499999,0,Infection naive,BNT162b2,4 -155,2022-07-28,2021-12-30,BA.2,1074.05452556093,0,Infection naive,BNT162b2,4 -155,2022-10-20,2021-12-30,BA.2,848.457022169049,0,Infection naive,BNT162b2,4 -156,2022-01-06,2021-11-20,Delta,219.998394468312,0,Infection naive,BNT162b2,3 -156,2022-01-06,2021-11-20,BA.1,191.883294133607,0,Infection naive,BNT162b2,3 -156,2022-01-06,2021-11-20,BA.2,317.068493874774,0,Infection naive,BNT162b2,3 -157,2022-01-18,2022-01-18,Delta,1475.10801979969,0,Infection naive,mRNA1273,4 -157,2022-02-22,2022-01-18,Delta,1131.05842,0,Infection naive,mRNA1273,4 -157,2022-06-16,2022-01-18,Delta,983.0600943,0,Infection naive,mRNA1273,4 -157,2022-01-18,2022-01-18,BA.1,202.067223119486,0,Infection naive,mRNA1273,4 -157,2022-02-22,2022-01-18,BA.1,1311.643803,0,Infection naive,mRNA1273,4 -157,2022-06-16,2022-01-18,BA.1,681.4999568,0,Infection naive,mRNA1273,4 -157,2022-01-18,2022-01-18,BA.2,507.651174720159,0,Infection naive,mRNA1273,4 -157,2022-02-22,2022-01-18,BA.2,607.042688100001,0,Infection naive,mRNA1273,4 -157,2022-06-16,2022-01-18,BA.2,374.850761699999,0,Infection naive,mRNA1273,4 -158,2022-01-17,2021-12-17,Delta,2560,1,Previously infected (Pre-Omicron),mRNA1273,4 -158,2022-01-17,2021-12-17,BA.1,1838.097295,0,Previously infected (Pre-Omicron),mRNA1273,4 -158,2022-01-17,2021-12-17,BA.2,946.698864700001,0,Previously infected (Pre-Omicron),mRNA1273,4 -159,2021-11-16,2021-10-21,Delta,268.663763254585,0,Infection naive,BNT162b2,3 -159,2021-11-16,2021-10-21,BA.1,198.208118911364,0,Infection naive,BNT162b2,3 -159,2021-11-16,2021-10-21,BA.2,283.419099346198,0,Infection naive,BNT162b2,3 -160,2022-01-19,2021-12-23,Delta,1228.193252,0,Infection naive,BNT162b2,5 -160,2022-01-19,2021-12-23,BA.1,841.052851900002,0,Infection naive,BNT162b2,5 -160,2022-01-19,2021-12-23,BA.2,666.145003900002,0,Infection naive,BNT162b2,5 -161,2021-11-16,2021-10-22,Delta,2129.70139108405,0,Previously infected (Pre-Omicron),BNT162b2,5 -161,2022-01-26,2021-10-22,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,5 -161,2021-11-16,2021-10-22,BA.1,1026.20048147969,0,Previously infected (Pre-Omicron),BNT162b2,5 -161,2022-01-26,2021-10-22,BA.1,838.844226199999,0,Previously infected (Pre-Omicron),BNT162b2,5 -161,2021-11-16,2021-10-22,BA.2,1802.99309129382,0,Previously infected (Pre-Omicron),BNT162b2,5 -161,2022-01-26,2021-10-22,BA.2,607.042688100001,0,Previously infected (Pre-Omicron),BNT162b2,5 -162,2022-01-18,2021-12-09,Delta,2560,1,Infection naive,BNT162b2,5 -162,2022-04-21,2021-12-09,Delta,2560,1,Infection naive,BNT162b2,5 -162,2022-01-18,2021-12-09,BA.1,1515.73808195671,0,Infection naive,BNT162b2,5 -162,2022-04-21,2021-12-09,BA.1,987.377774800003,0,Infection naive,BNT162b2,5 -162,2022-01-18,2021-12-09,BA.2,2560,1,Infection naive,BNT162b2,5 -162,2022-04-21,2021-12-09,BA.2,901.353432100001,0,Infection naive,BNT162b2,5 -163,2022-01-27,2022-01-09,Delta,2560,1,Infection naive,mRNA1273,4 -163,2022-03-21,2022-01-09,Delta,2560,1,Infection naive,mRNA1273,4 -163,2022-07-13,2022-01-09,Delta,1370.404307,0,Infection naive,mRNA1273,4 -163,2022-07-13,2022-01-09,Delta,1370.404307,0,Infection naive,mRNA1273,4 -163,2022-10-18,2022-01-09,Delta,2560,1,Infection naive,mRNA1273,4 -163,2022-01-27,2022-01-09,BA.1,2560,1,Infection naive,mRNA1273,4 -163,2022-03-21,2022-01-09,BA.1,884.914557099999,0,Infection naive,mRNA1273,4 -163,2022-07-13,2022-01-09,BA.1,689.914094700002,0,Infection naive,mRNA1273,4 -163,2022-07-13,2022-01-09,BA.1,689.914094700002,0,Infection naive,mRNA1273,4 -163,2022-01-27,2022-01-09,BA.2,1224.967986,0,Infection naive,mRNA1273,4 -163,2022-03-21,2022-01-09,BA.2,1122.171236,0,Infection naive,mRNA1273,4 -163,2022-07-13,2022-01-09,BA.2,468.3225154,0,Infection naive,mRNA1273,4 -163,2022-07-13,2022-01-09,BA.2,468.3225154,0,Infection naive,mRNA1273,4 -164,2022-01-25,2022-01-08,Delta,935.973014299998,0,Infection naive,AZD1222,4 -164,2022-01-25,2022-01-08,BA.1,555.126952800002,0,Infection naive,AZD1222,4 -164,2022-01-25,2022-01-08,BA.2,501.899619800001,0,Infection naive,AZD1222,4 -165,2022-01-18,2021-12-10,Delta,1300.19757318823,0,Infection naive,BNT162b2,3 -165,2022-03-21,2021-12-10,Delta,486.310054100002,0,Infection naive,BNT162b2,3 -165,2022-01-18,2021-12-10,BA.1,420.459666934083,0,Infection naive,BNT162b2,3 -165,2022-03-21,2021-12-10,BA.1,199.4279534,0,Infection naive,BNT162b2,3 -165,2022-01-18,2021-12-10,BA.2,639.821155970214,0,Infection naive,BNT162b2,3 -165,2022-03-21,2021-12-10,BA.2,141.5629198,0,Infection naive,BNT162b2,3 -166,2021-12-20,2021-11-17,Delta,545.958772584714,0,Previously infected (Pre-Omicron),mRNA1273,4 -166,2021-12-20,2021-11-17,BA.1,427.520364901452,0,Previously infected (Pre-Omicron),mRNA1273,4 -166,2021-12-20,2021-11-17,BA.2,563.954573563992,0,Previously infected (Pre-Omicron),mRNA1273,4 -167,2021-10-21,2021-10-02,Delta,291.225534900001,0,Infection naive,BNT162b2,3 -167,2022-01-27,2021-10-02,Delta,179.8326802,0,Infection naive,BNT162b2,3 -167,2021-10-21,2021-10-02,BA.1,181.7341272,0,Infection naive,BNT162b2,3 -167,2022-01-27,2021-10-02,BA.1,119.0089466,0,Infection naive,BNT162b2,3 -168,2021-12-21,2021-12-06,Delta,2560,1,Previously infected (Pre-Omicron),mRNA1273,4 -168,2021-12-21,2021-12-06,BA.1,1078.771861,0,Previously infected (Pre-Omicron),mRNA1273,4 -168,2021-12-21,2021-12-06,BA.2,675.552759,0,Previously infected (Pre-Omicron),mRNA1273,4 -169,2021-11-15,2021-11-01,Delta,649.995582737199,0,Infection naive,BNT162b2,4 -169,2021-11-15,2021-11-01,BA.1,479.537694977315,0,Infection naive,BNT162b2,4 -169,2022-01-12,2021-11-01,BA.1,516.1760628,0,Infection naive,BNT162b2,4 -169,2022-07-20,2021-11-01,BA.1,724.6224033,0,Infection naive,BNT162b2,4 -169,2021-11-15,2021-11-01,BA.2,1390.97674062128,0,Infection naive,BNT162b2,4 -169,2022-01-12,2021-11-01,BA.2,444.330038099999,0,Infection naive,BNT162b2,4 -169,2022-07-20,2021-11-01,BA.2,877.961425299999,0,Infection naive,BNT162b2,4 -170,2021-10-07,2021-10-05,Delta,481.221891310619,0,Previously infected (Pre-Omicron),BNT162b2,4 -170,2021-10-25,2021-10-05,Delta,822.102994499998,0,Previously infected (Pre-Omicron),BNT162b2,4 -170,2022-02-03,2021-10-05,Delta,868.775494099999,0,Previously infected (Pre-Omicron),BNT162b2,4 -170,2021-10-07,2021-10-05,BA.1,180.464275014413,0,Previously infected (Pre-Omicron),BNT162b2,4 -170,2021-10-25,2021-10-05,BA.1,233.509268699999,0,Previously infected (Pre-Omicron),BNT162b2,4 -170,2022-02-03,2021-10-05,BA.1,408.830556399999,0,Previously infected (Pre-Omicron),BNT162b2,4 -170,2021-10-07,2021-10-05,BA.2,302.146109252489,0,Previously infected (Pre-Omicron),BNT162b2,4 -170,2022-02-03,2021-10-05,BA.2,374.194229200001,0,Previously infected (Pre-Omicron),BNT162b2,4 -171,2022-02-11,2022-01-16,Delta,2560,1,Infection naive,BNT162b2,4 -171,2022-06-22,2022-01-16,Delta,2560,1,Infection naive,BNT162b2,4 -171,2022-02-11,2022-01-16,BA.1,2560,1,Infection naive,BNT162b2,4 -171,2022-06-22,2022-01-16,BA.1,2388.826779,0,Infection naive,BNT162b2,4 -171,2022-02-11,2022-01-16,BA.2,1689.761901,0,Infection naive,BNT162b2,4 -171,2022-06-22,2022-01-16,BA.2,1939.047803,0,Infection naive,BNT162b2,4 -172,2022-01-31,2022-01-05,Delta,2560,1,Infection naive,mRNA1273,4 -172,2022-01-31,2022-01-05,BA.1,2560,1,Infection naive,mRNA1273,4 -172,2022-01-31,2022-01-05,BA.2,1433.052741,0,Infection naive,mRNA1273,4 -173,2022-02-03,2022-01-13,Delta,1746.990102,0,Infection naive,BNT162b2,4 -173,2022-02-03,2022-01-13,BA.1,940.083884500002,0,Infection naive,BNT162b2,4 -173,2022-02-03,2022-01-13,BA.2,542.619324400001,0,Infection naive,BNT162b2,4 -174,2021-10-27,2021-10-04,Delta,522.091219700001,0,Previously infected (Pre-Omicron),BNT162b2,4 -174,2022-01-18,2021-10-04,Delta,827.887792200001,0,Previously infected (Pre-Omicron),BNT162b2,4 -174,2021-10-27,2021-10-04,BA.1,452.187752400001,0,Previously infected (Pre-Omicron),BNT162b2,4 -174,2022-01-18,2021-10-04,BA.1,218.269778,0,Previously infected (Pre-Omicron),BNT162b2,4 -175,2022-01-06,2022-01-06,Delta,1178.625606,0,Infection naive,BNT162b2,5 -175,2022-02-15,2022-01-06,Delta,1158.144505,0,Infection naive,BNT162b2,5 -175,2022-01-06,2022-01-06,BA.1,655.143308900002,0,Infection naive,BNT162b2,5 -175,2022-02-15,2022-01-06,BA.1,690.519064700001,0,Infection naive,BNT162b2,5 -175,2022-01-06,2022-01-06,BA.2,432.7987443,0,Infection naive,BNT162b2,5 -175,2022-02-15,2022-01-06,BA.2,399.619148699999,0,Infection naive,BNT162b2,5 -176,2021-10-20,2021-10-04,Delta,636.465195600001,0,Infection naive,BNT162b2,3 -176,2022-01-12,2021-10-04,Delta,842.528498700003,0,Infection naive,BNT162b2,3 -176,2021-10-20,2021-10-04,BA.1,551.248048999999,0,Infection naive,BNT162b2,3 -176,2022-01-12,2021-10-04,BA.1,310.196353399999,0,Infection naive,BNT162b2,3 -177,2022-02-07,2022-01-20,Delta,2560,1,Infection naive,others,4 -177,2022-07-11,2022-01-20,Delta,2120.388471,0,Infection naive,others,4 -177,2022-07-11,2022-01-20,Delta,2120.388471,0,Infection naive,others,4 -177,2022-09-15,2022-01-20,Delta,2560,1,Infection naive,others,4 -177,2022-02-07,2022-01-20,BA.1,608.107758700001,0,Infection naive,others,4 -177,2022-07-11,2022-01-20,BA.1,771.825270199999,0,Infection naive,others,4 -177,2022-07-11,2022-01-20,BA.1,771.825270199999,0,Infection naive,others,4 -177,2022-09-15,2022-01-20,BA.1,943.385576586788,0,Infection naive,others,4 -177,2022-02-07,2022-01-20,BA.2,2306.52632823795,0,Infection naive,others,4 -177,2022-07-11,2022-01-20,BA.2,891.922755200002,0,Infection naive,others,4 -177,2022-07-11,2022-01-20,BA.2,891.922755200002,0,Infection naive,others,4 -177,2022-09-15,2022-01-20,BA.2,849.201014794138,0,Infection naive,others,4 -178,2022-01-06,2021-12-09,Delta,624.309906535474,0,Infection naive,BNT162b2,3 -178,2022-01-06,2021-12-09,BA.1,364.163779377748,0,Infection naive,BNT162b2,3 -178,2022-01-06,2021-12-09,BA.2,625.953676461774,0,Infection naive,BNT162b2,3 -179,2022-01-18,2021-12-14,Delta,520.720195179818,0,Previously infected (Pre-Omicron),BNT162b2,4 -179,2022-01-18,2021-12-14,BA.1,644.888304377159,0,Previously infected (Pre-Omicron),BNT162b2,4 -179,2022-01-18,2021-12-14,BA.2,1495.94050367776,0,Previously infected (Pre-Omicron),BNT162b2,4 -180,2022-01-12,2021-12-07,Delta,693.551880986138,0,Infection naive,BNT162b2,3 -180,2022-04-12,2021-12-07,Delta,382.484188999999,0,Infection naive,BNT162b2,3 -180,2022-07-20,2021-12-07,Delta,296.116029,0,Infection naive,BNT162b2,3 -180,2022-01-12,2021-12-07,BA.1,476.604522396288,0,Infection naive,BNT162b2,3 -180,2022-04-12,2021-12-07,BA.1,217.3153114,0,Infection naive,BNT162b2,3 -180,2022-07-20,2021-12-07,BA.1,142.9343886,0,Infection naive,BNT162b2,3 -180,2022-01-12,2021-12-07,BA.2,894.27113342248,0,Infection naive,BNT162b2,3 -180,2022-04-12,2021-12-07,BA.2,229.6527543,0,Infection naive,BNT162b2,3 -180,2022-07-20,2021-12-07,BA.2,149.468676,0,Infection naive,BNT162b2,3 -181,2021-10-13,2021-09-22,Delta,201.183608230365,0,Infection naive,BNT162b2,3 -181,2022-01-10,2021-09-22,Delta,63.5374630400002,0,Infection naive,BNT162b2,3 -181,2021-10-13,2021-09-22,BA.1,122.179767147239,0,Infection naive,BNT162b2,3 -181,2022-01-10,2021-09-22,BA.1,135.0187504,0,Infection naive,BNT162b2,3 -181,2021-10-13,2021-09-22,BA.2,179.517712146024,0,Infection naive,BNT162b2,3 -181,2022-01-10,2021-09-22,BA.2,76.3109723399998,0,Infection naive,BNT162b2,3 -182,2021-11-02,2021-10-21,Delta,1277.603903,0,Infection naive,BNT162b2,4 -182,2021-11-02,2021-10-21,BA.1,707.675309300002,0,Infection naive,BNT162b2,4 -182,2021-11-02,2021-10-21,BA.2,408.830556399999,0,Infection naive,BNT162b2,4 -183,2022-01-12,2021-12-13,Delta,897.4119254,0,Previously infected (Pre-Omicron),BNT162b2,4 -183,2022-03-21,2021-12-13,Delta,600.6913244,0,Previously infected (Pre-Omicron),BNT162b2,4 -183,2022-01-12,2021-12-13,BA.1,583.054368300002,0,Previously infected (Pre-Omicron),BNT162b2,4 -183,2022-03-21,2021-12-13,BA.1,267.2545805,0,Previously infected (Pre-Omicron),BNT162b2,4 -183,2022-01-12,2021-12-13,BA.2,1590.59731711801,0,Previously infected (Pre-Omicron),BNT162b2,4 -183,2022-03-21,2021-12-13,BA.2,373.8663943,0,Previously infected (Pre-Omicron),BNT162b2,4 -184,2021-11-17,2021-10-22,Delta,1153.08008239504,0,Infection naive,BNT162b2,3 -184,2022-01-13,2021-10-22,Delta,1272.0171,0,Infection naive,BNT162b2,3 -184,2022-07-13,2021-10-22,Delta,1363.216326,0,Infection naive,BNT162b2,3 -184,2022-07-13,2021-10-22,Delta,1363.216326,0,Infection naive,BNT162b2,3 -184,2022-10-06,2021-10-22,Delta,1162.21205286533,0,Infection naive,BNT162b2,3 -184,2021-11-17,2021-10-22,BA.1,755.096734353624,0,Infection naive,BNT162b2,3 -184,2022-01-13,2021-10-22,BA.1,722.719526800001,0,Infection naive,BNT162b2,3 -184,2022-07-13,2021-10-22,BA.1,612.923748600001,0,Infection naive,BNT162b2,3 -184,2022-07-13,2021-10-22,BA.1,612.923748600001,0,Infection naive,BNT162b2,3 -184,2022-10-06,2021-10-22,BA.1,461.396063181804,0,Infection naive,BNT162b2,3 -184,2021-11-17,2021-10-22,BA.2,1852.65435025565,0,Infection naive,BNT162b2,3 -184,2022-01-13,2021-10-22,BA.2,2560,1,Infection naive,BNT162b2,3 -184,2022-07-13,2021-10-22,BA.2,550.282565399999,0,Infection naive,BNT162b2,3 -184,2022-07-13,2021-10-22,BA.2,550.282565399999,0,Infection naive,BNT162b2,3 -184,2022-10-06,2021-10-22,BA.2,439.681103635157,0,Infection naive,BNT162b2,3 -185,2022-01-27,2021-12-19,Delta,1253.204069,0,Previously infected (Pre-Omicron),BNT162b2,4 -185,2022-01-27,2021-12-19,BA.1,430.528648299999,0,Previously infected (Pre-Omicron),BNT162b2,4 -185,2022-01-27,2021-12-19,BA.2,907.695882218876,0,Previously infected (Pre-Omicron),BNT162b2,4 -186,2021-10-21,2021-10-01,Delta,430.528648309053,0,Infection naive,BNT162b2,3 -186,2022-03-01,2021-10-01,Delta,480.379055100002,0,Infection naive,BNT162b2,3 -186,2021-10-21,2021-10-01,BA.1,646.019775952783,0,Infection naive,BNT162b2,3 -186,2022-03-01,2021-10-01,BA.1,396.826842899999,0,Infection naive,BNT162b2,3 -186,2021-10-21,2021-10-01,BA.2,1450.74592374035,0,Infection naive,BNT162b2,3 -186,2022-03-01,2021-10-01,BA.2,359.722466600001,0,Infection naive,BNT162b2,3 -187,2021-10-20,2021-10-02,Delta,610.243509120078,0,Infection naive,BNT162b2,3 -187,2022-01-19,2021-10-02,Delta,501.459901000002,0,Infection naive,BNT162b2,3 -187,2022-06-16,2021-10-02,Delta,275.097603700001,0,Infection naive,BNT162b2,3 -187,2022-10-18,2021-10-02,Delta,222.129750131312,0,Infection naive,BNT162b2,3 -187,2021-10-20,2021-10-02,BA.1,1095.9264755573,0,Infection naive,BNT162b2,3 -187,2022-01-19,2021-10-02,BA.1,551.731425900001,0,Infection naive,BNT162b2,3 -187,2022-06-16,2021-10-02,BA.1,118.6964262,0,Infection naive,BNT162b2,3 -187,2022-10-18,2021-10-02,BA.1,208.727728846829,0,Infection naive,BNT162b2,3 -187,2021-10-20,2021-10-02,BA.2,1101.70508812898,0,Infection naive,BNT162b2,3 -187,2022-01-19,2021-10-02,BA.2,293.017827400001,0,Infection naive,BNT162b2,3 -187,2022-06-16,2021-10-02,BA.2,129.1161671,0,Infection naive,BNT162b2,3 -187,2022-10-18,2021-10-02,BA.2,173.78929859736,0,Infection naive,BNT162b2,3 -188,2022-01-06,2021-12-12,Delta,814.928806099998,0,Infection naive,BNT162b2,5 -188,2022-01-06,2021-12-12,BA.1,473.6892911,0,Infection naive,BNT162b2,5 -188,2022-01-06,2021-12-12,BA.2,266.319234099999,0,Infection naive,BNT162b2,5 -189,2022-01-05,2021-12-22,Delta,1573.955222,0,Infection naive,BNT162b2,4 -189,2022-06-30,2021-12-22,Delta,1243.357138,0,Infection naive,BNT162b2,4 -189,2022-01-05,2021-12-22,BA.1,718.298891900001,0,Infection naive,BNT162b2,4 -189,2022-01-05,2021-12-22,BA.2,630.358252700001,0,Infection naive,BNT162b2,4 -189,2022-06-30,2021-12-22,BA.2,759.0782163,0,Infection naive,BNT162b2,4 -189,2022-10-26,2021-12-22,BA.2,859.685673490025,0,Infection naive,BNT162b2,4 -190,2021-12-15,2021-12-15,Delta,98.3097495,0,Previously infected (Pre-Omicron),BNT162b2,4 -190,2022-01-11,2021-12-15,Delta,1223.894781,0,Previously infected (Pre-Omicron),BNT162b2,4 -190,2022-03-21,2021-12-15,Delta,926.992266000003,0,Previously infected (Pre-Omicron),BNT162b2,4 -190,2021-12-15,2021-12-15,BA.1,75.7777557099999,0,Previously infected (Pre-Omicron),BNT162b2,4 -190,2022-01-11,2021-12-15,BA.1,445.499932,0,Previously infected (Pre-Omicron),BNT162b2,4 -190,2022-03-21,2021-12-15,BA.1,210.3807757,0,Previously infected (Pre-Omicron),BNT162b2,4 -190,2021-12-15,2021-12-15,BA.2,84.2560552900003,0,Previously infected (Pre-Omicron),BNT162b2,4 -190,2022-01-11,2021-12-15,BA.2,240.151397199999,0,Previously infected (Pre-Omicron),BNT162b2,4 -190,2022-03-21,2021-12-15,BA.2,148.0345101,0,Previously infected (Pre-Omicron),BNT162b2,4 -191,2022-01-17,2021-12-04,Delta,361.302397178666,0,Infection naive,BNT162b2,3 -191,2022-01-17,2021-12-04,BA.1,220.384386784088,0,Infection naive,BNT162b2,3 -191,2022-03-21,2021-12-04,BA.1,231.877641900001,0,Infection naive,BNT162b2,3 -191,2022-01-17,2021-12-04,BA.2,366.083945958807,0,Infection naive,BNT162b2,3 -191,2022-03-21,2021-12-04,BA.2,158.926424200001,0,Infection naive,BNT162b2,3 -192,2022-01-26,2021-12-16,Delta,680.306343480621,0,Previously infected (Pre-Omicron),BNT162b2,4 -192,2022-01-26,2021-12-16,BA.1,1109.45732967998,0,Previously infected (Pre-Omicron),BNT162b2,4 -192,2022-01-26,2021-12-16,BA.2,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -193,2022-03-02,2022-01-23,Delta,2560,1,Infection naive,BNT162b2,4 -193,2022-07-06,2022-01-23,Delta,541.668953499999,0,Infection naive,BNT162b2,4 -193,2022-03-02,2022-01-23,BA.1,1756.201649,0,Infection naive,BNT162b2,4 -193,2022-07-06,2022-01-23,BA.1,736.790847300002,0,Infection naive,BNT162b2,4 -193,2022-03-02,2022-01-23,BA.2,1116.285275,0,Infection naive,BNT162b2,4 -193,2022-07-06,2022-01-23,BA.2,297.1560255,0,Infection naive,BNT162b2,4 -194,2022-01-06,2021-12-13,Delta,493.178057169013,0,Previously infected (Pre-Omicron),BNT162b2,4 -194,2022-01-06,2021-12-13,BA.1,333.896446719027,0,Previously infected (Pre-Omicron),BNT162b2,4 -194,2022-04-26,2021-12-13,BA.1,408.830556399999,0,Previously infected (Pre-Omicron),BNT162b2,4 -194,2022-04-26,2021-12-13,BA.1,408.830556399999,0,Previously infected (Pre-Omicron),BNT162b2,4 -194,2022-07-14,2021-12-13,BA.1,308.2989855,0,Previously infected (Pre-Omicron),BNT162b2,4 -194,2022-01-06,2021-12-13,BA.2,649.426115777702,0,Previously infected (Pre-Omicron),BNT162b2,4 -194,2022-04-26,2021-12-13,BA.2,302.941641499999,0,Previously infected (Pre-Omicron),BNT162b2,4 -194,2022-04-26,2021-12-13,BA.2,302.941641499999,0,Previously infected (Pre-Omicron),BNT162b2,4 -194,2022-07-14,2021-12-13,BA.2,277.7627634,0,Previously infected (Pre-Omicron),BNT162b2,4 -195,2021-11-16,2021-10-14,Delta,521.633810910942,0,Infection naive,BNT162b2,3 -195,2022-01-31,2021-10-14,Delta,183.9779073,0,Infection naive,BNT162b2,3 -195,2022-06-22,2021-10-14,Delta,66.9682937499999,0,Infection naive,BNT162b2,3 -195,2021-11-16,2021-10-14,BA.1,187.724416883956,0,Infection naive,BNT162b2,3 -195,2022-01-31,2021-10-14,BA.1,148.0345101,0,Infection naive,BNT162b2,3 -195,2022-06-22,2021-10-14,BA.1,52.1653656600001,0,Infection naive,BNT162b2,3 -195,2021-11-16,2021-10-14,BA.2,195.276636839101,0,Infection naive,BNT162b2,3 -195,2022-01-31,2021-10-14,BA.2,160.4661115,0,Infection naive,BNT162b2,3 -195,2022-06-22,2021-10-14,BA.2,46.0201933399999,0,Infection naive,BNT162b2,3 -196,2022-01-31,2022-01-04,Delta,827.887792200001,0,Infection naive,BNT162b2,3 -196,2022-01-31,2022-01-04,BA.1,316.235864099999,0,Infection naive,BNT162b2,3 -196,2022-01-31,2022-01-04,BA.2,682.695664406201,0,Infection naive,BNT162b2,3 -197,2022-01-18,2021-12-03,Delta,1380.04727341355,0,Infection naive,BNT162b2,3 -197,2022-08-02,2021-12-03,Delta,2560,1,Infection naive,BNT162b2,3 -197,2022-01-18,2021-12-03,BA.1,932.697264910318,0,Infection naive,BNT162b2,3 -197,2022-08-02,2021-12-03,BA.1,771.149067119869,0,Infection naive,BNT162b2,3 -197,2022-01-18,2021-12-03,BA.2,1542.54301454384,0,Infection naive,BNT162b2,3 -197,2022-08-02,2021-12-03,BA.2,1444.40199186087,0,Infection naive,BNT162b2,3 -198,2021-09-30,2021-09-30,Delta,118.8005084,0,Infection naive,BNT162b2,3 -198,2021-09-30,2021-09-30,BA.1,104.3472966,0,Infection naive,BNT162b2,3 -198,2021-09-30,2021-09-30,BA.2,146.4856553,0,Infection naive,BNT162b2,3 -198,2022-01-11,2021-09-30,BA.2,170.1716794,0,Infection naive,BNT162b2,3 -198,2022-07-11,2021-09-30,BA.2,120.2672786,0,Infection naive,BNT162b2,3 -199,2021-09-30,2021-09-27,Delta,5,-1,Infection naive,BNT162b2,3 -199,2021-09-30,2021-09-27,BA.1,5,-1,Infection naive,BNT162b2,3 -199,2021-09-30,2021-09-27,BA.2,5,-1,Infection naive,BNT162b2,3 -199,2022-04-07,2021-09-27,BA.2,5,-1,Infection naive,BNT162b2,3 -200,2021-12-21,2021-12-02,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,5 -200,2022-03-21,2021-12-02,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,5 -200,2022-07-11,2021-12-02,Delta,1219.611353,0,Previously infected (Pre-Omicron),BNT162b2,5 -200,2022-07-11,2021-12-02,Delta,1219.611353,0,Previously infected (Pre-Omicron),BNT162b2,5 -200,2022-11-08,2021-12-02,Delta,1126.1124417535,0,Previously infected (Pre-Omicron),BNT162b2,5 -200,2021-12-21,2021-12-02,BA.1,805.695875999997,0,Previously infected (Pre-Omicron),BNT162b2,5 -200,2022-03-21,2021-12-02,BA.1,773.179455600001,0,Previously infected (Pre-Omicron),BNT162b2,5 -200,2022-07-11,2021-12-02,BA.1,267.9582455,0,Previously infected (Pre-Omicron),BNT162b2,5 -200,2022-07-11,2021-12-02,BA.1,267.9582455,0,Previously infected (Pre-Omicron),BNT162b2,5 -200,2022-11-08,2021-12-02,BA.1,256.918651907806,0,Previously infected (Pre-Omicron),BNT162b2,5 -200,2021-12-21,2021-12-02,BA.2,1580.86816200001,0,Previously infected (Pre-Omicron),BNT162b2,5 -200,2022-03-21,2021-12-02,BA.2,657.444254099999,0,Previously infected (Pre-Omicron),BNT162b2,5 -200,2022-07-11,2021-12-02,BA.2,457.770687599999,0,Previously infected (Pre-Omicron),BNT162b2,5 -200,2022-07-11,2021-12-02,BA.2,457.770687599999,0,Previously infected (Pre-Omicron),BNT162b2,5 -200,2022-11-08,2021-12-02,BA.2,334.482275824779,0,Previously infected (Pre-Omicron),BNT162b2,5 -201,2021-10-12,2021-09-22,Delta,678.519842098598,0,Infection naive,BNT162b2,3 -201,2022-01-11,2021-09-22,Delta,1149.044494,0,Infection naive,BNT162b2,3 -201,2022-07-12,2021-09-22,Delta,974.481292799999,0,Infection naive,BNT162b2,3 -201,2022-07-12,2021-09-22,Delta,974.481292799999,0,Infection naive,BNT162b2,3 -201,2021-10-12,2021-09-22,BA.1,452.584265496128,0,Infection naive,BNT162b2,3 -201,2022-01-11,2021-09-22,BA.1,653.4228862,0,Infection naive,BNT162b2,3 -201,2022-07-12,2021-09-22,BA.1,354.402200400001,0,Infection naive,BNT162b2,3 -201,2022-07-12,2021-09-22,BA.1,354.402200400001,0,Infection naive,BNT162b2,3 -201,2021-10-12,2021-09-22,BA.2,777.256284317225,0,Infection naive,BNT162b2,3 -201,2022-01-11,2021-09-22,BA.2,357.522164,0,Infection naive,BNT162b2,3 -201,2022-07-12,2021-09-22,BA.2,322.110512499999,0,Infection naive,BNT162b2,3 -201,2022-07-12,2021-09-22,BA.2,322.110512499999,0,Infection naive,BNT162b2,3 -202,2022-01-10,2021-12-09,Delta,1511.75771604633,0,Previously infected (Pre-Omicron),BNT162b2,4 -202,2022-04-21,2021-12-09,Delta,988.243583799999,0,Previously infected (Pre-Omicron),BNT162b2,4 -202,2022-01-10,2021-12-09,BA.1,866.494068070684,0,Previously infected (Pre-Omicron),BNT162b2,4 -202,2022-04-21,2021-12-09,BA.1,629.805990200002,0,Previously infected (Pre-Omicron),BNT162b2,4 -202,2022-01-10,2021-12-09,BA.2,1852.65435025565,0,Previously infected (Pre-Omicron),BNT162b2,4 -202,2022-04-21,2021-12-09,BA.2,557.565115799999,0,Previously infected (Pre-Omicron),BNT162b2,4 -203,2022-01-31,2022-01-16,Delta,2560,1,Infection naive,BNT162b2,5 -203,2022-07-14,2022-01-16,Delta,2560,1,Infection naive,BNT162b2,5 -203,2022-01-31,2022-01-16,BA.1,1302.4788,0,Infection naive,BNT162b2,5 -203,2022-07-14,2022-01-16,BA.1,786.163308800003,0,Infection naive,BNT162b2,5 -203,2022-01-31,2022-01-16,BA.2,587.1570799,0,Infection naive,BNT162b2,5 -203,2022-07-14,2022-01-16,BA.2,412.068344099999,0,Infection naive,BNT162b2,5 -204,2022-01-18,2021-12-09,Delta,1411.85800652214,0,Infection naive,BNT162b2,3 -204,2022-01-18,2021-12-09,BA.1,951.690628333103,0,Infection naive,BNT162b2,3 -204,2022-01-18,2021-12-09,BA.2,2318.68820436243,0,Infection naive,BNT162b2,3 -205,2021-10-27,2021-10-27,Delta,88.5724214800002,0,Infection naive,BNT162b2,3 -205,2021-12-02,2021-10-27,Delta,500.581618887535,0,Infection naive,BNT162b2,3 -205,2022-07-14,2021-10-27,Delta,368.983196300001,0,Infection naive,BNT162b2,3 -205,2021-10-27,2021-10-27,BA.1,69.9071152200002,0,Infection naive,BNT162b2,3 -205,2021-12-02,2021-10-27,BA.1,565.439431577804,0,Infection naive,BNT162b2,3 -205,2022-07-14,2021-10-27,BA.1,186.0862154,0,Infection naive,BNT162b2,3 -205,2021-10-27,2021-10-27,BA.2,171.2189689,0,Infection naive,BNT162b2,3 -205,2021-12-02,2021-10-27,BA.2,1223.89478072528,0,Infection naive,BNT162b2,3 -205,2022-07-14,2021-10-27,BA.2,276.5481413,0,Infection naive,BNT162b2,3 -206,2022-01-27,2022-01-03,Delta,1227.117221,0,Infection naive,BNT162b2,4 -206,2022-07-14,2022-01-03,Delta,1283.21524400001,0,Infection naive,BNT162b2,4 -206,2022-09-27,2022-01-03,Delta,1517.06719813476,0,Infection naive,BNT162b2,4 -206,2022-01-27,2022-01-03,BA.1,802.876074900002,0,Infection naive,BNT162b2,4 -206,2022-07-14,2022-01-03,BA.1,811.365223599999,0,Infection naive,BNT162b2,4 -206,2022-09-27,2022-01-03,BA.1,643.758814517845,0,Infection naive,BNT162b2,4 -206,2022-01-27,2022-01-03,BA.2,666.7291313,0,Infection naive,BNT162b2,4 -206,2022-07-14,2022-01-03,BA.2,1094.966325,0,Infection naive,BNT162b2,4 -206,2022-09-27,2022-01-03,BA.2,953.360391743973,0,Infection naive,BNT162b2,4 -207,2021-12-14,2021-11-20,Delta,1660.39873057065,0,Infection naive,BNT162b2,3 -207,2021-12-14,2021-11-20,BA.1,426.024114951107,0,Infection naive,BNT162b2,3 -207,2021-12-14,2021-11-20,BA.2,744.581248940854,0,Infection naive,BNT162b2,3 -208,2022-01-10,2021-12-14,Delta,571.919125585972,0,Infection naive,BNT162b2,3 -208,2022-04-21,2021-12-14,Delta,606.5108525,0,Infection naive,BNT162b2,3 -208,2022-01-10,2021-12-14,BA.1,718.928751797537,0,Infection naive,BNT162b2,3 -208,2022-04-21,2021-12-14,BA.1,410.626173699999,0,Infection naive,BNT162b2,3 -208,2022-01-10,2021-12-14,BA.2,1158.14450458189,0,Infection naive,BNT162b2,3 -208,2022-04-21,2021-12-14,BA.2,232.0809701,0,Infection naive,BNT162b2,3 -209,2021-12-20,2021-11-09,Delta,360.985856908171,0,Infection naive,BNT162b2,3 -209,2021-12-20,2021-11-09,BA.1,517.988937696653,0,Infection naive,BNT162b2,3 -209,2021-12-20,2021-11-09,BA.2,453.378335148974,0,Infection naive,BNT162b2,3 -210,2022-01-27,2021-12-09,Delta,678.519842099999,0,Infection naive,BNT162b2,3 -210,2022-01-27,2021-12-09,BA.1,335.657019400001,0,Infection naive,BNT162b2,3 -210,2022-01-27,2021-12-09,BA.2,607.57498998905,0,Infection naive,BNT162b2,3 -211,2022-01-27,2021-12-23,Delta,2560,1,Infection naive,BNT162b2,4 -211,2022-04-19,2021-12-23,Delta,1857.532276,0,Infection naive,BNT162b2,4 -211,2022-04-19,2021-12-23,Delta,1857.532276,0,Infection naive,BNT162b2,4 -211,2022-07-28,2021-12-23,Delta,2560,1,Infection naive,BNT162b2,4 -211,2022-12-08,2021-12-23,Delta,1448.20501425543,0,Infection naive,BNT162b2,4 -211,2022-01-27,2021-12-23,BA.1,1836.486922,0,Infection naive,BNT162b2,4 -211,2022-04-19,2021-12-23,BA.1,1489.398942,0,Infection naive,BNT162b2,4 -211,2022-04-19,2021-12-23,BA.1,1489.398942,0,Infection naive,BNT162b2,4 -211,2022-07-28,2021-12-23,BA.1,775.894958510468,0,Infection naive,BNT162b2,4 -211,2022-12-08,2021-12-23,BA.1,1234.66928241179,0,Infection naive,BNT162b2,4 -211,2022-01-27,2021-12-23,BA.2,2560,1,Infection naive,BNT162b2,4 -211,2022-04-19,2021-12-23,BA.2,779.9861056,0,Infection naive,BNT162b2,4 -211,2022-04-19,2021-12-23,BA.2,779.9861056,0,Infection naive,BNT162b2,4 -211,2022-07-28,2021-12-23,BA.2,845.487564146657,0,Infection naive,BNT162b2,4 -211,2022-12-08,2021-12-23,BA.2,729.08195510893,0,Infection naive,BNT162b2,4 -212,2021-11-01,2021-10-10,Delta,544.048008000001,0,Previously infected (Pre-Omicron),BNT162b2,4 -212,2022-01-06,2021-10-10,Delta,457.770687599999,0,Previously infected (Pre-Omicron),BNT162b2,4 -212,2022-06-16,2021-10-10,Delta,180.306168600001,0,Previously infected (Pre-Omicron),BNT162b2,4 -212,2021-11-01,2021-10-10,BA.1,239.3109074,0,Previously infected (Pre-Omicron),BNT162b2,4 -212,2022-01-06,2021-10-10,BA.1,395.7847657,0,Previously infected (Pre-Omicron),BNT162b2,4 -212,2022-06-16,2021-10-10,BA.1,116.7360994,0,Previously infected (Pre-Omicron),BNT162b2,4 -212,2023-01-05,2021-10-10,BA.1,224.08525922009,0,Previously infected (Pre-Omicron),BNT162b2,4 -213,2022-01-11,2021-11-30,Delta,2349.3741916176,0,Infection naive,AZD1222,3 -213,2022-01-11,2021-11-30,BA.1,2560,1,Infection naive,AZD1222,3 -213,2022-01-11,2021-11-30,BA.2,2560,1,Infection naive,AZD1222,3 -214,2021-10-05,2021-10-05,Delta,63.9284923700001,0,Previously infected (Pre-Omicron),BNT162b2,4 -214,2021-10-05,2021-10-05,BA.1,97.36645829,0,Previously infected (Pre-Omicron),BNT162b2,4 -214,2021-10-05,2021-10-05,BA.2,122.1797671,0,Previously infected (Pre-Omicron),BNT162b2,4 -214,2022-01-13,2021-10-05,BA.2,194.0821946,0,Previously infected (Pre-Omicron),BNT162b2,4 -215,2022-01-31,2022-01-13,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -215,2022-06-16,2022-01-13,Delta,1148.037806,0,Previously infected (Pre-Omicron),BNT162b2,4 -215,2022-01-31,2022-01-13,BA.1,1067.484891,0,Previously infected (Pre-Omicron),BNT162b2,4 -215,2022-06-16,2022-01-13,BA.1,488.8742749,0,Previously infected (Pre-Omicron),BNT162b2,4 -215,2022-11-15,2022-01-13,BA.1,427.520364901452,0,Previously infected (Pre-Omicron),BNT162b2,4 -215,2022-01-31,2022-01-13,BA.2,731.001583499999,0,Previously infected (Pre-Omicron),BNT162b2,4 -215,2022-06-16,2022-01-13,BA.2,386.528356299999,0,Previously infected (Pre-Omicron),BNT162b2,4 -215,2022-11-15,2022-01-13,BA.2,293.531934057791,0,Previously infected (Pre-Omicron),BNT162b2,4 -216,2021-10-27,2021-10-09,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -216,2021-12-20,2021-10-09,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -216,2022-06-22,2021-10-09,Delta,2353.496223,0,Previously infected (Pre-Omicron),BNT162b2,4 -216,2022-11-24,2021-10-09,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -216,2021-10-27,2021-10-09,BA.1,1564.327862,0,Previously infected (Pre-Omicron),BNT162b2,4 -216,2021-12-20,2021-10-09,BA.1,851.436909299999,0,Previously infected (Pre-Omicron),BNT162b2,4 -216,2022-06-22,2021-10-09,BA.1,560.996545100001,0,Previously infected (Pre-Omicron),BNT162b2,4 -216,2022-11-24,2021-10-09,BA.1,732.2841427851,0,Previously infected (Pre-Omicron),BNT162b2,4 -216,2021-10-27,2021-10-09,BA.2,910.883823600003,0,Previously infected (Pre-Omicron),BNT162b2,4 -216,2021-12-20,2021-10-09,BA.2,877.1922354,0,Previously infected (Pre-Omicron),BNT162b2,4 -216,2022-06-22,2021-10-09,BA.2,413.878182099999,0,Previously infected (Pre-Omicron),BNT162b2,4 -216,2022-11-24,2021-10-09,BA.2,225.859932116853,0,Previously infected (Pre-Omicron),BNT162b2,4 -217,2021-12-08,2021-12-08,Delta,54.9821375200001,0,Infection naive,BNT162b2,3 -217,2022-01-10,2021-12-08,Delta,335.657019392179,0,Infection naive,BNT162b2,3 -217,2022-03-21,2021-12-08,Delta,284.6638992,0,Infection naive,BNT162b2,3 -217,2022-06-16,2021-12-08,Delta,162.447306,0,Infection naive,BNT162b2,3 -217,2021-12-08,2021-12-08,BA.1,48.1662188000002,0,Infection naive,BNT162b2,3 -217,2022-01-10,2021-12-08,BA.1,520.720195179818,0,Infection naive,BNT162b2,3 -217,2022-03-21,2021-12-08,BA.1,126.9837534,0,Infection naive,BNT162b2,3 -217,2022-06-16,2021-12-08,BA.1,58.2055320999998,0,Infection naive,BNT162b2,3 -217,2021-12-08,2021-12-08,BA.2,5,-1,Infection naive,BNT162b2,3 -217,2022-01-10,2021-12-08,BA.2,551.731425861521,0,Infection naive,BNT162b2,3 -217,2022-03-21,2021-12-08,BA.2,135.968821300001,0,Infection naive,BNT162b2,3 -217,2022-06-16,2021-12-08,BA.2,99.6108005499997,0,Infection naive,BNT162b2,3 -218,2022-01-18,2022-01-06,Delta,1357.25515,0,Infection naive,BNT162b2,5 -218,2022-06-16,2022-01-06,Delta,163.4470573,0,Infection naive,BNT162b2,5 -218,2022-01-18,2022-01-06,BA.1,304.538995399999,0,Infection naive,BNT162b2,5 -218,2022-06-16,2022-01-06,BA.1,167.2145882,0,Infection naive,BNT162b2,5 -218,2022-01-18,2022-01-06,BA.2,267.0204364,0,Infection naive,BNT162b2,5 -218,2022-06-16,2022-01-06,BA.2,114.205962,0,Infection naive,BNT162b2,5 -219,2022-01-19,2022-01-19,Delta,710.783477200002,0,Infection naive,BNT162b2,4 -219,2022-02-23,2022-01-19,Delta,2560,1,Infection naive,BNT162b2,4 -219,2022-01-19,2022-01-19,BA.1,392.330898600001,0,Infection naive,BNT162b2,4 -219,2022-02-23,2022-01-19,BA.1,2560,1,Infection naive,BNT162b2,4 -219,2022-01-19,2022-01-19,BA.2,333.896446700001,0,Infection naive,BNT162b2,4 -219,2022-02-23,2022-01-19,BA.2,2560,1,Infection naive,BNT162b2,4 -220,2022-01-26,2022-01-13,Delta,2560,1,Infection naive,BNT162b2,5 -220,2022-06-22,2022-01-13,Delta,2560,1,Infection naive,BNT162b2,5 -220,2022-06-22,2022-01-13,Delta,2560,1,Infection naive,BNT162b2,5 -220,2022-01-26,2022-01-13,BA.1,2560,1,Infection naive,BNT162b2,5 -220,2022-06-22,2022-01-13,BA.1,2125.97132500001,0,Infection naive,BNT162b2,5 -220,2022-06-22,2022-01-13,BA.1,2125.97132500001,0,Infection naive,BNT162b2,5 -220,2022-01-26,2022-01-13,BA.2,1339.527572,0,Infection naive,BNT162b2,5 -220,2022-06-22,2022-01-13,BA.2,871.062927,0,Infection naive,BNT162b2,5 -220,2022-06-22,2022-01-13,BA.2,871.062927,0,Infection naive,BNT162b2,5 -221,2021-12-16,2021-12-04,Delta,1677.9548294084,0,Previously infected (Pre-Omicron),BNT162b2,4 -221,2022-06-16,2021-12-04,Delta,695.987721899998,0,Previously infected (Pre-Omicron),BNT162b2,4 -221,2021-12-16,2021-12-04,BA.1,566.928199132255,0,Previously infected (Pre-Omicron),BNT162b2,4 -221,2022-06-16,2021-12-04,BA.1,267.7234849,0,Previously infected (Pre-Omicron),BNT162b2,4 -221,2021-12-16,2021-12-04,BA.2,869.537303560947,0,Previously infected (Pre-Omicron),BNT162b2,4 -221,2022-06-16,2021-12-04,BA.2,207.4510108,0,Previously infected (Pre-Omicron),BNT162b2,4 -222,2022-01-19,2021-12-22,Delta,2560,1,Infection naive,mRNA1273,5 -222,2022-01-19,2021-12-22,BA.1,2560,1,Infection naive,mRNA1273,5 -222,2022-01-19,2021-12-22,BA.2,2355.559951,0,Infection naive,mRNA1273,5 -223,2022-01-10,2021-12-09,Delta,1366.80559115504,0,Infection naive,BNT162b2,4 -223,2022-03-21,2021-12-09,Delta,2560,1,Infection naive,BNT162b2,4 -223,2022-01-10,2021-12-09,BA.1,1549.31798983506,0,Infection naive,BNT162b2,4 -223,2022-03-21,2021-12-09,BA.1,812.076691199999,0,Infection naive,BNT162b2,4 -223,2022-01-10,2021-12-09,BA.2,2560,1,Infection naive,BNT162b2,4 -224,2021-10-27,2021-10-09,Delta,716.412621099999,0,Infection naive,BNT162b2,3 -224,2022-01-12,2021-10-09,Delta,523.924869300001,0,Infection naive,BNT162b2,3 -224,2021-10-27,2021-10-09,BA.1,340.695884000001,0,Infection naive,BNT162b2,3 -224,2022-01-12,2021-10-09,BA.1,161.4536699,0,Infection naive,BNT162b2,3 -225,2022-01-06,2021-12-19,Delta,2560,1,Infection naive,BNT162b2,4 -225,2022-06-16,2021-12-19,Delta,933.515125899998,0,Infection naive,BNT162b2,4 -225,2022-01-06,2021-12-19,BA.1,2560,1,Infection naive,BNT162b2,4 -225,2022-06-16,2021-12-19,BA.1,1074.996339,0,Infection naive,BNT162b2,4 -225,2022-01-06,2021-12-19,BA.2,1949.272035,0,Infection naive,BNT162b2,4 -225,2022-06-16,2021-12-19,BA.2,925.368684999999,0,Infection naive,BNT162b2,4 -226,2021-10-20,2021-09-30,Delta,314.301554500001,0,Infection naive,BNT162b2,3 -226,2022-02-16,2021-09-30,Delta,162.5897524,0,Infection naive,BNT162b2,3 -226,2021-10-20,2021-09-30,BA.1,384.1640909,0,Infection naive,BNT162b2,3 -226,2022-02-16,2021-09-30,BA.1,145.7173155,0,Infection naive,BNT162b2,3 -227,2022-01-31,2022-01-19,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -227,2022-04-07,2022-01-19,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -227,2022-01-31,2022-01-19,BA.1,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -227,2022-04-07,2022-01-19,BA.1,788.233228899999,0,Previously infected (Pre-Omicron),BNT162b2,4 -227,2022-01-31,2022-01-19,BA.2,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -227,2022-04-07,2022-01-19,BA.2,936.793747699999,0,Previously infected (Pre-Omicron),BNT162b2,4 -228,2022-03-10,2022-01-22,Delta,2560,1,Infection naive,BNT162b2,4 -228,2022-09-08,2022-01-22,Delta,739.378548898482,0,Infection naive,BNT162b2,4 -228,2022-03-10,2022-01-22,BA.1,560.996545119027,0,Infection naive,BNT162b2,4 -228,2022-09-08,2022-01-22,BA.1,552.699451520389,0,Infection naive,BNT162b2,4 -228,2022-03-10,2022-01-22,BA.2,683.29430467463,0,Infection naive,BNT162b2,4 -228,2022-09-08,2022-01-22,BA.2,320.701963182361,0,Infection naive,BNT162b2,4 -229,2022-01-18,2021-12-20,Delta,518.4431504,0,Infection naive,AZD1222,4 -229,2022-01-18,2021-12-20,BA.1,376.167284499999,0,Infection naive,AZD1222,4 -229,2022-01-18,2021-12-20,BA.2,326.946017699999,0,Infection naive,AZD1222,4 -230,2021-12-17,2021-12-04,Delta,2087.197881,0,Previously infected (Pre-Omicron),BNT162b2,4 -230,2022-01-31,2021-12-04,Delta,1615.890973,0,Previously infected (Pre-Omicron),BNT162b2,4 -230,2021-12-17,2021-12-04,BA.1,1022.608951,0,Previously infected (Pre-Omicron),BNT162b2,4 -230,2022-01-31,2021-12-04,BA.1,841.052851900002,0,Previously infected (Pre-Omicron),BNT162b2,4 -230,2021-12-17,2021-12-04,BA.2,643.758814500001,0,Previously infected (Pre-Omicron),BNT162b2,4 -230,2022-01-31,2021-12-04,BA.2,515.723836400001,0,Previously infected (Pre-Omicron),BNT162b2,4 -231,2022-01-10,2022-01-10,Delta,303.739268414484,0,Infection naive,BNT162b2,3 -231,2022-01-10,2022-01-10,BA.1,141.687053135051,0,Infection naive,BNT162b2,3 -231,2022-01-10,2022-01-10,BA.2,196.650717502208,0,Infection naive,BNT162b2,3 -232,2021-10-18,2021-09-21,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -232,2022-01-06,2021-09-21,Delta,1133.042888,0,Previously infected (Pre-Omicron),BNT162b2,4 -232,2021-10-18,2021-09-21,BA.1,1305.908147,0,Previously infected (Pre-Omicron),BNT162b2,4 -232,2022-01-06,2021-09-21,BA.1,453.775892300001,0,Previously infected (Pre-Omicron),BNT162b2,4 -232,2021-10-18,2021-09-21,BA.2,699.044556999999,0,Previously infected (Pre-Omicron),BNT162b2,4 -232,2022-01-06,2021-09-21,BA.2,455.768913199999,0,Previously infected (Pre-Omicron),BNT162b2,4 -233,2022-01-17,2021-12-10,Delta,1224.967986,0,Previously infected (Pre-Omicron),BNT162b2,4 -233,2022-04-21,2021-12-10,Delta,524.844107700001,0,Previously infected (Pre-Omicron),BNT162b2,4 -233,2022-04-21,2021-12-10,Delta,524.844107700001,0,Previously infected (Pre-Omicron),BNT162b2,4 -233,2022-01-17,2021-12-10,BA.1,673.778740699998,0,Previously infected (Pre-Omicron),BNT162b2,4 -233,2022-04-21,2021-12-10,BA.1,585.615190800001,0,Previously infected (Pre-Omicron),BNT162b2,4 -233,2022-04-21,2021-12-10,BA.1,585.615190800001,0,Previously infected (Pre-Omicron),BNT162b2,4 -233,2022-01-17,2021-12-10,BA.2,414.241102400001,0,Previously infected (Pre-Omicron),BNT162b2,4 -233,2022-04-21,2021-12-10,BA.2,314.5771584,0,Previously infected (Pre-Omicron),BNT162b2,4 -233,2022-04-21,2021-12-10,BA.2,314.5771584,0,Previously infected (Pre-Omicron),BNT162b2,4 -234,2022-01-27,2022-01-08,Delta,511.671585500002,0,Infection naive,BNT162b2,4 -234,2022-07-06,2022-01-08,Delta,494.4765649,0,Infection naive,BNT162b2,4 -234,2022-07-06,2022-01-08,Delta,494.4765649,0,Infection naive,BNT162b2,4 -234,2022-01-27,2022-01-08,BA.1,580.5047439,0,Infection naive,BNT162b2,4 -234,2022-07-06,2022-01-08,BA.1,504.988466300001,0,Infection naive,BNT162b2,4 -234,2022-07-06,2022-01-08,BA.1,504.988466300001,0,Infection naive,BNT162b2,4 -234,2022-01-27,2022-01-08,BA.2,346.417124199999,0,Infection naive,BNT162b2,4 -234,2022-07-06,2022-01-08,BA.2,386.8672942,0,Infection naive,BNT162b2,4 -234,2022-07-06,2022-01-08,BA.2,386.8672942,0,Infection naive,BNT162b2,4 -235,2021-12-15,2021-11-30,Delta,1169.364668,0,Infection naive,BNT162b2,4 -235,2021-12-15,2021-11-30,BA.1,593.3653403,0,Infection naive,BNT162b2,4 -235,2021-12-15,2021-11-30,BA.2,655.143308900002,0,Infection naive,BNT162b2,4 -236,2022-01-19,2022-01-04,Delta,2560,1,Infection naive,BNT162b2,4 -236,2022-06-16,2022-01-04,Delta,2560,1,Infection naive,BNT162b2,4 -236,2022-01-19,2022-01-04,BA.1,2560,1,Infection naive,BNT162b2,4 -236,2022-06-16,2022-01-04,BA.1,2560,1,Infection naive,BNT162b2,4 -236,2022-01-19,2022-01-04,BA.2,1675.015975,0,Infection naive,BNT162b2,4 -236,2022-06-16,2022-01-04,BA.2,2560,1,Infection naive,BNT162b2,4 -237,2022-01-06,2022-01-06,Delta,423.789552999999,0,Infection naive,BNT162b2,4 -237,2022-02-22,2022-01-06,Delta,2560,1,Infection naive,BNT162b2,4 -237,2022-01-06,2022-01-06,BA.1,432.7987443,0,Infection naive,BNT162b2,4 -237,2022-02-22,2022-01-06,BA.1,2560,1,Infection naive,BNT162b2,4 -237,2022-01-06,2022-01-06,BA.2,198.5558797,0,Infection naive,BNT162b2,4 -237,2022-02-22,2022-01-06,BA.2,824.267541600003,0,Infection naive,BNT162b2,4 -238,2022-01-06,2021-12-26,Delta,895.055299400003,0,Infection naive,BNT162b2,5 -238,2022-01-06,2021-12-26,BA.1,540.246517400001,0,Infection naive,BNT162b2,5 -238,2022-01-06,2021-12-26,BA.2,348.243716,0,Infection naive,BNT162b2,5 -239,2021-12-20,2021-11-03,Delta,1075.9389792843,0,Previously infected (Pre-Omicron),BNT162b2,4 -239,2021-12-20,2021-11-03,BA.1,906.10609793011,0,Previously infected (Pre-Omicron),BNT162b2,4 -239,2022-06-20,2021-11-03,BA.1,1220.680803,0,Previously infected (Pre-Omicron),BNT162b2,4 -239,2022-09-15,2021-11-03,BA.1,567.4253255489,0,Previously infected (Pre-Omicron),BNT162b2,4 -239,2021-12-20,2021-11-03,BA.2,2498.03269375095,0,Previously infected (Pre-Omicron),BNT162b2,4 -239,2022-06-20,2021-11-03,BA.2,1017.24521,0,Previously infected (Pre-Omicron),BNT162b2,4 -239,2022-09-15,2021-11-03,BA.2,1277.60390288493,0,Previously infected (Pre-Omicron),BNT162b2,4 -240,2021-10-01,2021-09-22,Delta,432.04071874368,0,Infection naive,BNT162b2,3 -240,2022-04-13,2021-09-22,Delta,601.2180569,0,Infection naive,BNT162b2,3 -240,2021-10-01,2021-09-22,BA.1,273.414923199941,0,Infection naive,BNT162b2,3 -240,2022-04-13,2021-09-22,BA.1,329.246601100001,0,Infection naive,BNT162b2,3 -240,2021-10-01,2021-09-22,BA.2,319.579559816621,0,Infection naive,BNT162b2,3 -240,2022-04-13,2021-09-22,BA.2,200.8312451,0,Infection naive,BNT162b2,3 -241,2022-01-18,2021-12-14,Delta,267.723484906625,0,Infection naive,BNT162b2,3 -241,2022-03-21,2021-12-14,Delta,250.909971299999,0,Infection naive,BNT162b2,3 -241,2022-07-20,2021-12-14,Delta,58.0018224500001,0,Infection naive,BNT162b2,3 -241,2022-01-18,2021-12-14,BA.1,167.507970104435,0,Infection naive,BNT162b2,3 -241,2022-03-21,2021-12-14,BA.1,143.9401586,0,Infection naive,BNT162b2,3 -241,2022-07-20,2021-12-14,BA.1,134.5462073,0,Infection naive,BNT162b2,3 -241,2022-01-18,2021-12-14,BA.2,156.988170065007,0,Infection naive,BNT162b2,3 -241,2022-03-21,2021-12-14,BA.2,112.418288,0,Infection naive,BNT162b2,3 -241,2022-07-20,2021-12-14,BA.2,51.80086447,0,Infection naive,BNT162b2,3 -242,2021-10-12,2021-09-21,Delta,222.32453064652,0,Previously infected (Pre-Omicron),BNT162b2,4 -242,2022-01-11,2021-09-21,Delta,122.9316995,0,Previously infected (Pre-Omicron),BNT162b2,4 -242,2021-10-12,2021-09-21,BA.1,196.995745774032,0,Previously infected (Pre-Omicron),BNT162b2,4 -242,2022-01-11,2021-09-21,BA.1,86.3494333899999,0,Previously infected (Pre-Omicron),BNT162b2,4 -242,2021-10-12,2021-09-21,BA.2,306.144771789469,0,Previously infected (Pre-Omicron),BNT162b2,4 -242,2022-01-11,2021-09-21,BA.2,83.7406890200002,0,Previously infected (Pre-Omicron),BNT162b2,4 -243,2022-01-31,2021-12-15,Delta,1327.838011,0,Previously infected (Pre-Omicron),BNT162b2,4 -243,2022-03-21,2021-12-15,Delta,1269.789225,0,Previously infected (Pre-Omicron),BNT162b2,4 -243,2022-07-11,2021-12-15,Delta,1004.838967,0,Previously infected (Pre-Omicron),BNT162b2,4 -243,2022-07-11,2021-12-15,Delta,1004.838967,0,Previously infected (Pre-Omicron),BNT162b2,4 -243,2022-01-31,2021-12-15,BA.1,555.126952800002,0,Previously infected (Pre-Omicron),BNT162b2,4 -243,2022-03-21,2021-12-15,BA.1,557.076628000001,0,Previously infected (Pre-Omicron),BNT162b2,4 -243,2022-07-11,2021-12-15,BA.1,611.850243099998,0,Previously infected (Pre-Omicron),BNT162b2,4 -243,2022-07-11,2021-12-15,BA.1,611.850243099998,0,Previously infected (Pre-Omicron),BNT162b2,4 -243,2022-01-31,2021-12-15,BA.2,512.120258602473,0,Previously infected (Pre-Omicron),BNT162b2,4 -243,2022-03-21,2021-12-15,BA.2,298.4611591,0,Previously infected (Pre-Omicron),BNT162b2,4 -243,2022-07-11,2021-12-15,BA.2,220.3843868,0,Previously infected (Pre-Omicron),BNT162b2,4 -243,2022-07-11,2021-12-15,BA.2,220.3843868,0,Previously infected (Pre-Omicron),BNT162b2,4 -244,2022-01-26,2021-12-09,Delta,624.309906500002,0,Infection naive,BNT162b2,3 -244,2022-01-26,2021-12-09,BA.1,277.5194129,0,Infection naive,BNT162b2,3 -244,2022-01-26,2021-12-09,BA.2,295.338420900001,0,Infection naive,BNT162b2,3 -245,2022-01-10,2022-01-05,Delta,490.591262434251,0,Previously infected (Pre-Omicron),mRNA1273,4 -245,2022-01-10,2022-01-05,BA.1,353.161851829877,0,Previously infected (Pre-Omicron),mRNA1273,4 -245,2022-03-21,2022-01-05,BA.1,296.895684500001,0,Previously infected (Pre-Omicron),mRNA1273,4 -245,2022-06-16,2022-01-05,BA.1,302.941641499999,0,Previously infected (Pre-Omicron),mRNA1273,4 -245,2022-01-10,2022-01-05,BA.2,434.318787559875,0,Previously infected (Pre-Omicron),mRNA1273,4 -245,2022-06-16,2022-01-05,BA.2,231.877641900001,0,Previously infected (Pre-Omicron),mRNA1273,4 -246,2022-01-11,2021-12-16,Delta,2560,1,Infection naive,BNT162b2,4 -246,2022-01-11,2021-12-16,BA.1,2034.813448,0,Infection naive,BNT162b2,4 -246,2022-01-11,2021-12-16,BA.2,978.7612945,0,Infection naive,BNT162b2,4 -247,2021-10-08,2021-10-08,Delta,51.5743457200001,0,Previously infected (Pre-Omicron),BNT162b2,5 -247,2021-10-08,2021-10-08,BA.1,5,-1,Previously infected (Pre-Omicron),BNT162b2,5 -247,2021-10-08,2021-10-08,BA.2,51.3938441100001,0,Previously infected (Pre-Omicron),BNT162b2,5 -248,2022-02-08,2022-01-23,Delta,2560,1,Previously infected (Pre-Omicron),mRNA1273,4 -248,2023-01-16,2022-01-23,Delta,2560,1,Previously infected (Pre-Omicron),mRNA1273,4 -248,2022-02-08,2022-01-23,BA.1,1308.199394,0,Previously infected (Pre-Omicron),mRNA1273,4 -248,2023-01-16,2022-01-23,BA.1,773.179455604743,0,Previously infected (Pre-Omicron),mRNA1273,4 -248,2022-02-08,2022-01-23,BA.2,464.6427158,0,Previously infected (Pre-Omicron),mRNA1273,4 -248,2023-01-16,2022-01-23,BA.2,679.114820683619,0,Previously infected (Pre-Omicron),mRNA1273,4 -249,2021-12-20,2021-11-19,Delta,389.931140975734,0,Infection naive,BNT162b2,3 -249,2021-12-20,2021-11-19,BA.1,223.692785009915,0,Infection naive,BNT162b2,3 -249,2021-12-20,2021-11-19,BA.2,380.811633106917,0,Infection naive,BNT162b2,3 -250,2021-09-30,2021-09-28,Delta,208.1796046,0,Previously infected (Pre-Omicron),BNT162b2,4 -250,2021-09-30,2021-09-28,BA.1,132.324114,0,Previously infected (Pre-Omicron),BNT162b2,4 -250,2021-09-30,2021-09-28,BA.2,96.9406868499997,0,Previously infected (Pre-Omicron),BNT162b2,4 -251,2021-12-02,2021-12-02,Delta,429.774598748674,0,Infection naive,BNT162b2,5 -251,2022-01-11,2021-12-02,Delta,2560,1,Infection naive,BNT162b2,5 -251,2022-07-11,2021-12-02,Delta,2560,1,Infection naive,BNT162b2,5 -251,2022-07-11,2021-12-02,Delta,2560,1,Infection naive,BNT162b2,5 -251,2022-12-08,2021-12-02,Delta,2560,1,Infection naive,BNT162b2,5 -251,2021-12-02,2021-12-02,BA.1,235.564956829147,0,Infection naive,BNT162b2,5 -251,2022-01-11,2021-12-02,BA.1,2560,1,Infection naive,BNT162b2,5 -251,2022-07-11,2021-12-02,BA.1,2560,1,Infection naive,BNT162b2,5 -251,2022-07-11,2021-12-02,BA.1,2560,1,Infection naive,BNT162b2,5 -251,2022-12-08,2021-12-02,BA.1,2560,1,Infection naive,BNT162b2,5 -251,2021-12-02,2021-12-02,BA.2,193.912157451256,0,Infection naive,BNT162b2,5 -251,2022-01-11,2021-12-02,BA.2,976.191043000001,0,Infection naive,BNT162b2,5 -251,2022-07-11,2021-12-02,BA.2,1087.315338,0,Infection naive,BNT162b2,5 -251,2022-07-11,2021-12-02,BA.2,1087.315338,0,Infection naive,BNT162b2,5 -252,2022-01-18,2021-12-10,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,5 -252,2022-04-21,2021-12-10,Delta,2555.613512,0,Previously infected (Pre-Omicron),BNT162b2,5 -252,2022-01-18,2021-12-10,BA.1,1077.826739,0,Previously infected (Pre-Omicron),BNT162b2,5 -252,2022-04-21,2021-12-10,BA.1,858.932495200001,0,Previously infected (Pre-Omicron),BNT162b2,5 -252,2022-01-18,2021-12-10,BA.2,760.4100367,0,Previously infected (Pre-Omicron),BNT162b2,5 -252,2022-04-21,2021-12-10,BA.2,720.190129099998,0,Previously infected (Pre-Omicron),BNT162b2,5 -253,2022-01-11,2021-12-18,Delta,1294.511971,0,Previously infected (Pre-Omicron),BNT162b2,4 -253,2022-01-11,2021-12-18,BA.1,319.299573300001,0,Previously infected (Pre-Omicron),BNT162b2,4 -253,2022-01-11,2021-12-18,BA.2,637.023297460253,0,Previously infected (Pre-Omicron),BNT162b2,4 -254,2021-12-15,2021-12-15,Delta,308.028882007146,0,Infection naive,BNT162b2,5 -254,2022-01-12,2021-12-15,Delta,2171.166593,0,Infection naive,BNT162b2,5 -254,2021-12-15,2021-12-15,BA.1,130.824916440835,0,Infection naive,BNT162b2,5 -254,2022-01-12,2021-12-15,BA.1,956.7087126,0,Infection naive,BNT162b2,5 -254,2021-12-15,2021-12-15,BA.2,228.048074655464,0,Infection naive,BNT162b2,5 -254,2022-01-12,2021-12-15,BA.2,530.393506700002,0,Infection naive,BNT162b2,5 -255,2021-11-15,2021-10-15,Delta,586.642666327646,0,Previously infected (Pre-Omicron),BNT162b2,4 -255,2021-11-15,2021-10-15,BA.1,584.589514870015,0,Previously infected (Pre-Omicron),BNT162b2,4 -255,2022-04-08,2021-10-15,BA.1,888.801174300003,0,Previously infected (Pre-Omicron),BNT162b2,4 -255,2021-11-15,2021-10-15,BA.2,1047.09793601577,0,Previously infected (Pre-Omicron),BNT162b2,4 -255,2022-04-08,2021-10-15,BA.2,536.001581899998,0,Previously infected (Pre-Omicron),BNT162b2,4 -256,2022-01-31,2022-01-08,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -256,2022-04-26,2022-01-08,Delta,1380.047273,0,Previously infected (Pre-Omicron),BNT162b2,4 -256,2022-04-26,2022-01-08,Delta,1380.047273,0,Previously infected (Pre-Omicron),BNT162b2,4 -256,2022-07-06,2022-01-08,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -256,2023-01-09,2022-01-08,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -256,2022-01-31,2022-01-08,BA.1,891.922755200002,0,Previously infected (Pre-Omicron),BNT162b2,4 -256,2022-04-26,2022-01-08,BA.1,685.0933769,0,Previously infected (Pre-Omicron),BNT162b2,4 -256,2022-04-26,2022-01-08,BA.1,685.0933769,0,Previously infected (Pre-Omicron),BNT162b2,4 -256,2022-01-31,2022-01-08,BA.2,2205.69245238783,0,Previously infected (Pre-Omicron),BNT162b2,4 -256,2022-04-26,2022-01-08,BA.2,608.6409945,0,Previously infected (Pre-Omicron),BNT162b2,4 -256,2022-04-26,2022-01-08,BA.2,608.6409945,0,Previously infected (Pre-Omicron),BNT162b2,4 -257,2022-01-19,2021-12-08,Delta,2560,1,Infection naive,AZD1222,3 -257,2022-06-16,2021-12-08,Delta,1669.153698,0,Infection naive,AZD1222,3 -257,2022-01-19,2021-12-08,BA.1,1216.408623,0,Infection naive,AZD1222,3 -257,2022-06-16,2021-12-08,BA.1,1120.205809,0,Infection naive,AZD1222,3 -257,2022-01-19,2021-12-08,BA.2,2560,1,Infection naive,AZD1222,3 -257,2022-06-16,2021-12-08,BA.2,625.4052728,0,Infection naive,AZD1222,3 -258,2021-11-23,2021-10-05,Delta,270.317203679223,0,Previously infected (Pre-Omicron),BNT162b2,4 -258,2022-06-14,2021-10-05,Delta,177.795223,0,Previously infected (Pre-Omicron),BNT162b2,4 -258,2021-11-23,2021-10-05,BA.1,301.352666053073,0,Previously infected (Pre-Omicron),BNT162b2,4 -258,2022-06-14,2021-10-05,BA.1,145.5896512,0,Previously infected (Pre-Omicron),BNT162b2,4 -258,2021-11-23,2021-10-05,BA.2,595.971449521582,0,Previously infected (Pre-Omicron),BNT162b2,4 -258,2022-06-14,2021-10-05,BA.2,165.7553684,0,Previously infected (Pre-Omicron),BNT162b2,4 -259,2022-01-31,2022-01-11,Delta,2560,1,Infection naive,BNT162b2,4 -259,2022-06-16,2022-01-11,Delta,2560,1,Infection naive,BNT162b2,4 -259,2023-01-19,2022-01-11,Delta,2560,1,Infection naive,BNT162b2,4 -259,2022-01-31,2022-01-11,BA.1,1438.085801,0,Infection naive,BNT162b2,4 -259,2022-06-16,2022-01-11,BA.1,2560,1,Infection naive,BNT162b2,4 -259,2023-01-19,2022-01-11,BA.1,2560,1,Infection naive,BNT162b2,4 -259,2022-01-31,2022-01-11,BA.2,1983.74375909442,0,Infection naive,BNT162b2,4 -259,2022-06-16,2022-01-11,BA.2,1399.537244,0,Infection naive,BNT162b2,4 -259,2023-01-19,2022-01-11,BA.2,2101.88462610155,0,Infection naive,BNT162b2,4 -260,2022-01-17,2021-12-17,Delta,550.765095651552,0,Previously infected (Pre-Omicron),BNT162b2,4 -260,2022-01-17,2021-12-17,BA.1,439.681103635157,0,Previously infected (Pre-Omicron),BNT162b2,4 -260,2022-01-17,2021-12-17,BA.2,937.615200794511,0,Previously infected (Pre-Omicron),BNT162b2,4 -261,2022-01-06,2021-12-13,Delta,648.857147733311,0,Infection naive,BNT162b2,3 -261,2022-03-21,2021-12-13,Delta,413.878182099999,0,Infection naive,BNT162b2,3 -261,2022-01-06,2021-12-13,BA.1,495.778491582079,0,Infection naive,BNT162b2,3 -261,2022-03-21,2021-12-13,BA.1,326.087449299999,0,Infection naive,BNT162b2,3 -261,2022-01-06,2021-12-13,BA.2,796.567552606504,0,Infection naive,BNT162b2,3 -261,2022-03-21,2021-12-13,BA.2,202.7769085,0,Infection naive,BNT162b2,3 -262,2021-11-09,2021-10-16,Delta,992.584030628349,0,Infection naive,BNT162b2,3 -262,2022-01-17,2021-10-16,Delta,240.3619805,0,Infection naive,BNT162b2,3 -262,2022-07-06,2021-10-16,Delta,220.9646454,0,Infection naive,BNT162b2,3 -262,2022-07-06,2021-10-16,Delta,220.9646454,0,Infection naive,BNT162b2,3 -262,2021-11-09,2021-10-16,BA.1,218.844469065114,0,Infection naive,BNT162b2,3 -262,2022-01-17,2021-10-16,BA.1,129.2293861,0,Infection naive,BNT162b2,3 -262,2022-07-06,2021-10-16,BA.1,113.4079572,0,Infection naive,BNT162b2,3 -262,2022-07-06,2021-10-16,BA.1,113.4079572,0,Infection naive,BNT162b2,3 -262,2021-11-09,2021-10-16,BA.2,280.945805803223,0,Infection naive,BNT162b2,3 -262,2022-01-17,2021-10-16,BA.2,124.3404442,0,Infection naive,BNT162b2,3 -262,2022-07-06,2021-10-16,BA.2,63.9845498100001,0,Infection naive,BNT162b2,3 -262,2022-07-06,2021-10-16,BA.2,63.9845498100001,0,Infection naive,BNT162b2,3 -263,2022-01-20,2021-12-17,Delta,2560,1,Infection naive,BNT162b2,4 -263,2022-06-09,2021-12-17,Delta,2560,1,Infection naive,BNT162b2,4 -263,2022-06-09,2021-12-17,Delta,2560,1,Infection naive,BNT162b2,4 -263,2022-01-20,2021-12-17,BA.1,2560,1,Infection naive,BNT162b2,4 -263,2022-06-09,2021-12-17,BA.1,1527.74217,0,Infection naive,BNT162b2,4 -263,2022-06-09,2021-12-17,BA.1,1527.74217,0,Infection naive,BNT162b2,4 -263,2022-01-20,2021-12-17,BA.2,1481.586815,0,Infection naive,BNT162b2,4 -263,2022-06-09,2021-12-17,BA.2,1227.117221,0,Infection naive,BNT162b2,4 -263,2022-06-09,2021-12-17,BA.2,1227.117221,0,Infection naive,BNT162b2,4 -264,2021-12-10,2021-11-15,Delta,231.066108860875,0,Infection naive,BNT162b2,3 -264,2021-12-10,2021-11-15,BA.1,186.739773455233,0,Infection naive,BNT162b2,3 -264,2021-12-10,2021-11-15,BA.2,368.983196266903,0,Infection naive,BNT162b2,3 -265,2021-10-21,2021-10-04,Delta,577.459907235951,0,Infection naive,BNT162b2,3 -265,2022-01-12,2021-10-04,Delta,373.211585900001,0,Infection naive,BNT162b2,3 -265,2021-10-21,2021-10-04,BA.1,143.059724530235,0,Infection naive,BNT162b2,3 -265,2022-01-12,2021-10-04,BA.1,228.4481903,0,Infection naive,BNT162b2,3 -265,2021-10-21,2021-10-04,BA.2,289.698012148021,0,Infection naive,BNT162b2,3 -265,2022-01-12,2021-10-04,BA.2,231.268725500001,0,Infection naive,BNT162b2,3 -266,2022-02-01,2022-01-11,Delta,1201.5734,0,Previously infected (Omicron),BNT162b2,5 -266,2022-04-21,2022-01-11,Delta,571.418062100002,0,Previously infected (Omicron),BNT162b2,5 -266,2022-04-21,2022-01-11,Delta,571.418062100002,0,Previously infected (Omicron),BNT162b2,5 -266,2022-02-01,2022-01-11,BA.1,624.309906500002,0,Previously infected (Omicron),BNT162b2,5 -266,2022-04-21,2022-01-11,BA.1,447.456604200001,0,Previously infected (Omicron),BNT162b2,5 -266,2022-04-21,2022-01-11,BA.1,447.456604200001,0,Previously infected (Omicron),BNT162b2,5 -266,2022-02-01,2022-01-11,BA.2,439.6811036,0,Previously infected (Omicron),BNT162b2,5 -266,2022-04-21,2022-01-11,BA.2,340.397397299999,0,Previously infected (Omicron),BNT162b2,5 -266,2022-04-21,2022-01-11,BA.2,340.397397299999,0,Previously infected (Omicron),BNT162b2,5 -267,2022-01-13,2021-12-08,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -267,2022-07-07,2021-12-08,Delta,1362.022,0,Previously infected (Pre-Omicron),BNT162b2,4 -267,2022-01-13,2021-12-08,BA.1,1878.81880200001,0,Previously infected (Pre-Omicron),BNT162b2,4 -267,2022-07-07,2021-12-08,BA.1,707.675309300002,0,Previously infected (Pre-Omicron),BNT162b2,4 -267,2022-01-13,2021-12-08,BA.2,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -267,2022-07-07,2021-12-08,BA.2,769.798437799998,0,Previously infected (Pre-Omicron),BNT162b2,4 -268,2022-01-10,2021-12-06,Delta,618.319594774105,0,Infection naive,BNT162b2,3 -268,2022-01-10,2021-12-06,BA.1,378.814217542421,0,Infection naive,BNT162b2,3 -268,2022-01-10,2021-12-06,BA.2,695.377960810212,0,Infection naive,BNT162b2,3 -269,2021-11-30,2021-11-30,Delta,301.881396336384,0,Infection naive,BNT162b2,3 -269,2022-01-13,2021-11-30,Delta,931.063691899999,0,Infection naive,BNT162b2,3 -269,2022-07-04,2021-11-30,Delta,1434.309352,0,Infection naive,BNT162b2,3 -269,2022-11-23,2021-11-30,Delta,649.995582737199,0,Infection naive,BNT162b2,3 -269,2021-11-30,2021-11-30,BA.1,200.128369273714,0,Infection naive,BNT162b2,3 -269,2022-01-13,2021-11-30,BA.1,460.991830000001,0,Infection naive,BNT162b2,3 -269,2022-07-04,2021-11-30,BA.1,741.3252875,0,Infection naive,BNT162b2,3 -269,2022-11-23,2021-11-30,BA.1,731.642582080143,0,Infection naive,BNT162b2,3 -269,2021-11-30,2021-11-30,BA.2,539.300302437901,0,Infection naive,BNT162b2,3 -269,2022-01-13,2021-11-30,BA.2,919.70851255915,0,Infection naive,BNT162b2,3 -269,2022-07-04,2021-11-30,BA.2,808.5255807,0,Infection naive,BNT162b2,3 -269,2022-11-23,2021-11-30,BA.2,629.805990224052,0,Infection naive,BNT162b2,3 -270,2022-02-08,2022-01-23,Delta,888.801174300003,0,Infection naive,BNT162b2,4 -270,2022-02-08,2022-01-23,BA.1,748.507284700002,0,Infection naive,BNT162b2,4 -270,2022-02-08,2022-01-23,BA.2,494.910160200001,0,Infection naive,BNT162b2,4 -271,2021-10-21,2021-10-02,Delta,947.529003325105,0,Infection naive,BNT162b2,3 -271,2022-01-19,2021-10-02,Delta,447.064583499999,0,Infection naive,BNT162b2,3 -271,2021-10-21,2021-10-02,BA.1,462.205593339281,0,Infection naive,BNT162b2,3 -271,2022-01-19,2021-10-02,BA.1,370.6038007,0,Infection naive,BNT162b2,3 -271,2021-10-21,2021-10-02,BA.2,930.247978689868,0,Infection naive,BNT162b2,3 -271,2022-01-19,2021-10-02,BA.2,191.8832941,0,Infection naive,BNT162b2,3 -272,2022-01-18,2021-12-23,Delta,2560,1,Infection naive,BNT162b2,4 -272,2022-01-18,2021-12-23,BA.1,1030.707638,0,Infection naive,BNT162b2,4 -272,2022-01-18,2021-12-23,BA.2,727.167367800001,0,Infection naive,BNT162b2,4 -273,2021-10-27,2021-10-01,Delta,565.935252499999,0,Infection naive,BNT162b2,3 -273,2022-01-27,2021-10-01,Delta,402.783985499999,0,Infection naive,BNT162b2,3 -273,2022-07-20,2021-10-01,Delta,169.1307959,0,Infection naive,BNT162b2,3 -273,2021-10-27,2021-10-01,BA.1,204.741421500001,0,Infection naive,BNT162b2,3 -273,2022-01-27,2021-10-01,BA.1,152.2453248,0,Infection naive,BNT162b2,3 -273,2022-07-20,2021-10-01,BA.1,83.00991503,0,Infection naive,BNT162b2,3 -274,2022-01-26,2022-01-08,Delta,734.212202293392,0,Previously infected (Pre-Omicron),mRNA1273,4 -274,2022-04-21,2022-01-08,Delta,1415.575343,0,Previously infected (Pre-Omicron),mRNA1273,4 -274,2022-01-26,2022-01-08,BA.1,630.358252742624,0,Previously infected (Pre-Omicron),mRNA1273,4 -274,2022-04-21,2022-01-08,BA.1,447.064583499999,0,Previously infected (Pre-Omicron),mRNA1273,4 -274,2022-01-26,2022-01-08,BA.2,940.908222593982,0,Previously infected (Pre-Omicron),mRNA1273,4 -274,2022-04-21,2022-01-08,BA.2,276.79064,0,Previously infected (Pre-Omicron),mRNA1273,4 -275,2022-01-17,2022-01-07,Delta,391.98717397027,0,Infection naive,mRNA1273,3 -275,2022-01-17,2022-01-07,BA.1,374.522351602284,0,Infection naive,mRNA1273,3 -275,2022-01-17,2022-01-07,BA.2,278.250104602277,0,Infection naive,mRNA1273,3 -276,2021-09-24,2021-09-24,Delta,90.6935144899999,0,Infection naive,BNT162b2,3 -276,2021-09-24,2021-09-24,BA.1,5,-1,Infection naive,BNT162b2,3 -276,2021-09-24,2021-09-24,BA.2,5,-1,Infection naive,BNT162b2,3 -277,2022-01-26,2022-01-10,Delta,2560,1,Previously infected (Omicron),BNT162b2,4 -277,2022-04-12,2022-01-10,Delta,1828.45619200001,0,Previously infected (Omicron),BNT162b2,4 -277,2022-07-13,2022-01-10,Delta,1253.204069,0,Previously infected (Omicron),BNT162b2,4 -277,2022-07-13,2022-01-10,Delta,1253.204069,0,Previously infected (Omicron),BNT162b2,4 -277,2022-01-26,2022-01-10,BA.1,2560,1,Previously infected (Omicron),BNT162b2,4 -277,2022-04-12,2022-01-10,BA.1,762.41215,0,Previously infected (Omicron),BNT162b2,4 -277,2022-07-13,2022-01-10,BA.1,698.432117799998,0,Previously infected (Omicron),BNT162b2,4 -277,2022-07-13,2022-01-10,BA.1,698.432117799998,0,Previously infected (Omicron),BNT162b2,4 -277,2022-12-08,2022-01-10,BA.1,1255.40284517244,0,Previously infected (Omicron),BNT162b2,4 -277,2022-01-26,2022-01-10,BA.2,1202.627032,0,Previously infected (Omicron),BNT162b2,4 -277,2022-04-12,2022-01-10,BA.2,714.531303699999,0,Previously infected (Omicron),BNT162b2,4 -277,2022-07-13,2022-01-10,BA.2,535.5319861,0,Previously infected (Omicron),BNT162b2,4 -277,2022-07-13,2022-01-10,BA.2,535.5319861,0,Previously infected (Omicron),BNT162b2,4 -277,2022-12-08,2022-01-10,BA.2,747.851510785299,0,Previously infected (Omicron),BNT162b2,4 -278,2022-01-11,2021-12-12,Delta,2560,1,Infection naive,mRNA1273,4 -278,2022-01-11,2021-12-12,BA.1,2463.24506303203,0,Infection naive,mRNA1273,4 -278,2022-01-11,2021-12-12,BA.2,2560,1,Infection naive,mRNA1273,4 -279,2021-11-30,2021-10-30,Delta,432.419565403068,0,Infection naive,BNT162b2,3 -279,2022-01-18,2021-10-30,Delta,610.243509120078,0,Infection naive,BNT162b2,3 -279,2022-07-06,2021-10-30,Delta,321.546351899999,0,Infection naive,BNT162b2,3 -279,2022-07-06,2021-10-30,Delta,321.546351899999,0,Infection naive,BNT162b2,3 -279,2021-11-30,2021-10-30,BA.1,799.365197432719,0,Infection naive,BNT162b2,3 -279,2022-01-18,2021-10-30,BA.1,299.772024987397,0,Infection naive,BNT162b2,3 -279,2022-07-06,2021-10-30,BA.1,250.6901469,0,Infection naive,BNT162b2,3 -279,2022-07-06,2021-10-30,BA.1,250.6901469,0,Infection naive,BNT162b2,3 -279,2021-11-30,2021-10-30,BA.2,594.927635105804,0,Infection naive,BNT162b2,3 -279,2022-01-18,2021-10-30,BA.2,514.820571653188,0,Infection naive,BNT162b2,3 -279,2022-07-06,2021-10-30,BA.2,109.9817347,0,Infection naive,BNT162b2,3 -279,2022-07-06,2021-10-30,BA.2,109.9817347,0,Infection naive,BNT162b2,3 -280,2022-02-22,2022-01-04,Delta,2560,1,Infection naive,BNT162b2,5 -280,2022-06-16,2022-01-04,Delta,974.481292799999,0,Infection naive,BNT162b2,5 -280,2022-02-22,2022-01-04,BA.1,1308.199394,0,Infection naive,BNT162b2,5 -280,2022-06-16,2022-01-04,BA.1,1061.885769,0,Infection naive,BNT162b2,5 -280,2022-02-22,2022-01-04,BA.2,604.91814,0,Infection naive,BNT162b2,5 -280,2022-06-16,2022-01-04,BA.2,564.944045000001,0,Infection naive,BNT162b2,5 -281,2021-12-20,2021-10-31,Delta,167.801866746035,0,Previously infected (Pre-Omicron),BNT162b2,4 -281,2021-12-20,2021-10-31,BA.1,214.47688110084,0,Previously infected (Pre-Omicron),BNT162b2,4 -281,2021-12-20,2021-10-31,BA.2,247.632749601869,0,Previously infected (Pre-Omicron),BNT162b2,4 -282,2021-12-14,2021-11-21,Delta,662.650970934107,0,Infection naive,BNT162b2,3 -282,2021-12-14,2021-11-21,BA.1,280.453743167698,0,Infection naive,BNT162b2,3 -282,2021-12-14,2021-11-21,BA.2,544.048007967548,0,Infection naive,BNT162b2,3 -283,2022-01-31,2022-01-24,Delta,288.684117400001,0,Infection naive,BNT162b2,4 -283,2022-01-31,2022-01-24,BA.1,185.2724835,0,Infection naive,BNT162b2,4 -283,2022-01-31,2022-01-24,BA.2,165.7553684,0,Infection naive,BNT162b2,4 -284,2022-01-12,2021-12-21,Delta,1195.270963,0,Infection naive,BNT162b2,4 -284,2022-03-09,2021-12-21,Delta,785.4745441,0,Infection naive,BNT162b2,4 -284,2022-01-12,2021-12-21,BA.1,814.214839700001,0,Infection naive,BNT162b2,4 -284,2022-03-09,2021-12-21,BA.1,873.356382600002,0,Infection naive,BNT162b2,4 -284,2022-01-12,2021-12-21,BA.2,688.102363199999,0,Infection naive,BNT162b2,4 -284,2022-03-09,2021-12-21,BA.2,375.508446099999,0,Infection naive,BNT162b2,4 -285,2022-01-25,2021-12-17,Delta,2560,1,Infection naive,BNT162b2,4 -285,2022-06-22,2021-12-17,Delta,2560,1,Infection naive,BNT162b2,4 -285,2023-01-16,2021-12-17,Delta,2560,1,Infection naive,BNT162b2,4 -285,2022-01-25,2021-12-17,BA.1,2560,1,Infection naive,BNT162b2,4 -285,2022-06-22,2021-12-17,BA.1,1155.103188,0,Infection naive,BNT162b2,4 -285,2022-01-25,2021-12-17,BA.2,901.353432100001,0,Infection naive,BNT162b2,4 -285,2022-06-22,2021-12-17,BA.2,692.944254000001,0,Infection naive,BNT162b2,4 -285,2023-01-16,2021-12-17,BA.2,1223.89478072528,0,Infection naive,BNT162b2,4 -286,2021-10-20,2021-10-04,Delta,352.234440000001,0,Previously infected (Pre-Omicron),BNT162b2,4 -286,2022-01-27,2021-10-04,Delta,324.0928808,0,Previously infected (Pre-Omicron),BNT162b2,4 -286,2021-10-20,2021-10-04,BA.1,283.419099300001,0,Previously infected (Pre-Omicron),BNT162b2,4 -286,2022-01-27,2021-10-04,BA.1,145.2073292,0,Previously infected (Pre-Omicron),BNT162b2,4 -287,2021-10-27,2021-09-29,Delta,467.092688800001,0,Infection naive,BNT162b2,3 -287,2022-01-19,2021-09-29,Delta,388.566447,0,Infection naive,BNT162b2,3 -287,2021-10-27,2021-09-29,BA.1,366.083946000001,0,Infection naive,BNT162b2,3 -287,2022-01-19,2021-09-29,BA.1,186.2493902,0,Infection naive,BNT162b2,3 -288,2021-10-04,2021-09-27,Delta,436.226351255983,0,Infection naive,BNT162b2,3 -288,2021-10-04,2021-09-27,BA.1,233.100288774725,0,Infection naive,BNT162b2,3 -288,2021-10-04,2021-09-27,BA.2,482.912002751992,0,Infection naive,BNT162b2,3 -289,2022-01-17,2021-12-20,Delta,584.589514870015,0,Previously infected (Pre-Omicron),BNT162b2,4 -289,2022-03-21,2021-12-20,Delta,871.826742300001,0,Previously infected (Pre-Omicron),BNT162b2,4 -289,2022-01-17,2021-12-20,BA.1,881.044935576664,0,Previously infected (Pre-Omicron),BNT162b2,4 -289,2022-03-21,2021-12-20,BA.1,703.963443499999,0,Previously infected (Pre-Omicron),BNT162b2,4 -289,2022-01-17,2021-12-20,BA.2,1297.92034166759,0,Previously infected (Pre-Omicron),BNT162b2,4 -289,2022-03-21,2021-12-20,BA.2,489.302957600001,0,Previously infected (Pre-Omicron),BNT162b2,4 -290,2022-01-25,2021-12-27,Delta,2018.825096,0,Infection naive,BNT162b2,4 -290,2022-01-25,2021-12-27,BA.1,814.928806099998,0,Infection naive,BNT162b2,4 -290,2022-01-25,2021-12-27,BA.2,1094.966325,0,Infection naive,BNT162b2,4 -291,2022-01-17,2021-12-26,Delta,1795.108826,0,Infection naive,BNT162b2,4 -291,2022-07-14,2021-12-26,Delta,2560,1,Infection naive,BNT162b2,4 -291,2022-09-27,2021-12-26,Delta,2560,1,Infection naive,BNT162b2,4 -291,2022-01-17,2021-12-26,BA.1,1215.342917,0,Infection naive,BNT162b2,4 -291,2022-01-17,2021-12-26,BA.2,803.580098599998,0,Infection naive,BNT162b2,4 -292,2021-09-21,2021-09-20,Delta,128.1016491,0,Infection naive,BNT162b2,3 -292,2021-10-18,2021-09-20,Delta,663.813607499998,0,Infection naive,BNT162b2,3 -292,2021-09-21,2021-09-20,BA.1,98.5685930800002,0,Infection naive,BNT162b2,3 -292,2021-10-18,2021-09-20,BA.1,608.107758700001,0,Infection naive,BNT162b2,3 -292,2021-09-21,2021-09-20,BA.2,108.2601829,0,Infection naive,BNT162b2,3 -293,2022-01-06,2021-12-18,Delta,323.808940153789,0,Previously infected (Pre-Omicron),BNT162b2,4 -293,2022-01-06,2021-12-18,BA.1,332.436358995789,0,Previously infected (Pre-Omicron),BNT162b2,4 -293,2022-01-06,2021-12-18,BA.2,446.28157204593,0,Previously infected (Pre-Omicron),BNT162b2,4 -294,2021-10-07,2021-10-07,Delta,186.9035213,0,Infection naive,BNT162b2,3 -294,2021-10-21,2021-10-07,Delta,1278.7242046288,0,Infection naive,BNT162b2,3 -294,2022-01-05,2021-10-07,Delta,800.767702300003,0,Infection naive,BNT162b2,3 -294,2022-07-06,2021-10-07,Delta,375.508446099999,0,Infection naive,BNT162b2,3 -294,2021-10-07,2021-10-07,BA.1,178.7327035,0,Infection naive,BNT162b2,3 -294,2021-10-21,2021-10-07,BA.1,753.113831544595,0,Infection naive,BNT162b2,3 -294,2022-01-05,2021-10-07,BA.1,384.8381158,0,Infection naive,BNT162b2,3 -294,2022-07-06,2021-10-07,BA.1,306.144771800001,0,Infection naive,BNT162b2,3 -294,2021-10-07,2021-10-07,BA.2,99.8730697099998,0,Infection naive,BNT162b2,3 -294,2021-10-21,2021-10-07,BA.2,987.377774780354,0,Infection naive,BNT162b2,3 -294,2022-01-05,2021-10-07,BA.2,271.504459,0,Infection naive,BNT162b2,3 -294,2022-07-06,2021-10-07,BA.2,211.6755245,0,Infection naive,BNT162b2,3 -295,2022-01-17,2021-12-08,Delta,291.225534853536,0,Infection naive,BNT162b2,3 -295,2022-01-17,2021-12-08,BA.1,197.68761946026,0,Infection naive,BNT162b2,3 -295,2022-01-17,2021-12-08,BA.2,355.335319792884,0,Infection naive,BNT162b2,3 -296,2022-01-12,2021-12-07,Delta,1182.765086,0,Previously infected (Pre-Omicron),BNT162b2,4 -296,2022-01-12,2021-12-07,BA.1,241.2061618,0,Previously infected (Pre-Omicron),BNT162b2,4 -296,2022-01-12,2021-12-07,BA.2,262.6104695,0,Previously infected (Pre-Omicron),BNT162b2,4 -297,2021-12-20,2021-12-06,Delta,665.561388285487,0,Infection naive,BNT162b2,3 -297,2021-12-20,2021-12-06,BA.1,612.386760612603,0,Infection naive,BNT162b2,3 -297,2021-12-20,2021-12-06,BA.2,1604.60006780031,0,Infection naive,BNT162b2,3 -298,2022-01-27,2022-01-07,Delta,2560,1,Infection naive,BNT162b2,4 -298,2022-04-21,2022-01-07,Delta,2560,1,Infection naive,BNT162b2,4 -298,2022-04-21,2022-01-07,Delta,2560,1,Infection naive,BNT162b2,4 -298,2022-01-27,2022-01-07,BA.1,1020.817902,0,Infection naive,BNT162b2,4 -298,2022-04-21,2022-01-07,BA.1,1709.12585,0,Infection naive,BNT162b2,4 -298,2022-04-21,2022-01-07,BA.1,1709.12585,0,Infection naive,BNT162b2,4 -298,2022-01-27,2022-01-07,BA.2,1019.02999,0,Infection naive,BNT162b2,4 -298,2022-04-21,2022-01-07,BA.2,764.419534700003,0,Infection naive,BNT162b2,4 -298,2022-04-21,2022-01-07,BA.2,764.419534700003,0,Infection naive,BNT162b2,4 -299,2022-01-20,2021-12-04,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -299,2022-01-20,2021-12-04,BA.1,1212.151396,0,Previously infected (Pre-Omicron),BNT162b2,4 -299,2022-01-20,2021-12-04,BA.2,2376.29701486302,0,Previously infected (Pre-Omicron),BNT162b2,4 -300,2022-01-25,2022-01-10,Delta,2560,1,Infection naive,BNT162b2,4 -300,2022-07-11,2022-01-10,Delta,2560,1,Infection naive,BNT162b2,4 -300,2022-09-20,2022-01-10,Delta,2560,1,Infection naive,BNT162b2,4 -300,2022-01-25,2022-01-10,BA.1,1041.605746,0,Infection naive,BNT162b2,4 -300,2022-01-25,2022-01-10,BA.2,1024.403142,0,Infection naive,BNT162b2,4 -301,2022-01-10,2022-01-10,Delta,148.424276,0,Infection naive,BNT162b2,3 -301,2022-01-27,2022-01-10,Delta,571.919125600001,0,Infection naive,BNT162b2,3 -301,2022-04-12,2022-01-10,Delta,181.0980881,0,Infection naive,BNT162b2,3 -301,2022-04-12,2022-01-10,Delta,181.0980881,0,Infection naive,BNT162b2,3 -301,2022-07-14,2022-01-10,Delta,182.8525756,0,Infection naive,BNT162b2,3 -301,2022-12-15,2022-01-10,Delta,111.534971991955,0,Infection naive,BNT162b2,3 -301,2022-01-10,2022-01-10,BA.1,98.5685930800002,0,Infection naive,BNT162b2,3 -301,2022-01-27,2022-01-10,BA.1,218.4611738,0,Infection naive,BNT162b2,3 -301,2022-04-12,2022-01-10,BA.1,163.1607879,0,Infection naive,BNT162b2,3 -301,2022-04-12,2022-01-10,BA.1,163.1607879,0,Infection naive,BNT162b2,3 -301,2022-07-14,2022-01-10,BA.1,237.4305447,0,Infection naive,BNT162b2,3 -301,2022-12-15,2022-01-10,BA.1,106.472215536784,0,Infection naive,BNT162b2,3 -301,2022-01-10,2022-01-10,BA.2,101.8175944,0,Infection naive,BNT162b2,3 -301,2022-01-27,2022-01-10,BA.2,410.626173688247,0,Infection naive,BNT162b2,3 -301,2022-04-12,2022-01-10,BA.2,195.7907883,0,Infection naive,BNT162b2,3 -301,2022-04-12,2022-01-10,BA.2,195.7907883,0,Infection naive,BNT162b2,3 -301,2022-07-14,2022-01-10,BA.2,218.078549899999,0,Infection naive,BNT162b2,3 -301,2022-12-15,2022-01-10,BA.2,130.024703940673,0,Infection naive,BNT162b2,3 -302,2022-01-12,2021-12-11,Delta,2560,1,Previously infected (Pre-Omicron),mRNA1273,4 -302,2022-04-21,2021-12-11,Delta,1253.204069,0,Previously infected (Pre-Omicron),mRNA1273,4 -302,2022-07-21,2021-12-11,Delta,725.89377020206,0,Previously infected (Pre-Omicron),mRNA1273,4 -302,2022-01-12,2021-12-11,BA.1,587.1570799,0,Previously infected (Pre-Omicron),mRNA1273,4 -302,2022-04-21,2021-12-11,BA.1,769.124010500002,0,Previously infected (Pre-Omicron),mRNA1273,4 -302,2022-07-21,2021-12-11,BA.1,169.724804358431,0,Previously infected (Pre-Omicron),mRNA1273,4 -302,2022-12-08,2021-12-11,BA.1,284.165324557694,0,Previously infected (Pre-Omicron),mRNA1273,4 -302,2022-01-12,2021-12-11,BA.2,1378.83820162041,0,Previously infected (Pre-Omicron),mRNA1273,4 -302,2022-04-21,2021-12-11,BA.2,485.8839935,0,Previously infected (Pre-Omicron),mRNA1273,4 -302,2022-07-21,2021-12-11,BA.2,265.154653107478,0,Previously infected (Pre-Omicron),mRNA1273,4 -302,2022-12-08,2021-12-11,BA.2,231.877641921509,0,Previously infected (Pre-Omicron),mRNA1273,4 -303,2022-01-12,2022-01-08,Delta,588.187260700001,0,Infection naive,BNT162b2,3 -303,2022-01-12,2022-01-08,BA.1,352.543306400001,0,Infection naive,BNT162b2,3 -303,2022-01-12,2022-01-08,BA.2,254.0078308,0,Infection naive,BNT162b2,3 -304,2022-01-19,2021-12-17,Delta,2560,1,Infection naive,BNT162b2,4 -304,2022-04-07,2021-12-17,Delta,2560,1,Infection naive,BNT162b2,4 -304,2022-06-16,2021-12-17,Delta,1260.916677,0,Infection naive,BNT162b2,4 -304,2022-01-19,2021-12-17,BA.1,1360.82872,0,Infection naive,BNT162b2,4 -304,2022-04-07,2021-12-17,BA.1,1475.10802,0,Infection naive,BNT162b2,4 -304,2022-06-16,2021-12-17,BA.1,997.817738100004,0,Infection naive,BNT162b2,4 -304,2022-01-19,2021-12-17,BA.2,2560,1,Infection naive,BNT162b2,4 -304,2022-06-16,2021-12-17,BA.2,698.432117799998,0,Infection naive,BNT162b2,4 -305,2022-01-06,2021-12-24,Delta,332.436358995789,0,Infection naive,mRNA1273,4 -305,2022-04-19,2021-12-24,Delta,592.8454876,0,Infection naive,mRNA1273,4 -305,2022-07-14,2021-12-24,Delta,436.991720599999,0,Infection naive,mRNA1273,4 -305,2022-09-20,2021-12-24,Delta,500.14305484178,0,Infection naive,mRNA1273,4 -305,2022-01-06,2021-12-24,BA.1,514.820571653188,0,Infection naive,mRNA1273,4 -305,2022-04-19,2021-12-24,BA.1,692.944254000001,0,Infection naive,mRNA1273,4 -305,2022-07-14,2021-12-24,BA.1,633.6820123,0,Infection naive,mRNA1273,4 -305,2022-09-20,2021-12-24,BA.1,590.770627342345,0,Infection naive,mRNA1273,4 -305,2022-01-06,2021-12-24,BA.2,786.852677536651,0,Infection naive,mRNA1273,4 -305,2022-04-19,2021-12-24,BA.2,363.844732199999,0,Infection naive,mRNA1273,4 -305,2022-07-14,2021-12-24,BA.2,405.2628435,0,Infection naive,mRNA1273,4 -305,2022-09-20,2021-12-24,BA.2,330.692679181588,0,Infection naive,mRNA1273,4 -306,2021-11-16,2021-09-27,Delta,743.9289146,0,Infection naive,BNT162b2,3 -306,2022-01-18,2021-09-27,Delta,333.603917,0,Infection naive,BNT162b2,3 -306,2021-11-16,2021-09-27,BA.1,254.0078308,0,Infection naive,BNT162b2,3 -306,2022-01-18,2021-09-27,BA.1,115.5147134,0,Infection naive,BNT162b2,3 -306,2021-11-16,2021-09-27,BA.2,263.995164700001,0,Infection naive,BNT162b2,3 -306,2022-01-18,2021-09-27,BA.2,134.075318,0,Infection naive,BNT162b2,3 -307,2022-01-31,2022-01-20,Delta,1046.180564,0,Infection naive,BNT162b2,4 -307,2022-01-31,2022-01-20,BA.1,974.481292799999,0,Infection naive,BNT162b2,4 -307,2022-01-31,2022-01-20,BA.2,507.206416999999,0,Infection naive,BNT162b2,4 -308,2022-01-10,2021-12-18,Delta,578.473074115649,0,Infection naive,BNT162b2,3 -308,2022-01-10,2021-12-18,BA.1,714.531303745857,0,Infection naive,BNT162b2,3 -308,2022-01-10,2021-12-18,BA.2,1068.42094444113,0,Infection naive,BNT162b2,3 -309,2022-01-26,2021-12-31,Delta,2560,1,Infection naive,BNT162b2,4 -309,2022-01-26,2021-12-31,BA.1,2560,1,Infection naive,BNT162b2,4 -309,2022-01-26,2021-12-31,BA.2,1641.58684800001,0,Infection naive,BNT162b2,4 -310,2021-11-16,2021-10-10,Delta,710.783477200283,0,Previously infected (Pre-Omicron),BNT162b2,4 -310,2022-01-25,2021-10-10,Delta,984.784896199998,0,Previously infected (Pre-Omicron),BNT162b2,4 -310,2022-08-16,2021-10-10,Delta,1121.18809180206,0,Previously infected (Pre-Omicron),BNT162b2,4 -310,2021-11-16,2021-10-10,BA.1,591.288660640886,0,Previously infected (Pre-Omicron),BNT162b2,4 -310,2022-01-25,2021-10-10,BA.1,495.344135599999,0,Previously infected (Pre-Omicron),BNT162b2,4 -310,2022-08-16,2021-10-10,BA.1,182.532318408973,0,Previously infected (Pre-Omicron),BNT162b2,4 -310,2021-11-16,2021-10-10,BA.2,1518.3974797845,0,Previously infected (Pre-Omicron),BNT162b2,4 -310,2022-01-25,2021-10-10,BA.2,501.899619800001,0,Previously infected (Pre-Omicron),BNT162b2,4 -310,2022-08-16,2021-10-10,BA.2,247.84989311606,0,Previously infected (Pre-Omicron),BNT162b2,4 -311,2022-01-11,2021-12-10,Delta,2560,1,Previously infected (Pre-Omicron),mRNA1273,4 -311,2022-01-11,2021-12-10,BA.1,2560,1,Previously infected (Pre-Omicron),mRNA1273,4 -311,2022-01-11,2021-12-10,BA.2,864.218633100003,0,Previously infected (Pre-Omicron),mRNA1273,4 -312,2022-01-18,2021-12-11,Delta,838.84422616909,0,Infection naive,BNT162b2,3 -312,2022-01-18,2021-12-11,BA.1,281.438731774123,0,Infection naive,BNT162b2,3 -312,2022-01-18,2021-12-11,BA.2,510.327923138681,0,Infection naive,BNT162b2,3 -313,2022-01-17,2021-12-27,Delta,2560,1,Infection naive,BNT162b2,5 -313,2022-01-17,2021-12-27,BA.1,1258.708244,0,Infection naive,BNT162b2,5 -313,2022-01-17,2021-12-27,BA.2,778.619998599999,0,Infection naive,BNT162b2,5 -314,2021-11-15,2021-10-19,Delta,199.253232751841,0,Infection naive,BNT162b2,3 -314,2021-11-15,2021-10-19,BA.1,184.139233319891,0,Infection naive,BNT162b2,3 -314,2021-11-15,2021-10-19,BA.2,219.036368792234,0,Infection naive,BNT162b2,3 -315,2021-11-15,2021-10-14,Delta,319.859791848912,0,Infection naive,BNT162b2,3 -315,2022-01-27,2021-10-14,Delta,519.352771,0,Infection naive,BNT162b2,3 -315,2022-07-14,2021-10-14,Delta,249.1567586,0,Infection naive,BNT162b2,3 -315,2021-11-15,2021-10-14,BA.1,269.843756512819,0,Infection naive,BNT162b2,3 -315,2022-01-27,2021-10-14,BA.1,179.2032958,0,Infection naive,BNT162b2,3 -315,2022-07-14,2021-10-14,BA.1,117.1460912,0,Infection naive,BNT162b2,3 -315,2021-11-15,2021-10-14,BA.2,591.807148191016,0,Infection naive,BNT162b2,3 -315,2022-01-27,2021-10-14,BA.2,183.9779073,0,Infection naive,BNT162b2,3 -315,2022-07-14,2021-10-14,BA.2,82.9371893,0,Infection naive,BNT162b2,3 -316,2022-01-25,2021-12-11,Delta,1657.490625,0,Infection naive,BNT162b2,3 -316,2022-03-21,2021-12-11,Delta,1097.849304,0,Infection naive,BNT162b2,3 -316,2022-01-25,2021-12-11,BA.1,476.186964900002,0,Infection naive,BNT162b2,3 -316,2022-03-21,2021-12-11,BA.1,300.034888199999,0,Infection naive,BNT162b2,3 -316,2022-01-25,2021-12-11,BA.2,976.191043012147,0,Infection naive,BNT162b2,3 -317,2022-01-17,2021-12-14,Delta,381.814286922808,0,Infection naive,BNT162b2,3 -317,2022-01-17,2021-12-14,BA.1,256.46867163986,0,Infection naive,BNT162b2,3 -317,2022-01-17,2021-12-14,BA.2,550.765095651552,0,Infection naive,BNT162b2,3 -318,2022-01-11,2021-12-08,Delta,1277.603903,0,Infection naive,BNT162b2,5 -318,2022-01-11,2021-12-08,BA.1,861.949173500001,0,Infection naive,BNT162b2,5 -318,2022-01-11,2021-12-08,BA.2,413.153295,0,Infection naive,BNT162b2,5 -319,2022-01-10,2022-01-05,Delta,757.084858000003,0,Infection naive,BNT162b2,4 -319,2022-01-10,2022-01-05,BA.1,206.182101900001,0,Infection naive,BNT162b2,4 -319,2022-01-10,2022-01-05,BA.2,213.3519169,0,Infection naive,BNT162b2,4 -320,2022-01-12,2022-01-12,Delta,2196.047233,0,Infection naive,BNT162b2,4 -320,2022-02-03,2022-01-12,Delta,553.66917560286,0,Infection naive,BNT162b2,4 -320,2022-01-12,2022-01-12,BA.1,599.6392433,0,Infection naive,BNT162b2,4 -320,2022-02-03,2022-01-12,BA.1,1324.35107505833,0,Infection naive,BNT162b2,4 -320,2022-01-12,2022-01-12,BA.2,408.4723763,0,Infection naive,BNT162b2,4 -320,2022-02-03,2022-01-12,BA.2,1851.03122316392,0,Infection naive,BNT162b2,4 -321,2021-12-21,2021-12-04,Delta,540.720247258749,0,Infection naive,BNT162b2,3 -321,2021-12-21,2021-12-04,BA.1,581.013775248015,0,Infection naive,BNT162b2,3 -321,2021-12-21,2021-12-04,BA.2,895.055299397559,0,Infection naive,BNT162b2,3 -322,2021-09-23,2021-09-23,Delta,110.9499539,0,Infection naive,BNT162b2,3 -322,2021-10-08,2021-09-23,Delta,450.210391439885,0,Infection naive,BNT162b2,3 -322,2022-01-12,2021-09-23,Delta,337.1312525,0,Infection naive,BNT162b2,3 -322,2021-09-23,2021-09-23,BA.1,5,-1,Infection naive,BNT162b2,3 -322,2021-10-08,2021-09-23,BA.1,484.608050076034,0,Infection naive,BNT162b2,3 -322,2022-01-12,2021-09-23,BA.1,159.9045069,0,Infection naive,BNT162b2,3 -322,2021-09-23,2021-09-23,BA.2,48.3353845899999,0,Infection naive,BNT162b2,3 -322,2021-10-08,2021-09-23,BA.2,489.302957574615,0,Infection naive,BNT162b2,3 -322,2022-01-12,2021-09-23,BA.2,168.982618900001,0,Infection naive,BNT162b2,3 -323,2022-01-10,2021-12-27,Delta,1102.671148,0,Infection naive,BNT162b2,4 -323,2022-01-10,2021-12-27,BA.1,376.8272787,0,Infection naive,BNT162b2,4 -323,2022-01-10,2021-12-27,BA.2,279.9625424,0,Infection naive,BNT162b2,4 -324,2022-01-06,2021-12-06,Delta,466.274599125873,0,Previously infected (Pre-Omicron),BNT162b2,4 -324,2022-01-06,2021-12-06,BA.1,565.935252528117,0,Previously infected (Pre-Omicron),BNT162b2,4 -324,2022-01-06,2021-12-06,BA.2,1022.60895100414,0,Previously infected (Pre-Omicron),BNT162b2,4 -325,2022-01-10,2021-12-17,Delta,765.089836799748,0,Infection naive,BNT162b2,3 -325,2022-01-10,2021-12-17,BA.1,1169.36466759434,0,Infection naive,BNT162b2,3 -325,2022-03-21,2021-12-17,BA.1,812.076691199999,0,Infection naive,BNT162b2,3 -325,2022-07-14,2021-12-17,BA.1,679.710320999999,0,Infection naive,BNT162b2,3 -325,2023-01-09,2021-12-17,BA.1,738.083564065439,0,Infection naive,BNT162b2,3 -325,2022-01-10,2021-12-17,BA.2,2560,1,Infection naive,BNT162b2,3 -325,2022-03-21,2021-12-17,BA.2,673.778740699998,0,Infection naive,BNT162b2,3 -325,2022-07-14,2021-12-17,BA.2,489.732016200002,0,Infection naive,BNT162b2,3 -325,2023-01-09,2021-12-17,BA.2,467.912213808484,0,Infection naive,BNT162b2,3 -326,2022-01-10,2021-12-17,Delta,399.619148689102,0,Previously infected (Pre-Omicron),BNT162b2,5 -326,2022-01-10,2021-12-17,BA.1,836.641400363159,0,Previously infected (Pre-Omicron),BNT162b2,5 -326,2022-01-10,2021-12-17,BA.2,912.481990551174,0,Previously infected (Pre-Omicron),BNT162b2,5 -327,2022-01-18,2021-12-19,Delta,819.944131630485,0,Infection naive,BNT162b2,3 -327,2022-04-21,2021-12-19,Delta,905.312250299999,0,Infection naive,BNT162b2,3 -327,2022-07-21,2021-12-19,Delta,368.0142372,0,Infection naive,BNT162b2,3 -327,2022-01-18,2021-12-19,BA.1,465.457942306709,0,Infection naive,BNT162b2,3 -327,2022-04-21,2021-12-19,BA.1,538.3557447,0,Infection naive,BNT162b2,3 -327,2022-07-21,2021-12-19,BA.1,374.5223516,0,Infection naive,BNT162b2,3 -327,2022-01-18,2021-12-19,BA.2,782.039761423418,0,Infection naive,BNT162b2,3 -327,2022-04-21,2021-12-19,BA.2,294.304785699999,0,Infection naive,BNT162b2,3 -327,2022-07-21,2021-12-19,BA.2,168.982618900001,0,Infection naive,BNT162b2,3 -328,2022-01-31,2022-01-09,Delta,945.869453300001,0,Infection naive,BNT162b2,3 -328,2022-07-28,2022-01-09,Delta,166.483379566172,0,Infection naive,BNT162b2,3 -328,2022-01-31,2022-01-09,BA.1,267.9582455,0,Infection naive,BNT162b2,3 -328,2022-07-28,2022-01-09,BA.1,88.650088612918,0,Infection naive,BNT162b2,3 -328,2022-01-31,2022-01-09,BA.2,308.83990327619,0,Infection naive,BNT162b2,3 -328,2022-07-28,2022-01-09,BA.2,161.878767574277,0,Infection naive,BNT162b2,3 -329,2022-01-12,2022-01-12,Delta,795.869672629679,0,Infection naive,mRNA1273,4 -329,2022-02-14,2022-01-12,Delta,2560,1,Infection naive,mRNA1273,4 -329,2022-07-13,2022-01-12,Delta,1351.320042,0,Infection naive,mRNA1273,4 -329,2022-07-13,2022-01-12,Delta,1351.320042,0,Infection naive,mRNA1273,4 -329,2022-01-12,2022-01-12,BA.1,192.051552220915,0,Infection naive,mRNA1273,4 -329,2022-02-14,2022-01-12,BA.1,875.655876800002,0,Infection naive,mRNA1273,4 -329,2022-07-13,2022-01-12,BA.1,793.779699099999,0,Infection naive,mRNA1273,4 -329,2022-07-13,2022-01-12,BA.1,793.779699099999,0,Infection naive,mRNA1273,4 -329,2022-01-12,2022-01-12,BA.2,404.553045739805,0,Infection naive,mRNA1273,4 -329,2022-02-14,2022-01-12,BA.2,424.905364999999,0,Infection naive,mRNA1273,4 -329,2022-07-13,2022-01-12,BA.2,552.6994515,0,Infection naive,mRNA1273,4 -329,2022-07-13,2022-01-12,BA.2,552.6994515,0,Infection naive,mRNA1273,4 -330,2021-12-22,2021-12-04,Delta,1730.227569,0,Previously infected (Pre-Omicron),BNT162b2,5 -330,2022-03-21,2021-12-04,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,5 -330,2021-12-22,2021-12-04,BA.1,536.942009099999,0,Previously infected (Pre-Omicron),BNT162b2,5 -330,2022-03-21,2021-12-04,BA.1,1036.142364,0,Previously infected (Pre-Omicron),BNT162b2,5 -330,2021-12-22,2021-12-04,BA.2,493.6105138,0,Previously infected (Pre-Omicron),BNT162b2,5 -330,2022-03-21,2021-12-04,BA.2,573.424953800002,0,Previously infected (Pre-Omicron),BNT162b2,5 -331,2022-01-12,2021-12-20,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -331,2022-03-21,2021-12-20,Delta,1156.116072,0,Previously infected (Pre-Omicron),BNT162b2,4 -331,2022-01-12,2021-12-20,BA.1,749.163633699998,0,Previously infected (Pre-Omicron),BNT162b2,4 -331,2022-03-21,2021-12-20,BA.1,570.917437600002,0,Previously infected (Pre-Omicron),BNT162b2,4 -331,2022-01-12,2021-12-20,BA.2,1016.35399218106,0,Previously infected (Pre-Omicron),BNT162b2,4 -331,2022-03-21,2021-12-20,BA.2,348.8547177,0,Previously infected (Pre-Omicron),BNT162b2,4 -332,2022-01-12,2021-12-28,Delta,1278.724205,0,Infection naive,BNT162b2,4 -332,2022-06-28,2021-12-28,Delta,1606.007105,0,Infection naive,BNT162b2,4 -332,2022-09-13,2021-12-28,Delta,1826.85426543381,0,Infection naive,BNT162b2,4 -332,2022-01-12,2021-12-28,BA.1,1180.693532,0,Infection naive,BNT162b2,4 -332,2022-06-28,2021-12-28,BA.1,789.616202500002,0,Infection naive,BNT162b2,4 -332,2022-09-13,2021-12-28,BA.1,838.109307219395,0,Infection naive,BNT162b2,4 -332,2022-01-12,2021-12-28,BA.2,637.581888699998,0,Infection naive,BNT162b2,4 -332,2022-06-28,2021-12-28,BA.2,847.713681400001,0,Infection naive,BNT162b2,4 -332,2022-09-13,2021-12-28,BA.2,787.542650715989,0,Infection naive,BNT162b2,4 -333,2021-10-19,2021-09-27,Delta,567.922887899999,0,Previously infected (Pre-Omicron),BNT162b2,4 -333,2022-02-01,2021-09-27,Delta,941.733283600002,0,Previously infected (Pre-Omicron),BNT162b2,4 -333,2021-10-19,2021-09-27,BA.1,397.8716637,0,Previously infected (Pre-Omicron),BNT162b2,4 -333,2022-02-01,2021-09-27,BA.1,429.021869900001,0,Previously infected (Pre-Omicron),BNT162b2,4 -334,2021-10-20,2021-09-29,Delta,852.183514919433,0,Infection naive,BNT162b2,3 -334,2021-10-20,2021-09-29,BA.1,181.893485747939,0,Infection naive,BNT162b2,3 -334,2021-10-20,2021-09-29,BA.2,553.184101072553,0,Infection naive,BNT162b2,3 -335,2021-12-02,2021-12-02,Delta,47.45384432,0,Infection naive,BNT162b2,3 -335,2021-12-02,2021-12-02,BA.1,62.87268354,0,Infection naive,BNT162b2,3 -335,2021-12-02,2021-12-02,BA.2,90.2969230099998,0,Infection naive,BNT162b2,3 -335,2022-01-27,2021-12-02,BA.2,178.2633469,0,Infection naive,BNT162b2,3 -336,2021-12-13,2021-12-11,Delta,173.484915266028,0,Infection naive,BNT162b2,4 -336,2021-12-13,2021-12-11,BA.1,130.824916440835,0,Infection naive,BNT162b2,4 -336,2021-12-13,2021-12-11,BA.2,138.252119478444,0,Infection naive,BNT162b2,4 -337,2021-12-14,2021-12-01,Delta,524.844107700001,0,Infection naive,mRNA1273,3 -337,2021-12-14,2021-12-01,BA.1,365.1226004,0,Infection naive,mRNA1273,3 -337,2021-12-14,2021-12-01,BA.2,287.4217376,0,Infection naive,mRNA1273,3 -338,2022-02-23,2022-01-23,Delta,2560,1,Infection naive,BNT162b2,4 -338,2022-07-11,2022-01-23,Delta,2560,1,Infection naive,BNT162b2,4 -338,2022-09-13,2022-01-23,Delta,2560,1,Infection naive,BNT162b2,4 -338,2022-02-23,2022-01-23,BA.1,2560,1,Infection naive,BNT162b2,4 -338,2022-07-11,2022-01-23,BA.1,2560,1,Infection naive,BNT162b2,4 -338,2022-09-13,2022-01-23,BA.1,1466.08527467861,0,Infection naive,BNT162b2,4 -338,2022-02-23,2022-01-23,BA.2,2560,1,Infection naive,BNT162b2,4 -338,2022-07-11,2022-01-23,BA.2,1262.022346,0,Infection naive,BNT162b2,4 -338,2022-09-13,2022-01-23,BA.2,1344.23216015257,0,Infection naive,BNT162b2,4 -339,2021-12-20,2021-12-09,Delta,793.084261557086,0,Infection naive,BNT162b2,3 -339,2022-03-21,2021-12-09,Delta,1272.0171,0,Infection naive,BNT162b2,3 -339,2021-12-20,2021-12-09,BA.1,1187.95988762313,0,Infection naive,BNT162b2,3 -339,2022-03-21,2021-12-09,BA.1,508.096322500001,0,Infection naive,BNT162b2,3 -339,2021-12-20,2021-12-09,BA.2,2560,1,Infection naive,BNT162b2,3 -339,2022-03-21,2021-12-09,BA.2,431.2840209,0,Infection naive,BNT162b2,3 -340,2021-11-09,2021-10-15,Delta,2560,1,Infection naive,AZD1222,3 -340,2021-11-09,2021-10-15,BA.1,502.339724100001,0,Infection naive,AZD1222,3 -340,2021-11-09,2021-10-15,BA.2,554.640601099999,0,Infection naive,AZD1222,3 -341,2022-01-12,2021-12-27,Delta,2038.383576,0,Infection naive,BNT162b2,4 -341,2022-07-13,2021-12-27,Delta,2363.832972,0,Infection naive,BNT162b2,4 -341,2022-01-12,2021-12-27,BA.1,1514.41013,0,Infection naive,BNT162b2,4 -341,2022-07-13,2021-12-27,BA.1,817.074464,0,Infection naive,BNT162b2,4 -341,2022-01-12,2021-12-27,BA.2,934.333704000001,0,Infection naive,BNT162b2,4 -341,2022-07-13,2021-12-27,BA.2,904.519098100002,0,Infection naive,BNT162b2,4 -342,2021-10-20,2021-09-30,Delta,491.882959322048,0,Infection naive,BNT162b2,3 -342,2022-01-31,2021-09-30,Delta,262.8407466,0,Infection naive,BNT162b2,3 -342,2021-10-20,2021-09-30,BA.1,378.482335009051,0,Infection naive,BNT162b2,3 -342,2022-01-31,2021-09-30,BA.1,162.8750199,0,Infection naive,BNT162b2,3 -342,2021-10-20,2021-09-30,BA.2,413.878182069713,0,Infection naive,BNT162b2,3 -342,2022-01-31,2021-09-30,BA.2,181.8934857,0,Infection naive,BNT162b2,3 -343,2021-12-02,2021-10-28,Delta,1307.05326853793,0,Infection naive,BNT162b2,3 -343,2021-12-02,2021-10-28,BA.1,828.613748121574,0,Infection naive,BNT162b2,3 -343,2021-12-02,2021-10-28,BA.2,2090.85991807806,0,Infection naive,BNT162b2,3 -344,2021-10-21,2021-09-26,Delta,703.34669477964,0,Previously infected (Pre-Omicron),BNT162b2,4 -344,2022-01-19,2021-09-26,Delta,1203.681588,0,Previously infected (Pre-Omicron),BNT162b2,4 -344,2021-10-21,2021-09-26,BA.1,539.773202581618,0,Previously infected (Pre-Omicron),BNT162b2,4 -344,2022-01-19,2021-09-26,BA.1,278.494095800001,0,Previously infected (Pre-Omicron),BNT162b2,4 -344,2021-10-21,2021-09-26,BA.2,776.575323115736,0,Previously infected (Pre-Omicron),BNT162b2,4 -344,2022-01-19,2021-09-26,BA.2,167.507970100001,0,Previously infected (Pre-Omicron),BNT162b2,4 -345,2021-12-20,2021-12-06,Delta,1263.12898504433,0,Infection naive,BNT162b2,3 -345,2021-12-20,2021-12-06,BA.1,2386.73390602813,0,Infection naive,BNT162b2,3 -345,2021-12-20,2021-12-06,BA.2,2173.07043913927,0,Infection naive,BNT162b2,3 -346,2021-10-13,2021-09-22,Delta,326.659577338246,0,Infection naive,BNT162b2,3 -346,2021-12-14,2021-09-22,Delta,181.893485747939,0,Infection naive,BNT162b2,3 -346,2021-10-13,2021-09-22,BA.1,366.404956627397,0,Infection naive,BNT162b2,3 -346,2021-12-14,2021-09-22,BA.1,149.20688905334,0,Infection naive,BNT162b2,3 -346,2021-10-13,2021-09-22,BA.2,480.800288495822,0,Infection naive,BNT162b2,3 -346,2021-12-14,2021-09-22,BA.2,209.828310596494,0,Infection naive,BNT162b2,3 -347,2022-01-27,2022-01-01,Delta,2560,1,Infection naive,BNT162b2,4 -347,2022-06-16,2022-01-01,Delta,2560,1,Infection naive,BNT162b2,4 -347,2022-10-18,2022-01-01,Delta,2560,1,Infection naive,BNT162b2,4 -347,2022-01-27,2022-01-01,BA.1,2560,1,Infection naive,BNT162b2,4 -347,2022-06-16,2022-01-01,BA.1,2560,1,Infection naive,BNT162b2,4 -347,2022-10-18,2022-01-01,BA.1,2560,1,Infection naive,BNT162b2,4 -347,2022-01-27,2022-01-01,BA.2,1552.036304,0,Infection naive,BNT162b2,4 -347,2022-06-16,2022-01-01,BA.2,2560,1,Infection naive,BNT162b2,4 -347,2022-10-18,2022-01-01,BA.2,2043.75051577686,0,Infection naive,BNT162b2,4 -348,2022-01-11,2021-12-24,Delta,637.023297500002,0,Infection naive,BNT162b2,5 -348,2022-01-11,2021-12-24,BA.1,619.947592600001,0,Infection naive,BNT162b2,5 -348,2022-01-11,2021-12-24,BA.2,314.853003900001,0,Infection naive,BNT162b2,5 -349,2021-10-21,2021-09-25,Delta,1431.79723,0,Previously infected (Pre-Omicron),BNT162b2,4 -349,2022-01-20,2021-09-25,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -349,2022-07-20,2021-09-25,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -349,2022-09-15,2021-09-25,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -349,2021-10-21,2021-09-25,BA.1,616.695872099999,0,Previously infected (Pre-Omicron),BNT162b2,4 -349,2022-01-20,2021-09-25,BA.1,875.655876800002,0,Previously infected (Pre-Omicron),BNT162b2,4 -349,2022-07-20,2021-09-25,BA.1,686.2953892,0,Previously infected (Pre-Omicron),BNT162b2,4 -349,2022-09-15,2021-09-25,BA.1,724.622403289654,0,Previously infected (Pre-Omicron),BNT162b2,4 -350,2022-01-06,2021-12-21,Delta,1935.65165714561,0,Previously infected (Pre-Omicron),BNT162b2,4 -350,2023-01-19,2021-12-21,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,4 -350,2022-01-06,2021-12-21,BA.1,946.698864667414,0,Previously infected (Pre-Omicron),BNT162b2,4 -350,2023-01-19,2021-12-21,BA.1,926.180119727617,0,Previously infected (Pre-Omicron),BNT162b2,4 -350,2022-01-06,2021-12-21,BA.2,1660.39873057065,0,Previously infected (Pre-Omicron),BNT162b2,4 -350,2023-01-19,2021-12-21,BA.2,861.194012061097,0,Previously infected (Pre-Omicron),BNT162b2,4 -351,2022-01-26,2021-12-13,Delta,1247.723964,0,Infection naive,BNT162b2,5 -351,2022-07-26,2021-12-13,Delta,1947.56425994387,0,Infection naive,BNT162b2,5 -351,2022-01-26,2021-12-13,BA.1,664.978284,0,Infection naive,BNT162b2,5 -351,2022-07-26,2021-12-13,BA.1,578.980323970047,0,Infection naive,BNT162b2,5 -351,2022-01-26,2021-12-13,BA.2,496.2132284,0,Infection naive,BNT162b2,5 -351,2022-07-26,2021-12-13,BA.2,571.919125585972,0,Infection naive,BNT162b2,5 -352,2022-01-12,2021-12-09,Delta,2560,1,Infection naive,mRNA1273,3 -352,2022-01-12,2021-12-09,BA.1,1210.028373,0,Infection naive,mRNA1273,3 -352,2022-01-12,2021-12-09,BA.2,2221.21299491991,0,Infection naive,mRNA1273,3 -353,2021-12-14,2021-11-30,Delta,423.418267139935,0,Infection naive,BNT162b2,3 -353,2021-12-14,2021-11-30,BA.1,135.611763819448,0,Infection naive,BNT162b2,3 -353,2021-12-14,2021-11-30,BA.2,144.066376448908,0,Infection naive,BNT162b2,3 -354,2022-01-20,2021-12-14,Delta,2560,1,Infection naive,BNT162b2,3 -354,2022-01-20,2021-12-14,BA.1,1542.543015,0,Infection naive,BNT162b2,3 -354,2022-01-20,2021-12-14,BA.2,2560,1,Infection naive,BNT162b2,3 -355,2022-01-27,2022-01-12,Delta,1942.449908,0,Infection naive,BNT162b2,4 -355,2022-01-27,2022-01-12,BA.1,1122.171236,0,Infection naive,BNT162b2,4 -355,2022-01-27,2022-01-12,BA.2,829.340340599999,0,Infection naive,BNT162b2,4 -356,2022-01-25,2021-12-06,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,5 -356,2022-04-07,2021-12-06,Delta,710.160753399998,0,Previously infected (Pre-Omicron),BNT162b2,5 -356,2022-01-25,2021-12-06,BA.1,450.2103914,0,Previously infected (Pre-Omicron),BNT162b2,5 -356,2022-04-07,2021-12-06,BA.1,403.1371776,0,Previously infected (Pre-Omicron),BNT162b2,5 -356,2022-01-25,2021-12-06,BA.2,450.605170671148,0,Previously infected (Pre-Omicron),BNT162b2,5 -356,2022-04-07,2021-12-06,BA.2,207.4510108,0,Previously infected (Pre-Omicron),BNT162b2,5 -357,2021-10-20,2021-09-27,Delta,881.817503800291,0,Infection naive,BNT162b2,3 -357,2022-01-12,2021-09-27,Delta,239.940998400001,0,Infection naive,BNT162b2,3 -357,2021-10-20,2021-09-27,BA.1,394.399585050684,0,Infection naive,BNT162b2,3 -357,2022-01-12,2021-09-27,BA.1,109.5007983,0,Infection naive,BNT162b2,3 -357,2021-10-20,2021-09-27,BA.2,386.867294188,0,Infection naive,BNT162b2,3 -357,2022-01-12,2021-09-27,BA.2,96.51677725,0,Infection naive,BNT162b2,3 -358,2021-12-21,2021-12-21,Delta,703.963443499999,0,Infection naive,BNT162b2,4 -358,2021-12-21,2021-12-21,BA.1,575.4388939,0,Infection naive,BNT162b2,4 -358,2021-12-21,2021-12-21,BA.2,290.715467800001,0,Infection naive,BNT162b2,4 -359,2022-01-13,2021-12-08,Delta,305.073316164906,0,Infection naive,BNT162b2,3 -359,2022-01-13,2021-12-08,BA.1,484.608050076034,0,Infection naive,BNT162b2,3 -359,2022-01-13,2021-12-08,BA.2,208.36215258891,0,Infection naive,BNT162b2,3 -360,2022-01-26,2022-01-08,Delta,2560,1,Previously infected (Pre-Omicron),mRNA1273,4 -360,2022-04-19,2022-01-08,Delta,644.888304400001,0,Previously infected (Pre-Omicron),mRNA1273,4 -360,2022-01-26,2022-01-08,BA.1,1429.289509,0,Previously infected (Pre-Omicron),mRNA1273,4 -360,2022-04-19,2022-01-08,BA.1,398.9192356,0,Previously infected (Pre-Omicron),mRNA1273,4 -360,2022-08-09,2022-01-08,BA.1,657.44425406711,0,Previously infected (Pre-Omicron),mRNA1273,4 -360,2022-01-26,2022-01-08,BA.2,1056.316015,0,Previously infected (Pre-Omicron),mRNA1273,4 -360,2022-04-19,2022-01-08,BA.2,455.768913199999,0,Previously infected (Pre-Omicron),mRNA1273,4 -360,2022-08-09,2022-01-08,BA.2,773.857439047404,0,Previously infected (Pre-Omicron),mRNA1273,4 -361,2021-11-23,2021-10-26,Delta,629.805990224052,0,Previously infected (Pre-Omicron),BNT162b2,4 -361,2022-06-14,2021-10-26,Delta,602.272908000001,0,Previously infected (Pre-Omicron),BNT162b2,4 -361,2021-11-23,2021-10-26,BA.1,712.654926766754,0,Previously infected (Pre-Omicron),BNT162b2,4 -361,2022-06-14,2021-10-26,BA.1,357.835666999999,0,Previously infected (Pre-Omicron),BNT162b2,4 -361,2021-11-23,2021-10-26,BA.2,1809.32542842838,0,Previously infected (Pre-Omicron),BNT162b2,4 -361,2022-06-14,2021-10-26,BA.2,453.775892300001,0,Previously infected (Pre-Omicron),BNT162b2,4 -362,2022-01-06,2021-12-01,Delta,1241.17945950518,0,Previously infected (Pre-Omicron),BNT162b2,4 -362,2022-01-06,2021-12-01,BA.1,662.650970934107,0,Previously infected (Pre-Omicron),BNT162b2,4 -362,2022-01-06,2021-12-01,BA.2,1179.65911592567,0,Previously infected (Pre-Omicron),BNT162b2,4 -363,2021-11-15,2021-10-13,Delta,647.720706641833,0,Infection naive,BNT162b2,3 -363,2021-12-20,2021-10-13,Delta,624.309906500002,0,Infection naive,BNT162b2,3 -363,2021-11-15,2021-10-13,BA.1,294.046942684355,0,Infection naive,BNT162b2,3 -363,2021-12-20,2021-10-13,BA.1,335.9513494,0,Infection naive,BNT162b2,3 -363,2021-11-15,2021-10-13,BA.2,286.415809491187,0,Infection naive,BNT162b2,3 -363,2021-12-20,2021-10-13,BA.2,270.0803764,0,Infection naive,BNT162b2,3 -364,2022-01-27,2021-12-19,Delta,2024.14053899999,0,Infection naive,mRNA1273,3 -364,2022-01-27,2021-12-19,BA.1,791.695213799998,0,Infection naive,mRNA1273,3 -364,2022-01-27,2021-12-19,BA.2,1613.06081980431,0,Infection naive,mRNA1273,3 -365,2022-01-27,2022-01-16,Delta,2365.905763,0,Infection naive,BNT162b2,4 -365,2022-06-22,2022-01-16,Delta,2560,1,Infection naive,BNT162b2,4 -365,2022-06-22,2022-01-16,Delta,2560,1,Infection naive,BNT162b2,4 -365,2022-01-27,2022-01-16,BA.1,1330.167733,0,Infection naive,BNT162b2,4 -365,2022-06-22,2022-01-16,BA.1,1117.264121,0,Infection naive,BNT162b2,4 -365,2022-06-22,2022-01-16,BA.1,1117.264121,0,Infection naive,BNT162b2,4 -365,2022-01-27,2022-01-16,BA.2,770.473456500002,0,Infection naive,BNT162b2,4 -365,2022-06-22,2022-01-16,BA.2,706.435851100002,0,Infection naive,BNT162b2,4 -365,2022-06-22,2022-01-16,BA.2,706.435851100002,0,Infection naive,BNT162b2,4 -366,2021-10-21,2021-10-01,Delta,710.783477200002,0,Infection naive,BNT162b2,3 -366,2021-10-21,2021-10-01,BA.1,178.7327035,0,Infection naive,BNT162b2,3 -367,2022-01-11,2021-12-13,Delta,1549.31799,0,Infection naive,BNT162b2,5 -367,2022-01-11,2021-12-13,BA.1,814.928806099998,0,Infection naive,BNT162b2,5 -367,2022-01-11,2021-12-13,BA.2,362.253684400001,0,Infection naive,BNT162b2,5 -368,2022-01-26,2021-12-22,Delta,2268.432972,0,Infection naive,BNT162b2,5 -368,2022-01-26,2021-12-22,BA.1,835.1760645,0,Infection naive,BNT162b2,5 -368,2022-01-26,2021-12-22,BA.2,524.384287100001,0,Infection naive,BNT162b2,5 -369,2022-01-27,2021-12-11,Delta,2504.6098615548,0,Infection naive,mRNA1273,3 -369,2022-04-21,2021-12-11,Delta,1608.824882,0,Infection naive,mRNA1273,3 -369,2022-07-06,2021-12-11,Delta,828.613748100001,0,Infection naive,mRNA1273,3 -369,2022-07-06,2021-12-11,Delta,828.613748100001,0,Infection naive,mRNA1273,3 -369,2022-01-27,2021-12-11,BA.1,1233.58757758038,0,Infection naive,mRNA1273,3 -369,2022-04-21,2021-12-11,BA.1,644.888304400001,0,Infection naive,mRNA1273,3 -369,2022-07-06,2021-12-11,BA.1,655.717789100002,0,Infection naive,mRNA1273,3 -369,2022-07-06,2021-12-11,BA.1,655.717789100002,0,Infection naive,mRNA1273,3 -369,2023-01-26,2021-12-11,BA.1,1211.08941948382,0,Infection naive,mRNA1273,3 -369,2022-01-27,2021-12-11,BA.2,1701.65205460315,0,Infection naive,mRNA1273,3 -369,2022-04-21,2021-12-11,BA.2,370.6038007,0,Infection naive,mRNA1273,3 -369,2022-07-06,2021-12-11,BA.2,258.953353199999,0,Infection naive,mRNA1273,3 -369,2022-07-06,2021-12-11,BA.2,258.953353199999,0,Infection naive,mRNA1273,3 -370,2021-12-20,2021-12-03,Delta,123.363450961127,0,Infection naive,BNT162b2,3 -370,2021-12-20,2021-12-03,BA.1,139.224942275291,0,Infection naive,BNT162b2,3 -370,2021-12-20,2021-12-03,BA.2,240.78370117809,0,Infection naive,BNT162b2,3 -370,2022-06-22,2021-12-03,BA.2,384.8381158,0,Infection naive,BNT162b2,3 -371,2022-01-17,2022-01-06,Delta,1011.909602,0,Infection naive,BNT162b2,4 -371,2022-01-17,2022-01-06,BA.1,779.9861056,0,Infection naive,BNT162b2,4 -371,2022-07-21,2022-01-06,BA.1,1149.044494,0,Infection naive,BNT162b2,4 -371,2022-09-27,2022-01-06,BA.1,773.179455604743,0,Infection naive,BNT162b2,4 -371,2022-01-17,2022-01-06,BA.2,666.145003900002,0,Infection naive,BNT162b2,4 -372,2022-02-08,2022-01-20,Delta,340.994632500001,0,Infection naive,BNT162b2,5 -372,2022-02-08,2022-01-20,BA.1,370.279111400002,0,Infection naive,BNT162b2,5 -372,2022-02-08,2022-01-20,BA.2,200.4794992,0,Infection naive,BNT162b2,5 -373,2022-01-26,2022-01-10,Delta,2560,1,Infection naive,BNT162b2,4 -373,2022-01-26,2022-01-10,BA.1,976.191043000001,0,Infection naive,BNT162b2,4 -373,2022-01-26,2022-01-10,BA.2,798.6648664,0,Infection naive,BNT162b2,4 -374,2021-10-27,2021-10-13,Delta,2349.3741916176,0,Infection naive,BNT162b2,3 -374,2022-01-26,2021-10-13,Delta,658.5977553,0,Infection naive,BNT162b2,3 -374,2021-10-27,2021-10-13,BA.1,1392.19645642261,0,Infection naive,BNT162b2,3 -374,2022-01-26,2021-10-13,BA.1,300.034888199999,0,Infection naive,BNT162b2,3 -374,2021-10-27,2021-10-13,BA.2,2560,1,Infection naive,BNT162b2,3 -374,2022-01-26,2021-10-13,BA.2,286.164878000001,0,Infection naive,BNT162b2,3 -375,2022-01-18,2021-12-30,Delta,283.419099346198,0,Infection naive,BNT162b2,3 -375,2022-01-18,2021-12-30,BA.1,266.786497376005,0,Infection naive,BNT162b2,3 -375,2022-01-18,2021-12-30,BA.2,309.110717948433,0,Infection naive,BNT162b2,3 -376,2022-01-31,2022-01-06,Delta,1627.261327,0,Infection naive,BNT162b2,3 -376,2022-01-31,2022-01-06,BA.1,315.6819927,0,Infection naive,BNT162b2,3 -376,2022-01-31,2022-01-06,BA.2,376.167284452902,0,Infection naive,BNT162b2,3 -377,2022-01-18,2021-12-18,Delta,2560,1,Infection naive,BNT162b2,4 -377,2022-07-14,2021-12-18,Delta,2560,1,Infection naive,BNT162b2,4 -377,2022-09-27,2021-12-18,Delta,2560,1,Infection naive,BNT162b2,4 -377,2022-01-18,2021-12-18,BA.1,2560,1,Infection naive,BNT162b2,4 -377,2022-07-14,2021-12-18,BA.1,1004.838967,0,Infection naive,BNT162b2,4 -377,2022-09-27,2021-12-18,BA.1,1480.28878357321,0,Infection naive,BNT162b2,4 -377,2022-01-18,2021-12-18,BA.2,2560,1,Infection naive,BNT162b2,4 -377,2022-07-14,2021-12-18,BA.2,1888.725457,0,Infection naive,BNT162b2,4 -377,2022-09-27,2021-12-18,BA.2,1930.56858774056,0,Infection naive,BNT162b2,4 -378,2021-10-20,2021-09-30,Delta,570.917437600002,0,Infection naive,BNT162b2,3 -378,2021-12-02,2021-09-30,Delta,285.163348701958,0,Infection naive,BNT162b2,3 -378,2022-07-11,2021-09-30,Delta,287.9260258,0,Infection naive,BNT162b2,3 -378,2022-07-11,2021-09-30,Delta,287.9260258,0,Infection naive,BNT162b2,3 -378,2022-09-23,2021-09-30,Delta,175.934987838245,0,Infection naive,BNT162b2,3 -378,2021-10-20,2021-09-30,BA.1,193.4029393,0,Infection naive,BNT162b2,3 -378,2021-12-02,2021-09-30,BA.1,209.644478131743,0,Infection naive,BNT162b2,3 -378,2022-07-11,2021-09-30,BA.1,150.652413,0,Infection naive,BNT162b2,3 -378,2022-07-11,2021-09-30,BA.1,150.652413,0,Infection naive,BNT162b2,3 -378,2022-09-23,2021-09-30,BA.1,51.8917502918684,0,Infection naive,BNT162b2,3 -379,2021-10-19,2021-09-24,Delta,565.935252528117,0,Previously infected (Pre-Omicron),BNT162b2,4 -379,2022-01-13,2021-09-24,Delta,594.406413699998,0,Previously infected (Pre-Omicron),BNT162b2,4 -379,2021-10-19,2021-09-24,BA.1,480.800288495822,0,Previously infected (Pre-Omicron),BNT162b2,4 -379,2022-01-13,2021-09-24,BA.1,339.801208099999,0,Previously infected (Pre-Omicron),BNT162b2,4 -379,2021-10-19,2021-09-24,BA.2,625.953676461774,0,Previously infected (Pre-Omicron),BNT162b2,4 -379,2022-01-13,2021-09-24,BA.2,262.6104695,0,Previously infected (Pre-Omicron),BNT162b2,4 -380,2022-02-04,2022-01-22,Delta,862.704996999998,0,Infection naive,BNT162b2,4 -380,2022-06-22,2022-01-22,Delta,792.389433300002,0,Infection naive,BNT162b2,4 -380,2022-06-22,2022-01-22,Delta,792.389433300002,0,Infection naive,BNT162b2,4 -380,2022-02-04,2022-01-22,BA.1,410.2664204,0,Infection naive,BNT162b2,4 -380,2022-02-04,2022-01-22,BA.2,256.468671600001,0,Infection naive,BNT162b2,4 -381,2021-10-21,2021-10-02,Delta,718.928751797537,0,Infection naive,BNT162b2,3 -381,2022-10-28,2021-10-02,Delta,1288.85123037021,0,Infection naive,BNT162b2,3 -381,2021-10-21,2021-10-02,BA.1,274.375190590695,0,Infection naive,BNT162b2,3 -381,2022-10-28,2021-10-02,BA.1,229.451553490228,0,Infection naive,BNT162b2,3 -381,2021-10-21,2021-10-02,BA.2,343.996563099253,0,Infection naive,BNT162b2,3 -381,2022-10-28,2021-10-02,BA.2,585.102128091902,0,Infection naive,BNT162b2,3 -382,2022-01-12,2021-11-23,Delta,708.9169421,0,Infection naive,BNT162b2,3 -382,2022-01-12,2021-11-23,BA.1,348.243716,0,Infection naive,BNT162b2,3 -382,2022-01-12,2021-11-23,BA.2,486.736488333012,0,Infection naive,BNT162b2,3 -383,2021-10-21,2021-10-21,Delta,660.331803091456,0,Infection naive,BNT162b2,4 -383,2021-10-21,2021-10-21,BA.1,207.632919817654,0,Infection naive,BNT162b2,4 -383,2021-10-21,2021-10-21,BA.2,269.607343977655,0,Infection naive,BNT162b2,4 -384,2021-12-20,2021-12-07,Delta,978.761294520298,0,Infection naive,BNT162b2,3 -384,2021-12-20,2021-12-07,BA.1,339.801208136535,0,Infection naive,BNT162b2,3 -384,2021-12-20,2021-12-07,BA.2,659.175264710604,0,Infection naive,BNT162b2,3 -385,2022-01-12,2021-12-08,Delta,846.228952899999,0,Infection naive,BNT162b2,3 -385,2022-03-21,2021-12-08,Delta,520.2639875,0,Infection naive,BNT162b2,3 -385,2022-01-12,2021-12-08,BA.1,436.608868200001,0,Infection naive,BNT162b2,3 -385,2022-03-21,2021-12-08,BA.1,452.981126300002,0,Infection naive,BNT162b2,3 -385,2022-01-12,2021-12-08,BA.2,490.16145102938,0,Infection naive,BNT162b2,3 -385,2022-03-21,2021-12-08,BA.2,217.1249195,0,Infection naive,BNT162b2,3 +pid,day,last_exp_day,titre_type,value,infection_history,last_vax_type,exp_num +1,2022-01-31,2021-12-26,Delta,2560,Infection naive,BNT162b2,5 +1,2022-01-31,2021-12-26,BA.1,1841.32228,Infection naive,BNT162b2,5 +1,2022-01-31,2021-12-26,BA.2,786.8526775,Infection naive,BNT162b2,5 +2,2021-10-27,2021-10-12,Delta,525.304331599999,Infection naive,BNT162b2,3 +2,2022-01-12,2021-10-12,Delta,382.1490912,Infection naive,BNT162b2,3 +2,2021-10-27,2021-10-12,BA.1,263.071225699999,Infection naive,BNT162b2,3 +2,2022-01-12,2021-10-12,BA.1,216.744635999999,Infection naive,BNT162b2,3 +3,2022-01-10,2022-01-10,Delta,893.4876545,Infection naive,BNT162b2,4 +3,2022-02-10,2022-01-10,Delta,1369.203683,Infection naive,BNT162b2,4 +3,2022-01-10,2022-01-10,BA.1,599.6392433,Infection naive,BNT162b2,4 +3,2022-02-10,2022-01-10,BA.1,777.256284300001,Infection naive,BNT162b2,4 +3,2022-01-10,2022-01-10,BA.2,497.083846099999,Infection naive,BNT162b2,4 +3,2022-02-10,2022-01-10,BA.2,401.3743087,Infection naive,BNT162b2,4 +4,2021-10-25,2021-10-01,Delta,1409.385207,Infection naive,BNT162b2,5 +4,2022-01-06,2021-10-01,Delta,377.488430999999,Infection naive,BNT162b2,5 +4,2021-10-25,2021-10-01,BA.1,1056.316015,Infection naive,BNT162b2,5 +4,2022-01-06,2021-10-01,BA.1,437.7584327,Infection naive,BNT162b2,5 +4,2021-10-25,2021-10-01,BA.2,418.2542913,Infection naive,BNT162b2,5 +4,2022-01-06,2021-10-01,BA.2,201.0073495,Infection naive,BNT162b2,5 +5,2022-01-25,2021-12-07,Delta,832.982871400002,Infection naive,BNT162b2,3 +5,2022-01-25,2021-12-07,BA.1,283.6676231,Infection naive,BNT162b2,3 +5,2022-01-25,2021-12-07,BA.2,469.144198143753,Infection naive,BNT162b2,3 +6,2022-01-31,2021-12-18,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,4 +6,2022-04-19,2021-12-18,Delta,2553.37451600001,Previously infected (Pre-Omicron),BNT162b2,4 +6,2022-07-14,2021-12-18,Delta,2252.582483,Previously infected (Pre-Omicron),BNT162b2,4 +6,2022-01-31,2021-12-18,BA.1,1182.765086,Previously infected (Pre-Omicron),BNT162b2,4 +6,2022-04-19,2021-12-18,BA.1,575.943483199999,Previously infected (Pre-Omicron),BNT162b2,4 +6,2022-07-14,2021-12-18,BA.1,531.790000500001,Previously infected (Pre-Omicron),BNT162b2,4 +6,2022-01-31,2021-12-18,BA.2,938.437374200003,Previously infected (Pre-Omicron),BNT162b2,4 +6,2022-04-19,2021-12-18,BA.2,468.3225154,Previously infected (Pre-Omicron),BNT162b2,4 +6,2022-07-14,2021-12-18,BA.2,451.791586600002,Previously infected (Pre-Omicron),BNT162b2,4 +7,2021-12-20,2021-11-29,Delta,918.902747700002,Infection naive,BNT162b2,3 +7,2022-03-08,2021-11-29,Delta,1034.327612,Infection naive,BNT162b2,3 +7,2021-12-20,2021-11-29,BA.1,401.726264699999,Infection naive,BNT162b2,3 +7,2022-03-08,2021-11-29,BA.1,491.4520162,Infection naive,BNT162b2,3 +7,2021-12-20,2021-11-29,BA.2,196.650717500001,Infection naive,BNT162b2,3 +8,2022-01-06,2021-12-06,Delta,364.802713224805,Infection naive,BNT162b2,3 +8,2022-04-21,2021-12-06,Delta,389.248195900001,Infection naive,BNT162b2,3 +8,2022-01-06,2021-12-06,BA.1,516.628685860199,Infection naive,BNT162b2,3 +8,2022-04-21,2021-12-06,BA.1,256.2439771,Infection naive,BNT162b2,3 +8,2022-01-06,2021-12-06,BA.2,736.790847334061,Infection naive,BNT162b2,3 +8,2022-04-21,2021-12-06,BA.2,154.1250214,Infection naive,BNT162b2,3 +9,2022-01-26,2021-12-12,Delta,1494.62989678618,Infection naive,BNT162b2,3 +9,2022-01-26,2021-12-12,BA.1,2560,Infection naive,BNT162b2,3 +9,2022-01-26,2021-12-12,BA.2,2560,Infection naive,BNT162b2,3 +10,2021-10-21,2021-09-30,Delta,275.338830600001,Infection naive,BNT162b2,3 +10,2021-12-02,2021-09-30,Delta,222.519481960325,Infection naive,BNT162b2,3 +10,2022-07-06,2021-09-30,Delta,95.4232674300003,Infection naive,BNT162b2,3 +10,2022-07-06,2021-09-30,Delta,95.4232674300003,Infection naive,BNT162b2,3 +10,2021-10-21,2021-09-30,BA.1,224.2817545,Infection naive,BNT162b2,3 +10,2021-12-02,2021-09-30,BA.1,216.934694411597,Infection naive,BNT162b2,3 +10,2022-07-06,2021-09-30,BA.1,176.243669900001,Infection naive,BNT162b2,3 +10,2022-07-06,2021-09-30,BA.1,176.243669900001,Infection naive,BNT162b2,3 +11,2022-01-26,2021-12-28,Delta,1052.619085,Infection naive,BNT162b2,4 +11,2022-01-26,2021-12-28,BA.1,777.256284300001,Infection naive,BNT162b2,4 +11,2022-01-26,2021-12-28,BA.2,563.954573599998,Infection naive,BNT162b2,4 +12,2022-02-15,2022-01-21,Delta,1547.960618,Previously infected (Pre-Omicron),BNT162b2,4 +12,2022-02-15,2022-01-21,BA.1,1334.839449,Previously infected (Pre-Omicron),BNT162b2,4 +12,2022-02-15,2022-01-21,BA.2,803.580098599998,Previously infected (Pre-Omicron),BNT162b2,4 +13,2022-01-18,2021-12-29,Delta,2560,Previously infected (Pre-Omicron),mRNA1273,5 +13,2022-03-21,2021-12-29,Delta,1795.108826,Previously infected (Pre-Omicron),mRNA1273,5 +13,2022-01-18,2021-12-29,BA.1,657.444254099999,Previously infected (Pre-Omicron),mRNA1273,5 +13,2022-03-21,2021-12-29,BA.1,485.032991799999,Previously infected (Pre-Omicron),mRNA1273,5 +13,2022-01-18,2021-12-29,BA.2,689.914094700002,Previously infected (Pre-Omicron),mRNA1273,5 +13,2022-03-21,2021-12-29,BA.2,435.462322499999,Previously infected (Pre-Omicron),mRNA1273,5 +14,2021-12-14,2021-11-18,Delta,677.925384779656,Previously infected (Pre-Omicron),BNT162b2,4 +14,2021-12-14,2021-11-18,BA.1,396.826842859785,Previously infected (Pre-Omicron),BNT162b2,4 +14,2021-12-14,2021-11-18,BA.2,317.903315890815,Previously infected (Pre-Omicron),BNT162b2,4 +15,2022-01-26,2022-01-10,Delta,2386.733906,Infection naive,BNT162b2,4 +15,2022-04-06,2022-01-10,Delta,1247.723964,Infection naive,BNT162b2,4 +15,2022-01-26,2022-01-10,BA.1,860.439512300003,Infection naive,BNT162b2,4 +15,2022-04-06,2022-01-10,BA.1,1242.267821,Infection naive,BNT162b2,4 +15,2022-01-26,2022-01-10,BA.2,992.584030600003,Infection naive,BNT162b2,4 +15,2022-04-06,2022-01-10,BA.2,806.402372399998,Infection naive,BNT162b2,4 +16,2022-01-27,2021-12-11,Delta,759.0782163,Infection naive,BNT162b2,3 +16,2022-04-07,2021-12-11,Delta,519.352771,Infection naive,BNT162b2,3 +16,2022-07-13,2021-12-11,Delta,268.193212000001,Infection naive,BNT162b2,3 +16,2022-01-27,2021-12-11,BA.1,276.0637809,Infection naive,BNT162b2,3 +16,2022-01-27,2021-12-11,BA.2,634.793822199081,Infection naive,BNT162b2,3 +16,2022-04-07,2021-12-11,BA.2,377.15771,Infection naive,BNT162b2,3 +16,2022-07-13,2021-12-11,BA.2,131.8610017,Infection naive,BNT162b2,3 +17,2021-09-17,2021-09-01,Delta,549.3187728,Infection naive,AZD1222,3 +17,2021-09-17,2021-09-01,BA.1,228.4481903,Infection naive,AZD1222,3 +18,2021-12-21,2021-12-03,Delta,639.260602917257,Infection naive,BNT162b2,3 +18,2021-12-21,2021-12-03,BA.1,980.478554046567,Infection naive,BNT162b2,3 +18,2021-12-21,2021-12-03,BA.2,1962.98825310995,Infection naive,BNT162b2,3 +19,2022-01-19,2021-12-23,Delta,2560,Infection naive,BNT162b2,4 +19,2022-04-12,2021-12-23,Delta,2560,Infection naive,BNT162b2,4 +19,2022-01-19,2021-12-23,BA.1,2560,Infection naive,BNT162b2,4 +19,2022-04-12,2021-12-23,BA.1,2560,Infection naive,BNT162b2,4 +19,2022-01-19,2021-12-23,BA.2,1054.46593,Infection naive,BNT162b2,4 +19,2022-04-12,2021-12-23,BA.2,908.491820100001,Infection naive,BNT162b2,4 +20,2022-01-31,2022-01-17,Delta,1174.500613,Previously infected (Pre-Omicron),BNT162b2,5 +20,2022-01-31,2022-01-17,BA.1,1338.354,Previously infected (Pre-Omicron),BNT162b2,5 +20,2022-01-31,2022-01-17,BA.2,677.925384800002,Previously infected (Pre-Omicron),BNT162b2,5 +21,2022-01-27,2021-12-23,Delta,2560,Infection naive,BNT162b2,4 +21,2022-01-27,2021-12-23,BA.1,2560,Infection naive,BNT162b2,4 +21,2022-01-27,2021-12-23,BA.2,1562.95734,Infection naive,BNT162b2,4 +22,2022-01-12,2021-12-24,Delta,2094.528381,Infection naive,BNT162b2,5 +22,2022-01-12,2021-12-24,BA.1,1715.128513,Infection naive,BNT162b2,5 +22,2022-01-12,2021-12-24,BA.2,1029.804626,Infection naive,BNT162b2,5 +23,2022-01-11,2021-12-07,Delta,492.745979450075,Previously infected (Pre-Omicron),AZD1222,5 +23,2022-01-11,2021-12-07,BA.1,647.153232721685,Previously infected (Pre-Omicron),AZD1222,5 +23,2022-01-11,2021-12-07,BA.2,1860.79135993889,Previously infected (Pre-Omicron),AZD1222,5 +24,2021-12-20,2021-12-08,Delta,329.824271979385,Infection naive,BNT162b2,3 +24,2021-12-20,2021-12-08,BA.1,186.903521306488,Infection naive,BNT162b2,3 +24,2021-12-20,2021-12-08,BA.2,391.300627889382,Infection naive,BNT162b2,3 +25,2022-01-12,2021-12-18,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,5 +25,2022-01-12,2021-12-18,BA.1,2560,Previously infected (Pre-Omicron),BNT162b2,5 +25,2022-01-12,2021-12-18,BA.2,1607.41537599999,Previously infected (Pre-Omicron),BNT162b2,5 +26,2022-01-18,2021-12-12,Delta,1148.03780629789,Previously infected (Pre-Omicron),BNT162b2,4 +26,2022-01-18,2021-12-12,BA.1,835.176064472936,Previously infected (Pre-Omicron),BNT162b2,4 +26,2022-01-18,2021-12-12,BA.2,1012.79692277529,Previously infected (Pre-Omicron),BNT162b2,4 +27,2021-10-18,2021-09-22,Delta,697.208848591141,Infection naive,BNT162b2,3 +27,2021-12-21,2021-09-22,Delta,1348.953272,Infection naive,BNT162b2,3 +27,2021-10-18,2021-09-22,BA.1,605.448578890923,Infection naive,BNT162b2,3 +27,2021-12-21,2021-09-22,BA.1,526.225990299999,Infection naive,BNT162b2,3 +27,2021-10-18,2021-09-22,BA.2,823.545393429733,Infection naive,BNT162b2,3 +27,2021-12-21,2021-09-22,BA.2,535.062801700002,Infection naive,BNT162b2,3 +28,2021-12-16,2021-12-01,Delta,469.144198143753,Infection naive,BNT162b2,3 +28,2021-12-16,2021-12-01,BA.1,241.841242919635,Infection naive,BNT162b2,3 +28,2021-12-16,2021-12-01,BA.2,429.39806936829,Infection naive,BNT162b2,3 +29,2022-01-06,2021-12-14,Delta,1230.34814591358,Infection naive,AZD1222,4 +29,2022-01-06,2021-12-14,BA.1,687.499510511047,Infection naive,AZD1222,4 +29,2022-01-06,2021-12-14,BA.2,886.467160348459,Infection naive,AZD1222,4 +30,2022-01-06,2021-12-10,Delta,1012.79692277529,Infection naive,BNT162b2,3 +30,2022-03-21,2021-12-10,Delta,1172.443533,Infection naive,BNT162b2,3 +30,2022-07-20,2021-12-10,Delta,780.670057600001,Infection naive,BNT162b2,3 +30,2022-01-06,2021-12-10,BA.1,643.19481164692,Infection naive,BNT162b2,3 +30,2022-03-21,2021-12-10,BA.1,490.161451000001,Infection naive,BNT162b2,3 +30,2022-07-20,2021-12-10,BA.1,452.584265500002,Infection naive,BNT162b2,3 +30,2022-01-06,2021-12-10,BA.2,1005.72008784219,Infection naive,BNT162b2,3 +30,2022-03-21,2021-12-10,BA.2,373.538846600001,Infection naive,BNT162b2,3 +30,2022-07-20,2021-12-10,BA.2,281.9325226,Infection naive,BNT162b2,3 +31,2021-10-08,2021-10-08,Delta,85.0723322500003,Infection naive,BNT162b2,3 +31,2021-10-08,2021-10-08,BA.1,104.7137773,Infection naive,BNT162b2,3 +31,2021-10-08,2021-10-08,BA.2,65.74692666,Infection naive,BNT162b2,3 +32,2021-10-20,2021-10-01,Delta,579.996158456378,Previously infected (Pre-Omicron),BNT162b2,4 +32,2021-10-20,2021-10-01,BA.1,391.64375049163,Previously infected (Pre-Omicron),BNT162b2,4 +32,2021-10-20,2021-10-01,BA.2,529.000680191154,Previously infected (Pre-Omicron),BNT162b2,4 +33,2021-10-08,2021-10-08,Delta,360.669594000001,Infection naive,BNT162b2,3 +33,2021-11-02,2021-10-08,Delta,1423.03940300001,Infection naive,BNT162b2,3 +33,2022-01-13,2021-10-08,Delta,902.1438084,Infection naive,BNT162b2,3 +33,2022-07-13,2021-10-08,Delta,499.704875,Infection naive,BNT162b2,3 +33,2022-09-29,2021-10-08,Delta,920.51498399223,Infection naive,BNT162b2,3 +33,2021-10-08,2021-10-08,BA.1,176.089261200001,Infection naive,BNT162b2,3 +33,2021-11-02,2021-10-08,BA.1,609.174697899999,Infection naive,BNT162b2,3 +33,2022-01-13,2021-10-08,BA.1,551.731425900001,Infection naive,BNT162b2,3 +33,2022-07-13,2021-10-08,BA.1,466.683464700001,Infection naive,BNT162b2,3 +33,2022-09-29,2021-10-08,BA.1,462.205593339281,Infection naive,BNT162b2,3 +33,2021-10-08,2021-10-08,BA.2,252.0119885,Infection naive,BNT162b2,3 +34,2022-02-15,2022-01-06,Delta,1964.709553,Infection naive,BNT162b2,4 +34,2022-07-27,2022-01-06,Delta,951.690628333103,Infection naive,BNT162b2,4 +34,2022-02-15,2022-01-06,BA.1,981.338313300001,Infection naive,BNT162b2,4 +34,2022-07-27,2022-01-06,BA.1,566.928199132255,Infection naive,BNT162b2,4 +34,2022-02-15,2022-01-06,BA.2,552.6994515,Infection naive,BNT162b2,4 +34,2022-07-27,2022-01-06,BA.2,455.768913171908,Infection naive,BNT162b2,4 +35,2021-12-20,2021-12-03,Delta,1383.680854,Previously infected (Pre-Omicron),mRNA1273,4 +35,2022-03-21,2021-12-03,Delta,845.487564100002,Previously infected (Pre-Omicron),mRNA1273,4 +35,2021-12-20,2021-12-03,BA.1,686.897185999998,Previously infected (Pre-Omicron),mRNA1273,4 +35,2022-03-21,2021-12-03,BA.1,226.8519274,Previously infected (Pre-Omicron),mRNA1273,4 +35,2021-12-20,2021-12-03,BA.2,337.4268752,Previously infected (Pre-Omicron),mRNA1273,4 +35,2022-03-21,2021-12-03,BA.2,173.3329236,Previously infected (Pre-Omicron),mRNA1273,4 +36,2022-01-12,2021-12-29,Delta,1596.183694,Infection naive,BNT162b2,4 +36,2022-04-07,2021-12-29,Delta,2407.745409,Infection naive,BNT162b2,4 +36,2022-01-12,2021-12-29,BA.1,1694.210941,Infection naive,BNT162b2,4 +36,2022-04-07,2021-12-29,BA.1,992.584030600003,Infection naive,BNT162b2,4 +36,2022-01-12,2021-12-29,BA.2,675.552759,Infection naive,BNT162b2,4 +36,2022-04-07,2021-12-29,BA.2,759.0782163,Infection naive,BNT162b2,4 +37,2022-01-06,2021-12-10,Delta,557.076628047233,Infection naive,BNT162b2,3 +37,2022-01-06,2021-12-10,BA.1,497.083846128015,Infection naive,BNT162b2,3 +37,2022-01-06,2021-12-10,BA.2,688.705744441976,Infection naive,BNT162b2,3 +38,2022-01-25,2022-01-21,Delta,1709.12585,Previously infected (Omicron),BNT162b2,4 +38,2022-04-19,2022-01-21,Delta,595.449313599998,Previously infected (Omicron),BNT162b2,4 +38,2022-04-19,2022-01-21,Delta,595.449313599998,Previously infected (Omicron),BNT162b2,4 +38,2022-01-25,2022-01-21,BA.1,630.358252700001,Previously infected (Omicron),BNT162b2,4 +38,2022-04-19,2022-01-21,BA.1,600.165053300002,Previously infected (Omicron),BNT162b2,4 +38,2022-04-19,2022-01-21,BA.1,600.165053300002,Previously infected (Omicron),BNT162b2,4 +38,2022-01-25,2022-01-21,BA.2,839.579789552457,Previously infected (Omicron),BNT162b2,4 +38,2022-04-19,2022-01-21,BA.2,361.936310700001,Previously infected (Omicron),BNT162b2,4 +38,2022-04-19,2022-01-21,BA.2,361.936310700001,Previously infected (Omicron),BNT162b2,4 +39,2022-01-27,2021-12-25,Delta,1833.270406,Infection naive,BNT162b2,4 +39,2022-01-27,2021-12-25,BA.1,770.473456500002,Infection naive,BNT162b2,4 +39,2022-01-27,2021-12-25,BA.2,804.989998629278,Infection naive,BNT162b2,4 +40,2021-12-14,2021-12-14,Delta,63.0935002600001,Infection naive,BNT162b2,3 +40,2022-01-18,2021-12-14,Delta,635.350458433831,Infection naive,BNT162b2,3 +40,2021-12-14,2021-12-14,BA.1,5,Infection naive,BNT162b2,3 +40,2022-01-18,2021-12-14,BA.1,432.419565403068,Infection naive,BNT162b2,3 +40,2021-12-14,2021-12-14,BA.2,65.6893251900002,Infection naive,BNT162b2,3 +40,2022-01-18,2021-12-14,BA.2,545.480453207638,Infection naive,BNT162b2,3 +41,2021-10-11,2021-09-09,Delta,898.986455599049,Infection naive,BNT162b2,3 +41,2021-10-11,2021-09-09,BA.1,1137.02227650801,Infection naive,BNT162b2,3 +41,2021-10-11,2021-09-09,BA.2,1480.28878357321,Infection naive,BNT162b2,3 +42,2022-01-06,2021-12-19,Delta,2560,Previously infected (Omicron),BNT162b2,4 +42,2022-04-19,2021-12-19,Delta,2560,Previously infected (Omicron),BNT162b2,4 +42,2022-07-14,2021-12-19,Delta,2560,Previously infected (Omicron),BNT162b2,4 +42,2022-01-06,2021-12-19,BA.1,1488.094066,Previously infected (Omicron),BNT162b2,4 +42,2022-04-19,2021-12-19,BA.1,2365.905763,Previously infected (Omicron),BNT162b2,4 +42,2022-07-14,2021-12-19,BA.1,922.130048999999,Previously infected (Omicron),BNT162b2,4 +42,2022-01-06,2021-12-19,BA.2,1084.460021,Previously infected (Omicron),BNT162b2,4 +42,2022-04-19,2021-12-19,BA.2,1136.026121,Previously infected (Omicron),BNT162b2,4 +42,2022-07-14,2021-12-19,BA.2,1186.919105,Previously infected (Omicron),BNT162b2,4 +43,2021-12-15,2021-12-03,Delta,659.753280476606,Infection naive,BNT162b2,3 +43,2022-03-21,2021-12-03,Delta,421.566711600001,Infection naive,BNT162b2,3 +43,2021-12-15,2021-12-03,BA.1,171.820311329011,Infection naive,BNT162b2,3 +43,2022-03-21,2021-12-03,BA.1,221.740700900001,Infection naive,BNT162b2,3 +43,2021-12-15,2021-12-03,BA.2,280.945805803223,Infection naive,BNT162b2,3 +43,2022-03-21,2021-12-03,BA.2,216.175459200001,Infection naive,BNT162b2,3 +44,2021-12-15,2021-12-15,Delta,5,Infection naive,BNT162b2,3 +44,2022-01-10,2021-12-15,Delta,163.3038598957,Infection naive,BNT162b2,3 +44,2022-03-21,2021-12-15,Delta,111.534972,Infection naive,BNT162b2,3 +44,2021-12-15,2021-12-15,BA.1,5,Infection naive,BNT162b2,3 +44,2022-01-10,2021-12-15,BA.1,133.723232907625,Infection naive,BNT162b2,3 +44,2022-03-21,2021-12-15,BA.1,75.5125462099998,Infection naive,BNT162b2,3 +44,2021-12-15,2021-12-15,BA.2,5,Infection naive,BNT162b2,3 +44,2022-01-10,2021-12-15,BA.2,233.304689105237,Infection naive,BNT162b2,3 +44,2022-03-21,2021-12-15,BA.2,107.7867745,Infection naive,BNT162b2,3 +45,2021-12-22,2021-12-22,Delta,208.544860600001,Infection naive,BNT162b2,4 +45,2022-02-03,2021-12-22,Delta,2560,Infection naive,BNT162b2,4 +45,2022-07-05,2021-12-22,Delta,2560,Infection naive,BNT162b2,4 +45,2021-12-22,2021-12-22,BA.1,102.3544593,Infection naive,BNT162b2,4 +45,2022-02-03,2021-12-22,BA.1,2264.45992400001,Infection naive,BNT162b2,4 +45,2022-07-05,2021-12-22,BA.1,2560,Infection naive,BNT162b2,4 +45,2021-12-22,2021-12-22,BA.2,126.7613477,Infection naive,BNT162b2,4 +45,2022-02-03,2021-12-22,BA.2,757.748728500003,Infection naive,BNT162b2,4 +45,2022-07-05,2021-12-22,BA.2,1256.503679,Infection naive,BNT162b2,4 +46,2022-01-06,2021-12-24,Delta,1686.802367,Infection naive,mRNA1273,4 +46,2022-03-21,2021-12-24,Delta,617.7778794,Infection naive,mRNA1273,4 +46,2022-06-16,2021-12-24,Delta,1122.171236,Infection naive,mRNA1273,4 +46,2022-01-06,2021-12-24,BA.1,945.040768600001,Infection naive,mRNA1273,4 +46,2022-03-21,2021-12-24,BA.1,500.581618900002,Infection naive,mRNA1273,4 +46,2022-06-16,2021-12-24,BA.1,950.856843600001,Infection naive,mRNA1273,4 +46,2022-01-06,2021-12-24,BA.2,490.161451000001,Infection naive,mRNA1273,4 +46,2022-03-21,2021-12-24,BA.2,418.2542913,Infection naive,mRNA1273,4 +46,2022-06-16,2021-12-24,BA.2,487.5904789,Infection naive,mRNA1273,4 +47,2022-01-31,2022-01-16,Delta,1375.217338,Infection naive,BNT162b2,4 +47,2022-04-19,2022-01-16,Delta,1008.368088,Infection naive,BNT162b2,4 +47,2022-01-31,2022-01-16,BA.1,812.076691199999,Infection naive,BNT162b2,4 +47,2022-04-19,2022-01-16,BA.1,914.884500000004,Infection naive,BNT162b2,4 +47,2022-01-31,2022-01-16,BA.2,533.190171200002,Infection naive,BNT162b2,4 +47,2022-04-19,2022-01-16,BA.2,792.389433300002,Infection naive,BNT162b2,4 +48,2022-01-10,2021-12-10,Delta,183.334015305209,Previously infected (Pre-Omicron),BNT162b2,4 +48,2022-01-10,2021-12-10,BA.1,360.353608095522,Previously infected (Pre-Omicron),BNT162b2,4 +48,2022-01-10,2021-12-10,BA.2,434.318787559875,Previously infected (Pre-Omicron),BNT162b2,4 +49,2022-01-11,2021-12-30,Delta,1254.302975,Infection naive,BNT162b2,4 +49,2022-01-11,2021-12-30,BA.1,634.7938222,Infection naive,BNT162b2,4 +49,2022-01-11,2021-12-30,BA.2,548.356668199999,Infection naive,BNT162b2,4 +50,2021-10-21,2021-10-02,Delta,676.738032100001,Infection naive,BNT162b2,3 +50,2022-01-12,2021-10-02,Delta,573.927777099999,Infection naive,BNT162b2,3 +50,2022-07-06,2021-10-02,Delta,187.889028099999,Infection naive,BNT162b2,3 +50,2022-09-20,2021-10-02,Delta,164.164930194523,Infection naive,BNT162b2,3 +50,2021-10-21,2021-10-02,BA.1,455.768913199999,Infection naive,BNT162b2,3 +50,2022-01-12,2021-10-02,BA.1,248.5024668,Infection naive,BNT162b2,3 +50,2022-07-06,2021-10-02,BA.1,116.6338259,Infection naive,BNT162b2,3 +50,2022-09-20,2021-10-02,BA.1,58.6664985238951,Infection naive,BNT162b2,3 +51,2022-01-11,2021-12-22,Delta,2560,Infection naive,BNT162b2,5 +51,2022-03-21,2021-12-22,Delta,2560,Infection naive,BNT162b2,5 +51,2022-07-06,2021-12-22,Delta,2560,Infection naive,BNT162b2,5 +51,2022-07-06,2021-12-22,Delta,2560,Infection naive,BNT162b2,5 +51,2022-01-11,2021-12-22,BA.1,736.145338300002,Infection naive,BNT162b2,5 +51,2022-01-11,2021-12-22,BA.2,667.8989231,Infection naive,BNT162b2,5 +51,2022-03-21,2021-12-22,BA.2,924.5579612,Infection naive,BNT162b2,5 +51,2022-07-06,2021-12-22,BA.2,609.708869300002,Infection naive,BNT162b2,5 +51,2022-07-06,2021-12-22,BA.2,609.708869300002,Infection naive,BNT162b2,5 +52,2021-11-30,2021-10-24,Delta,1230.34814591358,Infection naive,BNT162b2,3 +52,2022-01-27,2021-10-24,Delta,639.821155999999,Infection naive,BNT162b2,3 +52,2021-11-30,2021-10-24,BA.1,580.504743868716,Infection naive,BNT162b2,3 +52,2022-01-27,2021-10-24,BA.1,604.388165800002,Infection naive,BNT162b2,3 +52,2021-11-30,2021-10-24,BA.2,680.902888607987,Infection naive,BNT162b2,3 +52,2022-01-27,2021-10-24,BA.2,339.503505299999,Infection naive,BNT162b2,3 +53,2021-12-02,2021-10-30,Delta,559.033150806869,Infection naive,BNT162b2,3 +53,2021-12-02,2021-10-30,BA.1,112.615528487616,Infection naive,BNT162b2,3 +53,2021-12-02,2021-10-30,BA.2,206.724966827605,Infection naive,BNT162b2,3 +54,2021-12-01,2021-12-01,Delta,205.460499000001,Infection naive,BNT162b2,3 +54,2022-01-12,2021-12-01,Delta,2560,Infection naive,BNT162b2,3 +54,2022-03-21,2021-12-01,Delta,914.884500000004,Infection naive,BNT162b2,3 +54,2021-12-01,2021-12-01,BA.1,43.50973627,Infection naive,BNT162b2,3 +54,2022-01-12,2021-12-01,BA.1,660.331803100001,Infection naive,BNT162b2,3 +54,2022-03-21,2021-12-01,BA.1,467.9122138,Infection naive,BNT162b2,3 +54,2021-12-01,2021-12-01,BA.2,58.0526829299998,Infection naive,BNT162b2,3 +54,2022-01-12,2021-12-01,BA.2,725.257808159829,Infection naive,BNT162b2,3 +54,2022-03-21,2021-12-01,BA.2,380.811633100001,Infection naive,BNT162b2,3 +55,2022-02-15,2022-01-24,Delta,2560,Infection naive,BNT162b2,4 +55,2022-07-20,2022-01-24,Delta,2560,Infection naive,BNT162b2,4 +55,2022-02-15,2022-01-24,BA.1,2288.403017,Infection naive,BNT162b2,4 +55,2022-07-20,2022-01-24,BA.1,1908.695751,Infection naive,BNT162b2,4 +55,2022-02-15,2022-01-24,BA.2,1558.852975,Infection naive,BNT162b2,4 +55,2022-07-20,2022-01-24,BA.2,1964.709553,Infection naive,BNT162b2,4 +56,2021-11-01,2021-10-09,Delta,1603.194263,Infection naive,BNT162b2,3 +56,2022-01-19,2021-10-09,Delta,2560,Infection naive,BNT162b2,3 +56,2021-11-01,2021-10-09,BA.1,1239.005595,Infection naive,BNT162b2,3 +56,2022-01-19,2021-10-09,BA.1,830.795437600003,Infection naive,BNT162b2,3 +57,2021-10-21,2021-10-02,Delta,586.128703399999,Infection naive,BNT162b2,3 +57,2022-01-12,2021-10-02,Delta,416.425317199999,Infection naive,BNT162b2,3 +57,2022-07-11,2021-10-02,Delta,245.686998900001,Infection naive,BNT162b2,3 +57,2022-07-11,2021-10-02,Delta,245.686998900001,Infection naive,BNT162b2,3 +57,2021-10-21,2021-10-02,BA.1,156.5759152,Infection naive,BNT162b2,3 +57,2022-01-12,2021-10-02,BA.1,249.59391,Infection naive,BNT162b2,3 +57,2022-07-11,2021-10-02,BA.1,162.0207154,Infection naive,BNT162b2,3 +57,2022-07-11,2021-10-02,BA.1,162.0207154,Infection naive,BNT162b2,3 +58,2022-01-19,2022-01-04,Delta,1100.73987442066,Infection naive,BNT162b2,3 +58,2022-01-19,2022-01-04,BA.1,1190.04419096171,Infection naive,BNT162b2,3 +58,2022-01-19,2022-01-04,BA.2,1045.2639959483,Infection naive,BNT162b2,3 +59,2022-01-18,2021-12-09,Delta,527.149266068104,Previously infected (Pre-Omicron),BNT162b2,4 +59,2022-01-18,2021-12-09,BA.1,292.248355338979,Previously infected (Pre-Omicron),BNT162b2,4 +59,2022-01-18,2021-12-09,BA.2,638.700540969852,Previously infected (Pre-Omicron),BNT162b2,4 +60,2022-01-12,2021-12-17,Delta,555.613731000002,Previously infected (Omicron),BNT162b2,6 +60,2022-01-12,2021-12-17,BA.1,258.2733353,Previously infected (Omicron),BNT162b2,6 +60,2022-01-12,2021-12-17,BA.2,263.071225699999,Previously infected (Omicron),BNT162b2,6 +61,2021-10-07,2021-10-07,Delta,391.300627900001,Previously infected (Pre-Omicron),BNT162b2,4 +61,2021-10-29,2021-10-07,Delta,816.358617699999,Previously infected (Pre-Omicron),BNT162b2,4 +61,2021-10-07,2021-10-07,BA.1,255.5710741,Previously infected (Pre-Omicron),BNT162b2,4 +61,2021-10-29,2021-10-07,BA.1,366.726248800001,Previously infected (Pre-Omicron),BNT162b2,4 +61,2021-10-07,2021-10-07,BA.2,223.105362200001,Previously infected (Pre-Omicron),BNT162b2,4 +62,2021-11-15,2021-10-11,Delta,2560,Infection naive,mRNA1273,3 +62,2022-01-17,2021-10-11,Delta,1695.69655631292,Infection naive,mRNA1273,3 +62,2021-11-15,2021-10-11,BA.1,694.160040823457,Infection naive,mRNA1273,3 +62,2022-01-17,2021-10-11,BA.1,762.412150017302,Infection naive,mRNA1273,3 +62,2021-11-15,2021-10-11,BA.2,784.786382830833,Infection naive,mRNA1273,3 +62,2022-01-17,2021-10-11,BA.2,849.201014794138,Infection naive,mRNA1273,3 +63,2021-10-27,2021-10-08,Delta,406.6861773,Infection naive,BNT162b2,3 +63,2021-12-20,2021-10-08,Delta,479.117567700001,Infection naive,BNT162b2,3 +63,2022-03-22,2021-10-08,Delta,248.9384702,Infection naive,BNT162b2,3 +63,2022-04-21,2021-10-08,Delta,189.7093066,Infection naive,BNT162b2,3 +63,2021-10-27,2021-10-08,BA.1,322.675662900001,Infection naive,BNT162b2,3 +63,2021-12-20,2021-10-08,BA.1,220.577636799999,Infection naive,BNT162b2,3 +63,2022-03-22,2021-10-08,BA.1,91.4117737899999,Infection naive,BNT162b2,3 +63,2022-04-21,2021-10-08,BA.1,141.0674732,Infection naive,BNT162b2,3 +64,2022-01-25,2022-01-02,Delta,1088.26877973307,Infection naive,BNT162b2,2 +64,2022-01-25,2022-01-02,BA.1,2560,Infection naive,BNT162b2,2 +64,2022-01-25,2022-01-02,BA.2,2560,Infection naive,BNT162b2,2 +65,2021-12-20,2021-12-20,Delta,73.8111644569211,Infection naive,BNT162b2,4 +65,2022-01-13,2021-12-20,Delta,2182.614743,Infection naive,BNT162b2,4 +65,2022-02-23,2021-12-20,Delta,2560,Infection naive,BNT162b2,4 +65,2022-09-06,2021-12-20,Delta,2560,Infection naive,BNT162b2,4 +65,2021-12-20,2021-12-20,BA.1,42.6040323104691,Infection naive,BNT162b2,4 +65,2022-01-13,2021-12-20,BA.1,817.074464,Infection naive,BNT162b2,4 +65,2021-12-20,2021-12-20,BA.2,74.8535761806253,Infection naive,BNT162b2,4 +65,2022-01-13,2021-12-20,BA.2,559.523354199999,Infection naive,BNT162b2,4 +66,2022-01-12,2021-12-30,Delta,2560,Infection naive,BNT162b2,4 +66,2022-01-12,2021-12-30,BA.1,2560,Infection naive,BNT162b2,4 +66,2022-01-12,2021-12-30,BA.2,1462.235298,Infection naive,BNT162b2,4 +67,2021-12-20,2021-11-13,Delta,455.369609939532,Infection naive,BNT162b2,3 +67,2022-07-20,2021-11-13,Delta,509.880820300002,Infection naive,BNT162b2,3 +67,2021-12-20,2021-11-13,BA.1,598.589004952263,Infection naive,BNT162b2,3 +67,2022-07-20,2021-11-13,BA.1,152.6461774,Infection naive,BNT162b2,3 +67,2021-12-20,2021-11-13,BA.2,644.323311950038,Infection naive,BNT162b2,3 +67,2022-07-20,2021-11-13,BA.2,163.4470573,Infection naive,BNT162b2,3 +68,2022-01-26,2021-12-13,Delta,306.950832300001,Infection naive,mRNA1273,3 +68,2022-03-21,2021-12-13,Delta,170.1716794,Infection naive,mRNA1273,3 +68,2022-01-26,2021-12-13,BA.1,244.3983328,Infection naive,mRNA1273,3 +68,2022-03-21,2021-12-13,BA.1,87.2624425099998,Infection naive,mRNA1273,3 +68,2022-01-26,2021-12-13,BA.2,196.1343078,Infection naive,mRNA1273,3 +68,2022-03-21,2021-12-13,BA.2,124.122668,Infection naive,mRNA1273,3 +69,2022-02-08,2022-01-20,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,4 +69,2022-07-21,2022-01-20,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,4 +69,2022-02-08,2022-01-20,BA.1,2560,Previously infected (Pre-Omicron),BNT162b2,4 +69,2022-07-21,2022-01-20,BA.1,1100.73987442066,Previously infected (Pre-Omicron),BNT162b2,4 +69,2022-02-08,2022-01-20,BA.2,2029.46997799999,Previously infected (Pre-Omicron),BNT162b2,4 +69,2022-07-21,2022-01-20,BA.2,2560,Previously infected (Pre-Omicron),BNT162b2,4 +70,2022-01-06,2021-12-18,Delta,596.494043302553,Infection naive,BNT162b2,3 +70,2022-01-06,2021-12-18,BA.1,902.14380841629,Infection naive,BNT162b2,3 +70,2022-01-06,2021-12-18,BA.2,2302.48656184692,Infection naive,BNT162b2,3 +71,2022-01-27,2021-12-25,Delta,2560,Infection naive,BNT162b2,4 +71,2022-04-12,2021-12-25,Delta,2560,Infection naive,BNT162b2,4 +71,2022-04-12,2021-12-25,Delta,2560,Infection naive,BNT162b2,4 +71,2023-01-12,2021-12-25,Delta,2256.53469183447,Infection naive,BNT162b2,4 +71,2022-01-27,2021-12-25,BA.1,1495.940504,Infection naive,BNT162b2,4 +71,2022-04-12,2021-12-25,BA.1,2560,Infection naive,BNT162b2,4 +71,2022-04-12,2021-12-25,BA.1,2560,Infection naive,BNT162b2,4 +71,2023-01-12,2021-12-25,BA.1,753.113831544595,Infection naive,BNT162b2,4 +71,2022-01-27,2021-12-25,BA.2,1499.87922383217,Infection naive,BNT162b2,4 +71,2023-01-12,2021-12-25,BA.2,405.262843496997,Infection naive,BNT162b2,4 +72,2021-10-21,2021-10-07,Delta,188.218683830027,Infection naive,BNT162b2,3 +72,2021-10-21,2021-10-07,BA.1,286.164878031783,Infection naive,BNT162b2,3 +72,2022-01-12,2021-10-07,BA.1,170.470249599999,Infection naive,BNT162b2,3 +72,2021-10-21,2021-10-07,BA.2,649.426115777702,Infection naive,BNT162b2,3 +72,2022-01-12,2021-10-07,BA.2,141.5629198,Infection naive,BNT162b2,3 +73,2021-10-21,2021-10-03,Delta,1030.707638,Infection naive,BNT162b2,3 +73,2021-10-21,2021-10-03,BA.1,511.2233054,Infection naive,BNT162b2,3 +74,2021-10-01,2021-10-01,Delta,988.243583799999,Infection naive,BNT162b2,3 +74,2021-10-21,2021-10-01,Delta,685.093376925567,Infection naive,BNT162b2,3 +74,2022-01-18,2021-10-01,Delta,433.938277000001,Infection naive,BNT162b2,3 +74,2021-10-01,2021-10-01,BA.1,227.050848700001,Infection naive,BNT162b2,3 +74,2021-10-21,2021-10-01,BA.1,563.954573563992,Infection naive,BNT162b2,3 +74,2022-01-18,2021-10-01,BA.1,144.192705,Infection naive,BNT162b2,3 +74,2021-10-01,2021-10-01,BA.2,250.031828300001,Infection naive,BNT162b2,3 +74,2021-10-21,2021-10-01,BA.2,732.926266060021,Infection naive,BNT162b2,3 +74,2022-01-18,2021-10-01,BA.2,89.0394470600002,Infection naive,BNT162b2,3 +75,2021-11-15,2021-10-18,Delta,479.537694977315,Previously infected (Pre-Omicron),BNT162b2,4 +75,2022-01-31,2021-10-18,Delta,451.395767999999,Previously infected (Pre-Omicron),BNT162b2,4 +75,2022-07-13,2021-10-18,Delta,155.4818539,Previously infected (Pre-Omicron),BNT162b2,4 +75,2021-11-15,2021-10-18,BA.1,510.327923138681,Previously infected (Pre-Omicron),BNT162b2,4 +75,2022-01-31,2021-10-18,BA.1,172.1217741,Previously infected (Pre-Omicron),BNT162b2,4 +75,2022-07-13,2021-10-18,BA.1,242.053308,Previously infected (Pre-Omicron),BNT162b2,4 +75,2021-11-15,2021-10-18,BA.2,667.898923085107,Previously infected (Pre-Omicron),BNT162b2,4 +75,2022-01-31,2021-10-18,BA.2,229.854131600001,Previously infected (Pre-Omicron),BNT162b2,4 +75,2022-07-13,2021-10-18,BA.2,171.0689624,Previously infected (Pre-Omicron),BNT162b2,4 +76,2022-01-25,2021-12-20,Delta,2560,Infection naive,BNT162b2,4 +76,2022-07-21,2021-12-20,Delta,1980.26933035355,Infection naive,BNT162b2,4 +76,2022-01-25,2021-12-20,BA.1,1854.27890100001,Infection naive,BNT162b2,4 +76,2022-07-21,2021-12-20,BA.1,711.406747031582,Infection naive,BNT162b2,4 +76,2022-01-25,2021-12-20,BA.2,1110.430188,Infection naive,BNT162b2,4 +76,2022-07-21,2021-12-20,BA.2,927.805124355957,Infection naive,BNT162b2,4 +77,2021-09-27,2021-09-24,Delta,112.912038309139,Previously infected (Pre-Omicron),BNT162b2,4 +77,2021-09-27,2021-09-24,BA.1,42.0475663387378,Previously infected (Pre-Omicron),BNT162b2,4 +77,2021-09-27,2021-09-24,BA.2,111.437255202695,Previously infected (Pre-Omicron),BNT162b2,4 +78,2021-12-23,2021-12-08,Delta,2560,Infection naive,BNT162b2,5 +78,2022-07-06,2021-12-08,Delta,2560,Infection naive,BNT162b2,5 +78,2022-10-20,2021-12-08,Delta,2560,Infection naive,BNT162b2,5 +78,2021-12-23,2021-12-08,BA.1,2560,Infection naive,BNT162b2,5 +78,2022-07-06,2021-12-08,BA.1,2560,Infection naive,BNT162b2,5 +78,2022-10-20,2021-12-08,BA.1,1560.21989763772,Infection naive,BNT162b2,5 +78,2021-12-23,2021-12-08,BA.2,882.590749500003,Infection naive,BNT162b2,5 +79,2021-12-20,2021-12-18,Delta,725.893770200002,Previously infected (Pre-Omicron),BNT162b2,4 +79,2022-01-27,2021-12-18,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,4 +79,2021-12-20,2021-12-18,BA.1,313.476190800001,Previously infected (Pre-Omicron),BNT162b2,4 +79,2022-01-27,2021-12-18,BA.1,428.646000000001,Previously infected (Pre-Omicron),BNT162b2,4 +79,2021-12-20,2021-12-18,BA.2,424.161164400001,Previously infected (Pre-Omicron),BNT162b2,4 +79,2022-01-27,2021-12-18,BA.2,1106.54386713216,Previously infected (Pre-Omicron),BNT162b2,4 +80,2022-01-26,2022-01-10,Delta,2560,Infection naive,mRNA1273,4 +80,2022-04-12,2022-01-10,Delta,2560,Infection naive,mRNA1273,4 +80,2022-04-12,2022-01-10,Delta,2560,Infection naive,mRNA1273,4 +80,2022-07-20,2022-01-10,Delta,2560,Infection naive,mRNA1273,4 +80,2022-10-04,2022-01-10,Delta,2560,Infection naive,mRNA1273,4 +80,2022-12-08,2022-01-10,Delta,2560,Infection naive,mRNA1273,4 +80,2022-01-26,2022-01-10,BA.1,829.340340599999,Infection naive,mRNA1273,4 +80,2022-04-12,2022-01-10,BA.1,490.161451000001,Infection naive,mRNA1273,4 +80,2022-04-12,2022-01-10,BA.1,490.161451000001,Infection naive,mRNA1273,4 +80,2022-07-20,2022-01-10,BA.1,560.505050999999,Infection naive,mRNA1273,4 +80,2022-10-04,2022-01-10,BA.1,527.61151124497,Infection naive,mRNA1273,4 +80,2022-01-26,2022-01-10,BA.2,682.097548600003,Infection naive,mRNA1273,4 +80,2022-04-12,2022-01-10,BA.2,427.145810499999,Infection naive,mRNA1273,4 +80,2022-04-12,2022-01-10,BA.2,427.145810499999,Infection naive,mRNA1273,4 +80,2022-07-20,2022-01-10,BA.2,494.910160200001,Infection naive,mRNA1273,4 +80,2022-10-04,2022-01-10,BA.2,543.57136262849,Infection naive,mRNA1273,4 +80,2022-12-08,2022-01-10,BA.2,1023.50565348644,Infection naive,mRNA1273,4 +81,2021-10-20,2021-10-05,Delta,1613.06081980431,Infection naive,BNT162b2,3 +81,2022-01-31,2021-10-05,Delta,731.642582100002,Infection naive,BNT162b2,3 +81,2022-07-06,2021-10-05,Delta,283.916364800001,Infection naive,BNT162b2,3 +81,2022-07-06,2021-10-05,Delta,283.916364800001,Infection naive,BNT162b2,3 +81,2021-10-20,2021-10-05,BA.1,561.488470203461,Infection naive,BNT162b2,3 +81,2022-01-31,2021-10-05,BA.1,412.429677500001,Infection naive,BNT162b2,3 +81,2022-07-06,2021-10-05,BA.1,280.2080351,Infection naive,BNT162b2,3 +81,2022-07-06,2021-10-05,BA.1,280.2080351,Infection naive,BNT162b2,3 +81,2021-10-20,2021-10-05,BA.2,860.439512263544,Infection naive,BNT162b2,3 +81,2022-01-31,2021-10-05,BA.2,249.1567586,Infection naive,BNT162b2,3 +81,2022-07-06,2021-10-05,BA.2,157.2636095,Infection naive,BNT162b2,3 +81,2022-07-06,2021-10-05,BA.2,157.2636095,Infection naive,BNT162b2,3 +82,2021-12-20,2021-12-17,Delta,5,Infection naive,BNT162b2,3 +82,2022-01-26,2021-12-17,Delta,248.720372925193,Infection naive,BNT162b2,3 +82,2021-12-20,2021-12-17,BA.1,5,Infection naive,BNT162b2,3 +82,2022-01-26,2021-12-17,BA.1,385.851371049329,Infection naive,BNT162b2,3 +82,2021-12-20,2021-12-17,BA.2,93.5188578000003,Infection naive,BNT162b2,3 +82,2022-01-26,2021-12-17,BA.2,471.204717896184,Infection naive,BNT162b2,3 +83,2021-12-20,2021-12-20,Delta,2560,Previously infected (Pre-Omicron),mRNA1273,4 +83,2022-01-06,2021-12-20,Delta,2560,Previously infected (Pre-Omicron),mRNA1273,4 +83,2022-03-21,2021-12-20,Delta,2560,Previously infected (Pre-Omicron),mRNA1273,4 +83,2022-07-11,2021-12-20,Delta,2560,Previously infected (Pre-Omicron),mRNA1273,4 +83,2021-12-20,2021-12-20,BA.1,1377.630189,Previously infected (Pre-Omicron),mRNA1273,4 +83,2022-01-06,2021-12-20,BA.1,2560,Previously infected (Pre-Omicron),mRNA1273,4 +83,2022-03-21,2021-12-20,BA.1,2560,Previously infected (Pre-Omicron),mRNA1273,4 +83,2022-07-11,2021-12-20,BA.1,795.8696726,Previously infected (Pre-Omicron),mRNA1273,4 +83,2021-12-20,2021-12-20,BA.2,730.3611464,Previously infected (Pre-Omicron),mRNA1273,4 +83,2022-01-06,2021-12-20,BA.2,983.922117299998,Previously infected (Pre-Omicron),mRNA1273,4 +83,2022-03-21,2021-12-20,BA.2,877.961425299999,Previously infected (Pre-Omicron),mRNA1273,4 +83,2022-07-11,2021-12-20,BA.2,435.462322499999,Previously infected (Pre-Omicron),mRNA1273,4 +84,2022-01-06,2021-12-13,Delta,1160.176496,Infection naive,BNT162b2,4 +84,2022-03-28,2021-12-13,Delta,1862.423045,Infection naive,BNT162b2,4 +84,2022-01-06,2021-12-13,BA.1,1362.022,Infection naive,BNT162b2,4 +84,2022-03-28,2021-12-13,BA.1,1438.085801,Infection naive,BNT162b2,4 +84,2022-01-06,2021-12-13,BA.2,752.454021800001,Infection naive,BNT162b2,4 +84,2022-03-28,2021-12-13,BA.2,1194.223775,Infection naive,BNT162b2,4 +85,2022-01-06,2021-12-04,Delta,705.198563751346,Infection naive,BNT162b2,3 +85,2022-04-21,2021-12-04,Delta,1405.68412700001,Infection naive,BNT162b2,3 +85,2022-01-06,2021-12-04,BA.1,1731.74476597151,Infection naive,BNT162b2,3 +85,2022-04-21,2021-12-04,BA.1,830.795437600003,Infection naive,BNT162b2,3 +85,2022-01-06,2021-12-04,BA.2,2560,Infection naive,BNT162b2,3 +85,2022-04-21,2021-12-04,BA.2,607.57499,Infection naive,BNT162b2,3 +86,2021-10-20,2021-10-02,Delta,2242.73221967106,Infection naive,BNT162b2,3 +86,2021-12-02,2021-10-02,Delta,478.278417060802,Infection naive,BNT162b2,3 +86,2022-06-22,2021-10-02,Delta,867.253876999999,Infection naive,BNT162b2,3 +86,2022-09-30,2021-10-02,Delta,440.066649973921,Infection naive,BNT162b2,3 +86,2021-10-20,2021-10-02,BA.1,1334.83944884466,Infection naive,BNT162b2,3 +86,2021-12-02,2021-10-02,BA.1,456.568570363404,Infection naive,BNT162b2,3 +86,2022-06-22,2021-10-02,BA.1,369.630585900001,Infection naive,BNT162b2,3 +86,2022-09-30,2021-10-02,BA.1,195.790788319935,Infection naive,BNT162b2,3 +86,2021-10-20,2021-10-02,BA.2,1463.51749908181,Infection naive,BNT162b2,3 +86,2021-12-02,2021-10-02,BA.2,1022.60895100414,Infection naive,BNT162b2,3 +86,2022-06-22,2021-10-02,BA.2,334.482275799999,Infection naive,BNT162b2,3 +86,2022-09-30,2021-10-02,BA.2,192.388511149953,Infection naive,BNT162b2,3 +87,2021-10-05,2021-10-05,Delta,86.1981966500001,Infection naive,BNT162b2,3 +87,2021-10-20,2021-10-05,Delta,634.793822199081,Infection naive,BNT162b2,3 +87,2022-01-26,2021-10-05,Delta,128.1016491,Infection naive,BNT162b2,3 +87,2021-10-05,2021-10-05,BA.1,58.1035879999999,Infection naive,BNT162b2,3 +87,2021-10-20,2021-10-05,BA.1,356.270896028839,Infection naive,BNT162b2,3 +87,2022-01-26,2021-10-05,BA.1,41.5711784200001,Infection naive,BNT162b2,3 +87,2021-10-05,2021-10-05,BA.2,53.8376226599999,Infection naive,BNT162b2,3 +87,2021-10-20,2021-10-05,BA.2,671.420627505641,Infection naive,BNT162b2,3 +87,2022-01-26,2021-10-05,BA.2,208.544860611618,Infection naive,BNT162b2,3 +88,2021-10-26,2021-10-06,Delta,318.4610847,Infection naive,BNT162b2,3 +88,2022-01-18,2021-10-06,Delta,254.676618,Infection naive,BNT162b2,3 +88,2022-07-19,2021-10-06,Delta,204.741421500001,Infection naive,BNT162b2,3 +88,2021-10-26,2021-10-06,BA.1,201.5365896,Infection naive,BNT162b2,3 +88,2022-01-18,2021-10-06,BA.1,95.17268356,Infection naive,BNT162b2,3 +89,2022-01-06,2021-11-24,Delta,478.278417060802,Infection naive,BNT162b2,3 +89,2022-01-06,2021-11-24,BA.1,198.381923093367,Infection naive,BNT162b2,3 +89,2022-01-06,2021-11-24,BA.2,525.304331585598,Infection naive,BNT162b2,3 +90,2021-10-27,2021-10-13,Delta,1253.204069,Infection naive,BNT162b2,3 +90,2022-01-27,2021-10-13,Delta,777.937842600003,Infection naive,BNT162b2,3 +90,2021-10-27,2021-10-13,BA.1,402.783985499999,Infection naive,BNT162b2,3 +90,2022-01-27,2021-10-13,BA.1,704.580733000001,Infection naive,BNT162b2,3 +91,2021-11-23,2021-11-23,Delta,393.0192523,Infection naive,BNT162b2,3 +91,2021-12-07,2021-11-23,Delta,758.413181071472,Infection naive,BNT162b2,3 +91,2022-06-22,2021-11-23,Delta,507.6511747,Infection naive,BNT162b2,3 +91,2022-12-08,2021-11-23,Delta,385.513323202657,Infection naive,BNT162b2,3 +91,2021-11-23,2021-11-23,BA.1,95.08930191,Infection naive,BNT162b2,3 +91,2021-12-07,2021-11-23,BA.1,605.97948295064,Infection naive,BNT162b2,3 +91,2022-06-22,2021-11-23,BA.1,245.2566903,Infection naive,BNT162b2,3 +91,2022-12-08,2021-11-23,BA.1,181.574908335024,Infection naive,BNT162b2,3 +91,2021-11-23,2021-11-23,BA.2,167.8018667,Infection naive,BNT162b2,3 +91,2021-12-07,2021-11-23,BA.2,682.695664406201,Infection naive,BNT162b2,3 +91,2022-06-22,2021-11-23,BA.2,237.8471221,Infection naive,BNT162b2,3 +91,2022-12-08,2021-11-23,BA.2,170.320899089179,Infection naive,BNT162b2,3 +92,2022-01-26,2021-12-11,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,4 +92,2022-04-21,2021-12-11,Delta,1339.527572,Previously infected (Pre-Omicron),BNT162b2,4 +92,2022-04-21,2021-12-11,Delta,1339.527572,Previously infected (Pre-Omicron),BNT162b2,4 +92,2022-07-11,2021-12-11,Delta,1047.097936,Previously infected (Pre-Omicron),BNT162b2,4 +92,2022-01-26,2021-12-11,BA.1,561.488470200001,Previously infected (Pre-Omicron),BNT162b2,4 +92,2022-04-21,2021-12-11,BA.1,491.021450699999,Previously infected (Pre-Omicron),BNT162b2,4 +92,2022-04-21,2021-12-11,BA.1,491.021450699999,Previously infected (Pre-Omicron),BNT162b2,4 +92,2022-07-11,2021-12-11,BA.1,705.8169363,Previously infected (Pre-Omicron),BNT162b2,4 +92,2022-01-26,2021-12-11,BA.2,1403.22214069468,Previously infected (Pre-Omicron),BNT162b2,4 +92,2022-04-21,2021-12-11,BA.2,609.708869300002,Previously infected (Pre-Omicron),BNT162b2,4 +92,2022-04-21,2021-12-11,BA.2,609.708869300002,Previously infected (Pre-Omicron),BNT162b2,4 +92,2022-07-11,2021-12-11,BA.2,514.369532699999,Previously infected (Pre-Omicron),BNT162b2,4 +93,2021-10-27,2021-10-12,Delta,461.396063199999,Previously infected (Pre-Omicron),BNT162b2,4 +93,2021-10-27,2021-10-12,BA.1,317.346524,Previously infected (Pre-Omicron),BNT162b2,4 +93,2022-01-17,2021-10-12,BA.1,340.994632500001,Previously infected (Pre-Omicron),BNT162b2,4 +93,2022-06-16,2021-10-12,BA.1,328.094293000001,Previously infected (Pre-Omicron),BNT162b2,4 +93,2022-10-27,2021-10-12,BA.1,362.889266906423,Previously infected (Pre-Omicron),BNT162b2,4 +94,2022-01-19,2021-12-28,Delta,1292.244697,Infection naive,mRNA1273,5 +94,2022-01-19,2021-12-28,BA.1,810.654379200002,Infection naive,mRNA1273,5 +94,2022-01-19,2021-12-28,BA.2,455.369609900001,Infection naive,mRNA1273,5 +95,2022-01-18,2021-12-11,Delta,2013.52361069303,Infection naive,BNT162b2,4 +95,2022-01-18,2021-12-11,BA.1,762.412150017302,Infection naive,BNT162b2,4 +95,2022-01-18,2021-12-11,BA.2,1725.68394821212,Infection naive,BNT162b2,4 +96,2021-09-24,2021-09-24,Delta,126.4284692,Infection naive,BNT162b2,3 +96,2021-10-12,2021-09-24,Delta,516.176062835152,Infection naive,BNT162b2,3 +96,2022-01-17,2021-09-24,Delta,996.070109799998,Infection naive,BNT162b2,3 +96,2022-07-14,2021-09-24,Delta,702.114817999998,Infection naive,BNT162b2,3 +96,2022-10-04,2021-09-24,Delta,678.519842098598,Infection naive,BNT162b2,3 +96,2021-09-24,2021-09-24,BA.1,64.3219282100001,Infection naive,BNT162b2,3 +96,2021-10-12,2021-09-24,BA.1,322.392963844851,Infection naive,BNT162b2,3 +96,2022-01-17,2021-09-24,BA.1,306.4132232,Infection naive,BNT162b2,3 +96,2022-07-14,2021-09-24,BA.1,344.2982058,Infection naive,BNT162b2,3 +96,2022-10-04,2021-09-24,BA.1,171.970976643965,Infection naive,BNT162b2,3 +96,2021-09-24,2021-09-24,BA.2,42.56670654,Infection naive,BNT162b2,3 +96,2021-10-12,2021-09-24,BA.2,740.026893096432,Infection naive,BNT162b2,3 +96,2022-01-17,2021-09-24,BA.2,282.922704900001,Infection naive,BNT162b2,3 +96,2022-07-14,2021-09-24,BA.2,176.8626597,Infection naive,BNT162b2,3 +97,2021-12-02,2021-11-07,Delta,345.50742418597,Infection naive,BNT162b2,3 +97,2021-12-02,2021-11-07,BA.1,227.648659770731,Infection naive,BNT162b2,3 +97,2021-12-02,2021-11-07,BA.2,298.984816192322,Infection naive,BNT162b2,3 +98,2022-01-06,2021-12-02,Delta,1344.23216015257,Infection naive,BNT162b2,3 +98,2022-04-07,2021-12-02,Delta,2560,Infection naive,BNT162b2,3 +98,2022-01-06,2021-12-02,BA.1,659.175264710604,Infection naive,BNT162b2,3 +98,2022-04-07,2021-12-02,BA.1,775.894958500002,Infection naive,BNT162b2,3 +98,2022-01-06,2021-12-02,BA.2,1049.85488105074,Infection naive,BNT162b2,3 +98,2022-04-07,2021-12-02,BA.2,481.221891299999,Infection naive,BNT162b2,3 +99,2022-01-26,2022-01-21,Delta,660.331803091456,Previously infected (Omicron),BNT162b2,4 +99,2022-02-23,2022-01-21,Delta,2560,Previously infected (Omicron),BNT162b2,4 +99,2022-04-21,2022-01-21,Delta,2560,Previously infected (Omicron),BNT162b2,4 +99,2022-06-16,2022-01-21,Delta,2560,Previously infected (Omicron),BNT162b2,4 +99,2022-12-01,2022-01-21,Delta,2560,Previously infected (Omicron),BNT162b2,4 +99,2022-01-26,2022-01-21,BA.1,2343.20467654482,Previously infected (Omicron),BNT162b2,4 +99,2022-02-23,2022-01-21,BA.1,2560,Previously infected (Omicron),BNT162b2,4 +99,2022-04-21,2022-01-21,BA.1,2560,Previously infected (Omicron),BNT162b2,4 +99,2022-06-16,2022-01-21,BA.1,2560,Previously infected (Omicron),BNT162b2,4 +99,2022-12-01,2022-01-21,BA.1,2560,Previously infected (Omicron),BNT162b2,4 +99,2022-01-26,2022-01-21,BA.2,2560,Previously infected (Omicron),BNT162b2,4 +99,2022-02-23,2022-01-21,BA.2,2560,Previously infected (Omicron),BNT162b2,4 +99,2022-04-21,2022-01-21,BA.2,1852.65435,Previously infected (Omicron),BNT162b2,4 +99,2022-06-16,2022-01-21,BA.2,1968.156682,Previously infected (Omicron),BNT162b2,4 +99,2022-12-01,2022-01-21,BA.2,2152.21962566734,Previously infected (Omicron),BNT162b2,4 +100,2022-01-19,2022-01-01,Delta,2560,Infection naive,BNT162b2,4 +100,2022-01-19,2022-01-01,BA.1,1174.500613,Infection naive,BNT162b2,4 +100,2022-01-19,2022-01-01,BA.2,724.6224033,Infection naive,BNT162b2,4 +101,2021-10-12,2021-09-24,Delta,946.698864667414,Infection naive,BNT162b2,3 +101,2021-12-21,2021-09-24,Delta,765.089836800002,Infection naive,BNT162b2,3 +101,2021-10-12,2021-09-24,BA.1,906.10609793011,Infection naive,BNT162b2,3 +101,2021-12-21,2021-09-24,BA.1,732.926266099998,Infection naive,BNT162b2,3 +101,2021-10-12,2021-09-24,BA.2,1109.45732967998,Infection naive,BNT162b2,3 +101,2021-12-21,2021-09-24,BA.2,476.604522400001,Infection naive,BNT162b2,3 +102,2021-10-21,2021-10-21,Delta,5,Infection naive,BNT162b2,3 +102,2021-11-15,2021-10-21,Delta,388.226020488708,Infection naive,BNT162b2,3 +102,2022-01-12,2021-10-21,Delta,265.3871612,Infection naive,BNT162b2,3 +102,2022-07-06,2021-10-21,Delta,77.8649621299998,Infection naive,BNT162b2,3 +102,2022-10-31,2021-10-21,Delta,59.9136687389031,Infection naive,BNT162b2,3 +102,2021-10-21,2021-10-21,BA.1,5,Infection naive,BNT162b2,3 +102,2021-11-15,2021-10-21,BA.1,334.775575709082,Infection naive,BNT162b2,3 +102,2022-01-12,2021-10-21,BA.1,113.1101451,Infection naive,BNT162b2,3 +102,2022-07-06,2021-10-21,BA.1,100.5758351,Infection naive,BNT162b2,3 +102,2022-10-31,2021-10-21,BA.1,41.353131194697,Infection naive,BNT162b2,3 +102,2021-10-21,2021-10-21,BA.2,5,Infection naive,BNT162b2,3 +102,2021-11-15,2021-10-21,BA.2,434.318787559875,Infection naive,BNT162b2,3 +102,2022-01-12,2021-10-21,BA.2,186.903521306488,Infection naive,BNT162b2,3 +102,2022-07-06,2021-10-21,BA.2,97.6228182400002,Infection naive,BNT162b2,3 +102,2022-10-31,2021-10-21,BA.2,49.1901673085593,Infection naive,BNT162b2,3 +103,2022-01-06,2021-12-10,Delta,1426.78617904542,Previously infected (Pre-Omicron),BNT162b2,4 +103,2022-01-06,2021-12-10,BA.1,855.176489958022,Previously infected (Pre-Omicron),BNT162b2,4 +103,2022-01-06,2021-12-10,BA.2,2405.63596138669,Previously infected (Pre-Omicron),BNT162b2,4 +104,2022-01-11,2021-12-06,Delta,904.519098069626,Previously infected (Pre-Omicron),BNT162b2,4 +104,2022-01-11,2021-12-06,BA.1,793.084261557086,Previously infected (Pre-Omicron),BNT162b2,4 +104,2022-01-11,2021-12-06,BA.2,1021.71303413094,Previously infected (Pre-Omicron),BNT162b2,4 +105,2022-01-19,2022-01-06,Delta,1280.967756,Infection naive,BNT162b2,4 +105,2022-01-19,2022-01-06,BA.1,1056.316015,Infection naive,BNT162b2,4 +105,2022-01-19,2022-01-06,BA.2,526.687425899999,Infection naive,BNT162b2,4 +106,2021-10-21,2021-10-01,Delta,47.7877573284979,Infection naive,BNT162b2,3 +106,2022-06-22,2021-10-01,Delta,40.88461104,Infection naive,BNT162b2,3 +106,2022-10-27,2021-10-01,Delta,40.813003674215,Infection naive,BNT162b2,3 +106,2021-10-21,2021-10-01,BA.1,5,Infection naive,BNT162b2,3 +106,2021-10-21,2021-10-01,BA.2,5,Infection naive,BNT162b2,3 +107,2022-01-06,2021-12-06,Delta,396.479179303829,Infection naive,BNT162b2,3 +107,2022-03-21,2021-12-06,Delta,417.521739700002,Infection naive,BNT162b2,3 +107,2022-01-06,2021-12-06,BA.1,307.219990500133,Infection naive,BNT162b2,3 +107,2022-03-21,2021-12-06,BA.1,297.1560255,Infection naive,BNT162b2,3 +107,2022-01-06,2021-12-06,BA.2,352.852443564168,Infection naive,BNT162b2,3 +107,2022-03-21,2021-12-06,BA.2,216.744635999999,Infection naive,BNT162b2,3 +108,2022-01-18,2022-01-04,Delta,935.973014299998,Infection naive,BNT162b2,5 +108,2022-01-18,2022-01-04,BA.1,688.102363199999,Infection naive,BNT162b2,5 +108,2022-01-18,2022-01-04,BA.2,411.3466269,Infection naive,BNT162b2,5 +109,2022-01-19,2021-12-22,Delta,2560,Previously infected (Pre-Omicron),mRNA1273,4 +109,2022-03-21,2021-12-22,Delta,2560,Previously infected (Pre-Omicron),mRNA1273,4 +109,2022-07-13,2021-12-22,Delta,1716.632471,Previously infected (Pre-Omicron),mRNA1273,4 +109,2022-12-15,2021-12-22,Delta,1978.53439863325,Previously infected (Pre-Omicron),mRNA1273,4 +109,2022-01-19,2021-12-22,BA.1,1898.684348,Previously infected (Pre-Omicron),mRNA1273,4 +109,2022-03-21,2021-12-22,BA.1,1320.873296,Previously infected (Pre-Omicron),mRNA1273,4 +109,2022-07-13,2021-12-22,BA.1,692.3371593,Previously infected (Pre-Omicron),mRNA1273,4 +109,2022-12-15,2021-12-22,BA.1,551.731425861521,Previously infected (Pre-Omicron),mRNA1273,4 +109,2022-01-19,2021-12-22,BA.2,940.908222600001,Previously infected (Pre-Omicron),mRNA1273,4 +109,2022-03-21,2021-12-22,BA.2,779.9861056,Previously infected (Pre-Omicron),mRNA1273,4 +109,2022-07-13,2021-12-22,BA.2,474.9364861,Previously infected (Pre-Omicron),mRNA1273,4 +109,2022-12-15,2021-12-22,BA.2,456.968924936853,Previously infected (Pre-Omicron),mRNA1273,4 +110,2021-11-30,2021-11-19,Delta,450.605170671148,Previously infected (Pre-Omicron),BNT162b2,4 +110,2022-01-17,2021-11-19,Delta,243.756536681588,Previously infected (Pre-Omicron),BNT162b2,4 +110,2022-07-11,2021-11-19,Delta,183.6556791,Previously infected (Pre-Omicron),BNT162b2,4 +110,2022-07-11,2021-11-19,Delta,183.6556791,Previously infected (Pre-Omicron),BNT162b2,4 +110,2021-11-30,2021-11-19,BA.1,48.7609029313075,Previously infected (Pre-Omicron),BNT162b2,4 +110,2022-01-17,2021-11-19,BA.1,5,Previously infected (Pre-Omicron),BNT162b2,4 +110,2021-11-30,2021-11-19,BA.2,85.2963225104831,Previously infected (Pre-Omicron),BNT162b2,4 +110,2022-01-17,2021-11-19,BA.2,68.2123499119002,Previously infected (Pre-Omicron),BNT162b2,4 +110,2022-07-11,2021-11-19,BA.2,5,Previously infected (Pre-Omicron),BNT162b2,4 +110,2022-07-11,2021-11-19,BA.2,5,Previously infected (Pre-Omicron),BNT162b2,4 +111,2022-01-12,2021-12-06,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,4 +111,2022-07-27,2021-12-06,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,4 +111,2022-01-12,2021-12-06,BA.1,434.699631799999,Previously infected (Pre-Omicron),BNT162b2,4 +111,2022-07-27,2021-12-06,BA.1,350.079939108501,Previously infected (Pre-Omicron),BNT162b2,4 +111,2022-01-12,2021-12-06,BA.2,189.7093066,Previously infected (Pre-Omicron),BNT162b2,4 +111,2022-07-27,2021-12-06,BA.2,365.442768096204,Previously infected (Pre-Omicron),BNT162b2,4 +112,2021-12-20,2021-12-06,Delta,485.883993530426,Infection naive,BNT162b2,3 +112,2021-12-20,2021-12-06,BA.1,674.960901206037,Infection naive,BNT162b2,3 +112,2021-12-20,2021-12-06,BA.2,855.176489958022,Infection naive,BNT162b2,3 +113,2021-11-01,2021-10-15,Delta,705.8169363,Previously infected (Pre-Omicron),BNT162b2,4 +113,2022-01-19,2021-10-15,Delta,182.8525756,Previously infected (Pre-Omicron),BNT162b2,4 +113,2022-07-13,2021-10-15,Delta,256.2439771,Previously infected (Pre-Omicron),BNT162b2,4 +113,2022-07-13,2021-10-15,Delta,256.2439771,Previously infected (Pre-Omicron),BNT162b2,4 +113,2021-11-01,2021-10-15,BA.1,536.001581899998,Previously infected (Pre-Omicron),BNT162b2,4 +113,2022-01-19,2021-10-15,BA.1,186.0862154,Previously infected (Pre-Omicron),BNT162b2,4 +113,2022-07-13,2021-10-15,BA.1,260.090697499999,Previously infected (Pre-Omicron),BNT162b2,4 +113,2022-07-13,2021-10-15,BA.1,260.090697499999,Previously infected (Pre-Omicron),BNT162b2,4 +113,2021-11-01,2021-10-15,BA.2,441.999458800001,Previously infected (Pre-Omicron),BNT162b2,4 +113,2022-01-19,2021-10-15,BA.2,174.5525954,Previously infected (Pre-Omicron),BNT162b2,4 +113,2022-07-13,2021-10-15,BA.2,121.85892,Previously infected (Pre-Omicron),BNT162b2,4 +113,2022-07-13,2021-10-15,BA.2,121.85892,Previously infected (Pre-Omicron),BNT162b2,4 +114,2022-01-31,2021-12-30,Delta,2560,Infection naive,BNT162b2,3 +114,2022-01-31,2021-12-30,BA.1,2192.200965,Infection naive,BNT162b2,3 +114,2022-01-31,2021-12-30,BA.2,2560,Infection naive,BNT162b2,3 +115,2021-09-22,2021-09-03,Delta,881.817503800291,Infection naive,AZD1222,3 +115,2022-01-12,2021-09-03,Delta,966.824398900001,Infection naive,AZD1222,3 +115,2021-09-22,2021-09-03,BA.1,619.404450928868,Infection naive,AZD1222,3 +115,2022-01-12,2021-09-03,BA.1,135.6117638,Infection naive,AZD1222,3 +115,2021-09-22,2021-09-03,BA.2,1429.28950868425,Infection naive,AZD1222,3 +115,2022-01-12,2021-09-03,BA.2,427.895247765584,Infection naive,AZD1222,3 +116,2022-01-06,2021-12-21,Delta,905.312250251336,Infection naive,BNT162b2,3 +116,2022-04-21,2021-12-21,Delta,1223.894781,Infection naive,BNT162b2,3 +116,2022-07-14,2021-12-21,Delta,1842.936893,Infection naive,BNT162b2,3 +116,2023-01-05,2021-12-21,Delta,858.932495161422,Infection naive,BNT162b2,3 +116,2022-01-06,2021-12-21,BA.1,1224.96798616404,Infection naive,BNT162b2,3 +116,2022-04-21,2021-12-21,BA.1,667.313770799999,Infection naive,BNT162b2,3 +116,2022-07-14,2021-12-21,BA.1,625.4052728,Infection naive,BNT162b2,3 +116,2023-01-05,2021-12-21,BA.1,615.076413434405,Infection naive,BNT162b2,3 +116,2022-01-06,2021-12-21,BA.2,2560,Infection naive,BNT162b2,3 +116,2022-04-21,2021-12-21,BA.2,524.844107700001,Infection naive,BNT162b2,3 +116,2022-07-14,2021-12-21,BA.2,389.589518799999,Infection naive,BNT162b2,3 +116,2023-01-05,2021-12-21,BA.2,624.309906535474,Infection naive,BNT162b2,3 +117,2022-01-06,2021-12-21,Delta,1546.60443626851,Infection naive,mRNA1273,3 +117,2022-04-12,2021-12-21,Delta,820.663122000002,Infection naive,mRNA1273,3 +117,2022-07-21,2021-12-21,Delta,287.1699249,Infection naive,mRNA1273,3 +117,2022-12-08,2021-12-21,Delta,181.256888894638,Infection naive,mRNA1273,3 +117,2022-01-06,2021-12-21,BA.1,1130.06748942786,Infection naive,mRNA1273,3 +117,2022-04-12,2021-12-21,BA.1,461.800650900001,Infection naive,mRNA1273,3 +117,2022-07-21,2021-12-21,BA.1,204.3828271,Infection naive,mRNA1273,3 +117,2022-12-08,2021-12-21,BA.1,161.595244946913,Infection naive,mRNA1273,3 +117,2022-01-06,2021-12-21,BA.2,2560,Infection naive,mRNA1273,3 +117,2022-04-12,2021-12-21,BA.2,323.525248199999,Infection naive,mRNA1273,3 +117,2022-07-21,2021-12-21,BA.2,141.3149794,Infection naive,mRNA1273,3 +117,2022-12-08,2021-12-21,BA.2,98.5685930758967,Infection naive,mRNA1273,3 +118,2022-01-19,2021-12-20,Delta,1060.025929,Previously infected (Omicron),BNT162b2,5 +118,2022-04-19,2021-12-20,Delta,1384.894172,Previously infected (Omicron),BNT162b2,5 +118,2022-07-11,2021-12-20,Delta,594.927635100002,Previously infected (Omicron),BNT162b2,5 +118,2022-07-11,2021-12-20,Delta,594.927635100002,Previously infected (Omicron),BNT162b2,5 +118,2022-01-19,2021-12-20,BA.1,747.196311400003,Previously infected (Omicron),BNT162b2,5 +118,2022-04-19,2021-12-20,BA.1,1048.935094,Previously infected (Omicron),BNT162b2,5 +118,2022-07-11,2021-12-20,BA.1,666.7291313,Previously infected (Omicron),BNT162b2,5 +118,2022-07-11,2021-12-20,BA.1,666.7291313,Previously infected (Omicron),BNT162b2,5 +118,2022-01-19,2021-12-20,BA.2,888.801174300003,Previously infected (Omicron),BNT162b2,5 +118,2022-04-19,2021-12-20,BA.2,600.6913244,Previously infected (Omicron),BNT162b2,5 +118,2022-07-11,2021-12-20,BA.2,400.6713215,Previously infected (Omicron),BNT162b2,5 +118,2022-07-11,2021-12-20,BA.2,400.6713215,Previously infected (Omicron),BNT162b2,5 +119,2021-10-20,2021-09-27,Delta,1825.25374202778,Previously infected (Pre-Omicron),BNT162b2,4 +119,2022-01-06,2021-09-27,Delta,868.014352099999,Previously infected (Pre-Omicron),BNT162b2,4 +119,2021-10-20,2021-09-27,BA.1,995.197443873579,Previously infected (Pre-Omicron),BNT162b2,4 +119,2022-01-06,2021-09-27,BA.1,901.353432100001,Previously infected (Pre-Omicron),BNT162b2,4 +119,2021-10-20,2021-09-27,BA.2,2560,Previously infected (Pre-Omicron),BNT162b2,4 +119,2022-01-06,2021-09-27,BA.2,1316.25046,Previously infected (Pre-Omicron),BNT162b2,4 +120,2022-01-26,2021-12-19,Delta,2560,Previously infected (Pre-Omicron),mRNA1273,4 +120,2022-04-21,2021-12-19,Delta,1026.200481,Previously infected (Pre-Omicron),mRNA1273,4 +120,2022-04-21,2021-12-19,Delta,1026.200481,Previously infected (Pre-Omicron),mRNA1273,4 +120,2022-01-26,2021-12-19,BA.1,732.284142800002,Previously infected (Pre-Omicron),mRNA1273,4 +120,2022-04-21,2021-12-19,BA.1,429.021869900001,Previously infected (Pre-Omicron),mRNA1273,4 +120,2022-04-21,2021-12-19,BA.1,429.021869900001,Previously infected (Pre-Omicron),mRNA1273,4 +120,2022-01-26,2021-12-19,BA.2,2232.92503000905,Previously infected (Pre-Omicron),mRNA1273,4 +120,2022-04-21,2021-12-19,BA.2,416.0604833,Previously infected (Pre-Omicron),mRNA1273,4 +120,2022-04-21,2021-12-19,BA.2,416.0604833,Previously infected (Pre-Omicron),mRNA1273,4 +121,2022-01-11,2021-11-22,Delta,319.859791848912,Previously infected (Pre-Omicron),BNT162b2,4 +121,2022-01-11,2021-11-22,BA.1,361.936310663897,Previously infected (Pre-Omicron),BNT162b2,4 +121,2022-01-11,2021-11-22,BA.2,732.926266060021,Previously infected (Pre-Omicron),BNT162b2,4 +122,2022-01-17,2021-12-13,Delta,1809.325428,Infection naive,BNT162b2,4 +122,2022-07-12,2021-12-13,Delta,1682.372782,Infection naive,BNT162b2,4 +122,2022-07-12,2021-12-13,Delta,1682.372782,Infection naive,BNT162b2,4 +122,2022-01-17,2021-12-13,BA.1,1423.03940300001,Infection naive,BNT162b2,4 +122,2022-07-12,2021-12-13,BA.1,1021.713034,Infection naive,BNT162b2,4 +122,2022-07-12,2021-12-13,BA.1,1021.713034,Infection naive,BNT162b2,4 +122,2022-01-17,2021-12-13,BA.2,571.919125600001,Infection naive,BNT162b2,4 +122,2022-07-12,2021-12-13,BA.2,800.066142600001,Infection naive,BNT162b2,4 +122,2022-07-12,2021-12-13,BA.2,800.066142600001,Infection naive,BNT162b2,4 +123,2021-12-14,2021-11-23,Delta,751.794790045685,Infection naive,BNT162b2,3 +123,2021-12-14,2021-11-23,BA.1,584.077350753164,Infection naive,BNT162b2,3 +123,2021-12-14,2021-11-23,BA.2,688.102363162634,Infection naive,BNT162b2,3 +124,2021-10-27,2021-10-09,Delta,851.436909299999,Infection naive,BNT162b2,3 +124,2021-12-02,2021-10-09,Delta,643.758814517845,Infection naive,BNT162b2,3 +124,2021-10-27,2021-10-09,BA.1,579.996158500001,Infection naive,BNT162b2,3 +124,2021-12-02,2021-10-09,BA.1,525.304331585598,Infection naive,BNT162b2,3 +125,2021-10-20,2021-10-04,Delta,239.3109074,Infection naive,BNT162b2,3 +125,2022-01-19,2021-10-04,Delta,328.3819914,Infection naive,BNT162b2,3 +125,2021-10-20,2021-10-04,BA.1,176.8626597,Infection naive,BNT162b2,3 +125,2022-01-19,2021-10-04,BA.1,219.4206732,Infection naive,BNT162b2,3 +126,2022-02-08,2022-01-18,Delta,1171.416345,Infection naive,BNT162b2,4 +126,2022-08-09,2022-01-18,Delta,1434.3093521188,Infection naive,BNT162b2,4 +126,2022-02-08,2022-01-18,BA.1,891.922755200002,Infection naive,BNT162b2,4 +126,2022-08-09,2022-01-18,BA.1,799.365197432719,Infection naive,BNT162b2,4 +126,2022-02-08,2022-01-18,BA.2,398.569738900001,Infection naive,BNT162b2,4 +126,2022-08-09,2022-01-18,BA.2,484.608050076034,Infection naive,BNT162b2,4 +127,2022-01-12,2021-12-10,Delta,2157.886289,Previously infected (Pre-Omicron),BNT162b2,4 +127,2022-01-12,2021-12-10,BA.1,788.233228899999,Previously infected (Pre-Omicron),BNT162b2,4 +127,2022-01-12,2021-12-10,BA.2,1028.000974,Previously infected (Pre-Omicron),BNT162b2,4 +128,2021-12-14,2021-12-14,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,4 +128,2022-01-11,2021-12-14,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,4 +128,2022-03-21,2021-12-14,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,4 +128,2022-06-22,2021-12-14,Delta,1888.725457,Previously infected (Pre-Omicron),BNT162b2,4 +128,2022-10-20,2021-12-14,Delta,1428.03729532716,Previously infected (Pre-Omicron),BNT162b2,4 +128,2021-12-14,2021-12-14,BA.1,761.076822999998,Previously infected (Pre-Omicron),BNT162b2,4 +128,2022-01-11,2021-12-14,BA.1,1067.484891,Previously infected (Pre-Omicron),BNT162b2,4 +128,2022-03-21,2021-12-14,BA.1,673.188437100001,Previously infected (Pre-Omicron),BNT162b2,4 +128,2022-06-22,2021-12-14,BA.1,585.102128100001,Previously infected (Pre-Omicron),BNT162b2,4 +128,2022-10-20,2021-12-14,BA.1,406.329875859312,Previously infected (Pre-Omicron),BNT162b2,4 +128,2021-12-14,2021-12-14,BA.2,1251.009145,Previously infected (Pre-Omicron),BNT162b2,4 +128,2022-01-11,2021-12-14,BA.2,1119.224387,Previously infected (Pre-Omicron),BNT162b2,4 +128,2022-03-21,2021-12-14,BA.2,674.369561900001,Previously infected (Pre-Omicron),BNT162b2,4 +128,2022-06-22,2021-12-14,BA.2,652.850416600002,Previously infected (Pre-Omicron),BNT162b2,4 +128,2022-10-20,2021-12-14,BA.2,630.910999527615,Previously infected (Pre-Omicron),BNT162b2,4 +129,2022-01-18,2021-12-21,Delta,594.406413669098,Infection naive,BNT162b2,3 +129,2022-01-18,2021-12-21,BA.1,482.4889192154,Infection naive,BNT162b2,3 +129,2022-01-18,2021-12-21,BA.2,1110.43018752612,Infection naive,BNT162b2,3 +130,2022-01-26,2021-12-11,Delta,248.938470151488,Infection naive,BNT162b2,3 +130,2022-04-07,2021-12-11,Delta,107.1274787,Infection naive,BNT162b2,3 +130,2022-01-26,2021-12-11,BA.1,97.1959257665426,Infection naive,BNT162b2,3 +130,2022-04-07,2021-12-11,BA.1,126.5393315,Infection naive,BNT162b2,3 +130,2022-01-26,2021-12-11,BA.2,216.365018507366,Infection naive,BNT162b2,3 +130,2022-04-07,2021-12-11,BA.2,109.9817347,Infection naive,BNT162b2,3 +131,2022-01-17,2021-12-09,Delta,191.715183458719,Infection naive,BNT162b2,3 +131,2022-01-17,2021-12-09,BA.1,110.174700267007,Infection naive,BNT162b2,3 +131,2022-01-17,2021-12-09,BA.2,448.241677271544,Infection naive,BNT162b2,3 +132,2021-10-21,2021-09-30,Delta,1329.00236159531,Infection naive,BNT162b2,3 +132,2022-01-11,2021-09-30,Delta,564.944045000001,Infection naive,BNT162b2,3 +132,2022-07-27,2021-09-30,Delta,222.909897582925,Infection naive,BNT162b2,3 +132,2021-10-21,2021-09-30,BA.1,560.505051014568,Infection naive,BNT162b2,3 +132,2022-01-11,2021-09-30,BA.1,478.6978085,Infection naive,BNT162b2,3 +132,2022-07-27,2021-09-30,BA.1,167.801866746035,Infection naive,BNT162b2,3 +132,2021-10-21,2021-09-30,BA.2,830.795437608514,Infection naive,BNT162b2,3 +132,2022-01-11,2021-09-30,BA.2,328.958145200001,Infection naive,BNT162b2,3 +132,2022-07-27,2021-09-30,BA.2,222.714604222492,Infection naive,BNT162b2,3 +133,2022-01-11,2021-12-09,Delta,201.183608230365,Infection naive,"",1 +133,2022-01-11,2021-12-09,BA.1,225.266818316376,Infection naive,"",1 +133,2022-01-11,2021-12-09,BA.2,220.577636829959,Infection naive,"",1 +134,2022-01-11,2021-11-26,Delta,422.306360200001,Previously infected (Pre-Omicron),mRNA1273,5 +134,2022-01-11,2021-11-26,BA.1,213.3519169,Previously infected (Pre-Omicron),mRNA1273,5 +134,2022-01-11,2021-11-26,BA.2,153.9899911,Previously infected (Pre-Omicron),mRNA1273,5 +135,2021-09-29,2021-09-29,Delta,452.584265500002,Infection naive,BNT162b2,3 +135,2021-09-29,2021-09-29,BA.1,205.1006451,Infection naive,BNT162b2,3 +135,2021-09-29,2021-09-29,BA.2,130.1387196,Infection naive,BNT162b2,3 +136,2022-01-19,2022-01-03,Delta,2560,Infection naive,BNT162b2,3 +136,2022-07-06,2022-01-03,Delta,1133.042888,Infection naive,BNT162b2,3 +136,2022-01-19,2022-01-03,BA.1,1170.390057,Infection naive,BNT162b2,3 +136,2022-07-06,2022-01-03,BA.1,895.055299400003,Infection naive,BNT162b2,3 +136,2022-12-15,2022-01-03,BA.1,1193.17750477203,Infection naive,BNT162b2,3 +136,2022-01-19,2022-01-03,BA.2,2560,Infection naive,BNT162b2,3 +136,2022-07-06,2022-01-03,BA.2,952.525144200001,Infection naive,BNT162b2,3 +136,2022-12-15,2022-01-03,BA.2,1712.12455101151,Infection naive,BNT162b2,3 +137,2021-10-26,2021-10-08,Delta,729.0819551,Infection naive,BNT162b2,3 +137,2022-01-18,2021-10-08,Delta,893.487654462252,Infection naive,BNT162b2,3 +137,2021-10-26,2021-10-08,BA.1,910.0857901,Infection naive,BNT162b2,3 +137,2022-01-18,2021-10-08,BA.1,607.57498998905,Infection naive,BNT162b2,3 +138,2022-02-04,2022-01-23,Delta,2560,Infection naive,mRNA1273,5 +138,2022-02-04,2022-01-23,BA.1,1152.069859,Infection naive,mRNA1273,5 +138,2022-02-04,2022-01-23,BA.2,710.160753399998,Infection naive,mRNA1273,5 +139,2022-01-27,2021-12-26,Delta,1053.542103,Infection naive,BNT162b2,4 +139,2022-04-19,2021-12-26,Delta,527.149266099999,Infection naive,BNT162b2,4 +139,2022-04-19,2021-12-26,Delta,527.149266099999,Infection naive,BNT162b2,4 +139,2022-01-27,2021-12-26,BA.1,931.8801205,Infection naive,BNT162b2,4 +139,2022-04-19,2021-12-26,BA.1,732.926266099998,Infection naive,BNT162b2,4 +139,2022-04-19,2021-12-26,BA.1,732.926266099998,Infection naive,BNT162b2,4 +139,2022-01-27,2021-12-26,BA.2,519.352770993268,Infection naive,BNT162b2,4 +139,2022-04-19,2021-12-26,BA.2,269.607344,Infection naive,BNT162b2,4 +139,2022-04-19,2021-12-26,BA.2,269.607344,Infection naive,BNT162b2,4 +140,2021-12-21,2021-12-06,Delta,2065.3599553615,Previously infected (Pre-Omicron),BNT162b2,4 +140,2022-04-07,2021-12-06,Delta,1292.244697,Previously infected (Pre-Omicron),BNT162b2,4 +140,2021-12-21,2021-12-06,BA.1,975.335793284432,Previously infected (Pre-Omicron),BNT162b2,4 +140,2022-04-07,2021-12-06,BA.1,418.621048999999,Previously infected (Pre-Omicron),BNT162b2,4 +140,2021-12-21,2021-12-06,BA.2,1095.9264755573,Previously infected (Pre-Omicron),BNT162b2,4 +140,2022-04-07,2021-12-06,BA.2,314.853003900001,Previously infected (Pre-Omicron),BNT162b2,4 +141,2022-01-31,2022-01-08,Delta,2560,Previously infected (Pre-Omicron),mRNA1273,4 +141,2022-05-03,2022-01-08,Delta,1317.40465,Previously infected (Pre-Omicron),mRNA1273,4 +141,2022-12-15,2022-01-08,Delta,2560,Previously infected (Pre-Omicron),mRNA1273,4 +141,2022-01-31,2022-01-08,BA.1,1247.723964,Previously infected (Pre-Omicron),mRNA1273,4 +141,2022-05-03,2022-01-08,BA.1,449.028127800001,Previously infected (Pre-Omicron),mRNA1273,4 +141,2022-12-15,2022-01-08,BA.1,443.940756585861,Previously infected (Pre-Omicron),mRNA1273,4 +141,2022-01-31,2022-01-08,BA.2,685.0933769,Previously infected (Pre-Omicron),mRNA1273,4 +141,2022-05-03,2022-01-08,BA.2,205.6406626,Previously infected (Pre-Omicron),mRNA1273,4 +142,2021-10-20,2021-10-06,Delta,889.580543835703,Infection naive,BNT162b2,3 +142,2022-01-17,2021-10-06,Delta,257.5951031,Infection naive,BNT162b2,3 +142,2021-10-20,2021-10-06,BA.1,365.122600409615,Infection naive,BNT162b2,3 +142,2022-01-17,2021-10-06,BA.1,160.6068206,Infection naive,BNT162b2,3 +142,2021-10-20,2021-10-06,BA.2,437.758432735648,Infection naive,BNT162b2,3 +142,2022-01-17,2021-10-06,BA.2,175.9349878,Infection naive,BNT162b2,3 +143,2021-10-12,2021-09-22,Delta,578.980323970047,Infection naive,BNT162b2,3 +143,2021-10-12,2021-09-22,BA.1,802.876074867062,Infection naive,BNT162b2,3 +143,2021-10-12,2021-09-22,BA.2,769.798437800932,Infection naive,BNT162b2,3 +144,2021-09-30,2021-09-30,Delta,207.4510108,Infection naive,BNT162b2,3 +144,2021-10-21,2021-09-30,Delta,707.675309266372,Infection naive,BNT162b2,3 +144,2022-01-18,2021-09-30,Delta,762.41215,Infection naive,BNT162b2,3 +144,2022-07-14,2021-09-30,Delta,305.8765556,Infection naive,BNT162b2,3 +144,2022-10-21,2021-09-30,Delta,282.427179783672,Infection naive,BNT162b2,3 +144,2021-09-30,2021-09-30,BA.1,123.9052733,Infection naive,BNT162b2,3 +144,2021-10-21,2021-09-30,BA.1,751.136135887677,Infection naive,BNT162b2,3 +144,2022-01-18,2021-09-30,BA.1,491.4520162,Infection naive,BNT162b2,3 +144,2022-07-14,2021-09-30,BA.1,298.9848162,Infection naive,BNT162b2,3 +144,2022-10-21,2021-09-30,BA.1,222.909897582925,Infection naive,BNT162b2,3 +144,2021-09-30,2021-09-30,BA.2,123.0394955,Infection naive,BNT162b2,3 +144,2021-10-21,2021-09-30,BA.2,1059.09723044599,Infection naive,BNT162b2,3 +144,2022-01-18,2021-09-30,BA.2,328.3819914,Infection naive,BNT162b2,3 +144,2022-07-14,2021-09-30,BA.2,196.47843,Infection naive,BNT162b2,3 +144,2022-10-21,2021-09-30,BA.2,262.610469488951,Infection naive,BNT162b2,3 +145,2022-01-18,2021-12-21,Delta,2050.92842300001,Infection naive,BNT162b2,5 +145,2022-01-18,2021-12-21,BA.1,1082.560643,Infection naive,BNT162b2,5 +145,2022-01-18,2021-12-21,BA.2,663.813607499998,Infection naive,BNT162b2,5 +146,2022-01-24,2022-01-12,Delta,480.800288500001,Infection naive,BNT162b2,5 +146,2022-01-24,2022-01-12,BA.1,520.2639875,Infection naive,BNT162b2,5 +146,2022-01-24,2022-01-12,BA.2,405.2628435,Infection naive,BNT162b2,5 +147,2022-01-17,2021-12-20,Delta,2560,Infection naive,BNT162b2,5 +147,2022-01-17,2021-12-20,BA.1,2560,Infection naive,BNT162b2,5 +147,2022-01-17,2021-12-20,BA.2,1992.456524,Infection naive,BNT162b2,5 +148,2021-09-14,2021-09-05,Delta,1880.46629489882,Previously infected (Pre-Omicron),BNT162b2,2 +148,2021-09-14,2021-09-05,BA.1,411.707327372007,Previously infected (Pre-Omicron),BNT162b2,2 +148,2021-09-14,2021-09-05,BA.2,405.973886610915,Previously infected (Pre-Omicron),BNT162b2,2 +149,2022-03-01,2022-01-13,Delta,2560,Previously infected (Omicron),BNT162b2,4 +149,2022-04-21,2022-01-13,Delta,2560,Previously infected (Omicron),BNT162b2,4 +149,2022-04-21,2022-01-13,Delta,2560,Previously infected (Omicron),BNT162b2,4 +149,2022-03-01,2022-01-13,BA.1,507.206416999999,Previously infected (Omicron),BNT162b2,4 +149,2022-04-21,2022-01-13,BA.1,469.55558,Previously infected (Omicron),BNT162b2,4 +149,2022-04-21,2022-01-13,BA.1,469.55558,Previously infected (Omicron),BNT162b2,4 +149,2022-03-01,2022-01-13,BA.2,926.992266000003,Previously infected (Omicron),BNT162b2,4 +149,2022-04-21,2022-01-13,BA.2,736.145338300002,Previously infected (Omicron),BNT162b2,4 +149,2022-04-21,2022-01-13,BA.2,736.145338300002,Previously infected (Omicron),BNT162b2,4 +150,2022-01-18,2022-01-18,Delta,570.417251700001,Infection naive,BNT162b2,5 +150,2022-01-18,2022-01-18,BA.1,278.738300900001,Infection naive,BNT162b2,5 +150,2022-01-18,2022-01-18,BA.2,245.0418187,Infection naive,BNT162b2,5 +151,2021-10-26,2021-10-08,Delta,526.687425899999,Infection naive,BNT162b2,3 +151,2022-06-16,2021-10-08,Delta,130.7102996,Infection naive,BNT162b2,3 +151,2021-10-26,2021-10-08,BA.1,294.304785699999,Infection naive,BNT162b2,3 +151,2022-06-16,2021-10-08,BA.1,135.0187504,Infection naive,BNT162b2,3 +151,2023-01-16,2021-10-08,BA.1,225.464349655178,Infection naive,BNT162b2,3 +152,2022-01-19,2021-12-20,Delta,2560,Infection naive,BNT162b2,4 +152,2022-04-21,2021-12-20,Delta,2560,Infection naive,BNT162b2,4 +152,2022-01-19,2021-12-20,BA.1,1613.06082,Infection naive,BNT162b2,4 +152,2022-04-21,2021-12-20,BA.1,1143.017579,Infection naive,BNT162b2,4 +152,2022-01-19,2021-12-20,BA.2,2560,Infection naive,BNT162b2,4 +152,2022-04-21,2021-12-20,BA.2,1049.854881,Infection naive,BNT162b2,4 +153,2021-12-10,2021-12-10,Delta,5,Infection naive,BNT162b2,3 +153,2022-01-06,2021-12-10,Delta,1067.48489126961,Infection naive,BNT162b2,3 +153,2021-12-10,2021-12-10,BA.1,5,Infection naive,BNT162b2,3 +153,2022-01-06,2021-12-10,BA.1,456.968924936853,Infection naive,BNT162b2,3 +153,2021-12-10,2021-12-10,BA.2,52.0283781100002,Infection naive,BNT162b2,3 +153,2022-01-06,2021-12-10,BA.2,723.353263113297,Infection naive,BNT162b2,3 +154,2022-01-25,2021-12-15,Delta,2560,Previously infected (Pre-Omicron),mRNA1273,4 +154,2022-01-25,2021-12-15,BA.1,495.344135599999,Previously infected (Pre-Omicron),mRNA1273,4 +154,2022-01-25,2021-12-15,BA.2,1408.15043227409,Previously infected (Pre-Omicron),mRNA1273,4 +155,2022-01-17,2021-12-30,Delta,2560,Infection naive,BNT162b2,4 +155,2022-07-28,2021-12-30,Delta,2560,Infection naive,BNT162b2,4 +155,2022-10-20,2021-12-30,Delta,2560,Infection naive,BNT162b2,4 +155,2022-01-17,2021-12-30,BA.1,2560,Infection naive,BNT162b2,4 +155,2022-07-28,2021-12-30,BA.1,971.922280731385,Infection naive,BNT162b2,4 +155,2022-10-20,2021-12-30,BA.1,1415.57534258718,Infection naive,BNT162b2,4 +155,2022-01-17,2021-12-30,BA.2,731.001583499999,Infection naive,BNT162b2,4 +155,2022-07-28,2021-12-30,BA.2,1074.05452556093,Infection naive,BNT162b2,4 +155,2022-10-20,2021-12-30,BA.2,848.457022169049,Infection naive,BNT162b2,4 +156,2022-01-06,2021-11-20,Delta,219.998394468312,Infection naive,BNT162b2,3 +156,2022-01-06,2021-11-20,BA.1,191.883294133607,Infection naive,BNT162b2,3 +156,2022-01-06,2021-11-20,BA.2,317.068493874774,Infection naive,BNT162b2,3 +157,2022-01-18,2022-01-18,Delta,1475.10801979969,Infection naive,mRNA1273,4 +157,2022-02-22,2022-01-18,Delta,1131.05842,Infection naive,mRNA1273,4 +157,2022-06-16,2022-01-18,Delta,983.0600943,Infection naive,mRNA1273,4 +157,2022-01-18,2022-01-18,BA.1,202.067223119486,Infection naive,mRNA1273,4 +157,2022-02-22,2022-01-18,BA.1,1311.643803,Infection naive,mRNA1273,4 +157,2022-06-16,2022-01-18,BA.1,681.4999568,Infection naive,mRNA1273,4 +157,2022-01-18,2022-01-18,BA.2,507.651174720159,Infection naive,mRNA1273,4 +157,2022-02-22,2022-01-18,BA.2,607.042688100001,Infection naive,mRNA1273,4 +157,2022-06-16,2022-01-18,BA.2,374.850761699999,Infection naive,mRNA1273,4 +158,2022-01-17,2021-12-17,Delta,2560,Previously infected (Pre-Omicron),mRNA1273,4 +158,2022-01-17,2021-12-17,BA.1,1838.097295,Previously infected (Pre-Omicron),mRNA1273,4 +158,2022-01-17,2021-12-17,BA.2,946.698864700001,Previously infected (Pre-Omicron),mRNA1273,4 +159,2021-11-16,2021-10-21,Delta,268.663763254585,Infection naive,BNT162b2,3 +159,2021-11-16,2021-10-21,BA.1,198.208118911364,Infection naive,BNT162b2,3 +159,2021-11-16,2021-10-21,BA.2,283.419099346198,Infection naive,BNT162b2,3 +160,2022-01-19,2021-12-23,Delta,1228.193252,Infection naive,BNT162b2,5 +160,2022-01-19,2021-12-23,BA.1,841.052851900002,Infection naive,BNT162b2,5 +160,2022-01-19,2021-12-23,BA.2,666.145003900002,Infection naive,BNT162b2,5 +161,2021-11-16,2021-10-22,Delta,2129.70139108405,Previously infected (Pre-Omicron),BNT162b2,5 +161,2022-01-26,2021-10-22,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,5 +161,2021-11-16,2021-10-22,BA.1,1026.20048147969,Previously infected (Pre-Omicron),BNT162b2,5 +161,2022-01-26,2021-10-22,BA.1,838.844226199999,Previously infected (Pre-Omicron),BNT162b2,5 +161,2021-11-16,2021-10-22,BA.2,1802.99309129382,Previously infected (Pre-Omicron),BNT162b2,5 +161,2022-01-26,2021-10-22,BA.2,607.042688100001,Previously infected (Pre-Omicron),BNT162b2,5 +162,2022-01-18,2021-12-09,Delta,2560,Infection naive,BNT162b2,5 +162,2022-04-21,2021-12-09,Delta,2560,Infection naive,BNT162b2,5 +162,2022-01-18,2021-12-09,BA.1,1515.73808195671,Infection naive,BNT162b2,5 +162,2022-04-21,2021-12-09,BA.1,987.377774800003,Infection naive,BNT162b2,5 +162,2022-01-18,2021-12-09,BA.2,2560,Infection naive,BNT162b2,5 +162,2022-04-21,2021-12-09,BA.2,901.353432100001,Infection naive,BNT162b2,5 +163,2022-01-27,2022-01-09,Delta,2560,Infection naive,mRNA1273,4 +163,2022-03-21,2022-01-09,Delta,2560,Infection naive,mRNA1273,4 +163,2022-07-13,2022-01-09,Delta,1370.404307,Infection naive,mRNA1273,4 +163,2022-07-13,2022-01-09,Delta,1370.404307,Infection naive,mRNA1273,4 +163,2022-10-18,2022-01-09,Delta,2560,Infection naive,mRNA1273,4 +163,2022-01-27,2022-01-09,BA.1,2560,Infection naive,mRNA1273,4 +163,2022-03-21,2022-01-09,BA.1,884.914557099999,Infection naive,mRNA1273,4 +163,2022-07-13,2022-01-09,BA.1,689.914094700002,Infection naive,mRNA1273,4 +163,2022-07-13,2022-01-09,BA.1,689.914094700002,Infection naive,mRNA1273,4 +163,2022-01-27,2022-01-09,BA.2,1224.967986,Infection naive,mRNA1273,4 +163,2022-03-21,2022-01-09,BA.2,1122.171236,Infection naive,mRNA1273,4 +163,2022-07-13,2022-01-09,BA.2,468.3225154,Infection naive,mRNA1273,4 +163,2022-07-13,2022-01-09,BA.2,468.3225154,Infection naive,mRNA1273,4 +164,2022-01-25,2022-01-08,Delta,935.973014299998,Infection naive,AZD1222,4 +164,2022-01-25,2022-01-08,BA.1,555.126952800002,Infection naive,AZD1222,4 +164,2022-01-25,2022-01-08,BA.2,501.899619800001,Infection naive,AZD1222,4 +165,2022-01-18,2021-12-10,Delta,1300.19757318823,Infection naive,BNT162b2,3 +165,2022-03-21,2021-12-10,Delta,486.310054100002,Infection naive,BNT162b2,3 +165,2022-01-18,2021-12-10,BA.1,420.459666934083,Infection naive,BNT162b2,3 +165,2022-03-21,2021-12-10,BA.1,199.4279534,Infection naive,BNT162b2,3 +165,2022-01-18,2021-12-10,BA.2,639.821155970214,Infection naive,BNT162b2,3 +165,2022-03-21,2021-12-10,BA.2,141.5629198,Infection naive,BNT162b2,3 +166,2021-12-20,2021-11-17,Delta,545.958772584714,Previously infected (Pre-Omicron),mRNA1273,4 +166,2021-12-20,2021-11-17,BA.1,427.520364901452,Previously infected (Pre-Omicron),mRNA1273,4 +166,2021-12-20,2021-11-17,BA.2,563.954573563992,Previously infected (Pre-Omicron),mRNA1273,4 +167,2021-10-21,2021-10-02,Delta,291.225534900001,Infection naive,BNT162b2,3 +167,2022-01-27,2021-10-02,Delta,179.8326802,Infection naive,BNT162b2,3 +167,2021-10-21,2021-10-02,BA.1,181.7341272,Infection naive,BNT162b2,3 +167,2022-01-27,2021-10-02,BA.1,119.0089466,Infection naive,BNT162b2,3 +168,2021-12-21,2021-12-06,Delta,2560,Previously infected (Pre-Omicron),mRNA1273,4 +168,2021-12-21,2021-12-06,BA.1,1078.771861,Previously infected (Pre-Omicron),mRNA1273,4 +168,2021-12-21,2021-12-06,BA.2,675.552759,Previously infected (Pre-Omicron),mRNA1273,4 +169,2021-11-15,2021-11-01,Delta,649.995582737199,Infection naive,BNT162b2,4 +169,2021-11-15,2021-11-01,BA.1,479.537694977315,Infection naive,BNT162b2,4 +169,2022-01-12,2021-11-01,BA.1,516.1760628,Infection naive,BNT162b2,4 +169,2022-07-20,2021-11-01,BA.1,724.6224033,Infection naive,BNT162b2,4 +169,2021-11-15,2021-11-01,BA.2,1390.97674062128,Infection naive,BNT162b2,4 +169,2022-01-12,2021-11-01,BA.2,444.330038099999,Infection naive,BNT162b2,4 +169,2022-07-20,2021-11-01,BA.2,877.961425299999,Infection naive,BNT162b2,4 +170,2021-10-07,2021-10-05,Delta,481.221891310619,Previously infected (Pre-Omicron),BNT162b2,4 +170,2021-10-25,2021-10-05,Delta,822.102994499998,Previously infected (Pre-Omicron),BNT162b2,4 +170,2022-02-03,2021-10-05,Delta,868.775494099999,Previously infected (Pre-Omicron),BNT162b2,4 +170,2021-10-07,2021-10-05,BA.1,180.464275014413,Previously infected (Pre-Omicron),BNT162b2,4 +170,2021-10-25,2021-10-05,BA.1,233.509268699999,Previously infected (Pre-Omicron),BNT162b2,4 +170,2022-02-03,2021-10-05,BA.1,408.830556399999,Previously infected (Pre-Omicron),BNT162b2,4 +170,2021-10-07,2021-10-05,BA.2,302.146109252489,Previously infected (Pre-Omicron),BNT162b2,4 +170,2022-02-03,2021-10-05,BA.2,374.194229200001,Previously infected (Pre-Omicron),BNT162b2,4 +171,2022-02-11,2022-01-16,Delta,2560,Infection naive,BNT162b2,4 +171,2022-06-22,2022-01-16,Delta,2560,Infection naive,BNT162b2,4 +171,2022-02-11,2022-01-16,BA.1,2560,Infection naive,BNT162b2,4 +171,2022-06-22,2022-01-16,BA.1,2388.826779,Infection naive,BNT162b2,4 +171,2022-02-11,2022-01-16,BA.2,1689.761901,Infection naive,BNT162b2,4 +171,2022-06-22,2022-01-16,BA.2,1939.047803,Infection naive,BNT162b2,4 +172,2022-01-31,2022-01-05,Delta,2560,Infection naive,mRNA1273,4 +172,2022-01-31,2022-01-05,BA.1,2560,Infection naive,mRNA1273,4 +172,2022-01-31,2022-01-05,BA.2,1433.052741,Infection naive,mRNA1273,4 +173,2022-02-03,2022-01-13,Delta,1746.990102,Infection naive,BNT162b2,4 +173,2022-02-03,2022-01-13,BA.1,940.083884500002,Infection naive,BNT162b2,4 +173,2022-02-03,2022-01-13,BA.2,542.619324400001,Infection naive,BNT162b2,4 +174,2021-10-27,2021-10-04,Delta,522.091219700001,Previously infected (Pre-Omicron),BNT162b2,4 +174,2022-01-18,2021-10-04,Delta,827.887792200001,Previously infected (Pre-Omicron),BNT162b2,4 +174,2021-10-27,2021-10-04,BA.1,452.187752400001,Previously infected (Pre-Omicron),BNT162b2,4 +174,2022-01-18,2021-10-04,BA.1,218.269778,Previously infected (Pre-Omicron),BNT162b2,4 +175,2022-01-06,2022-01-06,Delta,1178.625606,Infection naive,BNT162b2,5 +175,2022-02-15,2022-01-06,Delta,1158.144505,Infection naive,BNT162b2,5 +175,2022-01-06,2022-01-06,BA.1,655.143308900002,Infection naive,BNT162b2,5 +175,2022-02-15,2022-01-06,BA.1,690.519064700001,Infection naive,BNT162b2,5 +175,2022-01-06,2022-01-06,BA.2,432.7987443,Infection naive,BNT162b2,5 +175,2022-02-15,2022-01-06,BA.2,399.619148699999,Infection naive,BNT162b2,5 +176,2021-10-20,2021-10-04,Delta,636.465195600001,Infection naive,BNT162b2,3 +176,2022-01-12,2021-10-04,Delta,842.528498700003,Infection naive,BNT162b2,3 +176,2021-10-20,2021-10-04,BA.1,551.248048999999,Infection naive,BNT162b2,3 +176,2022-01-12,2021-10-04,BA.1,310.196353399999,Infection naive,BNT162b2,3 +177,2022-02-07,2022-01-20,Delta,2560,Infection naive,others,4 +177,2022-07-11,2022-01-20,Delta,2120.388471,Infection naive,others,4 +177,2022-07-11,2022-01-20,Delta,2120.388471,Infection naive,others,4 +177,2022-09-15,2022-01-20,Delta,2560,Infection naive,others,4 +177,2022-02-07,2022-01-20,BA.1,608.107758700001,Infection naive,others,4 +177,2022-07-11,2022-01-20,BA.1,771.825270199999,Infection naive,others,4 +177,2022-07-11,2022-01-20,BA.1,771.825270199999,Infection naive,others,4 +177,2022-09-15,2022-01-20,BA.1,943.385576586788,Infection naive,others,4 +177,2022-02-07,2022-01-20,BA.2,2306.52632823795,Infection naive,others,4 +177,2022-07-11,2022-01-20,BA.2,891.922755200002,Infection naive,others,4 +177,2022-07-11,2022-01-20,BA.2,891.922755200002,Infection naive,others,4 +177,2022-09-15,2022-01-20,BA.2,849.201014794138,Infection naive,others,4 +178,2022-01-06,2021-12-09,Delta,624.309906535474,Infection naive,BNT162b2,3 +178,2022-01-06,2021-12-09,BA.1,364.163779377748,Infection naive,BNT162b2,3 +178,2022-01-06,2021-12-09,BA.2,625.953676461774,Infection naive,BNT162b2,3 +179,2022-01-18,2021-12-14,Delta,520.720195179818,Previously infected (Pre-Omicron),BNT162b2,4 +179,2022-01-18,2021-12-14,BA.1,644.888304377159,Previously infected (Pre-Omicron),BNT162b2,4 +179,2022-01-18,2021-12-14,BA.2,1495.94050367776,Previously infected (Pre-Omicron),BNT162b2,4 +180,2022-01-12,2021-12-07,Delta,693.551880986138,Infection naive,BNT162b2,3 +180,2022-04-12,2021-12-07,Delta,382.484188999999,Infection naive,BNT162b2,3 +180,2022-07-20,2021-12-07,Delta,296.116029,Infection naive,BNT162b2,3 +180,2022-01-12,2021-12-07,BA.1,476.604522396288,Infection naive,BNT162b2,3 +180,2022-04-12,2021-12-07,BA.1,217.3153114,Infection naive,BNT162b2,3 +180,2022-07-20,2021-12-07,BA.1,142.9343886,Infection naive,BNT162b2,3 +180,2022-01-12,2021-12-07,BA.2,894.27113342248,Infection naive,BNT162b2,3 +180,2022-04-12,2021-12-07,BA.2,229.6527543,Infection naive,BNT162b2,3 +180,2022-07-20,2021-12-07,BA.2,149.468676,Infection naive,BNT162b2,3 +181,2021-10-13,2021-09-22,Delta,201.183608230365,Infection naive,BNT162b2,3 +181,2022-01-10,2021-09-22,Delta,63.5374630400002,Infection naive,BNT162b2,3 +181,2021-10-13,2021-09-22,BA.1,122.179767147239,Infection naive,BNT162b2,3 +181,2022-01-10,2021-09-22,BA.1,135.0187504,Infection naive,BNT162b2,3 +181,2021-10-13,2021-09-22,BA.2,179.517712146024,Infection naive,BNT162b2,3 +181,2022-01-10,2021-09-22,BA.2,76.3109723399998,Infection naive,BNT162b2,3 +182,2021-11-02,2021-10-21,Delta,1277.603903,Infection naive,BNT162b2,4 +182,2021-11-02,2021-10-21,BA.1,707.675309300002,Infection naive,BNT162b2,4 +182,2021-11-02,2021-10-21,BA.2,408.830556399999,Infection naive,BNT162b2,4 +183,2022-01-12,2021-12-13,Delta,897.4119254,Previously infected (Pre-Omicron),BNT162b2,4 +183,2022-03-21,2021-12-13,Delta,600.6913244,Previously infected (Pre-Omicron),BNT162b2,4 +183,2022-01-12,2021-12-13,BA.1,583.054368300002,Previously infected (Pre-Omicron),BNT162b2,4 +183,2022-03-21,2021-12-13,BA.1,267.2545805,Previously infected (Pre-Omicron),BNT162b2,4 +183,2022-01-12,2021-12-13,BA.2,1590.59731711801,Previously infected (Pre-Omicron),BNT162b2,4 +183,2022-03-21,2021-12-13,BA.2,373.8663943,Previously infected (Pre-Omicron),BNT162b2,4 +184,2021-11-17,2021-10-22,Delta,1153.08008239504,Infection naive,BNT162b2,3 +184,2022-01-13,2021-10-22,Delta,1272.0171,Infection naive,BNT162b2,3 +184,2022-07-13,2021-10-22,Delta,1363.216326,Infection naive,BNT162b2,3 +184,2022-07-13,2021-10-22,Delta,1363.216326,Infection naive,BNT162b2,3 +184,2022-10-06,2021-10-22,Delta,1162.21205286533,Infection naive,BNT162b2,3 +184,2021-11-17,2021-10-22,BA.1,755.096734353624,Infection naive,BNT162b2,3 +184,2022-01-13,2021-10-22,BA.1,722.719526800001,Infection naive,BNT162b2,3 +184,2022-07-13,2021-10-22,BA.1,612.923748600001,Infection naive,BNT162b2,3 +184,2022-07-13,2021-10-22,BA.1,612.923748600001,Infection naive,BNT162b2,3 +184,2022-10-06,2021-10-22,BA.1,461.396063181804,Infection naive,BNT162b2,3 +184,2021-11-17,2021-10-22,BA.2,1852.65435025565,Infection naive,BNT162b2,3 +184,2022-01-13,2021-10-22,BA.2,2560,Infection naive,BNT162b2,3 +184,2022-07-13,2021-10-22,BA.2,550.282565399999,Infection naive,BNT162b2,3 +184,2022-07-13,2021-10-22,BA.2,550.282565399999,Infection naive,BNT162b2,3 +184,2022-10-06,2021-10-22,BA.2,439.681103635157,Infection naive,BNT162b2,3 +185,2022-01-27,2021-12-19,Delta,1253.204069,Previously infected (Pre-Omicron),BNT162b2,4 +185,2022-01-27,2021-12-19,BA.1,430.528648299999,Previously infected (Pre-Omicron),BNT162b2,4 +185,2022-01-27,2021-12-19,BA.2,907.695882218876,Previously infected (Pre-Omicron),BNT162b2,4 +186,2021-10-21,2021-10-01,Delta,430.528648309053,Infection naive,BNT162b2,3 +186,2022-03-01,2021-10-01,Delta,480.379055100002,Infection naive,BNT162b2,3 +186,2021-10-21,2021-10-01,BA.1,646.019775952783,Infection naive,BNT162b2,3 +186,2022-03-01,2021-10-01,BA.1,396.826842899999,Infection naive,BNT162b2,3 +186,2021-10-21,2021-10-01,BA.2,1450.74592374035,Infection naive,BNT162b2,3 +186,2022-03-01,2021-10-01,BA.2,359.722466600001,Infection naive,BNT162b2,3 +187,2021-10-20,2021-10-02,Delta,610.243509120078,Infection naive,BNT162b2,3 +187,2022-01-19,2021-10-02,Delta,501.459901000002,Infection naive,BNT162b2,3 +187,2022-06-16,2021-10-02,Delta,275.097603700001,Infection naive,BNT162b2,3 +187,2022-10-18,2021-10-02,Delta,222.129750131312,Infection naive,BNT162b2,3 +187,2021-10-20,2021-10-02,BA.1,1095.9264755573,Infection naive,BNT162b2,3 +187,2022-01-19,2021-10-02,BA.1,551.731425900001,Infection naive,BNT162b2,3 +187,2022-06-16,2021-10-02,BA.1,118.6964262,Infection naive,BNT162b2,3 +187,2022-10-18,2021-10-02,BA.1,208.727728846829,Infection naive,BNT162b2,3 +187,2021-10-20,2021-10-02,BA.2,1101.70508812898,Infection naive,BNT162b2,3 +187,2022-01-19,2021-10-02,BA.2,293.017827400001,Infection naive,BNT162b2,3 +187,2022-06-16,2021-10-02,BA.2,129.1161671,Infection naive,BNT162b2,3 +187,2022-10-18,2021-10-02,BA.2,173.78929859736,Infection naive,BNT162b2,3 +188,2022-01-06,2021-12-12,Delta,814.928806099998,Infection naive,BNT162b2,5 +188,2022-01-06,2021-12-12,BA.1,473.6892911,Infection naive,BNT162b2,5 +188,2022-01-06,2021-12-12,BA.2,266.319234099999,Infection naive,BNT162b2,5 +189,2022-01-05,2021-12-22,Delta,1573.955222,Infection naive,BNT162b2,4 +189,2022-06-30,2021-12-22,Delta,1243.357138,Infection naive,BNT162b2,4 +189,2022-01-05,2021-12-22,BA.1,718.298891900001,Infection naive,BNT162b2,4 +189,2022-01-05,2021-12-22,BA.2,630.358252700001,Infection naive,BNT162b2,4 +189,2022-06-30,2021-12-22,BA.2,759.0782163,Infection naive,BNT162b2,4 +189,2022-10-26,2021-12-22,BA.2,859.685673490025,Infection naive,BNT162b2,4 +190,2021-12-15,2021-12-15,Delta,98.3097495,Previously infected (Pre-Omicron),BNT162b2,4 +190,2022-01-11,2021-12-15,Delta,1223.894781,Previously infected (Pre-Omicron),BNT162b2,4 +190,2022-03-21,2021-12-15,Delta,926.992266000003,Previously infected (Pre-Omicron),BNT162b2,4 +190,2021-12-15,2021-12-15,BA.1,75.7777557099999,Previously infected (Pre-Omicron),BNT162b2,4 +190,2022-01-11,2021-12-15,BA.1,445.499932,Previously infected (Pre-Omicron),BNT162b2,4 +190,2022-03-21,2021-12-15,BA.1,210.3807757,Previously infected (Pre-Omicron),BNT162b2,4 +190,2021-12-15,2021-12-15,BA.2,84.2560552900003,Previously infected (Pre-Omicron),BNT162b2,4 +190,2022-01-11,2021-12-15,BA.2,240.151397199999,Previously infected (Pre-Omicron),BNT162b2,4 +190,2022-03-21,2021-12-15,BA.2,148.0345101,Previously infected (Pre-Omicron),BNT162b2,4 +191,2022-01-17,2021-12-04,Delta,361.302397178666,Infection naive,BNT162b2,3 +191,2022-01-17,2021-12-04,BA.1,220.384386784088,Infection naive,BNT162b2,3 +191,2022-03-21,2021-12-04,BA.1,231.877641900001,Infection naive,BNT162b2,3 +191,2022-01-17,2021-12-04,BA.2,366.083945958807,Infection naive,BNT162b2,3 +191,2022-03-21,2021-12-04,BA.2,158.926424200001,Infection naive,BNT162b2,3 +192,2022-01-26,2021-12-16,Delta,680.306343480621,Previously infected (Pre-Omicron),BNT162b2,4 +192,2022-01-26,2021-12-16,BA.1,1109.45732967998,Previously infected (Pre-Omicron),BNT162b2,4 +192,2022-01-26,2021-12-16,BA.2,2560,Previously infected (Pre-Omicron),BNT162b2,4 +193,2022-03-02,2022-01-23,Delta,2560,Infection naive,BNT162b2,4 +193,2022-07-06,2022-01-23,Delta,541.668953499999,Infection naive,BNT162b2,4 +193,2022-03-02,2022-01-23,BA.1,1756.201649,Infection naive,BNT162b2,4 +193,2022-07-06,2022-01-23,BA.1,736.790847300002,Infection naive,BNT162b2,4 +193,2022-03-02,2022-01-23,BA.2,1116.285275,Infection naive,BNT162b2,4 +193,2022-07-06,2022-01-23,BA.2,297.1560255,Infection naive,BNT162b2,4 +194,2022-01-06,2021-12-13,Delta,493.178057169013,Previously infected (Pre-Omicron),BNT162b2,4 +194,2022-01-06,2021-12-13,BA.1,333.896446719027,Previously infected (Pre-Omicron),BNT162b2,4 +194,2022-04-26,2021-12-13,BA.1,408.830556399999,Previously infected (Pre-Omicron),BNT162b2,4 +194,2022-04-26,2021-12-13,BA.1,408.830556399999,Previously infected (Pre-Omicron),BNT162b2,4 +194,2022-07-14,2021-12-13,BA.1,308.2989855,Previously infected (Pre-Omicron),BNT162b2,4 +194,2022-01-06,2021-12-13,BA.2,649.426115777702,Previously infected (Pre-Omicron),BNT162b2,4 +194,2022-04-26,2021-12-13,BA.2,302.941641499999,Previously infected (Pre-Omicron),BNT162b2,4 +194,2022-04-26,2021-12-13,BA.2,302.941641499999,Previously infected (Pre-Omicron),BNT162b2,4 +194,2022-07-14,2021-12-13,BA.2,277.7627634,Previously infected (Pre-Omicron),BNT162b2,4 +195,2021-11-16,2021-10-14,Delta,521.633810910942,Infection naive,BNT162b2,3 +195,2022-01-31,2021-10-14,Delta,183.9779073,Infection naive,BNT162b2,3 +195,2022-06-22,2021-10-14,Delta,66.9682937499999,Infection naive,BNT162b2,3 +195,2021-11-16,2021-10-14,BA.1,187.724416883956,Infection naive,BNT162b2,3 +195,2022-01-31,2021-10-14,BA.1,148.0345101,Infection naive,BNT162b2,3 +195,2022-06-22,2021-10-14,BA.1,52.1653656600001,Infection naive,BNT162b2,3 +195,2021-11-16,2021-10-14,BA.2,195.276636839101,Infection naive,BNT162b2,3 +195,2022-01-31,2021-10-14,BA.2,160.4661115,Infection naive,BNT162b2,3 +195,2022-06-22,2021-10-14,BA.2,46.0201933399999,Infection naive,BNT162b2,3 +196,2022-01-31,2022-01-04,Delta,827.887792200001,Infection naive,BNT162b2,3 +196,2022-01-31,2022-01-04,BA.1,316.235864099999,Infection naive,BNT162b2,3 +196,2022-01-31,2022-01-04,BA.2,682.695664406201,Infection naive,BNT162b2,3 +197,2022-01-18,2021-12-03,Delta,1380.04727341355,Infection naive,BNT162b2,3 +197,2022-08-02,2021-12-03,Delta,2560,Infection naive,BNT162b2,3 +197,2022-01-18,2021-12-03,BA.1,932.697264910318,Infection naive,BNT162b2,3 +197,2022-08-02,2021-12-03,BA.1,771.149067119869,Infection naive,BNT162b2,3 +197,2022-01-18,2021-12-03,BA.2,1542.54301454384,Infection naive,BNT162b2,3 +197,2022-08-02,2021-12-03,BA.2,1444.40199186087,Infection naive,BNT162b2,3 +198,2021-09-30,2021-09-30,Delta,118.8005084,Infection naive,BNT162b2,3 +198,2021-09-30,2021-09-30,BA.1,104.3472966,Infection naive,BNT162b2,3 +198,2021-09-30,2021-09-30,BA.2,146.4856553,Infection naive,BNT162b2,3 +198,2022-01-11,2021-09-30,BA.2,170.1716794,Infection naive,BNT162b2,3 +198,2022-07-11,2021-09-30,BA.2,120.2672786,Infection naive,BNT162b2,3 +199,2021-09-30,2021-09-27,Delta,5,Infection naive,BNT162b2,3 +199,2021-09-30,2021-09-27,BA.1,5,Infection naive,BNT162b2,3 +199,2021-09-30,2021-09-27,BA.2,5,Infection naive,BNT162b2,3 +199,2022-04-07,2021-09-27,BA.2,5,Infection naive,BNT162b2,3 +200,2021-12-21,2021-12-02,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,5 +200,2022-03-21,2021-12-02,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,5 +200,2022-07-11,2021-12-02,Delta,1219.611353,Previously infected (Pre-Omicron),BNT162b2,5 +200,2022-07-11,2021-12-02,Delta,1219.611353,Previously infected (Pre-Omicron),BNT162b2,5 +200,2022-11-08,2021-12-02,Delta,1126.1124417535,Previously infected (Pre-Omicron),BNT162b2,5 +200,2021-12-21,2021-12-02,BA.1,805.695875999997,Previously infected (Pre-Omicron),BNT162b2,5 +200,2022-03-21,2021-12-02,BA.1,773.179455600001,Previously infected (Pre-Omicron),BNT162b2,5 +200,2022-07-11,2021-12-02,BA.1,267.9582455,Previously infected (Pre-Omicron),BNT162b2,5 +200,2022-07-11,2021-12-02,BA.1,267.9582455,Previously infected (Pre-Omicron),BNT162b2,5 +200,2022-11-08,2021-12-02,BA.1,256.918651907806,Previously infected (Pre-Omicron),BNT162b2,5 +200,2021-12-21,2021-12-02,BA.2,1580.86816200001,Previously infected (Pre-Omicron),BNT162b2,5 +200,2022-03-21,2021-12-02,BA.2,657.444254099999,Previously infected (Pre-Omicron),BNT162b2,5 +200,2022-07-11,2021-12-02,BA.2,457.770687599999,Previously infected (Pre-Omicron),BNT162b2,5 +200,2022-07-11,2021-12-02,BA.2,457.770687599999,Previously infected (Pre-Omicron),BNT162b2,5 +200,2022-11-08,2021-12-02,BA.2,334.482275824779,Previously infected (Pre-Omicron),BNT162b2,5 +201,2021-10-12,2021-09-22,Delta,678.519842098598,Infection naive,BNT162b2,3 +201,2022-01-11,2021-09-22,Delta,1149.044494,Infection naive,BNT162b2,3 +201,2022-07-12,2021-09-22,Delta,974.481292799999,Infection naive,BNT162b2,3 +201,2022-07-12,2021-09-22,Delta,974.481292799999,Infection naive,BNT162b2,3 +201,2021-10-12,2021-09-22,BA.1,452.584265496128,Infection naive,BNT162b2,3 +201,2022-01-11,2021-09-22,BA.1,653.4228862,Infection naive,BNT162b2,3 +201,2022-07-12,2021-09-22,BA.1,354.402200400001,Infection naive,BNT162b2,3 +201,2022-07-12,2021-09-22,BA.1,354.402200400001,Infection naive,BNT162b2,3 +201,2021-10-12,2021-09-22,BA.2,777.256284317225,Infection naive,BNT162b2,3 +201,2022-01-11,2021-09-22,BA.2,357.522164,Infection naive,BNT162b2,3 +201,2022-07-12,2021-09-22,BA.2,322.110512499999,Infection naive,BNT162b2,3 +201,2022-07-12,2021-09-22,BA.2,322.110512499999,Infection naive,BNT162b2,3 +202,2022-01-10,2021-12-09,Delta,1511.75771604633,Previously infected (Pre-Omicron),BNT162b2,4 +202,2022-04-21,2021-12-09,Delta,988.243583799999,Previously infected (Pre-Omicron),BNT162b2,4 +202,2022-01-10,2021-12-09,BA.1,866.494068070684,Previously infected (Pre-Omicron),BNT162b2,4 +202,2022-04-21,2021-12-09,BA.1,629.805990200002,Previously infected (Pre-Omicron),BNT162b2,4 +202,2022-01-10,2021-12-09,BA.2,1852.65435025565,Previously infected (Pre-Omicron),BNT162b2,4 +202,2022-04-21,2021-12-09,BA.2,557.565115799999,Previously infected (Pre-Omicron),BNT162b2,4 +203,2022-01-31,2022-01-16,Delta,2560,Infection naive,BNT162b2,5 +203,2022-07-14,2022-01-16,Delta,2560,Infection naive,BNT162b2,5 +203,2022-01-31,2022-01-16,BA.1,1302.4788,Infection naive,BNT162b2,5 +203,2022-07-14,2022-01-16,BA.1,786.163308800003,Infection naive,BNT162b2,5 +203,2022-01-31,2022-01-16,BA.2,587.1570799,Infection naive,BNT162b2,5 +203,2022-07-14,2022-01-16,BA.2,412.068344099999,Infection naive,BNT162b2,5 +204,2022-01-18,2021-12-09,Delta,1411.85800652214,Infection naive,BNT162b2,3 +204,2022-01-18,2021-12-09,BA.1,951.690628333103,Infection naive,BNT162b2,3 +204,2022-01-18,2021-12-09,BA.2,2318.68820436243,Infection naive,BNT162b2,3 +205,2021-10-27,2021-10-27,Delta,88.5724214800002,Infection naive,BNT162b2,3 +205,2021-12-02,2021-10-27,Delta,500.581618887535,Infection naive,BNT162b2,3 +205,2022-07-14,2021-10-27,Delta,368.983196300001,Infection naive,BNT162b2,3 +205,2021-10-27,2021-10-27,BA.1,69.9071152200002,Infection naive,BNT162b2,3 +205,2021-12-02,2021-10-27,BA.1,565.439431577804,Infection naive,BNT162b2,3 +205,2022-07-14,2021-10-27,BA.1,186.0862154,Infection naive,BNT162b2,3 +205,2021-10-27,2021-10-27,BA.2,171.2189689,Infection naive,BNT162b2,3 +205,2021-12-02,2021-10-27,BA.2,1223.89478072528,Infection naive,BNT162b2,3 +205,2022-07-14,2021-10-27,BA.2,276.5481413,Infection naive,BNT162b2,3 +206,2022-01-27,2022-01-03,Delta,1227.117221,Infection naive,BNT162b2,4 +206,2022-07-14,2022-01-03,Delta,1283.21524400001,Infection naive,BNT162b2,4 +206,2022-09-27,2022-01-03,Delta,1517.06719813476,Infection naive,BNT162b2,4 +206,2022-01-27,2022-01-03,BA.1,802.876074900002,Infection naive,BNT162b2,4 +206,2022-07-14,2022-01-03,BA.1,811.365223599999,Infection naive,BNT162b2,4 +206,2022-09-27,2022-01-03,BA.1,643.758814517845,Infection naive,BNT162b2,4 +206,2022-01-27,2022-01-03,BA.2,666.7291313,Infection naive,BNT162b2,4 +206,2022-07-14,2022-01-03,BA.2,1094.966325,Infection naive,BNT162b2,4 +206,2022-09-27,2022-01-03,BA.2,953.360391743973,Infection naive,BNT162b2,4 +207,2021-12-14,2021-11-20,Delta,1660.39873057065,Infection naive,BNT162b2,3 +207,2021-12-14,2021-11-20,BA.1,426.024114951107,Infection naive,BNT162b2,3 +207,2021-12-14,2021-11-20,BA.2,744.581248940854,Infection naive,BNT162b2,3 +208,2022-01-10,2021-12-14,Delta,571.919125585972,Infection naive,BNT162b2,3 +208,2022-04-21,2021-12-14,Delta,606.5108525,Infection naive,BNT162b2,3 +208,2022-01-10,2021-12-14,BA.1,718.928751797537,Infection naive,BNT162b2,3 +208,2022-04-21,2021-12-14,BA.1,410.626173699999,Infection naive,BNT162b2,3 +208,2022-01-10,2021-12-14,BA.2,1158.14450458189,Infection naive,BNT162b2,3 +208,2022-04-21,2021-12-14,BA.2,232.0809701,Infection naive,BNT162b2,3 +209,2021-12-20,2021-11-09,Delta,360.985856908171,Infection naive,BNT162b2,3 +209,2021-12-20,2021-11-09,BA.1,517.988937696653,Infection naive,BNT162b2,3 +209,2021-12-20,2021-11-09,BA.2,453.378335148974,Infection naive,BNT162b2,3 +210,2022-01-27,2021-12-09,Delta,678.519842099999,Infection naive,BNT162b2,3 +210,2022-01-27,2021-12-09,BA.1,335.657019400001,Infection naive,BNT162b2,3 +210,2022-01-27,2021-12-09,BA.2,607.57498998905,Infection naive,BNT162b2,3 +211,2022-01-27,2021-12-23,Delta,2560,Infection naive,BNT162b2,4 +211,2022-04-19,2021-12-23,Delta,1857.532276,Infection naive,BNT162b2,4 +211,2022-04-19,2021-12-23,Delta,1857.532276,Infection naive,BNT162b2,4 +211,2022-07-28,2021-12-23,Delta,2560,Infection naive,BNT162b2,4 +211,2022-12-08,2021-12-23,Delta,1448.20501425543,Infection naive,BNT162b2,4 +211,2022-01-27,2021-12-23,BA.1,1836.486922,Infection naive,BNT162b2,4 +211,2022-04-19,2021-12-23,BA.1,1489.398942,Infection naive,BNT162b2,4 +211,2022-04-19,2021-12-23,BA.1,1489.398942,Infection naive,BNT162b2,4 +211,2022-07-28,2021-12-23,BA.1,775.894958510468,Infection naive,BNT162b2,4 +211,2022-12-08,2021-12-23,BA.1,1234.66928241179,Infection naive,BNT162b2,4 +211,2022-01-27,2021-12-23,BA.2,2560,Infection naive,BNT162b2,4 +211,2022-04-19,2021-12-23,BA.2,779.9861056,Infection naive,BNT162b2,4 +211,2022-04-19,2021-12-23,BA.2,779.9861056,Infection naive,BNT162b2,4 +211,2022-07-28,2021-12-23,BA.2,845.487564146657,Infection naive,BNT162b2,4 +211,2022-12-08,2021-12-23,BA.2,729.08195510893,Infection naive,BNT162b2,4 +212,2021-11-01,2021-10-10,Delta,544.048008000001,Previously infected (Pre-Omicron),BNT162b2,4 +212,2022-01-06,2021-10-10,Delta,457.770687599999,Previously infected (Pre-Omicron),BNT162b2,4 +212,2022-06-16,2021-10-10,Delta,180.306168600001,Previously infected (Pre-Omicron),BNT162b2,4 +212,2021-11-01,2021-10-10,BA.1,239.3109074,Previously infected (Pre-Omicron),BNT162b2,4 +212,2022-01-06,2021-10-10,BA.1,395.7847657,Previously infected (Pre-Omicron),BNT162b2,4 +212,2022-06-16,2021-10-10,BA.1,116.7360994,Previously infected (Pre-Omicron),BNT162b2,4 +212,2023-01-05,2021-10-10,BA.1,224.08525922009,Previously infected (Pre-Omicron),BNT162b2,4 +213,2022-01-11,2021-11-30,Delta,2349.3741916176,Infection naive,AZD1222,3 +213,2022-01-11,2021-11-30,BA.1,2560,Infection naive,AZD1222,3 +213,2022-01-11,2021-11-30,BA.2,2560,Infection naive,AZD1222,3 +214,2021-10-05,2021-10-05,Delta,63.9284923700001,Previously infected (Pre-Omicron),BNT162b2,4 +214,2021-10-05,2021-10-05,BA.1,97.36645829,Previously infected (Pre-Omicron),BNT162b2,4 +214,2021-10-05,2021-10-05,BA.2,122.1797671,Previously infected (Pre-Omicron),BNT162b2,4 +214,2022-01-13,2021-10-05,BA.2,194.0821946,Previously infected (Pre-Omicron),BNT162b2,4 +215,2022-01-31,2022-01-13,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,4 +215,2022-06-16,2022-01-13,Delta,1148.037806,Previously infected (Pre-Omicron),BNT162b2,4 +215,2022-01-31,2022-01-13,BA.1,1067.484891,Previously infected (Pre-Omicron),BNT162b2,4 +215,2022-06-16,2022-01-13,BA.1,488.8742749,Previously infected (Pre-Omicron),BNT162b2,4 +215,2022-11-15,2022-01-13,BA.1,427.520364901452,Previously infected (Pre-Omicron),BNT162b2,4 +215,2022-01-31,2022-01-13,BA.2,731.001583499999,Previously infected (Pre-Omicron),BNT162b2,4 +215,2022-06-16,2022-01-13,BA.2,386.528356299999,Previously infected (Pre-Omicron),BNT162b2,4 +215,2022-11-15,2022-01-13,BA.2,293.531934057791,Previously infected (Pre-Omicron),BNT162b2,4 +216,2021-10-27,2021-10-09,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,4 +216,2021-12-20,2021-10-09,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,4 +216,2022-06-22,2021-10-09,Delta,2353.496223,Previously infected (Pre-Omicron),BNT162b2,4 +216,2022-11-24,2021-10-09,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,4 +216,2021-10-27,2021-10-09,BA.1,1564.327862,Previously infected (Pre-Omicron),BNT162b2,4 +216,2021-12-20,2021-10-09,BA.1,851.436909299999,Previously infected (Pre-Omicron),BNT162b2,4 +216,2022-06-22,2021-10-09,BA.1,560.996545100001,Previously infected (Pre-Omicron),BNT162b2,4 +216,2022-11-24,2021-10-09,BA.1,732.2841427851,Previously infected (Pre-Omicron),BNT162b2,4 +216,2021-10-27,2021-10-09,BA.2,910.883823600003,Previously infected (Pre-Omicron),BNT162b2,4 +216,2021-12-20,2021-10-09,BA.2,877.1922354,Previously infected (Pre-Omicron),BNT162b2,4 +216,2022-06-22,2021-10-09,BA.2,413.878182099999,Previously infected (Pre-Omicron),BNT162b2,4 +216,2022-11-24,2021-10-09,BA.2,225.859932116853,Previously infected (Pre-Omicron),BNT162b2,4 +217,2021-12-08,2021-12-08,Delta,54.9821375200001,Infection naive,BNT162b2,3 +217,2022-01-10,2021-12-08,Delta,335.657019392179,Infection naive,BNT162b2,3 +217,2022-03-21,2021-12-08,Delta,284.6638992,Infection naive,BNT162b2,3 +217,2022-06-16,2021-12-08,Delta,162.447306,Infection naive,BNT162b2,3 +217,2021-12-08,2021-12-08,BA.1,48.1662188000002,Infection naive,BNT162b2,3 +217,2022-01-10,2021-12-08,BA.1,520.720195179818,Infection naive,BNT162b2,3 +217,2022-03-21,2021-12-08,BA.1,126.9837534,Infection naive,BNT162b2,3 +217,2022-06-16,2021-12-08,BA.1,58.2055320999998,Infection naive,BNT162b2,3 +217,2021-12-08,2021-12-08,BA.2,5,Infection naive,BNT162b2,3 +217,2022-01-10,2021-12-08,BA.2,551.731425861521,Infection naive,BNT162b2,3 +217,2022-03-21,2021-12-08,BA.2,135.968821300001,Infection naive,BNT162b2,3 +217,2022-06-16,2021-12-08,BA.2,99.6108005499997,Infection naive,BNT162b2,3 +218,2022-01-18,2022-01-06,Delta,1357.25515,Infection naive,BNT162b2,5 +218,2022-06-16,2022-01-06,Delta,163.4470573,Infection naive,BNT162b2,5 +218,2022-01-18,2022-01-06,BA.1,304.538995399999,Infection naive,BNT162b2,5 +218,2022-06-16,2022-01-06,BA.1,167.2145882,Infection naive,BNT162b2,5 +218,2022-01-18,2022-01-06,BA.2,267.0204364,Infection naive,BNT162b2,5 +218,2022-06-16,2022-01-06,BA.2,114.205962,Infection naive,BNT162b2,5 +219,2022-01-19,2022-01-19,Delta,710.783477200002,Infection naive,BNT162b2,4 +219,2022-02-23,2022-01-19,Delta,2560,Infection naive,BNT162b2,4 +219,2022-01-19,2022-01-19,BA.1,392.330898600001,Infection naive,BNT162b2,4 +219,2022-02-23,2022-01-19,BA.1,2560,Infection naive,BNT162b2,4 +219,2022-01-19,2022-01-19,BA.2,333.896446700001,Infection naive,BNT162b2,4 +219,2022-02-23,2022-01-19,BA.2,2560,Infection naive,BNT162b2,4 +220,2022-01-26,2022-01-13,Delta,2560,Infection naive,BNT162b2,5 +220,2022-06-22,2022-01-13,Delta,2560,Infection naive,BNT162b2,5 +220,2022-06-22,2022-01-13,Delta,2560,Infection naive,BNT162b2,5 +220,2022-01-26,2022-01-13,BA.1,2560,Infection naive,BNT162b2,5 +220,2022-06-22,2022-01-13,BA.1,2125.97132500001,Infection naive,BNT162b2,5 +220,2022-06-22,2022-01-13,BA.1,2125.97132500001,Infection naive,BNT162b2,5 +220,2022-01-26,2022-01-13,BA.2,1339.527572,Infection naive,BNT162b2,5 +220,2022-06-22,2022-01-13,BA.2,871.062927,Infection naive,BNT162b2,5 +220,2022-06-22,2022-01-13,BA.2,871.062927,Infection naive,BNT162b2,5 +221,2021-12-16,2021-12-04,Delta,1677.9548294084,Previously infected (Pre-Omicron),BNT162b2,4 +221,2022-06-16,2021-12-04,Delta,695.987721899998,Previously infected (Pre-Omicron),BNT162b2,4 +221,2021-12-16,2021-12-04,BA.1,566.928199132255,Previously infected (Pre-Omicron),BNT162b2,4 +221,2022-06-16,2021-12-04,BA.1,267.7234849,Previously infected (Pre-Omicron),BNT162b2,4 +221,2021-12-16,2021-12-04,BA.2,869.537303560947,Previously infected (Pre-Omicron),BNT162b2,4 +221,2022-06-16,2021-12-04,BA.2,207.4510108,Previously infected (Pre-Omicron),BNT162b2,4 +222,2022-01-19,2021-12-22,Delta,2560,Infection naive,mRNA1273,5 +222,2022-01-19,2021-12-22,BA.1,2560,Infection naive,mRNA1273,5 +222,2022-01-19,2021-12-22,BA.2,2355.559951,Infection naive,mRNA1273,5 +223,2022-01-10,2021-12-09,Delta,1366.80559115504,Infection naive,BNT162b2,4 +223,2022-03-21,2021-12-09,Delta,2560,Infection naive,BNT162b2,4 +223,2022-01-10,2021-12-09,BA.1,1549.31798983506,Infection naive,BNT162b2,4 +223,2022-03-21,2021-12-09,BA.1,812.076691199999,Infection naive,BNT162b2,4 +223,2022-01-10,2021-12-09,BA.2,2560,Infection naive,BNT162b2,4 +224,2021-10-27,2021-10-09,Delta,716.412621099999,Infection naive,BNT162b2,3 +224,2022-01-12,2021-10-09,Delta,523.924869300001,Infection naive,BNT162b2,3 +224,2021-10-27,2021-10-09,BA.1,340.695884000001,Infection naive,BNT162b2,3 +224,2022-01-12,2021-10-09,BA.1,161.4536699,Infection naive,BNT162b2,3 +225,2022-01-06,2021-12-19,Delta,2560,Infection naive,BNT162b2,4 +225,2022-06-16,2021-12-19,Delta,933.515125899998,Infection naive,BNT162b2,4 +225,2022-01-06,2021-12-19,BA.1,2560,Infection naive,BNT162b2,4 +225,2022-06-16,2021-12-19,BA.1,1074.996339,Infection naive,BNT162b2,4 +225,2022-01-06,2021-12-19,BA.2,1949.272035,Infection naive,BNT162b2,4 +225,2022-06-16,2021-12-19,BA.2,925.368684999999,Infection naive,BNT162b2,4 +226,2021-10-20,2021-09-30,Delta,314.301554500001,Infection naive,BNT162b2,3 +226,2022-02-16,2021-09-30,Delta,162.5897524,Infection naive,BNT162b2,3 +226,2021-10-20,2021-09-30,BA.1,384.1640909,Infection naive,BNT162b2,3 +226,2022-02-16,2021-09-30,BA.1,145.7173155,Infection naive,BNT162b2,3 +227,2022-01-31,2022-01-19,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,4 +227,2022-04-07,2022-01-19,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,4 +227,2022-01-31,2022-01-19,BA.1,2560,Previously infected (Pre-Omicron),BNT162b2,4 +227,2022-04-07,2022-01-19,BA.1,788.233228899999,Previously infected (Pre-Omicron),BNT162b2,4 +227,2022-01-31,2022-01-19,BA.2,2560,Previously infected (Pre-Omicron),BNT162b2,4 +227,2022-04-07,2022-01-19,BA.2,936.793747699999,Previously infected (Pre-Omicron),BNT162b2,4 +228,2022-03-10,2022-01-22,Delta,2560,Infection naive,BNT162b2,4 +228,2022-09-08,2022-01-22,Delta,739.378548898482,Infection naive,BNT162b2,4 +228,2022-03-10,2022-01-22,BA.1,560.996545119027,Infection naive,BNT162b2,4 +228,2022-09-08,2022-01-22,BA.1,552.699451520389,Infection naive,BNT162b2,4 +228,2022-03-10,2022-01-22,BA.2,683.29430467463,Infection naive,BNT162b2,4 +228,2022-09-08,2022-01-22,BA.2,320.701963182361,Infection naive,BNT162b2,4 +229,2022-01-18,2021-12-20,Delta,518.4431504,Infection naive,AZD1222,4 +229,2022-01-18,2021-12-20,BA.1,376.167284499999,Infection naive,AZD1222,4 +229,2022-01-18,2021-12-20,BA.2,326.946017699999,Infection naive,AZD1222,4 +230,2021-12-17,2021-12-04,Delta,2087.197881,Previously infected (Pre-Omicron),BNT162b2,4 +230,2022-01-31,2021-12-04,Delta,1615.890973,Previously infected (Pre-Omicron),BNT162b2,4 +230,2021-12-17,2021-12-04,BA.1,1022.608951,Previously infected (Pre-Omicron),BNT162b2,4 +230,2022-01-31,2021-12-04,BA.1,841.052851900002,Previously infected (Pre-Omicron),BNT162b2,4 +230,2021-12-17,2021-12-04,BA.2,643.758814500001,Previously infected (Pre-Omicron),BNT162b2,4 +230,2022-01-31,2021-12-04,BA.2,515.723836400001,Previously infected (Pre-Omicron),BNT162b2,4 +231,2022-01-10,2022-01-10,Delta,303.739268414484,Infection naive,BNT162b2,3 +231,2022-01-10,2022-01-10,BA.1,141.687053135051,Infection naive,BNT162b2,3 +231,2022-01-10,2022-01-10,BA.2,196.650717502208,Infection naive,BNT162b2,3 +232,2021-10-18,2021-09-21,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,4 +232,2022-01-06,2021-09-21,Delta,1133.042888,Previously infected (Pre-Omicron),BNT162b2,4 +232,2021-10-18,2021-09-21,BA.1,1305.908147,Previously infected (Pre-Omicron),BNT162b2,4 +232,2022-01-06,2021-09-21,BA.1,453.775892300001,Previously infected (Pre-Omicron),BNT162b2,4 +232,2021-10-18,2021-09-21,BA.2,699.044556999999,Previously infected (Pre-Omicron),BNT162b2,4 +232,2022-01-06,2021-09-21,BA.2,455.768913199999,Previously infected (Pre-Omicron),BNT162b2,4 +233,2022-01-17,2021-12-10,Delta,1224.967986,Previously infected (Pre-Omicron),BNT162b2,4 +233,2022-04-21,2021-12-10,Delta,524.844107700001,Previously infected (Pre-Omicron),BNT162b2,4 +233,2022-04-21,2021-12-10,Delta,524.844107700001,Previously infected (Pre-Omicron),BNT162b2,4 +233,2022-01-17,2021-12-10,BA.1,673.778740699998,Previously infected (Pre-Omicron),BNT162b2,4 +233,2022-04-21,2021-12-10,BA.1,585.615190800001,Previously infected (Pre-Omicron),BNT162b2,4 +233,2022-04-21,2021-12-10,BA.1,585.615190800001,Previously infected (Pre-Omicron),BNT162b2,4 +233,2022-01-17,2021-12-10,BA.2,414.241102400001,Previously infected (Pre-Omicron),BNT162b2,4 +233,2022-04-21,2021-12-10,BA.2,314.5771584,Previously infected (Pre-Omicron),BNT162b2,4 +233,2022-04-21,2021-12-10,BA.2,314.5771584,Previously infected (Pre-Omicron),BNT162b2,4 +234,2022-01-27,2022-01-08,Delta,511.671585500002,Infection naive,BNT162b2,4 +234,2022-07-06,2022-01-08,Delta,494.4765649,Infection naive,BNT162b2,4 +234,2022-07-06,2022-01-08,Delta,494.4765649,Infection naive,BNT162b2,4 +234,2022-01-27,2022-01-08,BA.1,580.5047439,Infection naive,BNT162b2,4 +234,2022-07-06,2022-01-08,BA.1,504.988466300001,Infection naive,BNT162b2,4 +234,2022-07-06,2022-01-08,BA.1,504.988466300001,Infection naive,BNT162b2,4 +234,2022-01-27,2022-01-08,BA.2,346.417124199999,Infection naive,BNT162b2,4 +234,2022-07-06,2022-01-08,BA.2,386.8672942,Infection naive,BNT162b2,4 +234,2022-07-06,2022-01-08,BA.2,386.8672942,Infection naive,BNT162b2,4 +235,2021-12-15,2021-11-30,Delta,1169.364668,Infection naive,BNT162b2,4 +235,2021-12-15,2021-11-30,BA.1,593.3653403,Infection naive,BNT162b2,4 +235,2021-12-15,2021-11-30,BA.2,655.143308900002,Infection naive,BNT162b2,4 +236,2022-01-19,2022-01-04,Delta,2560,Infection naive,BNT162b2,4 +236,2022-06-16,2022-01-04,Delta,2560,Infection naive,BNT162b2,4 +236,2022-01-19,2022-01-04,BA.1,2560,Infection naive,BNT162b2,4 +236,2022-06-16,2022-01-04,BA.1,2560,Infection naive,BNT162b2,4 +236,2022-01-19,2022-01-04,BA.2,1675.015975,Infection naive,BNT162b2,4 +236,2022-06-16,2022-01-04,BA.2,2560,Infection naive,BNT162b2,4 +237,2022-01-06,2022-01-06,Delta,423.789552999999,Infection naive,BNT162b2,4 +237,2022-02-22,2022-01-06,Delta,2560,Infection naive,BNT162b2,4 +237,2022-01-06,2022-01-06,BA.1,432.7987443,Infection naive,BNT162b2,4 +237,2022-02-22,2022-01-06,BA.1,2560,Infection naive,BNT162b2,4 +237,2022-01-06,2022-01-06,BA.2,198.5558797,Infection naive,BNT162b2,4 +237,2022-02-22,2022-01-06,BA.2,824.267541600003,Infection naive,BNT162b2,4 +238,2022-01-06,2021-12-26,Delta,895.055299400003,Infection naive,BNT162b2,5 +238,2022-01-06,2021-12-26,BA.1,540.246517400001,Infection naive,BNT162b2,5 +238,2022-01-06,2021-12-26,BA.2,348.243716,Infection naive,BNT162b2,5 +239,2021-12-20,2021-11-03,Delta,1075.9389792843,Previously infected (Pre-Omicron),BNT162b2,4 +239,2021-12-20,2021-11-03,BA.1,906.10609793011,Previously infected (Pre-Omicron),BNT162b2,4 +239,2022-06-20,2021-11-03,BA.1,1220.680803,Previously infected (Pre-Omicron),BNT162b2,4 +239,2022-09-15,2021-11-03,BA.1,567.4253255489,Previously infected (Pre-Omicron),BNT162b2,4 +239,2021-12-20,2021-11-03,BA.2,2498.03269375095,Previously infected (Pre-Omicron),BNT162b2,4 +239,2022-06-20,2021-11-03,BA.2,1017.24521,Previously infected (Pre-Omicron),BNT162b2,4 +239,2022-09-15,2021-11-03,BA.2,1277.60390288493,Previously infected (Pre-Omicron),BNT162b2,4 +240,2021-10-01,2021-09-22,Delta,432.04071874368,Infection naive,BNT162b2,3 +240,2022-04-13,2021-09-22,Delta,601.2180569,Infection naive,BNT162b2,3 +240,2021-10-01,2021-09-22,BA.1,273.414923199941,Infection naive,BNT162b2,3 +240,2022-04-13,2021-09-22,BA.1,329.246601100001,Infection naive,BNT162b2,3 +240,2021-10-01,2021-09-22,BA.2,319.579559816621,Infection naive,BNT162b2,3 +240,2022-04-13,2021-09-22,BA.2,200.8312451,Infection naive,BNT162b2,3 +241,2022-01-18,2021-12-14,Delta,267.723484906625,Infection naive,BNT162b2,3 +241,2022-03-21,2021-12-14,Delta,250.909971299999,Infection naive,BNT162b2,3 +241,2022-07-20,2021-12-14,Delta,58.0018224500001,Infection naive,BNT162b2,3 +241,2022-01-18,2021-12-14,BA.1,167.507970104435,Infection naive,BNT162b2,3 +241,2022-03-21,2021-12-14,BA.1,143.9401586,Infection naive,BNT162b2,3 +241,2022-07-20,2021-12-14,BA.1,134.5462073,Infection naive,BNT162b2,3 +241,2022-01-18,2021-12-14,BA.2,156.988170065007,Infection naive,BNT162b2,3 +241,2022-03-21,2021-12-14,BA.2,112.418288,Infection naive,BNT162b2,3 +241,2022-07-20,2021-12-14,BA.2,51.80086447,Infection naive,BNT162b2,3 +242,2021-10-12,2021-09-21,Delta,222.32453064652,Previously infected (Pre-Omicron),BNT162b2,4 +242,2022-01-11,2021-09-21,Delta,122.9316995,Previously infected (Pre-Omicron),BNT162b2,4 +242,2021-10-12,2021-09-21,BA.1,196.995745774032,Previously infected (Pre-Omicron),BNT162b2,4 +242,2022-01-11,2021-09-21,BA.1,86.3494333899999,Previously infected (Pre-Omicron),BNT162b2,4 +242,2021-10-12,2021-09-21,BA.2,306.144771789469,Previously infected (Pre-Omicron),BNT162b2,4 +242,2022-01-11,2021-09-21,BA.2,83.7406890200002,Previously infected (Pre-Omicron),BNT162b2,4 +243,2022-01-31,2021-12-15,Delta,1327.838011,Previously infected (Pre-Omicron),BNT162b2,4 +243,2022-03-21,2021-12-15,Delta,1269.789225,Previously infected (Pre-Omicron),BNT162b2,4 +243,2022-07-11,2021-12-15,Delta,1004.838967,Previously infected (Pre-Omicron),BNT162b2,4 +243,2022-07-11,2021-12-15,Delta,1004.838967,Previously infected (Pre-Omicron),BNT162b2,4 +243,2022-01-31,2021-12-15,BA.1,555.126952800002,Previously infected (Pre-Omicron),BNT162b2,4 +243,2022-03-21,2021-12-15,BA.1,557.076628000001,Previously infected (Pre-Omicron),BNT162b2,4 +243,2022-07-11,2021-12-15,BA.1,611.850243099998,Previously infected (Pre-Omicron),BNT162b2,4 +243,2022-07-11,2021-12-15,BA.1,611.850243099998,Previously infected (Pre-Omicron),BNT162b2,4 +243,2022-01-31,2021-12-15,BA.2,512.120258602473,Previously infected (Pre-Omicron),BNT162b2,4 +243,2022-03-21,2021-12-15,BA.2,298.4611591,Previously infected (Pre-Omicron),BNT162b2,4 +243,2022-07-11,2021-12-15,BA.2,220.3843868,Previously infected (Pre-Omicron),BNT162b2,4 +243,2022-07-11,2021-12-15,BA.2,220.3843868,Previously infected (Pre-Omicron),BNT162b2,4 +244,2022-01-26,2021-12-09,Delta,624.309906500002,Infection naive,BNT162b2,3 +244,2022-01-26,2021-12-09,BA.1,277.5194129,Infection naive,BNT162b2,3 +244,2022-01-26,2021-12-09,BA.2,295.338420900001,Infection naive,BNT162b2,3 +245,2022-01-10,2022-01-05,Delta,490.591262434251,Previously infected (Pre-Omicron),mRNA1273,4 +245,2022-01-10,2022-01-05,BA.1,353.161851829877,Previously infected (Pre-Omicron),mRNA1273,4 +245,2022-03-21,2022-01-05,BA.1,296.895684500001,Previously infected (Pre-Omicron),mRNA1273,4 +245,2022-06-16,2022-01-05,BA.1,302.941641499999,Previously infected (Pre-Omicron),mRNA1273,4 +245,2022-01-10,2022-01-05,BA.2,434.318787559875,Previously infected (Pre-Omicron),mRNA1273,4 +245,2022-06-16,2022-01-05,BA.2,231.877641900001,Previously infected (Pre-Omicron),mRNA1273,4 +246,2022-01-11,2021-12-16,Delta,2560,Infection naive,BNT162b2,4 +246,2022-01-11,2021-12-16,BA.1,2034.813448,Infection naive,BNT162b2,4 +246,2022-01-11,2021-12-16,BA.2,978.7612945,Infection naive,BNT162b2,4 +247,2021-10-08,2021-10-08,Delta,51.5743457200001,Previously infected (Pre-Omicron),BNT162b2,5 +247,2021-10-08,2021-10-08,BA.1,5,Previously infected (Pre-Omicron),BNT162b2,5 +247,2021-10-08,2021-10-08,BA.2,51.3938441100001,Previously infected (Pre-Omicron),BNT162b2,5 +248,2022-02-08,2022-01-23,Delta,2560,Previously infected (Pre-Omicron),mRNA1273,4 +248,2023-01-16,2022-01-23,Delta,2560,Previously infected (Pre-Omicron),mRNA1273,4 +248,2022-02-08,2022-01-23,BA.1,1308.199394,Previously infected (Pre-Omicron),mRNA1273,4 +248,2023-01-16,2022-01-23,BA.1,773.179455604743,Previously infected (Pre-Omicron),mRNA1273,4 +248,2022-02-08,2022-01-23,BA.2,464.6427158,Previously infected (Pre-Omicron),mRNA1273,4 +248,2023-01-16,2022-01-23,BA.2,679.114820683619,Previously infected (Pre-Omicron),mRNA1273,4 +249,2021-12-20,2021-11-19,Delta,389.931140975734,Infection naive,BNT162b2,3 +249,2021-12-20,2021-11-19,BA.1,223.692785009915,Infection naive,BNT162b2,3 +249,2021-12-20,2021-11-19,BA.2,380.811633106917,Infection naive,BNT162b2,3 +250,2021-09-30,2021-09-28,Delta,208.1796046,Previously infected (Pre-Omicron),BNT162b2,4 +250,2021-09-30,2021-09-28,BA.1,132.324114,Previously infected (Pre-Omicron),BNT162b2,4 +250,2021-09-30,2021-09-28,BA.2,96.9406868499997,Previously infected (Pre-Omicron),BNT162b2,4 +251,2021-12-02,2021-12-02,Delta,429.774598748674,Infection naive,BNT162b2,5 +251,2022-01-11,2021-12-02,Delta,2560,Infection naive,BNT162b2,5 +251,2022-07-11,2021-12-02,Delta,2560,Infection naive,BNT162b2,5 +251,2022-07-11,2021-12-02,Delta,2560,Infection naive,BNT162b2,5 +251,2022-12-08,2021-12-02,Delta,2560,Infection naive,BNT162b2,5 +251,2021-12-02,2021-12-02,BA.1,235.564956829147,Infection naive,BNT162b2,5 +251,2022-01-11,2021-12-02,BA.1,2560,Infection naive,BNT162b2,5 +251,2022-07-11,2021-12-02,BA.1,2560,Infection naive,BNT162b2,5 +251,2022-07-11,2021-12-02,BA.1,2560,Infection naive,BNT162b2,5 +251,2022-12-08,2021-12-02,BA.1,2560,Infection naive,BNT162b2,5 +251,2021-12-02,2021-12-02,BA.2,193.912157451256,Infection naive,BNT162b2,5 +251,2022-01-11,2021-12-02,BA.2,976.191043000001,Infection naive,BNT162b2,5 +251,2022-07-11,2021-12-02,BA.2,1087.315338,Infection naive,BNT162b2,5 +251,2022-07-11,2021-12-02,BA.2,1087.315338,Infection naive,BNT162b2,5 +252,2022-01-18,2021-12-10,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,5 +252,2022-04-21,2021-12-10,Delta,2555.613512,Previously infected (Pre-Omicron),BNT162b2,5 +252,2022-01-18,2021-12-10,BA.1,1077.826739,Previously infected (Pre-Omicron),BNT162b2,5 +252,2022-04-21,2021-12-10,BA.1,858.932495200001,Previously infected (Pre-Omicron),BNT162b2,5 +252,2022-01-18,2021-12-10,BA.2,760.4100367,Previously infected (Pre-Omicron),BNT162b2,5 +252,2022-04-21,2021-12-10,BA.2,720.190129099998,Previously infected (Pre-Omicron),BNT162b2,5 +253,2022-01-11,2021-12-18,Delta,1294.511971,Previously infected (Pre-Omicron),BNT162b2,4 +253,2022-01-11,2021-12-18,BA.1,319.299573300001,Previously infected (Pre-Omicron),BNT162b2,4 +253,2022-01-11,2021-12-18,BA.2,637.023297460253,Previously infected (Pre-Omicron),BNT162b2,4 +254,2021-12-15,2021-12-15,Delta,308.028882007146,Infection naive,BNT162b2,5 +254,2022-01-12,2021-12-15,Delta,2171.166593,Infection naive,BNT162b2,5 +254,2021-12-15,2021-12-15,BA.1,130.824916440835,Infection naive,BNT162b2,5 +254,2022-01-12,2021-12-15,BA.1,956.7087126,Infection naive,BNT162b2,5 +254,2021-12-15,2021-12-15,BA.2,228.048074655464,Infection naive,BNT162b2,5 +254,2022-01-12,2021-12-15,BA.2,530.393506700002,Infection naive,BNT162b2,5 +255,2021-11-15,2021-10-15,Delta,586.642666327646,Previously infected (Pre-Omicron),BNT162b2,4 +255,2021-11-15,2021-10-15,BA.1,584.589514870015,Previously infected (Pre-Omicron),BNT162b2,4 +255,2022-04-08,2021-10-15,BA.1,888.801174300003,Previously infected (Pre-Omicron),BNT162b2,4 +255,2021-11-15,2021-10-15,BA.2,1047.09793601577,Previously infected (Pre-Omicron),BNT162b2,4 +255,2022-04-08,2021-10-15,BA.2,536.001581899998,Previously infected (Pre-Omicron),BNT162b2,4 +256,2022-01-31,2022-01-08,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,4 +256,2022-04-26,2022-01-08,Delta,1380.047273,Previously infected (Pre-Omicron),BNT162b2,4 +256,2022-04-26,2022-01-08,Delta,1380.047273,Previously infected (Pre-Omicron),BNT162b2,4 +256,2022-07-06,2022-01-08,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,4 +256,2023-01-09,2022-01-08,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,4 +256,2022-01-31,2022-01-08,BA.1,891.922755200002,Previously infected (Pre-Omicron),BNT162b2,4 +256,2022-04-26,2022-01-08,BA.1,685.0933769,Previously infected (Pre-Omicron),BNT162b2,4 +256,2022-04-26,2022-01-08,BA.1,685.0933769,Previously infected (Pre-Omicron),BNT162b2,4 +256,2022-01-31,2022-01-08,BA.2,2205.69245238783,Previously infected (Pre-Omicron),BNT162b2,4 +256,2022-04-26,2022-01-08,BA.2,608.6409945,Previously infected (Pre-Omicron),BNT162b2,4 +256,2022-04-26,2022-01-08,BA.2,608.6409945,Previously infected (Pre-Omicron),BNT162b2,4 +257,2022-01-19,2021-12-08,Delta,2560,Infection naive,AZD1222,3 +257,2022-06-16,2021-12-08,Delta,1669.153698,Infection naive,AZD1222,3 +257,2022-01-19,2021-12-08,BA.1,1216.408623,Infection naive,AZD1222,3 +257,2022-06-16,2021-12-08,BA.1,1120.205809,Infection naive,AZD1222,3 +257,2022-01-19,2021-12-08,BA.2,2560,Infection naive,AZD1222,3 +257,2022-06-16,2021-12-08,BA.2,625.4052728,Infection naive,AZD1222,3 +258,2021-11-23,2021-10-05,Delta,270.317203679223,Previously infected (Pre-Omicron),BNT162b2,4 +258,2022-06-14,2021-10-05,Delta,177.795223,Previously infected (Pre-Omicron),BNT162b2,4 +258,2021-11-23,2021-10-05,BA.1,301.352666053073,Previously infected (Pre-Omicron),BNT162b2,4 +258,2022-06-14,2021-10-05,BA.1,145.5896512,Previously infected (Pre-Omicron),BNT162b2,4 +258,2021-11-23,2021-10-05,BA.2,595.971449521582,Previously infected (Pre-Omicron),BNT162b2,4 +258,2022-06-14,2021-10-05,BA.2,165.7553684,Previously infected (Pre-Omicron),BNT162b2,4 +259,2022-01-31,2022-01-11,Delta,2560,Infection naive,BNT162b2,4 +259,2022-06-16,2022-01-11,Delta,2560,Infection naive,BNT162b2,4 +259,2023-01-19,2022-01-11,Delta,2560,Infection naive,BNT162b2,4 +259,2022-01-31,2022-01-11,BA.1,1438.085801,Infection naive,BNT162b2,4 +259,2022-06-16,2022-01-11,BA.1,2560,Infection naive,BNT162b2,4 +259,2023-01-19,2022-01-11,BA.1,2560,Infection naive,BNT162b2,4 +259,2022-01-31,2022-01-11,BA.2,1983.74375909442,Infection naive,BNT162b2,4 +259,2022-06-16,2022-01-11,BA.2,1399.537244,Infection naive,BNT162b2,4 +259,2023-01-19,2022-01-11,BA.2,2101.88462610155,Infection naive,BNT162b2,4 +260,2022-01-17,2021-12-17,Delta,550.765095651552,Previously infected (Pre-Omicron),BNT162b2,4 +260,2022-01-17,2021-12-17,BA.1,439.681103635157,Previously infected (Pre-Omicron),BNT162b2,4 +260,2022-01-17,2021-12-17,BA.2,937.615200794511,Previously infected (Pre-Omicron),BNT162b2,4 +261,2022-01-06,2021-12-13,Delta,648.857147733311,Infection naive,BNT162b2,3 +261,2022-03-21,2021-12-13,Delta,413.878182099999,Infection naive,BNT162b2,3 +261,2022-01-06,2021-12-13,BA.1,495.778491582079,Infection naive,BNT162b2,3 +261,2022-03-21,2021-12-13,BA.1,326.087449299999,Infection naive,BNT162b2,3 +261,2022-01-06,2021-12-13,BA.2,796.567552606504,Infection naive,BNT162b2,3 +261,2022-03-21,2021-12-13,BA.2,202.7769085,Infection naive,BNT162b2,3 +262,2021-11-09,2021-10-16,Delta,992.584030628349,Infection naive,BNT162b2,3 +262,2022-01-17,2021-10-16,Delta,240.3619805,Infection naive,BNT162b2,3 +262,2022-07-06,2021-10-16,Delta,220.9646454,Infection naive,BNT162b2,3 +262,2022-07-06,2021-10-16,Delta,220.9646454,Infection naive,BNT162b2,3 +262,2021-11-09,2021-10-16,BA.1,218.844469065114,Infection naive,BNT162b2,3 +262,2022-01-17,2021-10-16,BA.1,129.2293861,Infection naive,BNT162b2,3 +262,2022-07-06,2021-10-16,BA.1,113.4079572,Infection naive,BNT162b2,3 +262,2022-07-06,2021-10-16,BA.1,113.4079572,Infection naive,BNT162b2,3 +262,2021-11-09,2021-10-16,BA.2,280.945805803223,Infection naive,BNT162b2,3 +262,2022-01-17,2021-10-16,BA.2,124.3404442,Infection naive,BNT162b2,3 +262,2022-07-06,2021-10-16,BA.2,63.9845498100001,Infection naive,BNT162b2,3 +262,2022-07-06,2021-10-16,BA.2,63.9845498100001,Infection naive,BNT162b2,3 +263,2022-01-20,2021-12-17,Delta,2560,Infection naive,BNT162b2,4 +263,2022-06-09,2021-12-17,Delta,2560,Infection naive,BNT162b2,4 +263,2022-06-09,2021-12-17,Delta,2560,Infection naive,BNT162b2,4 +263,2022-01-20,2021-12-17,BA.1,2560,Infection naive,BNT162b2,4 +263,2022-06-09,2021-12-17,BA.1,1527.74217,Infection naive,BNT162b2,4 +263,2022-06-09,2021-12-17,BA.1,1527.74217,Infection naive,BNT162b2,4 +263,2022-01-20,2021-12-17,BA.2,1481.586815,Infection naive,BNT162b2,4 +263,2022-06-09,2021-12-17,BA.2,1227.117221,Infection naive,BNT162b2,4 +263,2022-06-09,2021-12-17,BA.2,1227.117221,Infection naive,BNT162b2,4 +264,2021-12-10,2021-11-15,Delta,231.066108860875,Infection naive,BNT162b2,3 +264,2021-12-10,2021-11-15,BA.1,186.739773455233,Infection naive,BNT162b2,3 +264,2021-12-10,2021-11-15,BA.2,368.983196266903,Infection naive,BNT162b2,3 +265,2021-10-21,2021-10-04,Delta,577.459907235951,Infection naive,BNT162b2,3 +265,2022-01-12,2021-10-04,Delta,373.211585900001,Infection naive,BNT162b2,3 +265,2021-10-21,2021-10-04,BA.1,143.059724530235,Infection naive,BNT162b2,3 +265,2022-01-12,2021-10-04,BA.1,228.4481903,Infection naive,BNT162b2,3 +265,2021-10-21,2021-10-04,BA.2,289.698012148021,Infection naive,BNT162b2,3 +265,2022-01-12,2021-10-04,BA.2,231.268725500001,Infection naive,BNT162b2,3 +266,2022-02-01,2022-01-11,Delta,1201.5734,Previously infected (Omicron),BNT162b2,5 +266,2022-04-21,2022-01-11,Delta,571.418062100002,Previously infected (Omicron),BNT162b2,5 +266,2022-04-21,2022-01-11,Delta,571.418062100002,Previously infected (Omicron),BNT162b2,5 +266,2022-02-01,2022-01-11,BA.1,624.309906500002,Previously infected (Omicron),BNT162b2,5 +266,2022-04-21,2022-01-11,BA.1,447.456604200001,Previously infected (Omicron),BNT162b2,5 +266,2022-04-21,2022-01-11,BA.1,447.456604200001,Previously infected (Omicron),BNT162b2,5 +266,2022-02-01,2022-01-11,BA.2,439.6811036,Previously infected (Omicron),BNT162b2,5 +266,2022-04-21,2022-01-11,BA.2,340.397397299999,Previously infected (Omicron),BNT162b2,5 +266,2022-04-21,2022-01-11,BA.2,340.397397299999,Previously infected (Omicron),BNT162b2,5 +267,2022-01-13,2021-12-08,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,4 +267,2022-07-07,2021-12-08,Delta,1362.022,Previously infected (Pre-Omicron),BNT162b2,4 +267,2022-01-13,2021-12-08,BA.1,1878.81880200001,Previously infected (Pre-Omicron),BNT162b2,4 +267,2022-07-07,2021-12-08,BA.1,707.675309300002,Previously infected (Pre-Omicron),BNT162b2,4 +267,2022-01-13,2021-12-08,BA.2,2560,Previously infected (Pre-Omicron),BNT162b2,4 +267,2022-07-07,2021-12-08,BA.2,769.798437799998,Previously infected (Pre-Omicron),BNT162b2,4 +268,2022-01-10,2021-12-06,Delta,618.319594774105,Infection naive,BNT162b2,3 +268,2022-01-10,2021-12-06,BA.1,378.814217542421,Infection naive,BNT162b2,3 +268,2022-01-10,2021-12-06,BA.2,695.377960810212,Infection naive,BNT162b2,3 +269,2021-11-30,2021-11-30,Delta,301.881396336384,Infection naive,BNT162b2,3 +269,2022-01-13,2021-11-30,Delta,931.063691899999,Infection naive,BNT162b2,3 +269,2022-07-04,2021-11-30,Delta,1434.309352,Infection naive,BNT162b2,3 +269,2022-11-23,2021-11-30,Delta,649.995582737199,Infection naive,BNT162b2,3 +269,2021-11-30,2021-11-30,BA.1,200.128369273714,Infection naive,BNT162b2,3 +269,2022-01-13,2021-11-30,BA.1,460.991830000001,Infection naive,BNT162b2,3 +269,2022-07-04,2021-11-30,BA.1,741.3252875,Infection naive,BNT162b2,3 +269,2022-11-23,2021-11-30,BA.1,731.642582080143,Infection naive,BNT162b2,3 +269,2021-11-30,2021-11-30,BA.2,539.300302437901,Infection naive,BNT162b2,3 +269,2022-01-13,2021-11-30,BA.2,919.70851255915,Infection naive,BNT162b2,3 +269,2022-07-04,2021-11-30,BA.2,808.5255807,Infection naive,BNT162b2,3 +269,2022-11-23,2021-11-30,BA.2,629.805990224052,Infection naive,BNT162b2,3 +270,2022-02-08,2022-01-23,Delta,888.801174300003,Infection naive,BNT162b2,4 +270,2022-02-08,2022-01-23,BA.1,748.507284700002,Infection naive,BNT162b2,4 +270,2022-02-08,2022-01-23,BA.2,494.910160200001,Infection naive,BNT162b2,4 +271,2021-10-21,2021-10-02,Delta,947.529003325105,Infection naive,BNT162b2,3 +271,2022-01-19,2021-10-02,Delta,447.064583499999,Infection naive,BNT162b2,3 +271,2021-10-21,2021-10-02,BA.1,462.205593339281,Infection naive,BNT162b2,3 +271,2022-01-19,2021-10-02,BA.1,370.6038007,Infection naive,BNT162b2,3 +271,2021-10-21,2021-10-02,BA.2,930.247978689868,Infection naive,BNT162b2,3 +271,2022-01-19,2021-10-02,BA.2,191.8832941,Infection naive,BNT162b2,3 +272,2022-01-18,2021-12-23,Delta,2560,Infection naive,BNT162b2,4 +272,2022-01-18,2021-12-23,BA.1,1030.707638,Infection naive,BNT162b2,4 +272,2022-01-18,2021-12-23,BA.2,727.167367800001,Infection naive,BNT162b2,4 +273,2021-10-27,2021-10-01,Delta,565.935252499999,Infection naive,BNT162b2,3 +273,2022-01-27,2021-10-01,Delta,402.783985499999,Infection naive,BNT162b2,3 +273,2022-07-20,2021-10-01,Delta,169.1307959,Infection naive,BNT162b2,3 +273,2021-10-27,2021-10-01,BA.1,204.741421500001,Infection naive,BNT162b2,3 +273,2022-01-27,2021-10-01,BA.1,152.2453248,Infection naive,BNT162b2,3 +273,2022-07-20,2021-10-01,BA.1,83.00991503,Infection naive,BNT162b2,3 +274,2022-01-26,2022-01-08,Delta,734.212202293392,Previously infected (Pre-Omicron),mRNA1273,4 +274,2022-04-21,2022-01-08,Delta,1415.575343,Previously infected (Pre-Omicron),mRNA1273,4 +274,2022-01-26,2022-01-08,BA.1,630.358252742624,Previously infected (Pre-Omicron),mRNA1273,4 +274,2022-04-21,2022-01-08,BA.1,447.064583499999,Previously infected (Pre-Omicron),mRNA1273,4 +274,2022-01-26,2022-01-08,BA.2,940.908222593982,Previously infected (Pre-Omicron),mRNA1273,4 +274,2022-04-21,2022-01-08,BA.2,276.79064,Previously infected (Pre-Omicron),mRNA1273,4 +275,2022-01-17,2022-01-07,Delta,391.98717397027,Infection naive,mRNA1273,3 +275,2022-01-17,2022-01-07,BA.1,374.522351602284,Infection naive,mRNA1273,3 +275,2022-01-17,2022-01-07,BA.2,278.250104602277,Infection naive,mRNA1273,3 +276,2021-09-24,2021-09-24,Delta,90.6935144899999,Infection naive,BNT162b2,3 +276,2021-09-24,2021-09-24,BA.1,5,Infection naive,BNT162b2,3 +276,2021-09-24,2021-09-24,BA.2,5,Infection naive,BNT162b2,3 +277,2022-01-26,2022-01-10,Delta,2560,Previously infected (Omicron),BNT162b2,4 +277,2022-04-12,2022-01-10,Delta,1828.45619200001,Previously infected (Omicron),BNT162b2,4 +277,2022-07-13,2022-01-10,Delta,1253.204069,Previously infected (Omicron),BNT162b2,4 +277,2022-07-13,2022-01-10,Delta,1253.204069,Previously infected (Omicron),BNT162b2,4 +277,2022-01-26,2022-01-10,BA.1,2560,Previously infected (Omicron),BNT162b2,4 +277,2022-04-12,2022-01-10,BA.1,762.41215,Previously infected (Omicron),BNT162b2,4 +277,2022-07-13,2022-01-10,BA.1,698.432117799998,Previously infected (Omicron),BNT162b2,4 +277,2022-07-13,2022-01-10,BA.1,698.432117799998,Previously infected (Omicron),BNT162b2,4 +277,2022-12-08,2022-01-10,BA.1,1255.40284517244,Previously infected (Omicron),BNT162b2,4 +277,2022-01-26,2022-01-10,BA.2,1202.627032,Previously infected (Omicron),BNT162b2,4 +277,2022-04-12,2022-01-10,BA.2,714.531303699999,Previously infected (Omicron),BNT162b2,4 +277,2022-07-13,2022-01-10,BA.2,535.5319861,Previously infected (Omicron),BNT162b2,4 +277,2022-07-13,2022-01-10,BA.2,535.5319861,Previously infected (Omicron),BNT162b2,4 +277,2022-12-08,2022-01-10,BA.2,747.851510785299,Previously infected (Omicron),BNT162b2,4 +278,2022-01-11,2021-12-12,Delta,2560,Infection naive,mRNA1273,4 +278,2022-01-11,2021-12-12,BA.1,2463.24506303203,Infection naive,mRNA1273,4 +278,2022-01-11,2021-12-12,BA.2,2560,Infection naive,mRNA1273,4 +279,2021-11-30,2021-10-30,Delta,432.419565403068,Infection naive,BNT162b2,3 +279,2022-01-18,2021-10-30,Delta,610.243509120078,Infection naive,BNT162b2,3 +279,2022-07-06,2021-10-30,Delta,321.546351899999,Infection naive,BNT162b2,3 +279,2022-07-06,2021-10-30,Delta,321.546351899999,Infection naive,BNT162b2,3 +279,2021-11-30,2021-10-30,BA.1,799.365197432719,Infection naive,BNT162b2,3 +279,2022-01-18,2021-10-30,BA.1,299.772024987397,Infection naive,BNT162b2,3 +279,2022-07-06,2021-10-30,BA.1,250.6901469,Infection naive,BNT162b2,3 +279,2022-07-06,2021-10-30,BA.1,250.6901469,Infection naive,BNT162b2,3 +279,2021-11-30,2021-10-30,BA.2,594.927635105804,Infection naive,BNT162b2,3 +279,2022-01-18,2021-10-30,BA.2,514.820571653188,Infection naive,BNT162b2,3 +279,2022-07-06,2021-10-30,BA.2,109.9817347,Infection naive,BNT162b2,3 +279,2022-07-06,2021-10-30,BA.2,109.9817347,Infection naive,BNT162b2,3 +280,2022-02-22,2022-01-04,Delta,2560,Infection naive,BNT162b2,5 +280,2022-06-16,2022-01-04,Delta,974.481292799999,Infection naive,BNT162b2,5 +280,2022-02-22,2022-01-04,BA.1,1308.199394,Infection naive,BNT162b2,5 +280,2022-06-16,2022-01-04,BA.1,1061.885769,Infection naive,BNT162b2,5 +280,2022-02-22,2022-01-04,BA.2,604.91814,Infection naive,BNT162b2,5 +280,2022-06-16,2022-01-04,BA.2,564.944045000001,Infection naive,BNT162b2,5 +281,2021-12-20,2021-10-31,Delta,167.801866746035,Previously infected (Pre-Omicron),BNT162b2,4 +281,2021-12-20,2021-10-31,BA.1,214.47688110084,Previously infected (Pre-Omicron),BNT162b2,4 +281,2021-12-20,2021-10-31,BA.2,247.632749601869,Previously infected (Pre-Omicron),BNT162b2,4 +282,2021-12-14,2021-11-21,Delta,662.650970934107,Infection naive,BNT162b2,3 +282,2021-12-14,2021-11-21,BA.1,280.453743167698,Infection naive,BNT162b2,3 +282,2021-12-14,2021-11-21,BA.2,544.048007967548,Infection naive,BNT162b2,3 +283,2022-01-31,2022-01-24,Delta,288.684117400001,Infection naive,BNT162b2,4 +283,2022-01-31,2022-01-24,BA.1,185.2724835,Infection naive,BNT162b2,4 +283,2022-01-31,2022-01-24,BA.2,165.7553684,Infection naive,BNT162b2,4 +284,2022-01-12,2021-12-21,Delta,1195.270963,Infection naive,BNT162b2,4 +284,2022-03-09,2021-12-21,Delta,785.4745441,Infection naive,BNT162b2,4 +284,2022-01-12,2021-12-21,BA.1,814.214839700001,Infection naive,BNT162b2,4 +284,2022-03-09,2021-12-21,BA.1,873.356382600002,Infection naive,BNT162b2,4 +284,2022-01-12,2021-12-21,BA.2,688.102363199999,Infection naive,BNT162b2,4 +284,2022-03-09,2021-12-21,BA.2,375.508446099999,Infection naive,BNT162b2,4 +285,2022-01-25,2021-12-17,Delta,2560,Infection naive,BNT162b2,4 +285,2022-06-22,2021-12-17,Delta,2560,Infection naive,BNT162b2,4 +285,2023-01-16,2021-12-17,Delta,2560,Infection naive,BNT162b2,4 +285,2022-01-25,2021-12-17,BA.1,2560,Infection naive,BNT162b2,4 +285,2022-06-22,2021-12-17,BA.1,1155.103188,Infection naive,BNT162b2,4 +285,2022-01-25,2021-12-17,BA.2,901.353432100001,Infection naive,BNT162b2,4 +285,2022-06-22,2021-12-17,BA.2,692.944254000001,Infection naive,BNT162b2,4 +285,2023-01-16,2021-12-17,BA.2,1223.89478072528,Infection naive,BNT162b2,4 +286,2021-10-20,2021-10-04,Delta,352.234440000001,Previously infected (Pre-Omicron),BNT162b2,4 +286,2022-01-27,2021-10-04,Delta,324.0928808,Previously infected (Pre-Omicron),BNT162b2,4 +286,2021-10-20,2021-10-04,BA.1,283.419099300001,Previously infected (Pre-Omicron),BNT162b2,4 +286,2022-01-27,2021-10-04,BA.1,145.2073292,Previously infected (Pre-Omicron),BNT162b2,4 +287,2021-10-27,2021-09-29,Delta,467.092688800001,Infection naive,BNT162b2,3 +287,2022-01-19,2021-09-29,Delta,388.566447,Infection naive,BNT162b2,3 +287,2021-10-27,2021-09-29,BA.1,366.083946000001,Infection naive,BNT162b2,3 +287,2022-01-19,2021-09-29,BA.1,186.2493902,Infection naive,BNT162b2,3 +288,2021-10-04,2021-09-27,Delta,436.226351255983,Infection naive,BNT162b2,3 +288,2021-10-04,2021-09-27,BA.1,233.100288774725,Infection naive,BNT162b2,3 +288,2021-10-04,2021-09-27,BA.2,482.912002751992,Infection naive,BNT162b2,3 +289,2022-01-17,2021-12-20,Delta,584.589514870015,Previously infected (Pre-Omicron),BNT162b2,4 +289,2022-03-21,2021-12-20,Delta,871.826742300001,Previously infected (Pre-Omicron),BNT162b2,4 +289,2022-01-17,2021-12-20,BA.1,881.044935576664,Previously infected (Pre-Omicron),BNT162b2,4 +289,2022-03-21,2021-12-20,BA.1,703.963443499999,Previously infected (Pre-Omicron),BNT162b2,4 +289,2022-01-17,2021-12-20,BA.2,1297.92034166759,Previously infected (Pre-Omicron),BNT162b2,4 +289,2022-03-21,2021-12-20,BA.2,489.302957600001,Previously infected (Pre-Omicron),BNT162b2,4 +290,2022-01-25,2021-12-27,Delta,2018.825096,Infection naive,BNT162b2,4 +290,2022-01-25,2021-12-27,BA.1,814.928806099998,Infection naive,BNT162b2,4 +290,2022-01-25,2021-12-27,BA.2,1094.966325,Infection naive,BNT162b2,4 +291,2022-01-17,2021-12-26,Delta,1795.108826,Infection naive,BNT162b2,4 +291,2022-07-14,2021-12-26,Delta,2560,Infection naive,BNT162b2,4 +291,2022-09-27,2021-12-26,Delta,2560,Infection naive,BNT162b2,4 +291,2022-01-17,2021-12-26,BA.1,1215.342917,Infection naive,BNT162b2,4 +291,2022-01-17,2021-12-26,BA.2,803.580098599998,Infection naive,BNT162b2,4 +292,2021-09-21,2021-09-20,Delta,128.1016491,Infection naive,BNT162b2,3 +292,2021-10-18,2021-09-20,Delta,663.813607499998,Infection naive,BNT162b2,3 +292,2021-09-21,2021-09-20,BA.1,98.5685930800002,Infection naive,BNT162b2,3 +292,2021-10-18,2021-09-20,BA.1,608.107758700001,Infection naive,BNT162b2,3 +292,2021-09-21,2021-09-20,BA.2,108.2601829,Infection naive,BNT162b2,3 +293,2022-01-06,2021-12-18,Delta,323.808940153789,Previously infected (Pre-Omicron),BNT162b2,4 +293,2022-01-06,2021-12-18,BA.1,332.436358995789,Previously infected (Pre-Omicron),BNT162b2,4 +293,2022-01-06,2021-12-18,BA.2,446.28157204593,Previously infected (Pre-Omicron),BNT162b2,4 +294,2021-10-07,2021-10-07,Delta,186.9035213,Infection naive,BNT162b2,3 +294,2021-10-21,2021-10-07,Delta,1278.7242046288,Infection naive,BNT162b2,3 +294,2022-01-05,2021-10-07,Delta,800.767702300003,Infection naive,BNT162b2,3 +294,2022-07-06,2021-10-07,Delta,375.508446099999,Infection naive,BNT162b2,3 +294,2021-10-07,2021-10-07,BA.1,178.7327035,Infection naive,BNT162b2,3 +294,2021-10-21,2021-10-07,BA.1,753.113831544595,Infection naive,BNT162b2,3 +294,2022-01-05,2021-10-07,BA.1,384.8381158,Infection naive,BNT162b2,3 +294,2022-07-06,2021-10-07,BA.1,306.144771800001,Infection naive,BNT162b2,3 +294,2021-10-07,2021-10-07,BA.2,99.8730697099998,Infection naive,BNT162b2,3 +294,2021-10-21,2021-10-07,BA.2,987.377774780354,Infection naive,BNT162b2,3 +294,2022-01-05,2021-10-07,BA.2,271.504459,Infection naive,BNT162b2,3 +294,2022-07-06,2021-10-07,BA.2,211.6755245,Infection naive,BNT162b2,3 +295,2022-01-17,2021-12-08,Delta,291.225534853536,Infection naive,BNT162b2,3 +295,2022-01-17,2021-12-08,BA.1,197.68761946026,Infection naive,BNT162b2,3 +295,2022-01-17,2021-12-08,BA.2,355.335319792884,Infection naive,BNT162b2,3 +296,2022-01-12,2021-12-07,Delta,1182.765086,Previously infected (Pre-Omicron),BNT162b2,4 +296,2022-01-12,2021-12-07,BA.1,241.2061618,Previously infected (Pre-Omicron),BNT162b2,4 +296,2022-01-12,2021-12-07,BA.2,262.6104695,Previously infected (Pre-Omicron),BNT162b2,4 +297,2021-12-20,2021-12-06,Delta,665.561388285487,Infection naive,BNT162b2,3 +297,2021-12-20,2021-12-06,BA.1,612.386760612603,Infection naive,BNT162b2,3 +297,2021-12-20,2021-12-06,BA.2,1604.60006780031,Infection naive,BNT162b2,3 +298,2022-01-27,2022-01-07,Delta,2560,Infection naive,BNT162b2,4 +298,2022-04-21,2022-01-07,Delta,2560,Infection naive,BNT162b2,4 +298,2022-04-21,2022-01-07,Delta,2560,Infection naive,BNT162b2,4 +298,2022-01-27,2022-01-07,BA.1,1020.817902,Infection naive,BNT162b2,4 +298,2022-04-21,2022-01-07,BA.1,1709.12585,Infection naive,BNT162b2,4 +298,2022-04-21,2022-01-07,BA.1,1709.12585,Infection naive,BNT162b2,4 +298,2022-01-27,2022-01-07,BA.2,1019.02999,Infection naive,BNT162b2,4 +298,2022-04-21,2022-01-07,BA.2,764.419534700003,Infection naive,BNT162b2,4 +298,2022-04-21,2022-01-07,BA.2,764.419534700003,Infection naive,BNT162b2,4 +299,2022-01-20,2021-12-04,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,4 +299,2022-01-20,2021-12-04,BA.1,1212.151396,Previously infected (Pre-Omicron),BNT162b2,4 +299,2022-01-20,2021-12-04,BA.2,2376.29701486302,Previously infected (Pre-Omicron),BNT162b2,4 +300,2022-01-25,2022-01-10,Delta,2560,Infection naive,BNT162b2,4 +300,2022-07-11,2022-01-10,Delta,2560,Infection naive,BNT162b2,4 +300,2022-09-20,2022-01-10,Delta,2560,Infection naive,BNT162b2,4 +300,2022-01-25,2022-01-10,BA.1,1041.605746,Infection naive,BNT162b2,4 +300,2022-01-25,2022-01-10,BA.2,1024.403142,Infection naive,BNT162b2,4 +301,2022-01-10,2022-01-10,Delta,148.424276,Infection naive,BNT162b2,3 +301,2022-01-27,2022-01-10,Delta,571.919125600001,Infection naive,BNT162b2,3 +301,2022-04-12,2022-01-10,Delta,181.0980881,Infection naive,BNT162b2,3 +301,2022-04-12,2022-01-10,Delta,181.0980881,Infection naive,BNT162b2,3 +301,2022-07-14,2022-01-10,Delta,182.8525756,Infection naive,BNT162b2,3 +301,2022-12-15,2022-01-10,Delta,111.534971991955,Infection naive,BNT162b2,3 +301,2022-01-10,2022-01-10,BA.1,98.5685930800002,Infection naive,BNT162b2,3 +301,2022-01-27,2022-01-10,BA.1,218.4611738,Infection naive,BNT162b2,3 +301,2022-04-12,2022-01-10,BA.1,163.1607879,Infection naive,BNT162b2,3 +301,2022-04-12,2022-01-10,BA.1,163.1607879,Infection naive,BNT162b2,3 +301,2022-07-14,2022-01-10,BA.1,237.4305447,Infection naive,BNT162b2,3 +301,2022-12-15,2022-01-10,BA.1,106.472215536784,Infection naive,BNT162b2,3 +301,2022-01-10,2022-01-10,BA.2,101.8175944,Infection naive,BNT162b2,3 +301,2022-01-27,2022-01-10,BA.2,410.626173688247,Infection naive,BNT162b2,3 +301,2022-04-12,2022-01-10,BA.2,195.7907883,Infection naive,BNT162b2,3 +301,2022-04-12,2022-01-10,BA.2,195.7907883,Infection naive,BNT162b2,3 +301,2022-07-14,2022-01-10,BA.2,218.078549899999,Infection naive,BNT162b2,3 +301,2022-12-15,2022-01-10,BA.2,130.024703940673,Infection naive,BNT162b2,3 +302,2022-01-12,2021-12-11,Delta,2560,Previously infected (Pre-Omicron),mRNA1273,4 +302,2022-04-21,2021-12-11,Delta,1253.204069,Previously infected (Pre-Omicron),mRNA1273,4 +302,2022-07-21,2021-12-11,Delta,725.89377020206,Previously infected (Pre-Omicron),mRNA1273,4 +302,2022-01-12,2021-12-11,BA.1,587.1570799,Previously infected (Pre-Omicron),mRNA1273,4 +302,2022-04-21,2021-12-11,BA.1,769.124010500002,Previously infected (Pre-Omicron),mRNA1273,4 +302,2022-07-21,2021-12-11,BA.1,169.724804358431,Previously infected (Pre-Omicron),mRNA1273,4 +302,2022-12-08,2021-12-11,BA.1,284.165324557694,Previously infected (Pre-Omicron),mRNA1273,4 +302,2022-01-12,2021-12-11,BA.2,1378.83820162041,Previously infected (Pre-Omicron),mRNA1273,4 +302,2022-04-21,2021-12-11,BA.2,485.8839935,Previously infected (Pre-Omicron),mRNA1273,4 +302,2022-07-21,2021-12-11,BA.2,265.154653107478,Previously infected (Pre-Omicron),mRNA1273,4 +302,2022-12-08,2021-12-11,BA.2,231.877641921509,Previously infected (Pre-Omicron),mRNA1273,4 +303,2022-01-12,2022-01-08,Delta,588.187260700001,Infection naive,BNT162b2,3 +303,2022-01-12,2022-01-08,BA.1,352.543306400001,Infection naive,BNT162b2,3 +303,2022-01-12,2022-01-08,BA.2,254.0078308,Infection naive,BNT162b2,3 +304,2022-01-19,2021-12-17,Delta,2560,Infection naive,BNT162b2,4 +304,2022-04-07,2021-12-17,Delta,2560,Infection naive,BNT162b2,4 +304,2022-06-16,2021-12-17,Delta,1260.916677,Infection naive,BNT162b2,4 +304,2022-01-19,2021-12-17,BA.1,1360.82872,Infection naive,BNT162b2,4 +304,2022-04-07,2021-12-17,BA.1,1475.10802,Infection naive,BNT162b2,4 +304,2022-06-16,2021-12-17,BA.1,997.817738100004,Infection naive,BNT162b2,4 +304,2022-01-19,2021-12-17,BA.2,2560,Infection naive,BNT162b2,4 +304,2022-06-16,2021-12-17,BA.2,698.432117799998,Infection naive,BNT162b2,4 +305,2022-01-06,2021-12-24,Delta,332.436358995789,Infection naive,mRNA1273,4 +305,2022-04-19,2021-12-24,Delta,592.8454876,Infection naive,mRNA1273,4 +305,2022-07-14,2021-12-24,Delta,436.991720599999,Infection naive,mRNA1273,4 +305,2022-09-20,2021-12-24,Delta,500.14305484178,Infection naive,mRNA1273,4 +305,2022-01-06,2021-12-24,BA.1,514.820571653188,Infection naive,mRNA1273,4 +305,2022-04-19,2021-12-24,BA.1,692.944254000001,Infection naive,mRNA1273,4 +305,2022-07-14,2021-12-24,BA.1,633.6820123,Infection naive,mRNA1273,4 +305,2022-09-20,2021-12-24,BA.1,590.770627342345,Infection naive,mRNA1273,4 +305,2022-01-06,2021-12-24,BA.2,786.852677536651,Infection naive,mRNA1273,4 +305,2022-04-19,2021-12-24,BA.2,363.844732199999,Infection naive,mRNA1273,4 +305,2022-07-14,2021-12-24,BA.2,405.2628435,Infection naive,mRNA1273,4 +305,2022-09-20,2021-12-24,BA.2,330.692679181588,Infection naive,mRNA1273,4 +306,2021-11-16,2021-09-27,Delta,743.9289146,Infection naive,BNT162b2,3 +306,2022-01-18,2021-09-27,Delta,333.603917,Infection naive,BNT162b2,3 +306,2021-11-16,2021-09-27,BA.1,254.0078308,Infection naive,BNT162b2,3 +306,2022-01-18,2021-09-27,BA.1,115.5147134,Infection naive,BNT162b2,3 +306,2021-11-16,2021-09-27,BA.2,263.995164700001,Infection naive,BNT162b2,3 +306,2022-01-18,2021-09-27,BA.2,134.075318,Infection naive,BNT162b2,3 +307,2022-01-31,2022-01-20,Delta,1046.180564,Infection naive,BNT162b2,4 +307,2022-01-31,2022-01-20,BA.1,974.481292799999,Infection naive,BNT162b2,4 +307,2022-01-31,2022-01-20,BA.2,507.206416999999,Infection naive,BNT162b2,4 +308,2022-01-10,2021-12-18,Delta,578.473074115649,Infection naive,BNT162b2,3 +308,2022-01-10,2021-12-18,BA.1,714.531303745857,Infection naive,BNT162b2,3 +308,2022-01-10,2021-12-18,BA.2,1068.42094444113,Infection naive,BNT162b2,3 +309,2022-01-26,2021-12-31,Delta,2560,Infection naive,BNT162b2,4 +309,2022-01-26,2021-12-31,BA.1,2560,Infection naive,BNT162b2,4 +309,2022-01-26,2021-12-31,BA.2,1641.58684800001,Infection naive,BNT162b2,4 +310,2021-11-16,2021-10-10,Delta,710.783477200283,Previously infected (Pre-Omicron),BNT162b2,4 +310,2022-01-25,2021-10-10,Delta,984.784896199998,Previously infected (Pre-Omicron),BNT162b2,4 +310,2022-08-16,2021-10-10,Delta,1121.18809180206,Previously infected (Pre-Omicron),BNT162b2,4 +310,2021-11-16,2021-10-10,BA.1,591.288660640886,Previously infected (Pre-Omicron),BNT162b2,4 +310,2022-01-25,2021-10-10,BA.1,495.344135599999,Previously infected (Pre-Omicron),BNT162b2,4 +310,2022-08-16,2021-10-10,BA.1,182.532318408973,Previously infected (Pre-Omicron),BNT162b2,4 +310,2021-11-16,2021-10-10,BA.2,1518.3974797845,Previously infected (Pre-Omicron),BNT162b2,4 +310,2022-01-25,2021-10-10,BA.2,501.899619800001,Previously infected (Pre-Omicron),BNT162b2,4 +310,2022-08-16,2021-10-10,BA.2,247.84989311606,Previously infected (Pre-Omicron),BNT162b2,4 +311,2022-01-11,2021-12-10,Delta,2560,Previously infected (Pre-Omicron),mRNA1273,4 +311,2022-01-11,2021-12-10,BA.1,2560,Previously infected (Pre-Omicron),mRNA1273,4 +311,2022-01-11,2021-12-10,BA.2,864.218633100003,Previously infected (Pre-Omicron),mRNA1273,4 +312,2022-01-18,2021-12-11,Delta,838.84422616909,Infection naive,BNT162b2,3 +312,2022-01-18,2021-12-11,BA.1,281.438731774123,Infection naive,BNT162b2,3 +312,2022-01-18,2021-12-11,BA.2,510.327923138681,Infection naive,BNT162b2,3 +313,2022-01-17,2021-12-27,Delta,2560,Infection naive,BNT162b2,5 +313,2022-01-17,2021-12-27,BA.1,1258.708244,Infection naive,BNT162b2,5 +313,2022-01-17,2021-12-27,BA.2,778.619998599999,Infection naive,BNT162b2,5 +314,2021-11-15,2021-10-19,Delta,199.253232751841,Infection naive,BNT162b2,3 +314,2021-11-15,2021-10-19,BA.1,184.139233319891,Infection naive,BNT162b2,3 +314,2021-11-15,2021-10-19,BA.2,219.036368792234,Infection naive,BNT162b2,3 +315,2021-11-15,2021-10-14,Delta,319.859791848912,Infection naive,BNT162b2,3 +315,2022-01-27,2021-10-14,Delta,519.352771,Infection naive,BNT162b2,3 +315,2022-07-14,2021-10-14,Delta,249.1567586,Infection naive,BNT162b2,3 +315,2021-11-15,2021-10-14,BA.1,269.843756512819,Infection naive,BNT162b2,3 +315,2022-01-27,2021-10-14,BA.1,179.2032958,Infection naive,BNT162b2,3 +315,2022-07-14,2021-10-14,BA.1,117.1460912,Infection naive,BNT162b2,3 +315,2021-11-15,2021-10-14,BA.2,591.807148191016,Infection naive,BNT162b2,3 +315,2022-01-27,2021-10-14,BA.2,183.9779073,Infection naive,BNT162b2,3 +315,2022-07-14,2021-10-14,BA.2,82.9371893,Infection naive,BNT162b2,3 +316,2022-01-25,2021-12-11,Delta,1657.490625,Infection naive,BNT162b2,3 +316,2022-03-21,2021-12-11,Delta,1097.849304,Infection naive,BNT162b2,3 +316,2022-01-25,2021-12-11,BA.1,476.186964900002,Infection naive,BNT162b2,3 +316,2022-03-21,2021-12-11,BA.1,300.034888199999,Infection naive,BNT162b2,3 +316,2022-01-25,2021-12-11,BA.2,976.191043012147,Infection naive,BNT162b2,3 +317,2022-01-17,2021-12-14,Delta,381.814286922808,Infection naive,BNT162b2,3 +317,2022-01-17,2021-12-14,BA.1,256.46867163986,Infection naive,BNT162b2,3 +317,2022-01-17,2021-12-14,BA.2,550.765095651552,Infection naive,BNT162b2,3 +318,2022-01-11,2021-12-08,Delta,1277.603903,Infection naive,BNT162b2,5 +318,2022-01-11,2021-12-08,BA.1,861.949173500001,Infection naive,BNT162b2,5 +318,2022-01-11,2021-12-08,BA.2,413.153295,Infection naive,BNT162b2,5 +319,2022-01-10,2022-01-05,Delta,757.084858000003,Infection naive,BNT162b2,4 +319,2022-01-10,2022-01-05,BA.1,206.182101900001,Infection naive,BNT162b2,4 +319,2022-01-10,2022-01-05,BA.2,213.3519169,Infection naive,BNT162b2,4 +320,2022-01-12,2022-01-12,Delta,2196.047233,Infection naive,BNT162b2,4 +320,2022-02-03,2022-01-12,Delta,553.66917560286,Infection naive,BNT162b2,4 +320,2022-01-12,2022-01-12,BA.1,599.6392433,Infection naive,BNT162b2,4 +320,2022-02-03,2022-01-12,BA.1,1324.35107505833,Infection naive,BNT162b2,4 +320,2022-01-12,2022-01-12,BA.2,408.4723763,Infection naive,BNT162b2,4 +320,2022-02-03,2022-01-12,BA.2,1851.03122316392,Infection naive,BNT162b2,4 +321,2021-12-21,2021-12-04,Delta,540.720247258749,Infection naive,BNT162b2,3 +321,2021-12-21,2021-12-04,BA.1,581.013775248015,Infection naive,BNT162b2,3 +321,2021-12-21,2021-12-04,BA.2,895.055299397559,Infection naive,BNT162b2,3 +322,2021-09-23,2021-09-23,Delta,110.9499539,Infection naive,BNT162b2,3 +322,2021-10-08,2021-09-23,Delta,450.210391439885,Infection naive,BNT162b2,3 +322,2022-01-12,2021-09-23,Delta,337.1312525,Infection naive,BNT162b2,3 +322,2021-09-23,2021-09-23,BA.1,5,Infection naive,BNT162b2,3 +322,2021-10-08,2021-09-23,BA.1,484.608050076034,Infection naive,BNT162b2,3 +322,2022-01-12,2021-09-23,BA.1,159.9045069,Infection naive,BNT162b2,3 +322,2021-09-23,2021-09-23,BA.2,48.3353845899999,Infection naive,BNT162b2,3 +322,2021-10-08,2021-09-23,BA.2,489.302957574615,Infection naive,BNT162b2,3 +322,2022-01-12,2021-09-23,BA.2,168.982618900001,Infection naive,BNT162b2,3 +323,2022-01-10,2021-12-27,Delta,1102.671148,Infection naive,BNT162b2,4 +323,2022-01-10,2021-12-27,BA.1,376.8272787,Infection naive,BNT162b2,4 +323,2022-01-10,2021-12-27,BA.2,279.9625424,Infection naive,BNT162b2,4 +324,2022-01-06,2021-12-06,Delta,466.274599125873,Previously infected (Pre-Omicron),BNT162b2,4 +324,2022-01-06,2021-12-06,BA.1,565.935252528117,Previously infected (Pre-Omicron),BNT162b2,4 +324,2022-01-06,2021-12-06,BA.2,1022.60895100414,Previously infected (Pre-Omicron),BNT162b2,4 +325,2022-01-10,2021-12-17,Delta,765.089836799748,Infection naive,BNT162b2,3 +325,2022-01-10,2021-12-17,BA.1,1169.36466759434,Infection naive,BNT162b2,3 +325,2022-03-21,2021-12-17,BA.1,812.076691199999,Infection naive,BNT162b2,3 +325,2022-07-14,2021-12-17,BA.1,679.710320999999,Infection naive,BNT162b2,3 +325,2023-01-09,2021-12-17,BA.1,738.083564065439,Infection naive,BNT162b2,3 +325,2022-01-10,2021-12-17,BA.2,2560,Infection naive,BNT162b2,3 +325,2022-03-21,2021-12-17,BA.2,673.778740699998,Infection naive,BNT162b2,3 +325,2022-07-14,2021-12-17,BA.2,489.732016200002,Infection naive,BNT162b2,3 +325,2023-01-09,2021-12-17,BA.2,467.912213808484,Infection naive,BNT162b2,3 +326,2022-01-10,2021-12-17,Delta,399.619148689102,Previously infected (Pre-Omicron),BNT162b2,5 +326,2022-01-10,2021-12-17,BA.1,836.641400363159,Previously infected (Pre-Omicron),BNT162b2,5 +326,2022-01-10,2021-12-17,BA.2,912.481990551174,Previously infected (Pre-Omicron),BNT162b2,5 +327,2022-01-18,2021-12-19,Delta,819.944131630485,Infection naive,BNT162b2,3 +327,2022-04-21,2021-12-19,Delta,905.312250299999,Infection naive,BNT162b2,3 +327,2022-07-21,2021-12-19,Delta,368.0142372,Infection naive,BNT162b2,3 +327,2022-01-18,2021-12-19,BA.1,465.457942306709,Infection naive,BNT162b2,3 +327,2022-04-21,2021-12-19,BA.1,538.3557447,Infection naive,BNT162b2,3 +327,2022-07-21,2021-12-19,BA.1,374.5223516,Infection naive,BNT162b2,3 +327,2022-01-18,2021-12-19,BA.2,782.039761423418,Infection naive,BNT162b2,3 +327,2022-04-21,2021-12-19,BA.2,294.304785699999,Infection naive,BNT162b2,3 +327,2022-07-21,2021-12-19,BA.2,168.982618900001,Infection naive,BNT162b2,3 +328,2022-01-31,2022-01-09,Delta,945.869453300001,Infection naive,BNT162b2,3 +328,2022-07-28,2022-01-09,Delta,166.483379566172,Infection naive,BNT162b2,3 +328,2022-01-31,2022-01-09,BA.1,267.9582455,Infection naive,BNT162b2,3 +328,2022-07-28,2022-01-09,BA.1,88.650088612918,Infection naive,BNT162b2,3 +328,2022-01-31,2022-01-09,BA.2,308.83990327619,Infection naive,BNT162b2,3 +328,2022-07-28,2022-01-09,BA.2,161.878767574277,Infection naive,BNT162b2,3 +329,2022-01-12,2022-01-12,Delta,795.869672629679,Infection naive,mRNA1273,4 +329,2022-02-14,2022-01-12,Delta,2560,Infection naive,mRNA1273,4 +329,2022-07-13,2022-01-12,Delta,1351.320042,Infection naive,mRNA1273,4 +329,2022-07-13,2022-01-12,Delta,1351.320042,Infection naive,mRNA1273,4 +329,2022-01-12,2022-01-12,BA.1,192.051552220915,Infection naive,mRNA1273,4 +329,2022-02-14,2022-01-12,BA.1,875.655876800002,Infection naive,mRNA1273,4 +329,2022-07-13,2022-01-12,BA.1,793.779699099999,Infection naive,mRNA1273,4 +329,2022-07-13,2022-01-12,BA.1,793.779699099999,Infection naive,mRNA1273,4 +329,2022-01-12,2022-01-12,BA.2,404.553045739805,Infection naive,mRNA1273,4 +329,2022-02-14,2022-01-12,BA.2,424.905364999999,Infection naive,mRNA1273,4 +329,2022-07-13,2022-01-12,BA.2,552.6994515,Infection naive,mRNA1273,4 +329,2022-07-13,2022-01-12,BA.2,552.6994515,Infection naive,mRNA1273,4 +330,2021-12-22,2021-12-04,Delta,1730.227569,Previously infected (Pre-Omicron),BNT162b2,5 +330,2022-03-21,2021-12-04,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,5 +330,2021-12-22,2021-12-04,BA.1,536.942009099999,Previously infected (Pre-Omicron),BNT162b2,5 +330,2022-03-21,2021-12-04,BA.1,1036.142364,Previously infected (Pre-Omicron),BNT162b2,5 +330,2021-12-22,2021-12-04,BA.2,493.6105138,Previously infected (Pre-Omicron),BNT162b2,5 +330,2022-03-21,2021-12-04,BA.2,573.424953800002,Previously infected (Pre-Omicron),BNT162b2,5 +331,2022-01-12,2021-12-20,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,4 +331,2022-03-21,2021-12-20,Delta,1156.116072,Previously infected (Pre-Omicron),BNT162b2,4 +331,2022-01-12,2021-12-20,BA.1,749.163633699998,Previously infected (Pre-Omicron),BNT162b2,4 +331,2022-03-21,2021-12-20,BA.1,570.917437600002,Previously infected (Pre-Omicron),BNT162b2,4 +331,2022-01-12,2021-12-20,BA.2,1016.35399218106,Previously infected (Pre-Omicron),BNT162b2,4 +331,2022-03-21,2021-12-20,BA.2,348.8547177,Previously infected (Pre-Omicron),BNT162b2,4 +332,2022-01-12,2021-12-28,Delta,1278.724205,Infection naive,BNT162b2,4 +332,2022-06-28,2021-12-28,Delta,1606.007105,Infection naive,BNT162b2,4 +332,2022-09-13,2021-12-28,Delta,1826.85426543381,Infection naive,BNT162b2,4 +332,2022-01-12,2021-12-28,BA.1,1180.693532,Infection naive,BNT162b2,4 +332,2022-06-28,2021-12-28,BA.1,789.616202500002,Infection naive,BNT162b2,4 +332,2022-09-13,2021-12-28,BA.1,838.109307219395,Infection naive,BNT162b2,4 +332,2022-01-12,2021-12-28,BA.2,637.581888699998,Infection naive,BNT162b2,4 +332,2022-06-28,2021-12-28,BA.2,847.713681400001,Infection naive,BNT162b2,4 +332,2022-09-13,2021-12-28,BA.2,787.542650715989,Infection naive,BNT162b2,4 +333,2021-10-19,2021-09-27,Delta,567.922887899999,Previously infected (Pre-Omicron),BNT162b2,4 +333,2022-02-01,2021-09-27,Delta,941.733283600002,Previously infected (Pre-Omicron),BNT162b2,4 +333,2021-10-19,2021-09-27,BA.1,397.8716637,Previously infected (Pre-Omicron),BNT162b2,4 +333,2022-02-01,2021-09-27,BA.1,429.021869900001,Previously infected (Pre-Omicron),BNT162b2,4 +334,2021-10-20,2021-09-29,Delta,852.183514919433,Infection naive,BNT162b2,3 +334,2021-10-20,2021-09-29,BA.1,181.893485747939,Infection naive,BNT162b2,3 +334,2021-10-20,2021-09-29,BA.2,553.184101072553,Infection naive,BNT162b2,3 +335,2021-12-02,2021-12-02,Delta,47.45384432,Infection naive,BNT162b2,3 +335,2021-12-02,2021-12-02,BA.1,62.87268354,Infection naive,BNT162b2,3 +335,2021-12-02,2021-12-02,BA.2,90.2969230099998,Infection naive,BNT162b2,3 +335,2022-01-27,2021-12-02,BA.2,178.2633469,Infection naive,BNT162b2,3 +336,2021-12-13,2021-12-11,Delta,173.484915266028,Infection naive,BNT162b2,4 +336,2021-12-13,2021-12-11,BA.1,130.824916440835,Infection naive,BNT162b2,4 +336,2021-12-13,2021-12-11,BA.2,138.252119478444,Infection naive,BNT162b2,4 +337,2021-12-14,2021-12-01,Delta,524.844107700001,Infection naive,mRNA1273,3 +337,2021-12-14,2021-12-01,BA.1,365.1226004,Infection naive,mRNA1273,3 +337,2021-12-14,2021-12-01,BA.2,287.4217376,Infection naive,mRNA1273,3 +338,2022-02-23,2022-01-23,Delta,2560,Infection naive,BNT162b2,4 +338,2022-07-11,2022-01-23,Delta,2560,Infection naive,BNT162b2,4 +338,2022-09-13,2022-01-23,Delta,2560,Infection naive,BNT162b2,4 +338,2022-02-23,2022-01-23,BA.1,2560,Infection naive,BNT162b2,4 +338,2022-07-11,2022-01-23,BA.1,2560,Infection naive,BNT162b2,4 +338,2022-09-13,2022-01-23,BA.1,1466.08527467861,Infection naive,BNT162b2,4 +338,2022-02-23,2022-01-23,BA.2,2560,Infection naive,BNT162b2,4 +338,2022-07-11,2022-01-23,BA.2,1262.022346,Infection naive,BNT162b2,4 +338,2022-09-13,2022-01-23,BA.2,1344.23216015257,Infection naive,BNT162b2,4 +339,2021-12-20,2021-12-09,Delta,793.084261557086,Infection naive,BNT162b2,3 +339,2022-03-21,2021-12-09,Delta,1272.0171,Infection naive,BNT162b2,3 +339,2021-12-20,2021-12-09,BA.1,1187.95988762313,Infection naive,BNT162b2,3 +339,2022-03-21,2021-12-09,BA.1,508.096322500001,Infection naive,BNT162b2,3 +339,2021-12-20,2021-12-09,BA.2,2560,Infection naive,BNT162b2,3 +339,2022-03-21,2021-12-09,BA.2,431.2840209,Infection naive,BNT162b2,3 +340,2021-11-09,2021-10-15,Delta,2560,Infection naive,AZD1222,3 +340,2021-11-09,2021-10-15,BA.1,502.339724100001,Infection naive,AZD1222,3 +340,2021-11-09,2021-10-15,BA.2,554.640601099999,Infection naive,AZD1222,3 +341,2022-01-12,2021-12-27,Delta,2038.383576,Infection naive,BNT162b2,4 +341,2022-07-13,2021-12-27,Delta,2363.832972,Infection naive,BNT162b2,4 +341,2022-01-12,2021-12-27,BA.1,1514.41013,Infection naive,BNT162b2,4 +341,2022-07-13,2021-12-27,BA.1,817.074464,Infection naive,BNT162b2,4 +341,2022-01-12,2021-12-27,BA.2,934.333704000001,Infection naive,BNT162b2,4 +341,2022-07-13,2021-12-27,BA.2,904.519098100002,Infection naive,BNT162b2,4 +342,2021-10-20,2021-09-30,Delta,491.882959322048,Infection naive,BNT162b2,3 +342,2022-01-31,2021-09-30,Delta,262.8407466,Infection naive,BNT162b2,3 +342,2021-10-20,2021-09-30,BA.1,378.482335009051,Infection naive,BNT162b2,3 +342,2022-01-31,2021-09-30,BA.1,162.8750199,Infection naive,BNT162b2,3 +342,2021-10-20,2021-09-30,BA.2,413.878182069713,Infection naive,BNT162b2,3 +342,2022-01-31,2021-09-30,BA.2,181.8934857,Infection naive,BNT162b2,3 +343,2021-12-02,2021-10-28,Delta,1307.05326853793,Infection naive,BNT162b2,3 +343,2021-12-02,2021-10-28,BA.1,828.613748121574,Infection naive,BNT162b2,3 +343,2021-12-02,2021-10-28,BA.2,2090.85991807806,Infection naive,BNT162b2,3 +344,2021-10-21,2021-09-26,Delta,703.34669477964,Previously infected (Pre-Omicron),BNT162b2,4 +344,2022-01-19,2021-09-26,Delta,1203.681588,Previously infected (Pre-Omicron),BNT162b2,4 +344,2021-10-21,2021-09-26,BA.1,539.773202581618,Previously infected (Pre-Omicron),BNT162b2,4 +344,2022-01-19,2021-09-26,BA.1,278.494095800001,Previously infected (Pre-Omicron),BNT162b2,4 +344,2021-10-21,2021-09-26,BA.2,776.575323115736,Previously infected (Pre-Omicron),BNT162b2,4 +344,2022-01-19,2021-09-26,BA.2,167.507970100001,Previously infected (Pre-Omicron),BNT162b2,4 +345,2021-12-20,2021-12-06,Delta,1263.12898504433,Infection naive,BNT162b2,3 +345,2021-12-20,2021-12-06,BA.1,2386.73390602813,Infection naive,BNT162b2,3 +345,2021-12-20,2021-12-06,BA.2,2173.07043913927,Infection naive,BNT162b2,3 +346,2021-10-13,2021-09-22,Delta,326.659577338246,Infection naive,BNT162b2,3 +346,2021-12-14,2021-09-22,Delta,181.893485747939,Infection naive,BNT162b2,3 +346,2021-10-13,2021-09-22,BA.1,366.404956627397,Infection naive,BNT162b2,3 +346,2021-12-14,2021-09-22,BA.1,149.20688905334,Infection naive,BNT162b2,3 +346,2021-10-13,2021-09-22,BA.2,480.800288495822,Infection naive,BNT162b2,3 +346,2021-12-14,2021-09-22,BA.2,209.828310596494,Infection naive,BNT162b2,3 +347,2022-01-27,2022-01-01,Delta,2560,Infection naive,BNT162b2,4 +347,2022-06-16,2022-01-01,Delta,2560,Infection naive,BNT162b2,4 +347,2022-10-18,2022-01-01,Delta,2560,Infection naive,BNT162b2,4 +347,2022-01-27,2022-01-01,BA.1,2560,Infection naive,BNT162b2,4 +347,2022-06-16,2022-01-01,BA.1,2560,Infection naive,BNT162b2,4 +347,2022-10-18,2022-01-01,BA.1,2560,Infection naive,BNT162b2,4 +347,2022-01-27,2022-01-01,BA.2,1552.036304,Infection naive,BNT162b2,4 +347,2022-06-16,2022-01-01,BA.2,2560,Infection naive,BNT162b2,4 +347,2022-10-18,2022-01-01,BA.2,2043.75051577686,Infection naive,BNT162b2,4 +348,2022-01-11,2021-12-24,Delta,637.023297500002,Infection naive,BNT162b2,5 +348,2022-01-11,2021-12-24,BA.1,619.947592600001,Infection naive,BNT162b2,5 +348,2022-01-11,2021-12-24,BA.2,314.853003900001,Infection naive,BNT162b2,5 +349,2021-10-21,2021-09-25,Delta,1431.79723,Previously infected (Pre-Omicron),BNT162b2,4 +349,2022-01-20,2021-09-25,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,4 +349,2022-07-20,2021-09-25,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,4 +349,2022-09-15,2021-09-25,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,4 +349,2021-10-21,2021-09-25,BA.1,616.695872099999,Previously infected (Pre-Omicron),BNT162b2,4 +349,2022-01-20,2021-09-25,BA.1,875.655876800002,Previously infected (Pre-Omicron),BNT162b2,4 +349,2022-07-20,2021-09-25,BA.1,686.2953892,Previously infected (Pre-Omicron),BNT162b2,4 +349,2022-09-15,2021-09-25,BA.1,724.622403289654,Previously infected (Pre-Omicron),BNT162b2,4 +350,2022-01-06,2021-12-21,Delta,1935.65165714561,Previously infected (Pre-Omicron),BNT162b2,4 +350,2023-01-19,2021-12-21,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,4 +350,2022-01-06,2021-12-21,BA.1,946.698864667414,Previously infected (Pre-Omicron),BNT162b2,4 +350,2023-01-19,2021-12-21,BA.1,926.180119727617,Previously infected (Pre-Omicron),BNT162b2,4 +350,2022-01-06,2021-12-21,BA.2,1660.39873057065,Previously infected (Pre-Omicron),BNT162b2,4 +350,2023-01-19,2021-12-21,BA.2,861.194012061097,Previously infected (Pre-Omicron),BNT162b2,4 +351,2022-01-26,2021-12-13,Delta,1247.723964,Infection naive,BNT162b2,5 +351,2022-07-26,2021-12-13,Delta,1947.56425994387,Infection naive,BNT162b2,5 +351,2022-01-26,2021-12-13,BA.1,664.978284,Infection naive,BNT162b2,5 +351,2022-07-26,2021-12-13,BA.1,578.980323970047,Infection naive,BNT162b2,5 +351,2022-01-26,2021-12-13,BA.2,496.2132284,Infection naive,BNT162b2,5 +351,2022-07-26,2021-12-13,BA.2,571.919125585972,Infection naive,BNT162b2,5 +352,2022-01-12,2021-12-09,Delta,2560,Infection naive,mRNA1273,3 +352,2022-01-12,2021-12-09,BA.1,1210.028373,Infection naive,mRNA1273,3 +352,2022-01-12,2021-12-09,BA.2,2221.21299491991,Infection naive,mRNA1273,3 +353,2021-12-14,2021-11-30,Delta,423.418267139935,Infection naive,BNT162b2,3 +353,2021-12-14,2021-11-30,BA.1,135.611763819448,Infection naive,BNT162b2,3 +353,2021-12-14,2021-11-30,BA.2,144.066376448908,Infection naive,BNT162b2,3 +354,2022-01-20,2021-12-14,Delta,2560,Infection naive,BNT162b2,3 +354,2022-01-20,2021-12-14,BA.1,1542.543015,Infection naive,BNT162b2,3 +354,2022-01-20,2021-12-14,BA.2,2560,Infection naive,BNT162b2,3 +355,2022-01-27,2022-01-12,Delta,1942.449908,Infection naive,BNT162b2,4 +355,2022-01-27,2022-01-12,BA.1,1122.171236,Infection naive,BNT162b2,4 +355,2022-01-27,2022-01-12,BA.2,829.340340599999,Infection naive,BNT162b2,4 +356,2022-01-25,2021-12-06,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,5 +356,2022-04-07,2021-12-06,Delta,710.160753399998,Previously infected (Pre-Omicron),BNT162b2,5 +356,2022-01-25,2021-12-06,BA.1,450.2103914,Previously infected (Pre-Omicron),BNT162b2,5 +356,2022-04-07,2021-12-06,BA.1,403.1371776,Previously infected (Pre-Omicron),BNT162b2,5 +356,2022-01-25,2021-12-06,BA.2,450.605170671148,Previously infected (Pre-Omicron),BNT162b2,5 +356,2022-04-07,2021-12-06,BA.2,207.4510108,Previously infected (Pre-Omicron),BNT162b2,5 +357,2021-10-20,2021-09-27,Delta,881.817503800291,Infection naive,BNT162b2,3 +357,2022-01-12,2021-09-27,Delta,239.940998400001,Infection naive,BNT162b2,3 +357,2021-10-20,2021-09-27,BA.1,394.399585050684,Infection naive,BNT162b2,3 +357,2022-01-12,2021-09-27,BA.1,109.5007983,Infection naive,BNT162b2,3 +357,2021-10-20,2021-09-27,BA.2,386.867294188,Infection naive,BNT162b2,3 +357,2022-01-12,2021-09-27,BA.2,96.51677725,Infection naive,BNT162b2,3 +358,2021-12-21,2021-12-21,Delta,703.963443499999,Infection naive,BNT162b2,4 +358,2021-12-21,2021-12-21,BA.1,575.4388939,Infection naive,BNT162b2,4 +358,2021-12-21,2021-12-21,BA.2,290.715467800001,Infection naive,BNT162b2,4 +359,2022-01-13,2021-12-08,Delta,305.073316164906,Infection naive,BNT162b2,3 +359,2022-01-13,2021-12-08,BA.1,484.608050076034,Infection naive,BNT162b2,3 +359,2022-01-13,2021-12-08,BA.2,208.36215258891,Infection naive,BNT162b2,3 +360,2022-01-26,2022-01-08,Delta,2560,Previously infected (Pre-Omicron),mRNA1273,4 +360,2022-04-19,2022-01-08,Delta,644.888304400001,Previously infected (Pre-Omicron),mRNA1273,4 +360,2022-01-26,2022-01-08,BA.1,1429.289509,Previously infected (Pre-Omicron),mRNA1273,4 +360,2022-04-19,2022-01-08,BA.1,398.9192356,Previously infected (Pre-Omicron),mRNA1273,4 +360,2022-08-09,2022-01-08,BA.1,657.44425406711,Previously infected (Pre-Omicron),mRNA1273,4 +360,2022-01-26,2022-01-08,BA.2,1056.316015,Previously infected (Pre-Omicron),mRNA1273,4 +360,2022-04-19,2022-01-08,BA.2,455.768913199999,Previously infected (Pre-Omicron),mRNA1273,4 +360,2022-08-09,2022-01-08,BA.2,773.857439047404,Previously infected (Pre-Omicron),mRNA1273,4 +361,2021-11-23,2021-10-26,Delta,629.805990224052,Previously infected (Pre-Omicron),BNT162b2,4 +361,2022-06-14,2021-10-26,Delta,602.272908000001,Previously infected (Pre-Omicron),BNT162b2,4 +361,2021-11-23,2021-10-26,BA.1,712.654926766754,Previously infected (Pre-Omicron),BNT162b2,4 +361,2022-06-14,2021-10-26,BA.1,357.835666999999,Previously infected (Pre-Omicron),BNT162b2,4 +361,2021-11-23,2021-10-26,BA.2,1809.32542842838,Previously infected (Pre-Omicron),BNT162b2,4 +361,2022-06-14,2021-10-26,BA.2,453.775892300001,Previously infected (Pre-Omicron),BNT162b2,4 +362,2022-01-06,2021-12-01,Delta,1241.17945950518,Previously infected (Pre-Omicron),BNT162b2,4 +362,2022-01-06,2021-12-01,BA.1,662.650970934107,Previously infected (Pre-Omicron),BNT162b2,4 +362,2022-01-06,2021-12-01,BA.2,1179.65911592567,Previously infected (Pre-Omicron),BNT162b2,4 +363,2021-11-15,2021-10-13,Delta,647.720706641833,Infection naive,BNT162b2,3 +363,2021-12-20,2021-10-13,Delta,624.309906500002,Infection naive,BNT162b2,3 +363,2021-11-15,2021-10-13,BA.1,294.046942684355,Infection naive,BNT162b2,3 +363,2021-12-20,2021-10-13,BA.1,335.9513494,Infection naive,BNT162b2,3 +363,2021-11-15,2021-10-13,BA.2,286.415809491187,Infection naive,BNT162b2,3 +363,2021-12-20,2021-10-13,BA.2,270.0803764,Infection naive,BNT162b2,3 +364,2022-01-27,2021-12-19,Delta,2024.14053899999,Infection naive,mRNA1273,3 +364,2022-01-27,2021-12-19,BA.1,791.695213799998,Infection naive,mRNA1273,3 +364,2022-01-27,2021-12-19,BA.2,1613.06081980431,Infection naive,mRNA1273,3 +365,2022-01-27,2022-01-16,Delta,2365.905763,Infection naive,BNT162b2,4 +365,2022-06-22,2022-01-16,Delta,2560,Infection naive,BNT162b2,4 +365,2022-06-22,2022-01-16,Delta,2560,Infection naive,BNT162b2,4 +365,2022-01-27,2022-01-16,BA.1,1330.167733,Infection naive,BNT162b2,4 +365,2022-06-22,2022-01-16,BA.1,1117.264121,Infection naive,BNT162b2,4 +365,2022-06-22,2022-01-16,BA.1,1117.264121,Infection naive,BNT162b2,4 +365,2022-01-27,2022-01-16,BA.2,770.473456500002,Infection naive,BNT162b2,4 +365,2022-06-22,2022-01-16,BA.2,706.435851100002,Infection naive,BNT162b2,4 +365,2022-06-22,2022-01-16,BA.2,706.435851100002,Infection naive,BNT162b2,4 +366,2021-10-21,2021-10-01,Delta,710.783477200002,Infection naive,BNT162b2,3 +366,2021-10-21,2021-10-01,BA.1,178.7327035,Infection naive,BNT162b2,3 +367,2022-01-11,2021-12-13,Delta,1549.31799,Infection naive,BNT162b2,5 +367,2022-01-11,2021-12-13,BA.1,814.928806099998,Infection naive,BNT162b2,5 +367,2022-01-11,2021-12-13,BA.2,362.253684400001,Infection naive,BNT162b2,5 +368,2022-01-26,2021-12-22,Delta,2268.432972,Infection naive,BNT162b2,5 +368,2022-01-26,2021-12-22,BA.1,835.1760645,Infection naive,BNT162b2,5 +368,2022-01-26,2021-12-22,BA.2,524.384287100001,Infection naive,BNT162b2,5 +369,2022-01-27,2021-12-11,Delta,2504.6098615548,Infection naive,mRNA1273,3 +369,2022-04-21,2021-12-11,Delta,1608.824882,Infection naive,mRNA1273,3 +369,2022-07-06,2021-12-11,Delta,828.613748100001,Infection naive,mRNA1273,3 +369,2022-07-06,2021-12-11,Delta,828.613748100001,Infection naive,mRNA1273,3 +369,2022-01-27,2021-12-11,BA.1,1233.58757758038,Infection naive,mRNA1273,3 +369,2022-04-21,2021-12-11,BA.1,644.888304400001,Infection naive,mRNA1273,3 +369,2022-07-06,2021-12-11,BA.1,655.717789100002,Infection naive,mRNA1273,3 +369,2022-07-06,2021-12-11,BA.1,655.717789100002,Infection naive,mRNA1273,3 +369,2023-01-26,2021-12-11,BA.1,1211.08941948382,Infection naive,mRNA1273,3 +369,2022-01-27,2021-12-11,BA.2,1701.65205460315,Infection naive,mRNA1273,3 +369,2022-04-21,2021-12-11,BA.2,370.6038007,Infection naive,mRNA1273,3 +369,2022-07-06,2021-12-11,BA.2,258.953353199999,Infection naive,mRNA1273,3 +369,2022-07-06,2021-12-11,BA.2,258.953353199999,Infection naive,mRNA1273,3 +370,2021-12-20,2021-12-03,Delta,123.363450961127,Infection naive,BNT162b2,3 +370,2021-12-20,2021-12-03,BA.1,139.224942275291,Infection naive,BNT162b2,3 +370,2021-12-20,2021-12-03,BA.2,240.78370117809,Infection naive,BNT162b2,3 +370,2022-06-22,2021-12-03,BA.2,384.8381158,Infection naive,BNT162b2,3 +371,2022-01-17,2022-01-06,Delta,1011.909602,Infection naive,BNT162b2,4 +371,2022-01-17,2022-01-06,BA.1,779.9861056,Infection naive,BNT162b2,4 +371,2022-07-21,2022-01-06,BA.1,1149.044494,Infection naive,BNT162b2,4 +371,2022-09-27,2022-01-06,BA.1,773.179455604743,Infection naive,BNT162b2,4 +371,2022-01-17,2022-01-06,BA.2,666.145003900002,Infection naive,BNT162b2,4 +372,2022-02-08,2022-01-20,Delta,340.994632500001,Infection naive,BNT162b2,5 +372,2022-02-08,2022-01-20,BA.1,370.279111400002,Infection naive,BNT162b2,5 +372,2022-02-08,2022-01-20,BA.2,200.4794992,Infection naive,BNT162b2,5 +373,2022-01-26,2022-01-10,Delta,2560,Infection naive,BNT162b2,4 +373,2022-01-26,2022-01-10,BA.1,976.191043000001,Infection naive,BNT162b2,4 +373,2022-01-26,2022-01-10,BA.2,798.6648664,Infection naive,BNT162b2,4 +374,2021-10-27,2021-10-13,Delta,2349.3741916176,Infection naive,BNT162b2,3 +374,2022-01-26,2021-10-13,Delta,658.5977553,Infection naive,BNT162b2,3 +374,2021-10-27,2021-10-13,BA.1,1392.19645642261,Infection naive,BNT162b2,3 +374,2022-01-26,2021-10-13,BA.1,300.034888199999,Infection naive,BNT162b2,3 +374,2021-10-27,2021-10-13,BA.2,2560,Infection naive,BNT162b2,3 +374,2022-01-26,2021-10-13,BA.2,286.164878000001,Infection naive,BNT162b2,3 +375,2022-01-18,2021-12-30,Delta,283.419099346198,Infection naive,BNT162b2,3 +375,2022-01-18,2021-12-30,BA.1,266.786497376005,Infection naive,BNT162b2,3 +375,2022-01-18,2021-12-30,BA.2,309.110717948433,Infection naive,BNT162b2,3 +376,2022-01-31,2022-01-06,Delta,1627.261327,Infection naive,BNT162b2,3 +376,2022-01-31,2022-01-06,BA.1,315.6819927,Infection naive,BNT162b2,3 +376,2022-01-31,2022-01-06,BA.2,376.167284452902,Infection naive,BNT162b2,3 +377,2022-01-18,2021-12-18,Delta,2560,Infection naive,BNT162b2,4 +377,2022-07-14,2021-12-18,Delta,2560,Infection naive,BNT162b2,4 +377,2022-09-27,2021-12-18,Delta,2560,Infection naive,BNT162b2,4 +377,2022-01-18,2021-12-18,BA.1,2560,Infection naive,BNT162b2,4 +377,2022-07-14,2021-12-18,BA.1,1004.838967,Infection naive,BNT162b2,4 +377,2022-09-27,2021-12-18,BA.1,1480.28878357321,Infection naive,BNT162b2,4 +377,2022-01-18,2021-12-18,BA.2,2560,Infection naive,BNT162b2,4 +377,2022-07-14,2021-12-18,BA.2,1888.725457,Infection naive,BNT162b2,4 +377,2022-09-27,2021-12-18,BA.2,1930.56858774056,Infection naive,BNT162b2,4 +378,2021-10-20,2021-09-30,Delta,570.917437600002,Infection naive,BNT162b2,3 +378,2021-12-02,2021-09-30,Delta,285.163348701958,Infection naive,BNT162b2,3 +378,2022-07-11,2021-09-30,Delta,287.9260258,Infection naive,BNT162b2,3 +378,2022-07-11,2021-09-30,Delta,287.9260258,Infection naive,BNT162b2,3 +378,2022-09-23,2021-09-30,Delta,175.934987838245,Infection naive,BNT162b2,3 +378,2021-10-20,2021-09-30,BA.1,193.4029393,Infection naive,BNT162b2,3 +378,2021-12-02,2021-09-30,BA.1,209.644478131743,Infection naive,BNT162b2,3 +378,2022-07-11,2021-09-30,BA.1,150.652413,Infection naive,BNT162b2,3 +378,2022-07-11,2021-09-30,BA.1,150.652413,Infection naive,BNT162b2,3 +378,2022-09-23,2021-09-30,BA.1,51.8917502918684,Infection naive,BNT162b2,3 +379,2021-10-19,2021-09-24,Delta,565.935252528117,Previously infected (Pre-Omicron),BNT162b2,4 +379,2022-01-13,2021-09-24,Delta,594.406413699998,Previously infected (Pre-Omicron),BNT162b2,4 +379,2021-10-19,2021-09-24,BA.1,480.800288495822,Previously infected (Pre-Omicron),BNT162b2,4 +379,2022-01-13,2021-09-24,BA.1,339.801208099999,Previously infected (Pre-Omicron),BNT162b2,4 +379,2021-10-19,2021-09-24,BA.2,625.953676461774,Previously infected (Pre-Omicron),BNT162b2,4 +379,2022-01-13,2021-09-24,BA.2,262.6104695,Previously infected (Pre-Omicron),BNT162b2,4 +380,2022-02-04,2022-01-22,Delta,862.704996999998,Infection naive,BNT162b2,4 +380,2022-06-22,2022-01-22,Delta,792.389433300002,Infection naive,BNT162b2,4 +380,2022-06-22,2022-01-22,Delta,792.389433300002,Infection naive,BNT162b2,4 +380,2022-02-04,2022-01-22,BA.1,410.2664204,Infection naive,BNT162b2,4 +380,2022-02-04,2022-01-22,BA.2,256.468671600001,Infection naive,BNT162b2,4 +381,2021-10-21,2021-10-02,Delta,718.928751797537,Infection naive,BNT162b2,3 +381,2022-10-28,2021-10-02,Delta,1288.85123037021,Infection naive,BNT162b2,3 +381,2021-10-21,2021-10-02,BA.1,274.375190590695,Infection naive,BNT162b2,3 +381,2022-10-28,2021-10-02,BA.1,229.451553490228,Infection naive,BNT162b2,3 +381,2021-10-21,2021-10-02,BA.2,343.996563099253,Infection naive,BNT162b2,3 +381,2022-10-28,2021-10-02,BA.2,585.102128091902,Infection naive,BNT162b2,3 +382,2022-01-12,2021-11-23,Delta,708.9169421,Infection naive,BNT162b2,3 +382,2022-01-12,2021-11-23,BA.1,348.243716,Infection naive,BNT162b2,3 +382,2022-01-12,2021-11-23,BA.2,486.736488333012,Infection naive,BNT162b2,3 +383,2021-10-21,2021-10-21,Delta,660.331803091456,Infection naive,BNT162b2,4 +383,2021-10-21,2021-10-21,BA.1,207.632919817654,Infection naive,BNT162b2,4 +383,2021-10-21,2021-10-21,BA.2,269.607343977655,Infection naive,BNT162b2,4 +384,2021-12-20,2021-12-07,Delta,978.761294520298,Infection naive,BNT162b2,3 +384,2021-12-20,2021-12-07,BA.1,339.801208136535,Infection naive,BNT162b2,3 +384,2021-12-20,2021-12-07,BA.2,659.175264710604,Infection naive,BNT162b2,3 +385,2022-01-12,2021-12-08,Delta,846.228952899999,Infection naive,BNT162b2,3 +385,2022-03-21,2021-12-08,Delta,520.2639875,Infection naive,BNT162b2,3 +385,2022-01-12,2021-12-08,BA.1,436.608868200001,Infection naive,BNT162b2,3 +385,2022-03-21,2021-12-08,BA.1,452.981126300002,Infection naive,BNT162b2,3 +385,2022-01-12,2021-12-08,BA.2,490.16145102938,Infection naive,BNT162b2,3 +385,2022-03-21,2021-12-08,BA.2,217.1249195,Infection naive,BNT162b2,3 diff --git a/inst/delta_full.rds b/inst/delta_full.rds index 97a6b1a..bd7f2bf 100644 --- a/inst/delta_full.rds +++ b/inst/delta_full.rds @@ -1,2256 +1,2256 @@ -pid,day,last_exp_day,titre_type,value,censored,infection_history,last_vax_type,exp_num -1,2021-03-10,2021-03-08,Ancestral,175.9349878,0,Infection naive,BNT162b2,2 -1,2021-04-15,2021-03-08,Ancestral,607.57499,0,Infection naive,BNT162b2,2 -1,2021-07-08,2021-03-08,Ancestral,179.0462942,0,Infection naive,BNT162b2,2 -1,2021-03-10,2021-03-08,Alpha,5,-1,Infection naive,BNT162b2,2 -1,2021-04-15,2021-03-08,Alpha,416.790471100001,0,Infection naive,BNT162b2,2 -1,2021-07-08,2021-03-08,Alpha,103.5273976,0,Infection naive,BNT162b2,2 -1,2021-03-10,2021-03-08,Delta,5,-1,Infection naive,BNT162b2,2 -1,2021-04-15,2021-03-08,Delta,288.1785015,0,Infection naive,BNT162b2,2 -1,2021-07-08,2021-03-08,Delta,128.8900265,0,Infection naive,BNT162b2,2 -2,2021-02-23,2021-01-11,Ancestral,595.449313599998,0,Infection naive,BNT162b2,2 -2,2021-03-16,2021-01-11,Ancestral,430.528648299999,0,Infection naive,BNT162b2,2 -2,2021-04-27,2021-01-11,Ancestral,198.2081189,0,Infection naive,BNT162b2,2 -2,2021-07-27,2021-01-11,Ancestral,110.3680043,0,Infection naive,BNT162b2,2 -2,2021-02-23,2021-01-11,Alpha,189.0453557,0,Infection naive,BNT162b2,2 -2,2021-03-16,2021-01-11,Alpha,142.9343886,0,Infection naive,BNT162b2,2 -2,2021-04-27,2021-01-11,Alpha,133.8404918,0,Infection naive,BNT162b2,2 -2,2021-07-27,2021-01-11,Alpha,93.9296002800003,0,Infection naive,BNT162b2,2 -2,2021-02-23,2021-01-11,Delta,72.02175288,0,Infection naive,BNT162b2,2 -2,2021-03-16,2021-01-11,Delta,92.7027533499997,0,Infection naive,BNT162b2,2 -2,2021-04-27,2021-01-11,Delta,46.2628491,0,Infection naive,BNT162b2,2 -2,2021-07-27,2021-01-11,Delta,54.55012061,0,Infection naive,BNT162b2,2 -3,2021-04-26,2021-03-23,Ancestral,1624.411259,0,Infection naive,BNT162b2,2 -3,2021-07-19,2021-03-23,Ancestral,1023.505653,0,Infection naive,BNT162b2,2 -3,2021-04-26,2021-03-23,Alpha,1095.926476,0,Infection naive,BNT162b2,2 -3,2021-07-19,2021-03-23,Alpha,961.753256300001,0,Infection naive,BNT162b2,2 -3,2021-04-26,2021-03-23,Delta,965.977355399999,0,Infection naive,BNT162b2,2 -3,2021-07-19,2021-03-23,Delta,643.758814500001,0,Infection naive,BNT162b2,2 -4,2021-03-17,2021-02-24,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -4,2021-04-27,2021-02-24,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -4,2021-07-20,2021-02-24,Ancestral,930.247978699997,0,Previously infected (Pre-Omicron),BNT162b2,3 -4,2021-03-17,2021-02-24,Alpha,2294.428243,0,Previously infected (Pre-Omicron),BNT162b2,3 -4,2021-04-27,2021-02-24,Alpha,1049.854881,0,Previously infected (Pre-Omicron),BNT162b2,3 -4,2021-07-20,2021-02-24,Alpha,933.515125899998,0,Previously infected (Pre-Omicron),BNT162b2,3 -4,2021-03-17,2021-02-24,Delta,694.1600408,0,Previously infected (Pre-Omicron),BNT162b2,3 -4,2021-04-27,2021-02-24,Delta,452.981126300002,0,Previously infected (Pre-Omicron),BNT162b2,3 -4,2021-07-20,2021-02-24,Delta,734.212202300003,0,Previously infected (Pre-Omicron),BNT162b2,3 -5,2021-02-04,2021-01-11,Ancestral,2560,1,Infection naive,BNT162b2,2 -5,2021-03-23,2021-01-11,Ancestral,426.024114999999,0,Infection naive,BNT162b2,2 -5,2021-05-12,2021-01-11,Ancestral,213.5390003,0,Infection naive,BNT162b2,2 -5,2021-08-04,2021-01-11,Ancestral,368.0142372,0,Infection naive,BNT162b2,2 -5,2021-02-04,2021-01-11,Alpha,540.7202473,0,Infection naive,BNT162b2,2 -5,2021-03-23,2021-01-11,Alpha,415.331774000001,0,Infection naive,BNT162b2,2 -5,2021-05-12,2021-01-11,Alpha,250.909971299999,0,Infection naive,BNT162b2,2 -5,2021-08-04,2021-01-11,Alpha,183.9779073,0,Infection naive,BNT162b2,2 -5,2021-02-04,2021-01-11,Delta,311.83196,0,Infection naive,BNT162b2,2 -5,2021-03-23,2021-01-11,Delta,280.4537432,0,Infection naive,BNT162b2,2 -5,2021-05-12,2021-01-11,Delta,110.5616476,0,Infection naive,BNT162b2,2 -5,2021-08-04,2021-01-11,Delta,79.1725334000003,0,Infection naive,BNT162b2,2 -6,2021-03-11,2021-03-11,Ancestral,5,-1,Previously infected (Pre-Omicron),BNT162b2,3 -6,2021-03-11,2021-03-11,Alpha,5,-1,Previously infected (Pre-Omicron),BNT162b2,3 -6,2021-03-11,2021-03-11,Delta,5,-1,Previously infected (Pre-Omicron),BNT162b2,3 -7,2021-06-02,2021-05-02,Ancestral,115.312395150577,0,Infection naive,AZD1222,1 -7,2021-06-02,2021-05-02,Alpha,69.1756913491035,0,Infection naive,AZD1222,1 -7,2021-06-02,2021-05-02,Delta,5,-1,Infection naive,AZD1222,1 -8,2021-06-11,2021-05-06,Ancestral,209.0939465,0,Previously infected (Pre-Omicron),AZD1222,3 -8,2021-07-07,2021-05-06,Ancestral,50.10396289,0,Previously infected (Pre-Omicron),AZD1222,3 -8,2021-06-11,2021-05-06,Alpha,5,-1,Previously infected (Pre-Omicron),AZD1222,3 -8,2021-06-11,2021-05-06,Delta,5,-1,Previously infected (Pre-Omicron),AZD1222,3 -8,2021-07-07,2021-05-06,Delta,5,-1,Previously infected (Pre-Omicron),AZD1222,3 -8,2021-09-20,2021-05-06,Delta,5,-1,Previously infected (Pre-Omicron),AZD1222,3 -9,2021-02-02,2021-01-05,Ancestral,657.444254099999,0,Infection naive,BNT162b2,2 -9,2021-02-23,2021-01-05,Ancestral,934.333704000001,0,Infection naive,BNT162b2,2 -9,2021-04-06,2021-01-05,Ancestral,399.619148699999,0,Infection naive,BNT162b2,2 -9,2021-02-02,2021-01-05,Alpha,396.131820300001,0,Infection naive,BNT162b2,2 -9,2021-02-23,2021-01-05,Alpha,282.922704900001,0,Infection naive,BNT162b2,2 -9,2021-02-02,2021-01-05,Delta,316.513164100001,0,Infection naive,BNT162b2,2 -9,2021-02-23,2021-01-05,Delta,306.681909900001,0,Infection naive,BNT162b2,2 -9,2021-04-06,2021-01-05,Delta,174.2468752,0,Infection naive,BNT162b2,2 -10,2021-05-26,2021-04-14,Ancestral,2232.92503000001,0,Previously infected (Pre-Omicron),AZD1222,2 -10,2021-05-26,2021-04-14,Alpha,607.57498998905,0,Previously infected (Pre-Omicron),AZD1222,2 -10,2021-05-26,2021-04-14,Delta,2560,1,Previously infected (Pre-Omicron),AZD1222,2 -11,2021-04-19,2021-03-24,Ancestral,913.282125200002,0,Infection naive,BNT162b2,2 -11,2021-06-28,2021-03-24,Ancestral,413.878182099999,0,Infection naive,BNT162b2,2 -11,2021-09-23,2021-03-24,Ancestral,165.610148600001,0,Infection naive,BNT162b2,2 -11,2021-04-19,2021-03-24,Alpha,462.6108909,0,Infection naive,BNT162b2,2 -11,2021-06-28,2021-03-24,Alpha,203.4890863,0,Infection naive,BNT162b2,2 -11,2021-09-23,2021-03-24,Alpha,198.555879680297,0,Infection naive,BNT162b2,2 -11,2021-04-19,2021-03-24,Delta,226.8519274,0,Infection naive,BNT162b2,2 -11,2021-06-28,2021-03-24,Delta,128.5515581,0,Infection naive,BNT162b2,2 -11,2021-09-23,2021-03-24,Delta,127.5414765,0,Infection naive,BNT162b2,2 -12,2021-03-16,2021-03-13,Ancestral,253.785292299999,0,Infection naive,BNT162b2,2 -12,2021-03-16,2021-03-13,Alpha,48.0397331146746,0,Infection naive,BNT162b2,2 -12,2021-03-16,2021-03-13,Delta,47.70405944,0,Infection naive,BNT162b2,2 -13,2021-04-23,2021-04-22,Ancestral,121.1135496,0,Previously infected (Pre-Omicron),BNT162b2,3 -13,2021-04-23,2021-04-22,Alpha,60.8130894204273,0,Previously infected (Pre-Omicron),BNT162b2,3 -13,2021-04-23,2021-04-22,Delta,5,-1,Previously infected (Pre-Omicron),BNT162b2,3 -14,2021-02-25,2021-01-07,Ancestral,197.860967200001,0,Infection naive,BNT162b2,2 -14,2021-02-25,2021-01-07,Alpha,172.7262873,0,Infection naive,BNT162b2,2 -14,2021-03-18,2021-01-07,Alpha,132.0923549,0,Infection naive,BNT162b2,2 -14,2021-02-25,2021-01-07,Delta,45.3395584000001,0,Infection naive,BNT162b2,2 -14,2021-03-18,2021-01-07,Delta,45.41910771,0,Infection naive,BNT162b2,2 -15,2021-03-08,2021-02-26,Ancestral,1526.40370200001,0,Infection naive,BNT162b2,2 -15,2021-04-16,2021-02-26,Ancestral,662.070416499999,0,Infection naive,BNT162b2,2 -15,2021-07-12,2021-02-26,Ancestral,106.0995805,0,Infection naive,BNT162b2,2 -15,2021-10-04,2021-02-26,Ancestral,129.342704377527,0,Infection naive,BNT162b2,2 -15,2021-03-08,2021-02-26,Alpha,974.481292799999,0,Infection naive,BNT162b2,2 -15,2021-04-16,2021-02-26,Alpha,798.6648664,0,Infection naive,BNT162b2,2 -15,2021-07-12,2021-02-26,Alpha,51.5743457200001,0,Infection naive,BNT162b2,2 -15,2021-10-04,2021-02-26,Alpha,95.6745110753895,0,Infection naive,BNT162b2,2 -15,2021-03-08,2021-02-26,Delta,334.482275799999,0,Infection naive,BNT162b2,2 -15,2021-04-16,2021-02-26,Delta,311.013081500001,0,Infection naive,BNT162b2,2 -15,2021-07-12,2021-02-26,Delta,45.8591303399999,0,Infection naive,BNT162b2,2 -15,2021-10-04,2021-02-26,Delta,5,-1,Infection naive,BNT162b2,2 -16,2021-04-19,2021-03-23,Ancestral,2560,1,Infection naive,BNT162b2,2 -16,2021-06-29,2021-03-23,Ancestral,281.438731800001,0,Infection naive,BNT162b2,2 -16,2021-04-19,2021-03-23,Alpha,971.922280699998,0,Infection naive,BNT162b2,2 -16,2021-06-29,2021-03-23,Alpha,524.384287100001,0,Infection naive,BNT162b2,2 -16,2021-04-19,2021-03-23,Delta,467.092688800001,0,Infection naive,BNT162b2,2 -16,2021-06-29,2021-03-23,Delta,344.2982058,0,Infection naive,BNT162b2,2 -17,2021-04-15,2021-03-15,Ancestral,780.670057600001,0,Infection naive,BNT162b2,2 -17,2021-06-28,2021-03-15,Ancestral,224.478422,0,Infection naive,BNT162b2,2 -17,2021-04-15,2021-03-15,Alpha,1123.155242,0,Infection naive,BNT162b2,2 -17,2021-06-28,2021-03-15,Alpha,201.8901902,0,Infection naive,BNT162b2,2 -17,2021-04-15,2021-03-15,Delta,389.931141,0,Infection naive,BNT162b2,2 -17,2021-06-28,2021-03-15,Delta,161.1708918,0,Infection naive,BNT162b2,2 -18,2021-03-12,2021-03-01,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -18,2021-04-06,2021-03-01,Ancestral,944.2128099,0,Previously infected (Pre-Omicron),BNT162b2,3 -18,2021-03-12,2021-03-01,Alpha,617.236638700002,0,Previously infected (Pre-Omicron),BNT162b2,3 -18,2021-04-06,2021-03-01,Alpha,599.6392433,0,Previously infected (Pre-Omicron),BNT162b2,3 -18,2021-05-18,2021-03-01,Alpha,221.3523331,0,Previously infected (Pre-Omicron),BNT162b2,3 -18,2021-08-10,2021-03-01,Alpha,155.7546505,0,Previously infected (Pre-Omicron),BNT162b2,3 -18,2021-03-12,2021-03-01,Delta,369.630585900001,0,Previously infected (Pre-Omicron),BNT162b2,3 -18,2021-04-06,2021-03-01,Delta,199.078665199999,0,Previously infected (Pre-Omicron),BNT162b2,3 -18,2021-05-18,2021-03-01,Delta,76.04389667,0,Previously infected (Pre-Omicron),BNT162b2,3 -18,2021-08-10,2021-03-01,Delta,47.4954555099999,0,Previously infected (Pre-Omicron),BNT162b2,3 -19,2021-04-08,2021-02-26,Ancestral,2560,1,Infection naive,BNT162b2,2 -19,2021-06-22,2021-02-26,Ancestral,122.9316995,0,Infection naive,BNT162b2,2 -19,2021-04-08,2021-02-26,Alpha,186.9035213,0,Infection naive,BNT162b2,2 -19,2021-06-22,2021-02-26,Alpha,121.538915500001,0,Infection naive,BNT162b2,2 -19,2021-04-08,2021-02-26,Delta,155.7546505,0,Infection naive,BNT162b2,2 -19,2021-06-22,2021-02-26,Delta,86.3494333899999,0,Infection naive,BNT162b2,2 -20,2021-04-16,2021-03-09,Ancestral,791.001602599998,0,Infection naive,BNT162b2,2 -20,2021-09-23,2021-03-09,Ancestral,141.811295282677,0,Infection naive,BNT162b2,2 -20,2021-10-19,2021-03-09,Ancestral,130.8249164,0,Infection naive,BNT162b2,2 -20,2021-04-16,2021-03-09,Alpha,810.654379200002,0,Infection naive,BNT162b2,2 -20,2021-09-23,2021-03-09,Alpha,163.447057328495,0,Infection naive,BNT162b2,2 -20,2021-10-19,2021-03-09,Alpha,81.1396092100002,0,Infection naive,BNT162b2,2 -20,2021-04-16,2021-03-09,Delta,318.1820781,0,Infection naive,BNT162b2,2 -20,2021-09-23,2021-03-09,Delta,80.290662041196,0,Infection naive,BNT162b2,2 -20,2021-10-19,2021-03-09,Delta,45.8591303399999,0,Infection naive,BNT162b2,2 -21,2021-04-19,2021-03-26,Ancestral,713.279837599999,0,Infection naive,BNT162b2,2 -21,2021-06-29,2021-03-26,Ancestral,102.4442116,0,Infection naive,BNT162b2,2 -21,2021-04-19,2021-03-26,Alpha,447.8489687,0,Infection naive,BNT162b2,2 -21,2021-06-29,2021-03-26,Alpha,175.6268464,0,Infection naive,BNT162b2,2 -21,2021-04-19,2021-03-26,Delta,171.9709766,0,Infection naive,BNT162b2,2 -21,2021-06-29,2021-03-26,Delta,136.0880493,0,Infection naive,BNT162b2,2 -22,2021-04-19,2021-03-09,Ancestral,200.1283693,0,Previously infected (Pre-Omicron),AZD1222,2 -22,2021-04-19,2021-03-09,Alpha,67.0270167161586,0,Previously infected (Pre-Omicron),AZD1222,2 -22,2021-04-19,2021-03-09,Delta,5,-1,Previously infected (Pre-Omicron),AZD1222,2 -23,2021-04-06,2021-02-28,Ancestral,97.87985316,0,Infection naive,BNT162b2,2 -23,2021-09-21,2021-02-28,Ancestral,81.9256938794759,0,Infection naive,BNT162b2,2 -23,2021-04-06,2021-02-28,Alpha,270.7914815,0,Infection naive,BNT162b2,2 -23,2021-09-21,2021-02-28,Alpha,5,-1,Infection naive,BNT162b2,2 -23,2021-04-06,2021-02-28,Delta,74.3957217499998,0,Infection naive,BNT162b2,2 -23,2021-09-21,2021-02-28,Delta,5,-1,Infection naive,BNT162b2,2 -24,2021-05-20,2021-04-22,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -24,2021-08-10,2021-04-22,Ancestral,483.335457300001,0,Previously infected (Pre-Omicron),BNT162b2,3 -24,2021-05-20,2021-04-22,Alpha,1971.609858,0,Previously infected (Pre-Omicron),BNT162b2,3 -24,2021-08-10,2021-04-22,Alpha,517.535122900002,0,Previously infected (Pre-Omicron),BNT162b2,3 -24,2021-05-20,2021-04-22,Delta,1613.06082,0,Previously infected (Pre-Omicron),BNT162b2,3 -24,2021-08-10,2021-04-22,Delta,421.197373199999,0,Previously infected (Pre-Omicron),BNT162b2,3 -25,2021-02-01,2021-01-12,Ancestral,167.654854,0,Infection naive,BNT162b2,2 -25,2021-02-22,2021-01-12,Ancestral,288.684117400001,0,Infection naive,BNT162b2,2 -25,2021-04-06,2021-01-12,Ancestral,160.4661115,0,Infection naive,BNT162b2,2 -25,2021-06-29,2021-01-12,Ancestral,157.677675,0,Infection naive,BNT162b2,2 -25,2021-02-01,2021-01-12,Alpha,82.6469229800001,0,Infection naive,BNT162b2,2 -25,2021-02-22,2021-01-12,Alpha,89.0394470600002,0,Infection naive,BNT162b2,2 -25,2021-04-06,2021-01-12,Alpha,46.7930015600001,0,Infection naive,BNT162b2,2 -25,2021-06-29,2021-01-12,Alpha,53.0878793300002,0,Infection naive,BNT162b2,2 -25,2021-02-01,2021-01-12,Delta,49.4062145500001,0,Infection naive,BNT162b2,2 -25,2021-02-22,2021-01-12,Delta,60.2823961099999,0,Infection naive,BNT162b2,2 -25,2021-04-06,2021-01-12,Delta,54.4068706399999,0,Infection naive,BNT162b2,2 -25,2021-06-29,2021-01-12,Delta,75.97727393,0,Infection naive,BNT162b2,2 -26,2021-04-13,2021-03-07,Ancestral,2560,1,Infection naive,BNT162b2,2 -26,2021-04-13,2021-03-07,Alpha,591.8071482,0,Infection naive,BNT162b2,2 -26,2021-04-13,2021-03-07,Delta,292.761111899999,0,Infection naive,BNT162b2,2 -27,2021-04-19,2021-03-14,Ancestral,205.1006451,0,Previously infected (Pre-Omicron),BNT162b2,3 -27,2021-06-29,2021-03-14,Ancestral,80.4315338800003,0,Previously infected (Pre-Omicron),BNT162b2,3 -27,2021-09-28,2021-03-14,Ancestral,81.7105549699998,0,Previously infected (Pre-Omicron),BNT162b2,3 -27,2021-04-19,2021-03-14,Alpha,153.9899911,0,Previously infected (Pre-Omicron),BNT162b2,3 -27,2021-06-29,2021-03-14,Alpha,103.4366963,0,Previously infected (Pre-Omicron),BNT162b2,3 -27,2021-09-28,2021-03-14,Alpha,5,-1,Previously infected (Pre-Omicron),BNT162b2,3 -27,2021-04-19,2021-03-14,Delta,86.3494333899999,0,Previously infected (Pre-Omicron),BNT162b2,3 -27,2021-06-29,2021-03-14,Delta,54.0267071200002,0,Previously infected (Pre-Omicron),BNT162b2,3 -27,2021-09-28,2021-03-14,Delta,5,-1,Previously infected (Pre-Omicron),BNT162b2,3 -28,2021-02-02,2021-01-14,Ancestral,128.551558075558,0,Infection naive,BNT162b2,1 -28,2021-02-24,2021-01-14,Ancestral,129.796972124846,0,Infection naive,BNT162b2,1 -28,2021-02-02,2021-01-14,Alpha,209.828310596494,0,Infection naive,BNT162b2,1 -28,2021-02-24,2021-01-14,Alpha,148.68468983509,0,Infection naive,BNT162b2,1 -28,2021-02-02,2021-01-14,Delta,110.368004349061,0,Infection naive,BNT162b2,1 -28,2021-02-24,2021-01-14,Delta,45.3395583998115,0,Infection naive,BNT162b2,1 -29,2021-02-12,2021-01-12,Ancestral,375.837720899999,0,Infection naive,BNT162b2,2 -29,2021-03-02,2021-01-12,Ancestral,306.950832300001,0,Infection naive,BNT162b2,2 -29,2021-02-12,2021-01-12,Alpha,133.606076800001,0,Infection naive,BNT162b2,2 -29,2021-03-02,2021-01-12,Alpha,233.1002888,0,Infection naive,BNT162b2,2 -29,2021-04-12,2021-01-12,Alpha,105.7282497,0,Infection naive,BNT162b2,2 -29,2021-02-12,2021-01-12,Delta,105.1736888,0,Infection naive,BNT162b2,2 -29,2021-03-02,2021-01-12,Delta,162.162787600001,0,Infection naive,BNT162b2,2 -29,2021-04-12,2021-01-12,Delta,94.0119650100003,0,Infection naive,BNT162b2,2 -30,2021-02-03,2021-01-08,Ancestral,5,-1,Infection naive,BNT162b2,2 -30,2021-02-24,2021-01-08,Ancestral,265.3871612,0,Infection naive,BNT162b2,2 -30,2021-02-03,2021-01-08,Alpha,170.769343600001,0,Infection naive,BNT162b2,2 -30,2021-02-24,2021-01-08,Alpha,169.5761069,0,Infection naive,BNT162b2,2 -30,2021-04-09,2021-01-08,Alpha,80.3610670899999,0,Infection naive,BNT162b2,2 -30,2021-02-03,2021-01-08,Delta,130.5957831,0,Infection naive,BNT162b2,2 -30,2021-02-24,2021-01-08,Delta,65.8045786499999,0,Infection naive,BNT162b2,2 -30,2021-04-09,2021-01-08,Delta,73.0388933099998,0,Infection naive,BNT162b2,2 -31,2021-04-23,2021-03-29,Ancestral,1103.638055,0,Previously infected (Pre-Omicron),BNT162b2,3 -31,2021-07-16,2021-03-29,Ancestral,529.464548799999,0,Previously infected (Pre-Omicron),BNT162b2,3 -31,2021-12-02,2021-03-29,Ancestral,237.6387421,0,Previously infected (Pre-Omicron),BNT162b2,3 -31,2021-04-23,2021-03-29,Alpha,485.458306200001,0,Previously infected (Pre-Omicron),BNT162b2,3 -31,2021-07-16,2021-03-29,Alpha,294.304785699999,0,Previously infected (Pre-Omicron),BNT162b2,3 -31,2021-12-02,2021-03-29,Alpha,226.454607549813,0,Previously infected (Pre-Omicron),BNT162b2,3 -31,2021-04-23,2021-03-29,Delta,678.519842099999,0,Previously infected (Pre-Omicron),BNT162b2,3 -31,2021-07-16,2021-03-29,Delta,258.953353199999,0,Previously infected (Pre-Omicron),BNT162b2,3 -31,2021-12-02,2021-03-29,Delta,89.2738825000001,0,Previously infected (Pre-Omicron),BNT162b2,3 -32,2021-02-18,2021-01-10,Ancestral,869.537303600003,0,Infection naive,BNT162b2,2 -32,2021-02-18,2021-01-10,Alpha,228.2480448,0,Infection naive,BNT162b2,2 -32,2021-04-01,2021-01-10,Alpha,102.4442116,0,Infection naive,BNT162b2,2 -32,2021-02-18,2021-01-10,Delta,129.9107881,0,Infection naive,BNT162b2,2 -32,2021-04-01,2021-01-10,Delta,46.2223177999999,0,Infection naive,BNT162b2,2 -32,2021-05-13,2021-01-10,Delta,71.8956103600002,0,Infection naive,BNT162b2,2 -32,2021-08-16,2021-01-10,Delta,42.7911527100001,0,Infection naive,BNT162b2,2 -33,2021-04-27,2021-03-12,Ancestral,667.8989231,0,Infection naive,BNT162b2,2 -33,2021-07-08,2021-03-12,Ancestral,305.340828000001,0,Infection naive,BNT162b2,2 -33,2021-12-07,2021-03-12,Ancestral,171.369106900001,0,Infection naive,BNT162b2,2 -33,2021-04-27,2021-03-12,Alpha,554.640601099999,0,Infection naive,BNT162b2,2 -33,2021-07-08,2021-03-12,Alpha,191.379403800001,0,Infection naive,BNT162b2,2 -33,2021-12-07,2021-03-12,Alpha,224.28175447665,0,Infection naive,BNT162b2,2 -33,2021-04-27,2021-03-12,Delta,454.173798000001,0,Infection naive,BNT162b2,2 -33,2021-07-08,2021-03-12,Delta,135.255644,0,Infection naive,BNT162b2,2 -33,2021-12-07,2021-03-12,Delta,92.6215356399999,0,Infection naive,BNT162b2,2 -34,2021-02-17,2021-01-12,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -34,2021-03-10,2021-01-12,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -34,2021-02-17,2021-01-12,Alpha,2041.95996799999,0,Previously infected (Pre-Omicron),BNT162b2,3 -34,2021-03-10,2021-01-12,Alpha,1606.007105,0,Previously infected (Pre-Omicron),BNT162b2,3 -34,2021-02-17,2021-01-12,Delta,1262.022346,0,Previously infected (Pre-Omicron),BNT162b2,3 -34,2021-03-10,2021-01-12,Delta,431.2840209,0,Previously infected (Pre-Omicron),BNT162b2,3 -35,2021-04-19,2021-04-07,Ancestral,232.692025200001,0,Infection naive,AZD1222,2 -35,2021-06-28,2021-04-07,Ancestral,258.953353199999,0,Infection naive,AZD1222,2 -35,2021-04-19,2021-04-07,Alpha,86.1981966500001,0,Infection naive,AZD1222,2 -35,2021-04-19,2021-04-07,Delta,51.8462874599999,0,Infection naive,AZD1222,2 -35,2021-06-28,2021-04-07,Delta,42.6413908199999,0,Infection naive,AZD1222,2 -36,2021-03-23,2021-03-06,Ancestral,1076.882446,0,Infection naive,BNT162b2,2 -36,2021-04-20,2021-03-06,Ancestral,572.922571000002,0,Infection naive,BNT162b2,2 -36,2021-03-23,2021-03-06,Alpha,804.284739699998,0,Infection naive,BNT162b2,2 -36,2021-04-20,2021-03-06,Alpha,419.355529400001,0,Infection naive,BNT162b2,2 -36,2021-03-23,2021-03-06,Delta,448.241677300001,0,Infection naive,BNT162b2,2 -36,2021-04-20,2021-03-06,Delta,168.096279000001,0,Infection naive,BNT162b2,2 -37,2021-03-11,2021-03-02,Ancestral,2560,1,Infection naive,BNT162b2,2 -37,2021-04-07,2021-03-02,Ancestral,2560,1,Infection naive,BNT162b2,2 -37,2021-05-19,2021-03-02,Ancestral,2560,1,Infection naive,BNT162b2,2 -37,2021-08-11,2021-03-02,Ancestral,186.7397735,0,Infection naive,BNT162b2,2 -37,2021-03-11,2021-03-02,Alpha,975.335793300001,0,Infection naive,BNT162b2,2 -37,2021-04-07,2021-03-02,Alpha,1182.765086,0,Infection naive,BNT162b2,2 -37,2021-05-19,2021-03-02,Alpha,388.907172100001,0,Infection naive,BNT162b2,2 -37,2021-08-11,2021-03-02,Alpha,295.856599099999,0,Infection naive,BNT162b2,2 -37,2021-03-11,2021-03-02,Delta,488.0180358,0,Infection naive,BNT162b2,2 -37,2021-04-07,2021-03-02,Delta,940.083884500002,0,Infection naive,BNT162b2,2 -37,2021-05-19,2021-03-02,Delta,288.684117400001,0,Infection naive,BNT162b2,2 -37,2021-08-11,2021-03-02,Delta,162.447306,0,Infection naive,BNT162b2,2 -38,2021-04-15,2021-03-25,Ancestral,1004.838967,0,Infection naive,BNT162b2,2 -38,2021-07-27,2021-03-25,Ancestral,192.726061299999,0,Infection naive,BNT162b2,2 -38,2021-04-15,2021-03-25,Alpha,441.612219099999,0,Infection naive,BNT162b2,2 -38,2021-07-27,2021-03-25,Alpha,117.5575229,0,Infection naive,BNT162b2,2 -38,2021-04-15,2021-03-25,Delta,403.490679399999,0,Infection naive,BNT162b2,2 -38,2021-07-27,2021-03-25,Delta,85.0723322500003,0,Infection naive,BNT162b2,2 -39,2021-02-02,2021-01-12,Ancestral,2560,1,Infection naive,BNT162b2,2 -39,2021-02-23,2021-01-12,Ancestral,2560,1,Infection naive,BNT162b2,2 -39,2021-04-14,2021-01-12,Ancestral,1312.793954,0,Infection naive,BNT162b2,2 -39,2021-02-02,2021-01-12,Alpha,2308.548869,0,Infection naive,BNT162b2,2 -39,2021-02-23,2021-01-12,Alpha,1138.019305,0,Infection naive,BNT162b2,2 -39,2021-04-14,2021-01-12,Alpha,1286.593871,0,Infection naive,BNT162b2,2 -39,2021-02-02,2021-01-12,Delta,877.961425299999,0,Infection naive,BNT162b2,2 -39,2021-02-23,2021-01-12,Delta,601.2180569,0,Infection naive,BNT162b2,2 -39,2021-04-14,2021-01-12,Delta,890.360596700001,0,Infection naive,BNT162b2,2 -40,2021-06-09,2021-04-30,Ancestral,398.9192356,0,Infection naive,AZD1222,2 -40,2021-07-07,2021-04-30,Ancestral,116.5316419,0,Infection naive,AZD1222,2 -40,2021-09-17,2021-04-30,Ancestral,111.1446182,0,Infection naive,AZD1222,2 -40,2021-06-09,2021-04-30,Alpha,180.62252,0,Infection naive,AZD1222,2 -40,2021-07-07,2021-04-30,Alpha,116.3275425,0,Infection naive,AZD1222,2 -40,2021-09-17,2021-04-30,Alpha,110.8527497,0,Infection naive,AZD1222,2 -40,2021-06-09,2021-04-30,Delta,62.98299513,0,Infection naive,AZD1222,2 -40,2021-07-07,2021-04-30,Delta,45.93959126,0,Infection naive,AZD1222,2 -40,2021-09-17,2021-04-30,Delta,41.6076312399999,0,Infection naive,AZD1222,2 -41,2021-04-19,2021-03-14,Ancestral,2560,1,Infection naive,BNT162b2,2 -41,2021-06-28,2021-03-14,Ancestral,283.170793299999,0,Infection naive,BNT162b2,2 -41,2021-04-19,2021-03-14,Alpha,1754.663025,0,Infection naive,BNT162b2,2 -41,2021-06-28,2021-03-14,Alpha,166.629365,0,Infection naive,BNT162b2,2 -41,2021-04-19,2021-03-14,Delta,453.775892300001,0,Infection naive,BNT162b2,2 -41,2021-06-28,2021-03-14,Delta,125.3251748,0,Infection naive,BNT162b2,2 -42,2021-05-28,2021-04-08,Ancestral,254.899938100001,0,Previously infected (Pre-Omicron),AZD1222,3 -42,2021-07-16,2021-04-08,Ancestral,171.669778,0,Previously infected (Pre-Omicron),AZD1222,3 -42,2021-05-28,2021-04-08,Alpha,149.0761676,0,Previously infected (Pre-Omicron),AZD1222,3 -42,2021-07-16,2021-04-08,Alpha,118.3847264,0,Previously infected (Pre-Omicron),AZD1222,3 -42,2021-05-28,2021-04-08,Delta,44.20162747,0,Previously infected (Pre-Omicron),AZD1222,3 -42,2021-07-16,2021-04-08,Delta,60.8664150300001,0,Previously infected (Pre-Omicron),AZD1222,3 -43,2021-04-23,2021-03-23,Ancestral,483.759283100001,0,Infection naive,BNT162b2,2 -43,2021-04-23,2021-03-23,Alpha,148.9455606,0,Infection naive,BNT162b2,2 -43,2021-04-23,2021-03-23,Delta,109.3090131,0,Infection naive,BNT162b2,2 -44,2021-06-09,2021-04-30,Ancestral,130.2528353,0,Infection naive,AZD1222,2 -44,2021-07-08,2021-04-30,Ancestral,40.95634405,0,Infection naive,AZD1222,2 -44,2021-06-09,2021-04-30,Alpha,58.0018224500001,0,Infection naive,AZD1222,2 -44,2021-07-08,2021-04-30,Alpha,60.44111598,0,Infection naive,AZD1222,2 -44,2021-06-09,2021-04-30,Delta,5,-1,Infection naive,AZD1222,2 -45,2021-04-16,2021-04-01,Ancestral,2560,1,Infection naive,BNT162b2,2 -45,2021-07-26,2021-04-01,Ancestral,540.246517400001,0,Infection naive,BNT162b2,2 -45,2021-10-19,2021-04-01,Ancestral,651.706981500002,0,Infection naive,BNT162b2,2 -45,2021-04-16,2021-04-01,Alpha,2211.499906,0,Infection naive,BNT162b2,2 -45,2021-07-26,2021-04-01,Alpha,835.1760645,0,Infection naive,BNT162b2,2 -45,2021-10-19,2021-04-01,Alpha,416.790471097569,0,Infection naive,BNT162b2,2 -45,2021-04-16,2021-04-01,Delta,896.625694799998,0,Infection naive,BNT162b2,2 -45,2021-07-26,2021-04-01,Delta,394.399585100001,0,Infection naive,BNT162b2,2 -45,2021-10-19,2021-04-01,Delta,394.745425100001,0,Infection naive,BNT162b2,2 -46,2021-03-16,2021-03-16,Ancestral,144.572355573196,0,Infection naive,BNT162b2,2 -46,2021-04-15,2021-03-16,Ancestral,2270.422109,0,Infection naive,BNT162b2,2 -46,2021-07-07,2021-03-16,Ancestral,214.8531858,0,Infection naive,BNT162b2,2 -46,2021-10-07,2021-03-16,Ancestral,218.4611738,0,Infection naive,BNT162b2,2 -46,2021-03-16,2021-03-16,Alpha,66.8510021028247,0,Infection naive,BNT162b2,2 -46,2021-04-15,2021-03-16,Alpha,588.187260700001,0,Infection naive,BNT162b2,2 -46,2021-07-07,2021-03-16,Alpha,297.4165949,0,Infection naive,BNT162b2,2 -46,2021-10-07,2021-03-16,Alpha,185.272483477799,0,Infection naive,BNT162b2,2 -46,2021-03-16,2021-03-16,Delta,5,-1,Infection naive,BNT162b2,2 -46,2021-04-15,2021-03-16,Delta,315.4054209,0,Infection naive,BNT162b2,2 -46,2021-07-07,2021-03-16,Delta,130.0247039,0,Infection naive,BNT162b2,2 -46,2021-10-07,2021-03-16,Delta,97.7084214600002,0,Infection naive,BNT162b2,2 -47,2021-04-20,2021-03-20,Ancestral,1186.919105,0,Infection naive,BNT162b2,2 -47,2021-06-29,2021-03-20,Ancestral,501.899619800001,0,Infection naive,BNT162b2,2 -47,2021-04-20,2021-03-20,Alpha,1334.839449,0,Infection naive,BNT162b2,2 -47,2021-06-29,2021-03-20,Alpha,318.1820781,0,Infection naive,BNT162b2,2 -47,2021-04-20,2021-03-20,Delta,832.982871400002,0,Infection naive,BNT162b2,2 -47,2021-06-29,2021-03-20,Delta,405.618209199999,0,Infection naive,BNT162b2,2 -48,2021-03-30,2021-03-20,Ancestral,2560,1,Infection naive,BNT162b2,2 -48,2021-05-11,2021-03-20,Ancestral,571.919125600001,0,Infection naive,BNT162b2,2 -48,2021-07-08,2021-03-20,Ancestral,91.4117737899999,0,Infection naive,BNT162b2,2 -48,2021-03-30,2021-03-20,Alpha,397.1748113,0,Infection naive,BNT162b2,2 -48,2021-05-11,2021-03-20,Alpha,238.682470999999,0,Infection naive,BNT162b2,2 -48,2021-07-08,2021-03-20,Alpha,176.7077087,0,Infection naive,BNT162b2,2 -48,2021-03-30,2021-03-20,Delta,233.1002888,0,Infection naive,BNT162b2,2 -48,2021-05-11,2021-03-20,Delta,166.7754785,0,Infection naive,BNT162b2,2 -48,2021-07-08,2021-03-20,Delta,135.3742465,0,Infection naive,BNT162b2,2 -49,2021-02-18,2021-01-05,Ancestral,2560,1,Infection naive,BNT162b2,2 -49,2021-02-18,2021-01-05,Alpha,815.643398600001,0,Infection naive,BNT162b2,2 -49,2021-02-18,2021-01-05,Delta,458.1720963,0,Infection naive,BNT162b2,2 -50,2021-02-09,2021-01-19,Ancestral,110.464783536617,0,Previously infected (Pre-Omicron),BNT162b2,2 -50,2021-03-02,2021-01-19,Ancestral,104.713777301928,0,Previously infected (Pre-Omicron),BNT162b2,2 -50,2021-02-09,2021-01-19,Alpha,5,-1,Previously infected (Pre-Omicron),BNT162b2,2 -50,2021-03-02,2021-01-19,Alpha,92.0550005127693,0,Previously infected (Pre-Omicron),BNT162b2,2 -50,2021-02-09,2021-01-19,Delta,5,-1,Previously infected (Pre-Omicron),BNT162b2,2 -50,2021-03-02,2021-01-19,Delta,5,-1,Previously infected (Pre-Omicron),BNT162b2,2 -51,2021-04-08,2021-03-30,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -51,2021-05-20,2021-03-30,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -51,2021-08-10,2021-03-30,Ancestral,331.854113199999,0,Previously infected (Pre-Omicron),BNT162b2,3 -51,2021-04-08,2021-03-30,Alpha,1494.629897,0,Previously infected (Pre-Omicron),BNT162b2,3 -51,2021-05-20,2021-03-30,Alpha,1527.74217,0,Previously infected (Pre-Omicron),BNT162b2,3 -51,2021-08-10,2021-03-30,Alpha,274.615783899999,0,Previously infected (Pre-Omicron),BNT162b2,3 -51,2021-04-08,2021-03-30,Delta,828.613748100001,0,Previously infected (Pre-Omicron),BNT162b2,3 -51,2021-05-20,2021-03-30,Delta,922.938643800003,0,Previously infected (Pre-Omicron),BNT162b2,3 -51,2021-08-10,2021-03-30,Delta,200.6552951,0,Previously infected (Pre-Omicron),BNT162b2,3 -52,2021-04-15,2021-03-11,Ancestral,2560,1,Infection naive,BNT162b2,2 -52,2021-07-16,2021-03-11,Ancestral,346.113625,0,Infection naive,BNT162b2,2 -52,2021-09-24,2021-03-11,Ancestral,306.950832311165,0,Infection naive,BNT162b2,2 -52,2021-04-15,2021-03-11,Alpha,859.6856735,0,Infection naive,BNT162b2,2 -52,2021-07-16,2021-03-11,Alpha,439.6811036,0,Infection naive,BNT162b2,2 -52,2021-09-24,2021-03-11,Alpha,359.72246663529,0,Infection naive,BNT162b2,2 -52,2021-04-15,2021-03-11,Delta,482.488919199999,0,Infection naive,BNT162b2,2 -52,2021-07-16,2021-03-11,Delta,249.375238500001,0,Infection naive,BNT162b2,2 -52,2021-09-24,2021-03-11,Delta,242.903429471149,0,Infection naive,BNT162b2,2 -53,2021-05-04,2021-03-23,Ancestral,600.165053300002,0,Infection naive,BNT162b2,2 -53,2021-06-29,2021-03-23,Ancestral,286.666961000001,0,Infection naive,BNT162b2,2 -53,2021-10-07,2021-03-23,Ancestral,128.8900265,0,Infection naive,BNT162b2,2 -53,2021-05-04,2021-03-23,Alpha,824.267541600003,0,Infection naive,BNT162b2,2 -53,2021-06-29,2021-03-23,Alpha,173.4849153,0,Infection naive,BNT162b2,2 -53,2021-10-07,2021-03-23,Alpha,107.503723789764,0,Infection naive,BNT162b2,2 -53,2021-05-04,2021-03-23,Delta,586.6426663,0,Infection naive,BNT162b2,2 -53,2021-06-29,2021-03-23,Delta,137.889066,0,Infection naive,BNT162b2,2 -53,2021-10-07,2021-03-23,Delta,58.15453771,0,Infection naive,BNT162b2,2 -54,2021-04-26,2021-03-14,Ancestral,1561.588019,0,Infection naive,BNT162b2,2 -54,2021-04-26,2021-03-14,Alpha,741.3252875,0,Infection naive,BNT162b2,2 -54,2021-04-26,2021-03-14,Delta,258.7264819,0,Infection naive,BNT162b2,2 -55,2021-02-04,2021-01-05,Ancestral,148.68468983509,0,Infection naive,BNT162b2,1 -55,2021-02-04,2021-01-05,Alpha,128.551558075558,0,Infection naive,BNT162b2,1 -55,2021-02-04,2021-01-05,Delta,5,-1,Infection naive,BNT162b2,1 -56,2021-04-01,2021-03-14,Ancestral,2560,1,Infection naive,BNT162b2,2 -56,2021-09-30,2021-03-14,Ancestral,161.0296885,0,Infection naive,BNT162b2,2 -56,2021-09-30,2021-03-14,Ancestral,161.0296885,0,Infection naive,BNT162b2,2 -56,2021-04-01,2021-03-14,Alpha,916.489686199999,0,Infection naive,BNT162b2,2 -56,2021-09-30,2021-03-14,Alpha,204.5620457,0,Infection naive,BNT162b2,2 -56,2021-09-30,2021-03-14,Alpha,204.5620457,0,Infection naive,BNT162b2,2 -56,2021-04-01,2021-03-14,Delta,359.092430599999,0,Infection naive,BNT162b2,2 -56,2021-09-30,2021-03-14,Delta,86.3494333899999,0,Infection naive,BNT162b2,2 -56,2021-09-30,2021-03-14,Delta,86.3494333899999,0,Infection naive,BNT162b2,2 -57,2021-03-01,2021-03-01,Ancestral,1682.372782,0,Infection naive,BNT162b2,2 -57,2021-03-24,2021-03-01,Ancestral,1262.022346,0,Infection naive,BNT162b2,2 -57,2021-03-01,2021-03-01,Alpha,2169.2644141146,0,Infection naive,BNT162b2,2 -57,2021-03-24,2021-03-01,Alpha,977.047042700003,0,Infection naive,BNT162b2,2 -57,2021-03-01,2021-03-01,Delta,560.013987499999,0,Infection naive,BNT162b2,2 -57,2021-03-24,2021-03-01,Delta,1095.926476,0,Infection naive,BNT162b2,2 -58,2021-03-11,2021-03-11,Ancestral,112.615528487616,0,Infection naive,BNT162b2,2 -58,2021-04-26,2021-03-11,Ancestral,2560,1,Infection naive,BNT162b2,2 -58,2021-03-11,2021-03-11,Alpha,89.5089351915363,0,Infection naive,BNT162b2,2 -58,2021-04-26,2021-03-11,Alpha,841.790351999999,0,Infection naive,BNT162b2,2 -58,2021-03-11,2021-03-11,Delta,40.5278261784787,0,Infection naive,BNT162b2,2 -58,2021-04-26,2021-03-11,Delta,513.018785499999,0,Infection naive,BNT162b2,2 -59,2021-02-17,2021-01-12,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -59,2021-03-10,2021-01-12,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -59,2021-04-14,2021-01-12,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -59,2021-02-17,2021-01-12,Alpha,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -59,2021-03-10,2021-01-12,Alpha,1339.527572,0,Previously infected (Pre-Omicron),BNT162b2,3 -59,2021-04-14,2021-01-12,Alpha,1030.707638,0,Previously infected (Pre-Omicron),BNT162b2,3 -59,2021-02-17,2021-01-12,Delta,1421.792665,0,Previously infected (Pre-Omicron),BNT162b2,3 -59,2021-03-10,2021-01-12,Delta,496.6483465,0,Previously infected (Pre-Omicron),BNT162b2,3 -59,2021-04-14,2021-01-12,Delta,497.955991299999,0,Previously infected (Pre-Omicron),BNT162b2,3 -60,2021-02-23,2021-02-05,Ancestral,498.392637599999,0,Infection naive,BNT162b2,2 -60,2021-03-16,2021-02-05,Ancestral,385.851371,0,Infection naive,BNT162b2,2 -60,2021-04-27,2021-02-05,Ancestral,188.548917900001,0,Infection naive,BNT162b2,2 -60,2021-07-21,2021-02-05,Ancestral,147.3871736,0,Infection naive,BNT162b2,2 -60,2021-02-23,2021-02-05,Alpha,130.481367,0,Infection naive,BNT162b2,2 -60,2021-03-16,2021-02-05,Alpha,147.1290323,0,Infection naive,BNT162b2,2 -60,2021-04-27,2021-02-05,Alpha,67.7357217499998,0,Infection naive,BNT162b2,2 -60,2021-07-21,2021-02-05,Alpha,73.9406678700002,0,Infection naive,BNT162b2,2 -60,2021-02-23,2021-02-05,Delta,259.1804235,0,Infection naive,BNT162b2,2 -60,2021-03-16,2021-02-05,Delta,197.6876195,0,Infection naive,BNT162b2,2 -60,2021-04-27,2021-02-05,Delta,113.4079572,0,Infection naive,BNT162b2,2 -60,2021-07-21,2021-02-05,Delta,59.0793103299999,0,Infection naive,BNT162b2,2 -61,2021-04-23,2021-03-28,Ancestral,1893.698356,0,Previously infected (Pre-Omicron),BNT162b2,3 -61,2021-07-16,2021-03-28,Ancestral,119.2177506,0,Previously infected (Pre-Omicron),BNT162b2,3 -61,2021-12-02,2021-03-28,Ancestral,100.664027719392,0,Previously infected (Pre-Omicron),BNT162b2,3 -61,2021-04-23,2021-03-28,Alpha,562.966835099998,0,Previously infected (Pre-Omicron),BNT162b2,3 -61,2021-07-16,2021-03-28,Alpha,132.2081837,0,Previously infected (Pre-Omicron),BNT162b2,3 -61,2021-12-02,2021-03-28,Alpha,108.735670477585,0,Previously infected (Pre-Omicron),BNT162b2,3 -61,2021-04-23,2021-03-28,Delta,327.2327092,0,Previously infected (Pre-Omicron),BNT162b2,3 -61,2021-07-16,2021-03-28,Delta,112.8131151,0,Previously infected (Pre-Omicron),BNT162b2,3 -61,2021-12-02,2021-03-28,Delta,41.2084021348052,0,Previously infected (Pre-Omicron),BNT162b2,3 -62,2021-04-15,2021-03-16,Ancestral,2560,1,Infection naive,AZD1222,1 -62,2021-04-15,2021-03-16,Alpha,871.826742274675,0,Infection naive,AZD1222,1 -62,2021-04-15,2021-03-16,Delta,2560,1,Infection naive,AZD1222,1 -63,2021-04-08,2021-03-19,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -63,2021-10-01,2021-03-19,Ancestral,1589.203781,0,Previously infected (Pre-Omicron),BNT162b2,3 -63,2021-04-08,2021-03-19,Alpha,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -63,2021-10-01,2021-03-19,Alpha,1542.54301454384,0,Previously infected (Pre-Omicron),BNT162b2,3 -63,2021-04-08,2021-03-19,Delta,905.312250299999,0,Previously infected (Pre-Omicron),BNT162b2,3 -63,2021-10-01,2021-03-19,Delta,864.218633100003,0,Previously infected (Pre-Omicron),BNT162b2,3 -64,2021-04-06,2021-02-25,Ancestral,2560,1,Infection naive,BNT162b2,2 -64,2021-06-29,2021-02-25,Ancestral,174.2468752,0,Infection naive,BNT162b2,2 -64,2021-04-06,2021-02-25,Alpha,1401.992765,0,Infection naive,BNT162b2,2 -64,2021-06-29,2021-02-25,Alpha,153.0480855,0,Infection naive,BNT162b2,2 -64,2021-04-06,2021-02-25,Delta,525.304331599999,0,Infection naive,BNT162b2,2 -64,2021-06-29,2021-02-25,Delta,102.2647856,0,Infection naive,BNT162b2,2 -65,2021-04-09,2021-03-04,Ancestral,1087.315338,0,Infection naive,BNT162b2,2 -65,2021-07-02,2021-03-04,Ancestral,477.8593931,0,Infection naive,BNT162b2,2 -65,2021-04-09,2021-03-04,Alpha,892.704861899999,0,Infection naive,BNT162b2,2 -65,2021-07-02,2021-03-04,Alpha,374.194229200001,0,Infection naive,BNT162b2,2 -65,2021-04-09,2021-03-04,Delta,853.678690799998,0,Infection naive,BNT162b2,2 -65,2021-07-02,2021-03-04,Delta,333.603917,0,Infection naive,BNT162b2,2 -66,2021-04-19,2021-03-24,Ancestral,809.234558300001,0,Infection naive,BNT162b2,2 -66,2021-06-28,2021-03-24,Ancestral,227.6486598,0,Infection naive,BNT162b2,2 -66,2021-09-28,2021-03-24,Ancestral,127.9894181,0,Infection naive,BNT162b2,2 -66,2021-04-19,2021-03-24,Alpha,705.198563800002,0,Infection naive,BNT162b2,2 -66,2021-06-28,2021-03-24,Alpha,233.3046891,0,Infection naive,BNT162b2,2 -66,2021-09-28,2021-03-24,Alpha,242.053307993616,0,Infection naive,BNT162b2,2 -66,2021-04-19,2021-03-24,Delta,429.7745987,0,Infection naive,BNT162b2,2 -66,2021-06-28,2021-03-24,Delta,67.8545656499999,0,Infection naive,BNT162b2,2 -66,2021-09-28,2021-03-24,Delta,43.0545027799999,0,Infection naive,BNT162b2,2 -67,2021-01-29,2021-01-05,Ancestral,1025.301418,0,Infection naive,BNT162b2,2 -67,2021-02-19,2021-01-05,Ancestral,892.704861899999,0,Infection naive,BNT162b2,2 -67,2021-04-15,2021-01-05,Ancestral,296.375686400001,0,Infection naive,BNT162b2,2 -67,2021-07-08,2021-01-05,Ancestral,56.4965538399999,0,Infection naive,BNT162b2,2 -67,2021-01-29,2021-01-05,Alpha,238.8917662,0,Infection naive,BNT162b2,2 -67,2021-02-19,2021-01-05,Alpha,219.8056519,0,Infection naive,BNT162b2,2 -67,2021-04-15,2021-01-05,Alpha,118.3847264,0,Infection naive,BNT162b2,2 -67,2021-07-08,2021-01-05,Alpha,72.7195032999999,0,Infection naive,BNT162b2,2 -67,2021-01-29,2021-01-05,Delta,104.6220366,0,Infection naive,BNT162b2,2 -67,2021-02-19,2021-01-05,Delta,88.8834988900001,0,Infection naive,BNT162b2,2 -67,2021-04-15,2021-01-05,Delta,69.2970617100001,0,Infection naive,BNT162b2,2 -67,2021-07-08,2021-01-05,Delta,48.7181830699999,0,Infection naive,BNT162b2,2 -68,2021-03-16,2021-03-12,Ancestral,129.796972124846,0,Previously infected (Pre-Omicron),BNT162b2,3 -68,2021-04-20,2021-03-12,Ancestral,963.4406748,0,Previously infected (Pre-Omicron),BNT162b2,3 -68,2021-07-07,2021-03-12,Ancestral,143.0597245,0,Previously infected (Pre-Omicron),BNT162b2,3 -68,2021-03-16,2021-03-12,Alpha,50.8561208104012,0,Previously infected (Pre-Omicron),BNT162b2,3 -68,2021-04-20,2021-03-12,Alpha,804.284739699998,0,Previously infected (Pre-Omicron),BNT162b2,3 -68,2021-07-07,2021-03-12,Alpha,178.7327035,0,Previously infected (Pre-Omicron),BNT162b2,3 -68,2021-09-23,2021-03-12,Alpha,171.068962431355,0,Previously infected (Pre-Omicron),BNT162b2,3 -68,2021-03-16,2021-03-12,Delta,5,-1,Previously infected (Pre-Omicron),BNT162b2,3 -68,2021-04-20,2021-03-12,Delta,270.3172037,0,Previously infected (Pre-Omicron),BNT162b2,3 -68,2021-07-07,2021-03-12,Delta,168.8345717,0,Previously infected (Pre-Omicron),BNT162b2,3 -68,2021-09-23,2021-03-12,Delta,221.9351403,0,Previously infected (Pre-Omicron),BNT162b2,3 -69,2021-03-22,2021-03-10,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -69,2021-03-22,2021-03-10,Alpha,1587.811465,0,Previously infected (Pre-Omicron),BNT162b2,3 -69,2021-03-22,2021-03-10,Delta,679.710320999999,0,Previously infected (Pre-Omicron),BNT162b2,3 -70,2021-05-05,2021-03-28,Ancestral,331.854113199999,0,Previously infected (Pre-Omicron),BNT162b2,3 -70,2021-06-29,2021-03-28,Ancestral,139.5915131,0,Previously infected (Pre-Omicron),BNT162b2,3 -70,2021-10-01,2021-03-28,Ancestral,118.4885353,0,Previously infected (Pre-Omicron),BNT162b2,3 -70,2021-05-05,2021-03-28,Alpha,399.9695656,0,Previously infected (Pre-Omicron),BNT162b2,3 -70,2021-06-29,2021-03-28,Alpha,194.422716300001,0,Previously infected (Pre-Omicron),BNT162b2,3 -70,2021-10-01,2021-03-28,Alpha,194.422716341038,0,Previously infected (Pre-Omicron),BNT162b2,3 -70,2021-05-05,2021-03-28,Delta,175.0121818,0,Previously infected (Pre-Omicron),BNT162b2,3 -70,2021-06-29,2021-03-28,Delta,95.0059933199999,0,Previously infected (Pre-Omicron),BNT162b2,3 -70,2021-10-01,2021-03-28,Delta,47.95559391,0,Previously infected (Pre-Omicron),BNT162b2,3 -71,2021-04-19,2021-04-13,Ancestral,106.846159268181,0,Infection naive,AZD1222,1 -71,2021-04-19,2021-04-13,Alpha,5,-1,Infection naive,AZD1222,1 -71,2021-04-19,2021-04-13,Delta,5,-1,Infection naive,AZD1222,1 -72,2021-01-29,2021-01-07,Ancestral,1353.690964,0,Infection naive,BNT162b2,2 -72,2021-01-29,2021-01-07,Alpha,436.608868200001,0,Infection naive,BNT162b2,2 -72,2021-01-29,2021-01-07,Delta,279.227353800001,0,Infection naive,BNT162b2,2 -73,2021-02-03,2021-01-06,Ancestral,1007.484647,0,Previously infected (Pre-Omicron),BNT162b2,3 -73,2021-02-03,2021-01-06,Alpha,414.604341,0,Previously infected (Pre-Omicron),BNT162b2,3 -73,2021-02-26,2021-01-06,Alpha,321.546351899999,0,Previously infected (Pre-Omicron),BNT162b2,3 -73,2021-02-03,2021-01-06,Delta,220.9646454,0,Previously infected (Pre-Omicron),BNT162b2,3 -73,2021-02-26,2021-01-06,Delta,205.2804932,0,Previously infected (Pre-Omicron),BNT162b2,3 -74,2021-04-12,2021-03-15,Ancestral,2560,1,Infection naive,BNT162b2,2 -74,2021-04-12,2021-03-15,Alpha,1019.02999,0,Infection naive,BNT162b2,2 -74,2021-04-12,2021-03-15,Delta,607.57499,0,Infection naive,BNT162b2,2 -75,2021-06-11,2021-05-02,Ancestral,204.3828271,0,Infection naive,AZD1222,2 -75,2021-09-22,2021-05-02,Ancestral,129.456122,0,Infection naive,AZD1222,2 -75,2021-06-11,2021-05-02,Alpha,138.7376782,0,Infection naive,AZD1222,2 -75,2021-09-22,2021-05-02,Alpha,74.5262507817008,0,Infection naive,AZD1222,2 -75,2021-06-11,2021-05-02,Delta,45.0622313999999,0,Infection naive,AZD1222,2 -75,2021-09-22,2021-05-02,Delta,5,-1,Infection naive,AZD1222,2 -76,2021-06-11,2021-04-22,Ancestral,93.8473077200001,0,Infection naive,AZD1222,1 -76,2021-06-11,2021-04-22,Alpha,47.4538443170817,0,Infection naive,AZD1222,1 -76,2021-06-11,2021-04-22,Delta,41.53475753,0,Infection naive,AZD1222,1 -77,2021-03-19,2021-03-07,Ancestral,2560,1,Infection naive,BNT162b2,2 -77,2021-10-06,2021-03-07,Ancestral,135.255643954031,0,Infection naive,BNT162b2,2 -77,2021-03-19,2021-03-07,Alpha,598.064575800001,0,Infection naive,BNT162b2,2 -77,2021-10-06,2021-03-07,Alpha,85.1469302348619,0,Infection naive,BNT162b2,2 -77,2021-03-19,2021-03-07,Delta,423.047306599999,0,Infection naive,BNT162b2,2 -77,2021-10-06,2021-03-07,Delta,51.1242754956066,0,Infection naive,BNT162b2,2 -78,2021-03-12,2021-02-26,Ancestral,565.4394316,0,Infection naive,BNT162b2,2 -78,2021-04-07,2021-02-26,Ancestral,552.6994515,0,Infection naive,BNT162b2,2 -78,2021-05-17,2021-02-26,Ancestral,232.4881616,0,Infection naive,BNT162b2,2 -78,2021-03-12,2021-02-26,Alpha,682.695664400001,0,Infection naive,BNT162b2,2 -78,2021-04-07,2021-02-26,Alpha,387.206529300001,0,Infection naive,BNT162b2,2 -78,2021-05-17,2021-02-26,Alpha,224.478422,0,Infection naive,BNT162b2,2 -78,2021-03-12,2021-02-26,Delta,416.0604833,0,Infection naive,BNT162b2,2 -78,2021-04-07,2021-02-26,Delta,426.397685799999,0,Infection naive,BNT162b2,2 -78,2021-05-17,2021-02-26,Delta,265.8527891,0,Infection naive,BNT162b2,2 -79,2021-04-19,2021-03-17,Ancestral,1710.624543,0,Infection naive,BNT162b2,2 -79,2021-06-29,2021-03-17,Ancestral,205.1006451,0,Infection naive,BNT162b2,2 -79,2021-04-19,2021-03-17,Alpha,1377.630189,0,Infection naive,BNT162b2,2 -79,2021-06-29,2021-03-17,Alpha,257.143938,0,Infection naive,BNT162b2,2 -79,2021-04-19,2021-03-17,Delta,940.908222600001,0,Infection naive,BNT162b2,2 -79,2021-06-29,2021-03-17,Delta,205.1006451,0,Infection naive,BNT162b2,2 -80,2021-05-05,2021-03-23,Ancestral,2560,1,Infection naive,BNT162b2,2 -80,2021-06-28,2021-03-23,Ancestral,131.5147314,0,Infection naive,BNT162b2,2 -80,2021-09-22,2021-03-23,Ancestral,204.3828271,0,Infection naive,BNT162b2,2 -80,2021-05-05,2021-03-23,Alpha,1305.908147,0,Infection naive,BNT162b2,2 -80,2021-06-28,2021-03-23,Alpha,445.499932,0,Infection naive,BNT162b2,2 -80,2021-09-22,2021-03-23,Alpha,177.328328281948,0,Infection naive,BNT162b2,2 -80,2021-05-05,2021-03-23,Delta,624.857349700001,0,Infection naive,BNT162b2,2 -80,2021-06-28,2021-03-23,Delta,130.7102996,0,Infection naive,BNT162b2,2 -80,2021-09-22,2021-03-23,Delta,99.0883265799999,0,Infection naive,BNT162b2,2 -81,2021-05-26,2021-04-30,Ancestral,144.6991278,0,Infection naive,AZD1222,2 -81,2021-07-08,2021-04-30,Ancestral,75.8442035,0,Infection naive,AZD1222,2 -81,2021-11-23,2021-04-30,Ancestral,148.5544258,0,Infection naive,AZD1222,2 -81,2021-05-26,2021-04-30,Alpha,202.7769085,0,Infection naive,AZD1222,2 -81,2021-07-08,2021-04-30,Alpha,96.2633217999998,0,Infection naive,AZD1222,2 -81,2021-11-23,2021-04-30,Alpha,106.006625751991,0,Infection naive,AZD1222,2 -81,2021-05-26,2021-04-30,Delta,53.2276564800001,0,Infection naive,AZD1222,2 -81,2021-07-08,2021-04-30,Delta,60.7065783099999,0,Infection naive,AZD1222,2 -81,2021-11-23,2021-04-30,Delta,42.6413908199999,0,Infection naive,AZD1222,2 -82,2021-04-13,2021-03-24,Ancestral,2560,1,Infection naive,BNT162b2,2 -82,2021-09-28,2021-03-24,Ancestral,119.0089466,0,Infection naive,BNT162b2,2 -82,2021-04-13,2021-03-24,Alpha,380.478000600002,0,Infection naive,BNT162b2,2 -82,2021-09-28,2021-03-24,Alpha,130.481366955718,0,Infection naive,BNT162b2,2 -82,2021-04-13,2021-03-24,Delta,209.2772962,0,Infection naive,BNT162b2,2 -82,2021-09-28,2021-03-24,Delta,63.3150925200002,0,Infection naive,BNT162b2,2 -83,2021-04-15,2021-03-24,Ancestral,2560,1,Infection naive,BNT162b2,2 -83,2021-07-07,2021-03-24,Ancestral,255.123454000001,0,Infection naive,BNT162b2,2 -83,2021-04-15,2021-03-24,Alpha,1277.603903,0,Infection naive,BNT162b2,2 -83,2021-07-07,2021-03-24,Alpha,321.264642300001,0,Infection naive,BNT162b2,2 -83,2021-04-15,2021-03-24,Delta,560.013987499999,0,Infection naive,BNT162b2,2 -83,2021-07-07,2021-03-24,Delta,173.9416905,0,Infection naive,BNT162b2,2 -84,2021-04-20,2021-03-11,Ancestral,2560,1,Infection naive,BNT162b2,2 -84,2021-06-28,2021-03-11,Ancestral,583.054368300002,0,Infection naive,BNT162b2,2 -84,2021-04-20,2021-03-11,Alpha,1018.137209,0,Infection naive,BNT162b2,2 -84,2021-06-28,2021-03-11,Alpha,339.801208099999,0,Infection naive,BNT162b2,2 -84,2021-04-20,2021-03-11,Delta,587.1570799,0,Infection naive,BNT162b2,2 -84,2021-06-28,2021-03-11,Delta,264.690247899999,0,Infection naive,BNT162b2,2 -85,2021-04-20,2021-03-31,Ancestral,996.943540999999,0,Previously infected (Pre-Omicron),AZD1222,3 -85,2021-07-07,2021-03-31,Ancestral,400.6713215,0,Previously infected (Pre-Omicron),AZD1222,3 -85,2021-04-20,2021-03-31,Alpha,759.0782163,0,Previously infected (Pre-Omicron),AZD1222,3 -85,2021-07-07,2021-03-31,Alpha,392.674924599999,0,Previously infected (Pre-Omicron),AZD1222,3 -85,2021-04-20,2021-03-31,Delta,457.369630600001,0,Previously infected (Pre-Omicron),AZD1222,3 -85,2021-07-07,2021-03-31,Delta,294.562854899999,0,Previously infected (Pre-Omicron),AZD1222,3 -86,2021-02-03,2021-01-08,Ancestral,541.194392500001,0,Infection naive,BNT162b2,2 -86,2021-02-03,2021-01-08,Alpha,301.6169153,0,Infection naive,BNT162b2,2 -86,2021-02-03,2021-01-08,Delta,193.7422693,0,Infection naive,BNT162b2,2 -87,2021-04-19,2021-03-28,Ancestral,1113.353883,0,Previously infected (Pre-Omicron),BNT162b2,3 -87,2021-06-28,2021-03-28,Ancestral,213.5390003,0,Previously infected (Pre-Omicron),BNT162b2,3 -87,2021-04-19,2021-03-28,Alpha,643.1948116,0,Previously infected (Pre-Omicron),BNT162b2,3 -87,2021-06-28,2021-03-28,Alpha,463.828917200002,0,Previously infected (Pre-Omicron),BNT162b2,3 -87,2021-09-30,2021-03-28,Alpha,364.802713224805,0,Previously infected (Pre-Omicron),BNT162b2,3 -87,2021-04-19,2021-03-28,Delta,272.219313700001,0,Previously infected (Pre-Omicron),BNT162b2,3 -87,2021-06-28,2021-03-28,Delta,241.2061618,0,Previously infected (Pre-Omicron),BNT162b2,3 -87,2021-09-30,2021-03-28,Delta,333.019626300001,0,Previously infected (Pre-Omicron),BNT162b2,3 -88,2021-03-16,2021-03-12,Ancestral,1124.14011170073,0,Previously infected (Pre-Omicron),BNT162b2,3 -88,2021-03-16,2021-03-12,Alpha,767.776927952915,0,Previously infected (Pre-Omicron),BNT162b2,3 -88,2021-03-16,2021-03-12,Delta,695.377960810212,0,Previously infected (Pre-Omicron),BNT162b2,3 -88,2021-05-05,2021-03-12,Delta,503.662354,0,Previously infected (Pre-Omicron),BNT162b2,3 -88,2021-06-29,2021-03-12,Delta,527.149266099999,0,Previously infected (Pre-Omicron),BNT162b2,3 -88,2021-09-29,2021-03-12,Delta,283.6676231,0,Previously infected (Pre-Omicron),BNT162b2,3 -89,2021-04-07,2021-03-23,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -89,2021-05-18,2021-03-23,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -89,2021-08-10,2021-03-23,Ancestral,284.4145027,0,Previously infected (Pre-Omicron),BNT162b2,3 -89,2021-10-08,2021-03-23,Ancestral,399.269038768964,0,Previously infected (Pre-Omicron),BNT162b2,3 -89,2021-10-27,2021-03-23,Ancestral,506.318070100001,0,Previously infected (Pre-Omicron),BNT162b2,3 -89,2021-04-07,2021-03-23,Alpha,1651.689684,0,Previously infected (Pre-Omicron),BNT162b2,3 -89,2021-05-18,2021-03-23,Alpha,1240.092051,0,Previously infected (Pre-Omicron),BNT162b2,3 -89,2021-08-10,2021-03-23,Alpha,421.9363738,0,Previously infected (Pre-Omicron),BNT162b2,3 -89,2021-10-08,2021-03-23,Alpha,447.848968718045,0,Previously infected (Pre-Omicron),BNT162b2,3 -89,2021-04-07,2021-03-23,Delta,848.457022200001,0,Previously infected (Pre-Omicron),BNT162b2,3 -89,2021-05-18,2021-03-23,Delta,633.1268378,0,Previously infected (Pre-Omicron),BNT162b2,3 -89,2021-08-10,2021-03-23,Delta,217.505870200001,0,Previously infected (Pre-Omicron),BNT162b2,3 -89,2021-10-08,2021-03-23,Delta,326.659577338246,0,Previously infected (Pre-Omicron),BNT162b2,3 -89,2021-10-27,2021-03-23,Delta,559.033150799998,0,Previously infected (Pre-Omicron),BNT162b2,3 -90,2021-04-19,2021-03-12,Ancestral,2052.72683499999,0,Infection naive,BNT162b2,2 -90,2021-07-08,2021-03-12,Ancestral,220.7710563,0,Infection naive,BNT162b2,2 -90,2021-04-19,2021-03-12,Alpha,649.995582700002,0,Infection naive,BNT162b2,2 -90,2021-07-08,2021-03-12,Alpha,315.958807000001,0,Infection naive,BNT162b2,2 -90,2021-04-19,2021-03-12,Delta,350.694162500001,0,Infection naive,BNT162b2,2 -90,2021-07-08,2021-03-12,Delta,178.419662,0,Infection naive,BNT162b2,2 -91,2021-06-11,2021-04-24,Ancestral,126.317704098264,0,Infection naive,AZD1222,1 -91,2021-06-11,2021-04-24,Alpha,144.572355573196,0,Infection naive,AZD1222,1 -91,2021-06-11,2021-04-24,Delta,5,-1,Infection naive,AZD1222,1 -92,2021-04-20,2021-03-19,Ancestral,1644.46705,0,Previously infected (Pre-Omicron),BNT162b2,3 -92,2021-06-28,2021-03-19,Ancestral,117.0434584,0,Previously infected (Pre-Omicron),BNT162b2,3 -92,2021-04-20,2021-03-19,Alpha,574.934746699999,0,Previously infected (Pre-Omicron),BNT162b2,3 -92,2021-06-28,2021-03-19,Alpha,98.3097495,0,Previously infected (Pre-Omicron),BNT162b2,3 -92,2021-04-20,2021-03-19,Delta,241.2061618,0,Previously infected (Pre-Omicron),BNT162b2,3 -92,2021-06-28,2021-03-19,Delta,76.7806138099998,0,Previously infected (Pre-Omicron),BNT162b2,3 -93,2021-03-18,2021-03-05,Ancestral,2560,1,Infection naive,BNT162b2,2 -93,2021-09-17,2021-03-05,Ancestral,218.6527375,0,Infection naive,BNT162b2,2 -93,2021-03-18,2021-03-05,Alpha,837.375032099998,0,Infection naive,BNT162b2,2 -93,2021-09-17,2021-03-05,Alpha,224.675262,0,Infection naive,BNT162b2,2 -93,2021-03-18,2021-03-05,Delta,359.407310600001,0,Infection naive,BNT162b2,2 -93,2021-09-17,2021-03-05,Delta,219.4206732,0,Infection naive,BNT162b2,2 -94,2021-02-01,2021-01-11,Ancestral,1494.629897,0,Infection naive,BNT162b2,2 -94,2021-02-22,2021-01-11,Ancestral,1207.909069,0,Infection naive,BNT162b2,2 -94,2021-04-06,2021-01-11,Ancestral,641.505766099999,0,Infection naive,BNT162b2,2 -94,2021-02-01,2021-01-11,Alpha,685.694119700002,0,Infection naive,BNT162b2,2 -94,2021-02-22,2021-01-11,Alpha,473.6892911,0,Infection naive,BNT162b2,2 -94,2021-04-06,2021-01-11,Alpha,447.456604200001,0,Infection naive,BNT162b2,2 -94,2021-02-01,2021-01-11,Delta,1103.638055,0,Infection naive,BNT162b2,2 -94,2021-02-22,2021-01-11,Delta,1045.263996,0,Infection naive,BNT162b2,2 -94,2021-04-06,2021-01-11,Delta,190.8768368,0,Infection naive,BNT162b2,2 -95,2021-02-18,2021-01-20,Ancestral,146.485655279567,0,Infection naive,BNT162b2,1 -95,2021-02-18,2021-01-20,Alpha,164.597166448315,0,Infection naive,BNT162b2,1 -95,2021-02-18,2021-01-20,Delta,110.174700267007,0,Infection naive,BNT162b2,1 -96,2021-04-07,2021-03-04,Ancestral,732.926266099998,0,Infection naive,BNT162b2,2 -96,2021-06-30,2021-03-04,Ancestral,381.8142869,0,Infection naive,BNT162b2,2 -96,2021-04-07,2021-03-04,Alpha,1120.205809,0,Infection naive,BNT162b2,2 -96,2021-06-30,2021-03-04,Alpha,172.272703700001,0,Infection naive,BNT162b2,2 -96,2021-04-07,2021-03-04,Delta,651.706981500002,0,Infection naive,BNT162b2,2 -96,2021-06-30,2021-03-04,Delta,180.1482008,0,Infection naive,BNT162b2,2 -97,2021-04-15,2021-03-21,Ancestral,2435.337141,0,Previously infected (Pre-Omicron),BNT162b2,3 -97,2021-04-15,2021-03-21,Alpha,2152.219626,0,Previously infected (Pre-Omicron),BNT162b2,3 -97,2021-04-15,2021-03-21,Delta,406.329875899999,0,Previously infected (Pre-Omicron),BNT162b2,3 -98,2021-04-15,2021-03-22,Ancestral,290.2062941,0,Infection naive,BNT162b2,2 -98,2021-07-07,2021-03-22,Ancestral,82.3576725299998,0,Infection naive,BNT162b2,2 -98,2021-04-15,2021-03-22,Alpha,245.471750300001,0,Infection naive,BNT162b2,2 -98,2021-07-07,2021-03-22,Alpha,171.669778,0,Infection naive,BNT162b2,2 -98,2021-04-15,2021-03-22,Delta,96.4322180399998,0,Infection naive,BNT162b2,2 -98,2021-07-07,2021-03-22,Delta,53.7904550299999,0,Infection naive,BNT162b2,2 -99,2021-03-22,2021-03-10,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -99,2021-09-21,2021-03-10,Ancestral,134.310556301701,0,Previously infected (Pre-Omicron),BNT162b2,3 -99,2021-03-22,2021-03-10,Alpha,700.271046999999,0,Previously infected (Pre-Omicron),BNT162b2,3 -99,2021-09-21,2021-03-10,Alpha,87.9535289881869,0,Previously infected (Pre-Omicron),BNT162b2,3 -99,2021-03-22,2021-03-10,Delta,399.269038800001,0,Previously infected (Pre-Omicron),BNT162b2,3 -99,2021-09-21,2021-03-10,Delta,54.9339671726918,0,Previously infected (Pre-Omicron),BNT162b2,3 -100,2021-03-08,2021-03-08,Ancestral,95.1726835550794,0,Infection naive,BNT162b2,2 -100,2021-04-13,2021-03-08,Ancestral,2560,1,Infection naive,BNT162b2,2 -100,2021-07-06,2021-03-08,Ancestral,117.5575229,0,Infection naive,BNT162b2,2 -100,2021-03-08,2021-03-08,Alpha,5,-1,Infection naive,BNT162b2,2 -100,2021-04-13,2021-03-08,Alpha,201.8901902,0,Infection naive,BNT162b2,2 -100,2021-07-06,2021-03-08,Alpha,133.606076800001,0,Infection naive,BNT162b2,2 -100,2021-03-08,2021-03-08,Delta,5,-1,Infection naive,BNT162b2,2 -100,2021-04-13,2021-03-08,Delta,79.45059724,0,Infection naive,BNT162b2,2 -100,2021-07-06,2021-03-08,Delta,57.3446769799999,0,Infection naive,BNT162b2,2 -101,2021-04-23,2021-03-19,Ancestral,934.333704000001,0,Previously infected (Pre-Omicron),AZD1222,2 -101,2021-04-23,2021-03-19,Alpha,532.723038468038,0,Previously infected (Pre-Omicron),AZD1222,2 -101,2021-04-23,2021-03-19,Delta,649.995582700002,0,Previously infected (Pre-Omicron),AZD1222,2 -102,2021-05-25,2021-04-14,Ancestral,121.645490188642,0,Infection naive,"",1 -102,2021-05-25,2021-04-14,Alpha,122.608877763544,0,Infection naive,"",1 -102,2021-05-25,2021-04-14,Delta,154.260170083228,0,Infection naive,"",1 -103,2021-04-08,2021-02-26,Ancestral,182.8525756,0,Infection naive,BNT162b2,2 -103,2021-04-08,2021-02-26,Alpha,199.777854400001,0,Infection naive,BNT162b2,2 -103,2021-04-08,2021-02-26,Delta,120.583935,0,Infection naive,BNT162b2,2 -104,2021-05-26,2021-04-22,Ancestral,91.65245542,0,Infection naive,AZD1222,2 -104,2021-06-29,2021-04-22,Ancestral,5,-1,Infection naive,AZD1222,2 -104,2021-05-26,2021-04-22,Alpha,5,-1,Infection naive,AZD1222,2 -104,2021-05-26,2021-04-22,Delta,5,-1,Infection naive,AZD1222,2 -104,2021-06-29,2021-04-22,Delta,5,-1,Infection naive,AZD1222,2 -105,2021-02-19,2021-01-08,Ancestral,266.319234099999,0,Infection naive,BNT162b2,2 -105,2021-02-19,2021-01-08,Alpha,227.6486598,0,Infection naive,BNT162b2,2 -105,2021-02-19,2021-01-08,Delta,155.4818539,0,Infection naive,BNT162b2,2 -106,2021-04-15,2021-02-24,Ancestral,380.478000600002,0,Infection naive,BNT162b2,2 -106,2021-04-15,2021-02-24,Alpha,304.538995399999,0,Infection naive,BNT162b2,2 -106,2021-04-15,2021-02-24,Delta,180.7809038,0,Infection naive,BNT162b2,2 -107,2021-04-07,2021-04-01,Ancestral,761.076822999998,0,Previously infected (Pre-Omicron),BNT162b2,3 -107,2021-07-01,2021-04-01,Ancestral,452.187752400001,0,Previously infected (Pre-Omicron),BNT162b2,3 -107,2021-10-04,2021-04-01,Ancestral,246.549882300001,0,Previously infected (Pre-Omicron),BNT162b2,3 -107,2021-04-07,2021-04-01,Alpha,1171.41634518555,0,Previously infected (Pre-Omicron),BNT162b2,3 -107,2021-07-01,2021-04-01,Alpha,367.369678499999,0,Previously infected (Pre-Omicron),BNT162b2,3 -107,2021-10-04,2021-04-01,Alpha,349.160620479432,0,Previously infected (Pre-Omicron),BNT162b2,3 -107,2021-04-07,2021-04-01,Delta,786.8526775,0,Previously infected (Pre-Omicron),BNT162b2,3 -107,2021-07-01,2021-04-01,Delta,488.445967700001,0,Previously infected (Pre-Omicron),BNT162b2,3 -107,2021-10-04,2021-04-01,Delta,214.288976000001,0,Previously infected (Pre-Omicron),BNT162b2,3 -108,2021-05-11,2021-04-22,Ancestral,124.449475455526,0,Infection naive,AZD1222,1 -108,2021-05-11,2021-04-22,Alpha,5,-1,Infection naive,AZD1222,1 -108,2021-05-11,2021-04-22,Delta,5,-1,Infection naive,AZD1222,1 -109,2021-04-16,2021-03-10,Ancestral,458.573856899999,0,Infection naive,BNT162b2,2 -109,2021-04-16,2021-03-10,Alpha,350.3869162,0,Infection naive,BNT162b2,2 -109,2021-04-16,2021-03-10,Delta,148.164318200001,0,Infection naive,BNT162b2,2 -110,2021-03-10,2021-02-28,Ancestral,517.988937699999,0,Infection naive,BNT162b2,2 -110,2021-03-31,2021-02-28,Ancestral,2560,1,Infection naive,BNT162b2,2 -110,2021-03-10,2021-02-28,Alpha,544.525071300002,0,Infection naive,BNT162b2,2 -110,2021-03-31,2021-02-28,Alpha,201.3600216,0,Infection naive,BNT162b2,2 -110,2021-03-10,2021-02-28,Delta,214.288976000001,0,Infection naive,BNT162b2,2 -110,2021-03-31,2021-02-28,Delta,125.5450607,0,Infection naive,BNT162b2,2 -111,2021-04-19,2021-04-11,Ancestral,1211.089419,0,Infection naive,BNT162b2,2 -111,2021-07-07,2021-04-11,Ancestral,81.2107586800002,0,Infection naive,BNT162b2,2 -111,2021-04-19,2021-04-11,Alpha,527.149266099999,0,Infection naive,BNT162b2,2 -111,2021-07-07,2021-04-11,Alpha,209.6444781,0,Infection naive,BNT162b2,2 -111,2021-04-19,2021-04-11,Delta,254.676618,0,Infection naive,BNT162b2,2 -111,2021-07-07,2021-04-11,Delta,116.8384626,0,Infection naive,BNT162b2,2 -112,2021-06-04,2021-05-02,Ancestral,766.4322048,0,Infection naive,AZD1222,2 -112,2021-06-28,2021-05-02,Ancestral,73.6818878699998,0,Infection naive,AZD1222,2 -112,2021-06-04,2021-05-02,Alpha,45.6185921499999,0,Infection naive,AZD1222,2 -112,2021-06-28,2021-05-02,Alpha,40.1389579100002,0,Infection naive,AZD1222,2 -112,2021-06-04,2021-05-02,Delta,41.1001878499999,0,Infection naive,AZD1222,2 -112,2021-06-28,2021-05-02,Delta,5,-1,Infection naive,AZD1222,2 -113,2021-03-22,2021-02-26,Ancestral,2560,1,Infection naive,BNT162b2,2 -113,2021-03-22,2021-02-26,Alpha,378.8142175,0,Infection naive,BNT162b2,2 -113,2021-03-22,2021-02-26,Delta,142.8091625,0,Infection naive,BNT162b2,2 -114,2021-03-31,2021-03-11,Ancestral,2560,1,Infection naive,BNT162b2,2 -114,2021-05-12,2021-03-11,Ancestral,374.194229200001,0,Infection naive,BNT162b2,2 -114,2021-07-28,2021-03-11,Ancestral,131.7454771,0,Infection naive,BNT162b2,2 -114,2021-03-31,2021-03-11,Alpha,361.936310700001,0,Infection naive,BNT162b2,2 -114,2021-05-12,2021-03-11,Alpha,368.0142372,0,Infection naive,BNT162b2,2 -114,2021-07-28,2021-03-11,Alpha,119.8463632,0,Infection naive,BNT162b2,2 -114,2021-03-31,2021-03-11,Delta,301.3526661,0,Infection naive,BNT162b2,2 -114,2021-05-12,2021-03-11,Delta,186.7397735,0,Infection naive,BNT162b2,2 -114,2021-07-28,2021-03-11,Delta,76.7133456300002,0,Infection naive,BNT162b2,2 -115,2021-03-18,2021-03-08,Ancestral,2560,1,Infection naive,BNT162b2,2 -115,2021-03-18,2021-03-08,Alpha,2256.534692,0,Infection naive,BNT162b2,2 -115,2021-03-18,2021-03-08,Delta,1176.561302,0,Infection naive,BNT162b2,2 -116,2021-03-02,2021-02-27,Ancestral,5,-1,Infection naive,AZD1222,1 -116,2021-03-02,2021-02-27,Alpha,5,-1,Infection naive,AZD1222,1 -116,2021-04-20,2021-02-27,Alpha,5,-1,Infection naive,AZD1222,1 -116,2021-03-02,2021-02-27,Delta,5,-1,Infection naive,AZD1222,1 -116,2021-04-20,2021-02-27,Delta,5,-1,Infection naive,AZD1222,1 -117,2021-04-19,2021-03-17,Ancestral,2036.59773000001,0,Infection naive,BNT162b2,2 -117,2021-06-29,2021-03-17,Ancestral,298.9848162,0,Infection naive,BNT162b2,2 -117,2021-12-20,2021-03-17,Ancestral,395.438015100001,0,Infection naive,BNT162b2,2 -117,2021-04-19,2021-03-17,Alpha,1022.608951,0,Infection naive,BNT162b2,2 -117,2021-06-29,2021-03-17,Alpha,910.0857901,0,Infection naive,BNT162b2,2 -117,2021-12-20,2021-03-17,Alpha,324.092880833301,0,Infection naive,BNT162b2,2 -117,2021-04-19,2021-03-17,Delta,538.8278166,0,Infection naive,BNT162b2,2 -117,2021-06-29,2021-03-17,Delta,446.672906199999,0,Infection naive,BNT162b2,2 -117,2021-12-20,2021-03-17,Delta,266.085909400001,0,Infection naive,BNT162b2,2 -118,2021-06-11,2021-05-06,Ancestral,145.589651248851,0,Previously infected (Pre-Omicron),mRNA1273,2 -118,2021-06-11,2021-05-06,Alpha,149.20688905334,0,Previously infected (Pre-Omicron),mRNA1273,2 -118,2021-06-11,2021-05-06,Delta,69.6624519845714,0,Previously infected (Pre-Omicron),mRNA1273,2 -119,2021-02-02,2021-01-12,Ancestral,493.6105138,0,Infection naive,BNT162b2,2 -119,2021-02-23,2021-01-12,Ancestral,367.369678499999,0,Infection naive,BNT162b2,2 -119,2021-04-06,2021-01-12,Ancestral,184.9479879,0,Infection naive,BNT162b2,2 -119,2021-02-02,2021-01-12,Alpha,238.0556849,0,Infection naive,BNT162b2,2 -119,2021-02-23,2021-01-12,Alpha,118.2810085,0,Infection naive,BNT162b2,2 -119,2021-04-06,2021-01-12,Alpha,114.7075639,0,Infection naive,BNT162b2,2 -119,2021-02-02,2021-01-12,Delta,169.5761069,0,Infection naive,BNT162b2,2 -119,2021-02-23,2021-01-12,Delta,138.9810967,0,Infection naive,BNT162b2,2 -119,2021-04-06,2021-01-12,Delta,93.60086235,0,Infection naive,BNT162b2,2 -120,2021-04-23,2021-03-13,Ancestral,1041.605746,0,Infection naive,BNT162b2,2 -120,2021-06-28,2021-03-13,Ancestral,661.490370600001,0,Infection naive,BNT162b2,2 -120,2021-04-23,2021-03-13,Alpha,665.561388300001,0,Infection naive,BNT162b2,2 -120,2021-06-28,2021-03-13,Alpha,385.5133232,0,Infection naive,BNT162b2,2 -120,2021-04-23,2021-03-13,Delta,1132.050219,0,Infection naive,BNT162b2,2 -120,2021-06-28,2021-03-13,Delta,390.615284299999,0,Infection naive,BNT162b2,2 -121,2021-02-08,2021-01-12,Ancestral,114.707563909016,0,Infection naive,BNT162b2,1 -121,2021-03-01,2021-01-12,Ancestral,116.327542543632,0,Infection naive,BNT162b2,1 -121,2021-02-08,2021-01-12,Alpha,59.3387915012427,0,Infection naive,BNT162b2,1 -121,2021-03-01,2021-01-12,Alpha,5,-1,Infection naive,BNT162b2,1 -121,2021-02-08,2021-01-12,Delta,5,-1,Infection naive,BNT162b2,1 -121,2021-03-01,2021-01-12,Delta,5,-1,Infection naive,BNT162b2,1 -122,2021-04-20,2021-03-11,Ancestral,1847.789234,0,Infection naive,BNT162b2,2 -122,2021-06-28,2021-03-11,Ancestral,199.953035,0,Infection naive,BNT162b2,2 -122,2021-09-30,2021-03-11,Ancestral,163.0178413,0,Infection naive,BNT162b2,2 -122,2021-04-20,2021-03-11,Alpha,927.805124399998,0,Infection naive,BNT162b2,2 -122,2021-06-28,2021-03-11,Alpha,350.694162500001,0,Infection naive,BNT162b2,2 -122,2021-09-30,2021-03-11,Alpha,200.831245125291,0,Infection naive,BNT162b2,2 -122,2021-04-20,2021-03-11,Delta,775.21519,0,Infection naive,BNT162b2,2 -122,2021-06-28,2021-03-11,Delta,193.912157500001,0,Infection naive,BNT162b2,2 -122,2021-09-30,2021-03-11,Delta,95.7584058700001,0,Infection naive,BNT162b2,2 -123,2021-05-28,2021-04-12,Ancestral,185.1101646,0,Infection naive,AZD1222,2 -123,2021-07-07,2021-04-12,Ancestral,157.5395321,0,Infection naive,AZD1222,2 -123,2021-05-28,2021-04-12,Alpha,87.4921992100002,0,Infection naive,AZD1222,2 -123,2021-07-07,2021-04-12,Alpha,74.8535761800001,0,Infection naive,AZD1222,2 -123,2021-05-28,2021-04-12,Delta,70.2141530000002,0,Infection naive,AZD1222,2 -123,2021-07-07,2021-04-12,Delta,79.93956094,0,Infection naive,AZD1222,2 -124,2021-06-02,2021-04-20,Ancestral,141.3149794,0,Infection naive,AZD1222,1 -124,2021-06-02,2021-04-20,Alpha,56.1509832100001,0,Infection naive,AZD1222,1 -124,2021-06-02,2021-04-20,Delta,5,-1,Infection naive,AZD1222,1 -125,2021-04-07,2021-03-12,Ancestral,2560,1,Infection naive,BNT162b2,2 -125,2021-06-30,2021-03-12,Ancestral,115.1104312,0,Infection naive,BNT162b2,2 -125,2021-04-07,2021-03-12,Alpha,809.234558300001,0,Infection naive,BNT162b2,2 -125,2021-06-30,2021-03-12,Alpha,159.6244421,0,Infection naive,BNT162b2,2 -125,2021-04-07,2021-03-12,Delta,377.15771,0,Infection naive,BNT162b2,2 -125,2021-06-30,2021-03-12,Delta,116.6338259,0,Infection naive,BNT162b2,2 -126,2021-06-09,2021-04-29,Ancestral,186.739773455233,0,Infection naive,AZD1222,1 -126,2021-06-09,2021-04-29,Alpha,114.105905100308,0,Infection naive,AZD1222,1 -126,2021-06-09,2021-04-29,Delta,5,-1,Infection naive,AZD1222,1 -127,2021-04-15,2021-03-20,Ancestral,674.369561900001,0,Infection naive,BNT162b2,2 -127,2021-07-07,2021-03-20,Ancestral,99.7855700200003,0,Infection naive,BNT162b2,2 -127,2021-04-15,2021-03-20,Alpha,357.2089356,0,Infection naive,BNT162b2,2 -127,2021-07-07,2021-03-20,Alpha,204.741421500001,0,Infection naive,BNT162b2,2 -127,2021-04-15,2021-03-20,Delta,256.0194795,0,Infection naive,BNT162b2,2 -127,2021-07-07,2021-03-20,Delta,84.2560552900003,0,Infection naive,BNT162b2,2 -128,2021-04-15,2021-03-11,Ancestral,416.060483272753,0,Infection naive,BNT162b2,2 -128,2021-07-07,2021-03-11,Ancestral,243.116426,0,Infection naive,BNT162b2,2 -128,2021-09-29,2021-03-11,Ancestral,177.328328299999,0,Infection naive,BNT162b2,2 -128,2021-04-15,2021-03-11,Alpha,457.770687576985,0,Infection naive,BNT162b2,2 -128,2021-07-07,2021-03-11,Alpha,366.404956600001,0,Infection naive,BNT162b2,2 -128,2021-09-29,2021-03-11,Alpha,227.050848726935,0,Infection naive,BNT162b2,2 -128,2021-04-15,2021-03-11,Delta,306.950832311165,0,Infection naive,BNT162b2,2 -128,2021-07-07,2021-03-11,Delta,262.3803941,0,Infection naive,BNT162b2,2 -128,2021-09-29,2021-03-11,Delta,255.7951785,0,Infection naive,BNT162b2,2 -129,2021-03-09,2021-02-24,Ancestral,494.4765649,0,Previously infected (Pre-Omicron),BNT162b2,3 -129,2021-04-27,2021-02-24,Ancestral,278.982720200001,0,Previously infected (Pre-Omicron),BNT162b2,3 -129,2021-07-20,2021-02-24,Ancestral,143.8140513,0,Previously infected (Pre-Omicron),BNT162b2,3 -129,2021-03-09,2021-02-24,Alpha,843.267292800003,0,Previously infected (Pre-Omicron),BNT162b2,3 -129,2021-04-27,2021-02-24,Alpha,168.2436788,0,Previously infected (Pre-Omicron),BNT162b2,3 -129,2021-07-20,2021-02-24,Alpha,155.8912282,0,Previously infected (Pre-Omicron),BNT162b2,3 -129,2021-03-09,2021-02-24,Delta,282.6748337,0,Previously infected (Pre-Omicron),BNT162b2,3 -129,2021-04-27,2021-02-24,Delta,155.0735547,0,Previously infected (Pre-Omicron),BNT162b2,3 -129,2021-07-20,2021-02-24,Delta,163.733829,0,Previously infected (Pre-Omicron),BNT162b2,3 -130,2021-02-12,2021-01-13,Ancestral,166.483379566172,0,Infection naive,BNT162b2,1 -130,2021-02-12,2021-01-13,Alpha,168.096279036151,0,Infection naive,BNT162b2,1 -130,2021-02-12,2021-01-13,Delta,191.044212302065,0,Infection naive,BNT162b2,1 -131,2021-03-17,2021-02-26,Ancestral,2560,1,Infection naive,BNT162b2,2 -131,2021-04-28,2021-02-26,Ancestral,890.360596700001,0,Infection naive,BNT162b2,2 -131,2021-07-21,2021-02-26,Ancestral,418.621048999999,0,Infection naive,BNT162b2,2 -131,2021-03-17,2021-02-26,Alpha,1469.945388,0,Infection naive,BNT162b2,2 -131,2021-04-28,2021-02-26,Alpha,563.954573599998,0,Infection naive,BNT162b2,2 -131,2021-03-17,2021-02-26,Delta,996.943540999999,0,Infection naive,BNT162b2,2 -131,2021-04-28,2021-02-26,Delta,365.1226004,0,Infection naive,BNT162b2,2 -131,2021-07-21,2021-02-26,Delta,445.499932,0,Infection naive,BNT162b2,2 -132,2021-06-11,2021-04-23,Ancestral,1880.466295,0,Infection naive,AZD1222,2 -132,2021-06-28,2021-04-23,Ancestral,290.2062941,0,Infection naive,AZD1222,2 -132,2021-09-22,2021-04-23,Ancestral,570.91743762185,0,Infection naive,AZD1222,2 -132,2021-12-20,2021-04-23,Ancestral,780.670057600001,0,Infection naive,AZD1222,2 -132,2021-06-11,2021-04-23,Alpha,308.028882,0,Infection naive,AZD1222,2 -132,2021-06-28,2021-04-23,Alpha,510.327923100001,0,Infection naive,AZD1222,2 -132,2021-09-22,2021-04-23,Alpha,625.405272831979,0,Infection naive,AZD1222,2 -132,2021-12-20,2021-04-23,Alpha,473.274287620173,0,Infection naive,AZD1222,2 -132,2021-06-11,2021-04-23,Delta,328.958145200001,0,Infection naive,AZD1222,2 -132,2021-06-28,2021-04-23,Delta,274.134808000001,0,Infection naive,AZD1222,2 -132,2021-09-22,2021-04-23,Delta,435.080810005539,0,Infection naive,AZD1222,2 -132,2021-12-20,2021-04-23,Delta,745.887634099998,0,Infection naive,AZD1222,2 -133,2021-04-15,2021-03-21,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -133,2021-07-07,2021-03-21,Ancestral,332.1451085,0,Previously infected (Pre-Omicron),BNT162b2,3 -133,2021-11-23,2021-03-21,Ancestral,352.543306400001,0,Previously infected (Pre-Omicron),BNT162b2,3 -133,2021-04-15,2021-03-21,Alpha,1791.964782,0,Previously infected (Pre-Omicron),BNT162b2,3 -133,2021-07-07,2021-03-21,Alpha,528.537218,0,Previously infected (Pre-Omicron),BNT162b2,3 -133,2021-11-23,2021-03-21,Alpha,315.12909135797,0,Previously infected (Pre-Omicron),BNT162b2,3 -133,2021-04-15,2021-03-21,Delta,1244.447409,0,Previously infected (Pre-Omicron),BNT162b2,3 -133,2021-07-07,2021-03-21,Delta,293.531934100001,0,Previously infected (Pre-Omicron),BNT162b2,3 -133,2021-11-23,2021-03-21,Delta,177.639455,0,Previously infected (Pre-Omicron),BNT162b2,3 -134,2021-02-02,2021-01-03,Ancestral,136.9255775,0,Previously infected (Pre-Omicron),BNT162b2,2 -134,2021-02-02,2021-01-03,Alpha,101.461249822687,0,Previously infected (Pre-Omicron),BNT162b2,2 -134,2021-02-25,2021-01-03,Alpha,125.325174773812,0,Previously infected (Pre-Omicron),BNT162b2,2 -134,2021-02-02,2021-01-03,Delta,47.1222645000002,0,Previously infected (Pre-Omicron),BNT162b2,2 -134,2021-02-25,2021-01-03,Delta,5,-1,Previously infected (Pre-Omicron),BNT162b2,2 -135,2021-06-11,2021-04-28,Ancestral,2065.35995499999,0,Previously infected (Pre-Omicron),AZD1222,3 -135,2021-07-08,2021-04-28,Ancestral,2560,1,Previously infected (Pre-Omicron),AZD1222,3 -135,2021-09-20,2021-04-28,Ancestral,1593.388057,0,Previously infected (Pre-Omicron),AZD1222,3 -135,2021-06-11,2021-04-28,Alpha,881.044935599999,0,Previously infected (Pre-Omicron),AZD1222,3 -135,2021-07-08,2021-04-28,Alpha,815.643398595694,0,Previously infected (Pre-Omicron),AZD1222,3 -135,2021-09-20,2021-04-28,Alpha,447.848968718045,0,Previously infected (Pre-Omicron),AZD1222,3 -135,2021-06-11,2021-04-28,Delta,1216.408623,0,Previously infected (Pre-Omicron),AZD1222,3 -135,2021-07-08,2021-04-28,Delta,854.427262200003,0,Previously infected (Pre-Omicron),AZD1222,3 -135,2021-09-20,2021-04-28,Delta,1009.252303,0,Previously infected (Pre-Omicron),AZD1222,3 -136,2021-04-12,2021-02-25,Ancestral,2560,1,Infection naive,BNT162b2,2 -136,2021-07-05,2021-02-25,Ancestral,196.650717500001,0,Infection naive,BNT162b2,2 -136,2021-10-04,2021-02-25,Ancestral,168.096279036151,0,Infection naive,BNT162b2,2 -136,2021-04-12,2021-02-25,Alpha,454.5720527,0,Infection naive,BNT162b2,2 -136,2021-07-05,2021-02-25,Alpha,166.0461901,0,Infection naive,BNT162b2,2 -136,2021-10-04,2021-02-25,Alpha,327.519652092377,0,Infection naive,BNT162b2,2 -136,2021-04-12,2021-02-25,Delta,180.9394264,0,Infection naive,BNT162b2,2 -136,2021-07-05,2021-02-25,Delta,111.8286368,0,Infection naive,BNT162b2,2 -136,2021-10-04,2021-02-25,Delta,148.164318226981,0,Infection naive,BNT162b2,2 -137,2021-06-11,2021-04-22,Ancestral,255.347166000001,0,Infection naive,AZD1222,2 -137,2021-07-08,2021-04-22,Ancestral,150.1251547,0,Infection naive,AZD1222,2 -137,2021-09-17,2021-04-22,Ancestral,156.4387377,0,Infection naive,AZD1222,2 -137,2021-06-11,2021-04-22,Alpha,162.7323236,0,Infection naive,AZD1222,2 -137,2021-07-08,2021-04-22,Alpha,94.8395950400003,0,Infection naive,AZD1222,2 -137,2021-09-17,2021-04-22,Alpha,5,-1,Infection naive,AZD1222,2 -137,2021-06-11,2021-04-22,Delta,65.74692666,0,Infection naive,AZD1222,2 -137,2021-07-08,2021-04-22,Delta,43.3574594500001,0,Infection naive,AZD1222,2 -137,2021-09-17,2021-04-22,Delta,5,-1,Infection naive,AZD1222,2 -138,2021-03-11,2021-03-11,Ancestral,101.639265952646,0,Infection naive,BNT162b2,2 -138,2021-04-15,2021-03-11,Ancestral,2560,1,Infection naive,BNT162b2,2 -138,2021-07-08,2021-03-11,Ancestral,130.0247039,0,Infection naive,BNT162b2,2 -138,2021-03-11,2021-03-11,Alpha,5,-1,Infection naive,BNT162b2,2 -138,2021-04-15,2021-03-11,Alpha,741.975338799998,0,Infection naive,BNT162b2,2 -138,2021-07-08,2021-03-11,Alpha,177.951127500001,0,Infection naive,BNT162b2,2 -138,2021-03-11,2021-03-11,Delta,5,-1,Infection naive,BNT162b2,2 -138,2021-04-15,2021-03-11,Delta,468.733176700001,0,Infection naive,BNT162b2,2 -138,2021-07-08,2021-03-11,Delta,139.469215700001,0,Infection naive,BNT162b2,2 -139,2021-04-08,2021-03-01,Ancestral,2560,1,Infection naive,BNT162b2,2 -139,2021-04-08,2021-03-01,Alpha,1264.236594,0,Infection naive,BNT162b2,2 -139,2021-04-08,2021-03-01,Delta,707.055308599998,0,Infection naive,BNT162b2,2 -140,2021-04-28,2021-03-12,Ancestral,1079.717811,0,Infection naive,BNT162b2,2 -140,2021-07-20,2021-03-12,Ancestral,97.7940997500001,0,Infection naive,BNT162b2,2 -140,2021-04-28,2021-03-12,Alpha,482.912002799999,0,Infection naive,BNT162b2,2 -140,2021-07-20,2021-03-12,Alpha,181.2568889,0,Infection naive,BNT162b2,2 -140,2021-09-29,2021-03-12,Alpha,110.078175224005,0,Infection naive,BNT162b2,2 -140,2021-04-28,2021-03-12,Delta,238.4733591,0,Infection naive,BNT162b2,2 -140,2021-07-20,2021-03-12,Delta,75.8442035,0,Infection naive,BNT162b2,2 -140,2021-09-29,2021-03-12,Delta,70.5843789200002,0,Infection naive,BNT162b2,2 -141,2021-02-04,2021-01-13,Ancestral,1038.870464,0,Infection naive,BNT162b2,3 -141,2021-02-25,2021-01-13,Ancestral,2560,1,Infection naive,BNT162b2,3 -141,2021-04-09,2021-01-13,Ancestral,348.8547177,0,Infection naive,BNT162b2,3 -141,2021-02-04,2021-01-13,Alpha,452.981126300002,0,Infection naive,BNT162b2,3 -141,2021-02-25,2021-01-13,Alpha,442.387037999999,0,Infection naive,BNT162b2,3 -141,2021-04-09,2021-01-13,Alpha,408.4723763,0,Infection naive,BNT162b2,3 -141,2021-02-04,2021-01-13,Delta,249.375238500001,0,Infection naive,BNT162b2,3 -141,2021-02-25,2021-01-13,Delta,185.5975484,0,Infection naive,BNT162b2,3 -141,2021-04-09,2021-01-13,Delta,97.6228182400002,0,Infection naive,BNT162b2,3 -142,2021-04-23,2021-04-09,Ancestral,429.7745987,0,Previously infected (Pre-Omicron),AZD1222,4 -142,2021-07-08,2021-04-09,Ancestral,129.9107881,0,Previously infected (Pre-Omicron),AZD1222,4 -142,2021-04-23,2021-04-09,Alpha,485.8839935,0,Previously infected (Pre-Omicron),AZD1222,4 -142,2021-07-08,2021-04-09,Alpha,286.164878000001,0,Previously infected (Pre-Omicron),AZD1222,4 -142,2021-10-20,2021-04-09,Alpha,254.899938100001,0,Previously infected (Pre-Omicron),AZD1222,4 -142,2021-04-23,2021-04-09,Delta,183.9779073,0,Previously infected (Pre-Omicron),AZD1222,4 -142,2021-07-08,2021-04-09,Delta,123.579895,0,Previously infected (Pre-Omicron),AZD1222,4 -142,2021-10-20,2021-04-09,Delta,144.4456944,0,Previously infected (Pre-Omicron),AZD1222,4 -143,2021-02-17,2021-01-11,Ancestral,731.001583499999,0,Infection naive,BNT162b2,2 -143,2021-03-10,2021-01-11,Ancestral,285.4134019,0,Infection naive,BNT162b2,2 -143,2021-04-26,2021-01-11,Ancestral,222.9098976,0,Infection naive,BNT162b2,2 -143,2021-07-19,2021-01-11,Ancestral,138.6161289,0,Infection naive,BNT162b2,2 -143,2021-02-17,2021-01-11,Alpha,179.2032958,0,Infection naive,BNT162b2,2 -143,2021-03-10,2021-01-11,Alpha,178.2633469,0,Infection naive,BNT162b2,2 -143,2021-04-26,2021-01-11,Alpha,237.4305447,0,Infection naive,BNT162b2,2 -143,2021-07-19,2021-01-11,Alpha,110.5616476,0,Infection naive,BNT162b2,2 -143,2021-02-17,2021-01-11,Delta,320.140269600001,0,Infection naive,BNT162b2,2 -143,2021-03-10,2021-01-11,Delta,167.9490084,0,Infection naive,BNT162b2,2 -143,2021-04-26,2021-01-11,Delta,149.468676,0,Infection naive,BNT162b2,2 -143,2021-07-19,2021-01-11,Delta,61.9971178600002,0,Infection naive,BNT162b2,2 -144,2021-06-04,2021-05-05,Ancestral,265.6198731,0,Infection naive,AZD1222,2 -144,2021-06-04,2021-05-05,Alpha,85.22159364,0,Infection naive,AZD1222,2 -144,2021-06-04,2021-05-05,Delta,160.3255257,0,Infection naive,AZD1222,2 -145,2021-04-20,2021-04-13,Ancestral,184.3007008,0,Infection naive,AZD1222,2 -145,2021-07-08,2021-04-13,Ancestral,56.3481924800002,0,Infection naive,AZD1222,2 -145,2021-04-20,2021-04-13,Alpha,145.9729799,0,Infection naive,AZD1222,2 -145,2021-07-08,2021-04-13,Alpha,96.1789846400002,0,Infection naive,AZD1222,2 -145,2021-04-20,2021-04-13,Delta,68.93358797,0,Infection naive,AZD1222,2 -145,2021-07-08,2021-04-13,Delta,125.8756132,0,Infection naive,AZD1222,2 -146,2021-06-02,2021-04-28,Ancestral,2560,1,Previously infected (Pre-Omicron),AZD1222,3 -146,2021-07-16,2021-04-28,Ancestral,264.2266561,0,Previously infected (Pre-Omicron),AZD1222,3 -146,2021-09-20,2021-04-28,Ancestral,231.674491839836,0,Previously infected (Pre-Omicron),AZD1222,3 -146,2021-06-02,2021-04-28,Alpha,492.745979499999,0,Previously infected (Pre-Omicron),AZD1222,3 -146,2021-07-16,2021-04-28,Alpha,245.2566903,0,Previously infected (Pre-Omicron),AZD1222,3 -146,2021-06-02,2021-04-28,Delta,342.192248199999,0,Previously infected (Pre-Omicron),AZD1222,3 -146,2021-07-16,2021-04-28,Delta,201.3600216,0,Previously infected (Pre-Omicron),AZD1222,3 -146,2021-09-20,2021-04-28,Delta,278.738300902528,0,Previously infected (Pre-Omicron),AZD1222,3 -147,2021-03-11,2021-03-11,Ancestral,141.4388953,0,Infection naive,BNT162b2,2 -147,2021-04-19,2021-03-11,Ancestral,479.537695000001,0,Infection naive,BNT162b2,2 -147,2021-06-28,2021-03-11,Ancestral,284.4145027,0,Infection naive,BNT162b2,2 -147,2021-10-01,2021-03-11,Ancestral,166.337522,0,Infection naive,BNT162b2,2 -147,2021-03-11,2021-03-11,Alpha,5,-1,Infection naive,BNT162b2,2 -147,2021-04-19,2021-03-11,Alpha,619.404450899999,0,Infection naive,BNT162b2,2 -147,2021-06-28,2021-03-11,Alpha,138.859334100001,0,Infection naive,BNT162b2,2 -147,2021-10-01,2021-03-11,Alpha,131.630053697801,0,Infection naive,BNT162b2,2 -147,2021-03-11,2021-03-11,Delta,5,-1,Infection naive,BNT162b2,2 -147,2021-04-19,2021-03-11,Delta,291.480903899999,0,Infection naive,BNT162b2,2 -147,2021-06-28,2021-03-11,Delta,193.4029393,0,Infection naive,BNT162b2,2 -147,2021-10-01,2021-03-11,Delta,58.40995721,0,Infection naive,BNT162b2,2 -148,2021-05-26,2021-04-29,Ancestral,289.9520417,0,Infection naive,AZD1222,2 -148,2021-07-07,2021-04-29,Ancestral,373.8663943,0,Infection naive,AZD1222,2 -148,2021-05-26,2021-04-29,Alpha,54.4068706399999,0,Infection naive,AZD1222,2 -148,2021-07-07,2021-04-29,Alpha,98.9147783000003,0,Infection naive,AZD1222,2 -148,2021-05-26,2021-04-29,Delta,72.2113817700003,0,Infection naive,AZD1222,2 -148,2021-07-07,2021-04-29,Delta,99.7855700200003,0,Infection naive,AZD1222,2 -149,2021-02-12,2021-01-06,Ancestral,220.191306000001,0,Infection naive,BNT162b2,2 -149,2021-02-12,2021-01-06,Alpha,164.021103800001,0,Infection naive,BNT162b2,2 -149,2021-03-09,2021-01-06,Alpha,202.954718900001,0,Infection naive,BNT162b2,2 -149,2021-04-13,2021-01-06,Alpha,116.6338259,0,Infection naive,BNT162b2,2 -149,2021-07-06,2021-01-06,Alpha,48.8036602599998,0,Infection naive,BNT162b2,2 -149,2021-02-12,2021-01-06,Delta,90.2178130599998,0,Infection naive,BNT162b2,2 -149,2021-03-09,2021-01-06,Delta,94.2594927799998,0,Infection naive,BNT162b2,2 -149,2021-04-13,2021-01-06,Delta,70.64627275,0,Infection naive,BNT162b2,2 -149,2021-07-06,2021-01-06,Delta,41.5711784200001,0,Infection naive,BNT162b2,2 -150,2021-03-12,2021-02-24,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -150,2021-04-01,2021-02-24,Ancestral,1273.13250237821,0,Previously infected (Pre-Omicron),BNT162b2,3 -150,2021-05-13,2021-02-24,Ancestral,1333.669984,0,Previously infected (Pre-Omicron),BNT162b2,3 -150,2021-08-05,2021-02-24,Ancestral,607.57499,0,Previously infected (Pre-Omicron),BNT162b2,3 -150,2021-03-12,2021-02-24,Alpha,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -150,2021-04-01,2021-02-24,Alpha,1143.01757944835,0,Previously infected (Pre-Omicron),BNT162b2,3 -150,2021-05-13,2021-02-24,Alpha,1211.089419,0,Previously infected (Pre-Omicron),BNT162b2,3 -150,2021-08-05,2021-02-24,Alpha,440.838757200001,0,Previously infected (Pre-Omicron),BNT162b2,3 -150,2021-03-12,2021-02-24,Delta,877.961425299999,0,Previously infected (Pre-Omicron),BNT162b2,3 -150,2021-04-01,2021-02-24,Delta,950.856843638419,0,Previously infected (Pre-Omicron),BNT162b2,3 -150,2021-05-13,2021-02-24,Delta,1060.025929,0,Previously infected (Pre-Omicron),BNT162b2,3 -150,2021-08-05,2021-02-24,Delta,525.764959,0,Previously infected (Pre-Omicron),BNT162b2,3 -151,2021-04-15,2021-03-09,Ancestral,1182.765086,0,Infection naive,BNT162b2,2 -151,2021-04-15,2021-03-09,Alpha,1210.028373,0,Infection naive,BNT162b2,2 -151,2021-04-15,2021-03-09,Delta,782.725514299998,0,Infection naive,BNT162b2,2 -152,2021-03-11,2021-03-04,Ancestral,777.937842600003,0,Previously infected (Pre-Omicron),BNT162b2,3 -152,2021-04-19,2021-03-04,Ancestral,422.306360200001,0,Previously infected (Pre-Omicron),BNT162b2,3 -152,2021-07-08,2021-03-04,Ancestral,161.0296885,0,Previously infected (Pre-Omicron),BNT162b2,3 -152,2021-03-11,2021-03-04,Alpha,398.9192356,0,Previously infected (Pre-Omicron),BNT162b2,3 -152,2021-04-19,2021-03-04,Alpha,560.996545100001,0,Previously infected (Pre-Omicron),BNT162b2,3 -152,2021-07-08,2021-03-04,Alpha,262.8407466,0,Previously infected (Pre-Omicron),BNT162b2,3 -152,2021-03-11,2021-03-04,Delta,243.756536699999,0,Previously infected (Pre-Omicron),BNT162b2,3 -152,2021-04-19,2021-03-04,Delta,172.4237657,0,Previously infected (Pre-Omicron),BNT162b2,3 -152,2021-07-08,2021-03-04,Delta,127.9894181,0,Previously infected (Pre-Omicron),BNT162b2,3 -153,2021-04-20,2021-03-22,Ancestral,739.378548899999,0,Previously infected (Pre-Omicron),BNT162b2,3 -153,2021-07-07,2021-03-22,Ancestral,253.1188458,0,Previously infected (Pre-Omicron),BNT162b2,3 -153,2021-10-08,2021-03-22,Ancestral,439.6811036,0,Previously infected (Pre-Omicron),BNT162b2,3 -153,2021-04-20,2021-03-22,Alpha,598.589004999999,0,Previously infected (Pre-Omicron),BNT162b2,3 -153,2021-07-07,2021-03-22,Alpha,420.091298400001,0,Previously infected (Pre-Omicron),BNT162b2,3 -153,2021-10-08,2021-03-22,Alpha,409.906982324407,0,Previously infected (Pre-Omicron),BNT162b2,3 -153,2021-04-20,2021-03-22,Delta,565.935252499999,0,Previously infected (Pre-Omicron),BNT162b2,3 -153,2021-07-07,2021-03-22,Delta,288.1785015,0,Previously infected (Pre-Omicron),BNT162b2,3 -153,2021-10-08,2021-03-22,Delta,142.6840461,0,Previously infected (Pre-Omicron),BNT162b2,3 -154,2021-04-07,2021-02-25,Ancestral,160.888609,0,Infection naive,BNT162b2,2 -154,2021-04-07,2021-02-25,Alpha,321.8283086,0,Infection naive,BNT162b2,2 -154,2021-04-07,2021-02-25,Delta,170.6197311,0,Infection naive,BNT162b2,2 -155,2021-04-09,2021-03-22,Ancestral,1181.728855,0,Infection naive,BNT162b2,2 -155,2021-09-24,2021-03-22,Ancestral,279.227353800001,0,Infection naive,BNT162b2,2 -155,2021-04-09,2021-03-22,Alpha,1078.771861,0,Infection naive,BNT162b2,2 -155,2021-09-24,2021-03-22,Alpha,354.712967615556,0,Infection naive,BNT162b2,2 -155,2021-04-09,2021-03-22,Delta,1343.054466,0,Infection naive,BNT162b2,2 -155,2021-09-24,2021-03-22,Delta,266.552763300001,0,Infection naive,BNT162b2,2 -156,2021-02-12,2021-01-26,Ancestral,185.9231836,0,Previously infected (Pre-Omicron),others,3 -156,2021-04-15,2021-01-26,Ancestral,306.681909900001,0,Previously infected (Pre-Omicron),others,3 -156,2021-06-28,2021-01-26,Ancestral,90.3761023199997,0,Previously infected (Pre-Omicron),others,3 -156,2021-12-13,2021-01-26,Ancestral,139.469215684706,0,Previously infected (Pre-Omicron),others,3 -156,2021-02-12,2021-01-26,Alpha,218.4611738,0,Previously infected (Pre-Omicron),others,3 -156,2021-04-15,2021-01-26,Alpha,128.7771048,0,Previously infected (Pre-Omicron),others,3 -156,2021-06-28,2021-01-26,Alpha,119.9514538,0,Previously infected (Pre-Omicron),others,3 -156,2021-12-13,2021-01-26,Alpha,112.418287978578,0,Previously infected (Pre-Omicron),others,3 -156,2021-02-12,2021-01-26,Delta,60.8130894199999,0,Previously infected (Pre-Omicron),others,3 -156,2021-04-15,2021-01-26,Delta,91.4117737899999,0,Previously infected (Pre-Omicron),others,3 -156,2021-06-28,2021-01-26,Delta,50.58937264,0,Previously infected (Pre-Omicron),others,3 -156,2021-12-13,2021-01-26,Delta,97.1107715442805,0,Previously infected (Pre-Omicron),others,3 -157,2021-03-03,2021-02-26,Ancestral,154.260170083228,0,Infection naive,BNT162b2,2 -157,2021-04-14,2021-02-26,Ancestral,617.7778794,0,Infection naive,BNT162b2,2 -157,2021-06-23,2021-02-26,Ancestral,109.9817347,0,Infection naive,BNT162b2,2 -157,2021-03-03,2021-02-26,Alpha,125.105673950083,0,Infection naive,BNT162b2,2 -157,2021-04-14,2021-02-26,Alpha,161.1708918,0,Infection naive,BNT162b2,2 -157,2021-06-23,2021-02-26,Alpha,92.7840422799997,0,Infection naive,BNT162b2,2 -157,2021-03-03,2021-02-26,Delta,57.394961222384,0,Infection naive,BNT162b2,2 -157,2021-04-14,2021-02-26,Delta,102.4442116,0,Infection naive,BNT162b2,2 -157,2021-06-23,2021-02-26,Delta,46.6292338600001,0,Infection naive,BNT162b2,2 -158,2021-04-15,2021-03-26,Ancestral,140.943882757322,0,Infection naive,AZD1222,1 -158,2021-04-15,2021-03-26,Alpha,50.6781328723178,0,Infection naive,AZD1222,1 -158,2021-04-15,2021-03-26,Delta,5,-1,Infection naive,AZD1222,1 -159,2021-03-05,2021-03-02,Ancestral,97.9656817769744,0,Infection naive,BNT162b2,2 -159,2021-03-05,2021-03-02,Alpha,57.1439801799681,0,Infection naive,BNT162b2,2 -159,2021-03-05,2021-03-02,Delta,5,-1,Infection naive,BNT162b2,2 -160,2021-03-03,2021-02-24,Ancestral,1448.205014,0,Previously infected (Pre-Omicron),BNT162b2,3 -160,2021-04-14,2021-02-24,Ancestral,633.6820123,0,Previously infected (Pre-Omicron),BNT162b2,3 -160,2021-03-03,2021-02-24,Alpha,911.682556900002,0,Previously infected (Pre-Omicron),BNT162b2,3 -160,2021-04-14,2021-02-24,Alpha,362.5713364,0,Previously infected (Pre-Omicron),BNT162b2,3 -160,2021-03-03,2021-02-24,Delta,227.050848700001,0,Previously infected (Pre-Omicron),BNT162b2,3 -160,2021-04-14,2021-02-24,Delta,184.6240607,0,Previously infected (Pre-Omicron),BNT162b2,3 -161,2021-05-26,2021-04-09,Ancestral,499.704875025919,0,Previously infected (Pre-Omicron),AZD1222,2 -161,2021-05-26,2021-04-09,Alpha,769.798437800932,0,Previously infected (Pre-Omicron),AZD1222,2 -161,2021-05-26,2021-04-09,Delta,359.407310556111,0,Previously infected (Pre-Omicron),AZD1222,2 -162,2021-04-19,2021-03-29,Ancestral,1862.423045,0,Infection naive,BNT162b2,2 -162,2021-06-28,2021-03-29,Ancestral,228.2480448,0,Infection naive,BNT162b2,2 -162,2021-04-19,2021-03-29,Alpha,1116.285275,0,Infection naive,BNT162b2,2 -162,2021-06-28,2021-03-29,Alpha,352.543306400001,0,Infection naive,BNT162b2,2 -162,2021-09-29,2021-03-29,Alpha,225.464349655178,0,Infection naive,BNT162b2,2 -162,2021-04-19,2021-03-29,Delta,513.018785499999,0,Infection naive,BNT162b2,2 -162,2021-06-28,2021-03-29,Delta,190.8768368,0,Infection naive,BNT162b2,2 -162,2021-09-29,2021-03-29,Delta,282.6748337,0,Infection naive,BNT162b2,2 -163,2021-02-12,2021-01-19,Ancestral,104.530376317928,0,Infection naive,BNT162b2,1 -163,2021-02-12,2021-01-19,Alpha,46.1818220151127,0,Infection naive,BNT162b2,1 -163,2021-02-12,2021-01-19,Delta,5,-1,Infection naive,BNT162b2,1 -164,2021-04-23,2021-03-24,Ancestral,355.335319799999,0,Previously infected (Pre-Omicron),BNT162b2,3 -164,2021-06-28,2021-03-24,Ancestral,70.64627275,0,Previously infected (Pre-Omicron),BNT162b2,3 -164,2021-04-23,2021-03-24,Alpha,316.513164100001,0,Previously infected (Pre-Omicron),BNT162b2,3 -164,2021-06-28,2021-03-24,Alpha,154.5308232,0,Previously infected (Pre-Omicron),BNT162b2,3 -164,2021-04-23,2021-03-24,Delta,174.094216,0,Previously infected (Pre-Omicron),BNT162b2,3 -164,2021-06-28,2021-03-24,Delta,89.8233017599999,0,Previously infected (Pre-Omicron),BNT162b2,3 -165,2021-05-04,2021-03-23,Ancestral,168.2436788,0,Infection naive,BNT162b2,2 -165,2021-05-04,2021-03-23,Alpha,79.3114434600003,0,Infection naive,BNT162b2,2 -165,2021-05-04,2021-03-23,Delta,165.0305408,0,Infection naive,BNT162b2,2 -166,2021-04-06,2021-03-11,Ancestral,2376.29701499999,0,Infection naive,BNT162b2,2 -166,2021-07-02,2021-03-11,Ancestral,1585.030492,0,Infection naive,BNT162b2,2 -166,2021-04-06,2021-03-11,Alpha,1757.741623,0,Infection naive,BNT162b2,2 -166,2021-07-02,2021-03-11,Alpha,878.731289700001,0,Infection naive,BNT162b2,2 -166,2021-04-06,2021-03-11,Delta,1449.47491200001,0,Infection naive,BNT162b2,2 -166,2021-07-02,2021-03-11,Delta,1034.327612,0,Infection naive,BNT162b2,2 -167,2021-05-25,2021-04-27,Ancestral,322.110512499999,0,Infection naive,BNT162b2,3 -167,2021-06-28,2021-04-27,Ancestral,542.619324400001,0,Infection naive,BNT162b2,3 -167,2021-09-20,2021-04-27,Ancestral,192.726061299999,0,Infection naive,BNT162b2,3 -167,2021-05-25,2021-04-27,Alpha,360.669594000001,0,Infection naive,BNT162b2,3 -167,2021-06-28,2021-04-27,Alpha,433.558099799999,0,Infection naive,BNT162b2,3 -167,2021-09-20,2021-04-27,Alpha,175.934987838245,0,Infection naive,BNT162b2,3 -167,2021-05-25,2021-04-27,Delta,305.608574399999,0,Infection naive,BNT162b2,3 -167,2021-06-28,2021-04-27,Delta,277.276275700001,0,Infection naive,BNT162b2,3 -167,2021-09-20,2021-04-27,Delta,107.8812903,0,Infection naive,BNT162b2,3 -168,2021-04-15,2021-03-24,Ancestral,1478.991889,0,Infection naive,BNT162b2,2 -168,2021-06-28,2021-03-24,Ancestral,199.602827200001,0,Infection naive,BNT162b2,2 -168,2021-04-15,2021-03-24,Alpha,611.850243099998,0,Infection naive,BNT162b2,2 -168,2021-06-28,2021-03-24,Alpha,321.546351899999,0,Infection naive,BNT162b2,2 -168,2021-04-15,2021-03-24,Delta,343.695184599999,0,Infection naive,BNT162b2,2 -168,2021-06-28,2021-03-24,Delta,201.3600216,0,Infection naive,BNT162b2,2 -169,2021-02-01,2021-01-21,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -169,2021-02-25,2021-01-21,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -169,2021-04-07,2021-01-21,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -169,2021-02-01,2021-01-21,Alpha,2250.608976,0,Previously infected (Pre-Omicron),BNT162b2,3 -169,2021-02-25,2021-01-21,Alpha,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -169,2021-04-07,2021-01-21,Alpha,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -169,2021-02-01,2021-01-21,Delta,1299.058458,0,Previously infected (Pre-Omicron),BNT162b2,3 -169,2021-02-25,2021-01-21,Delta,997.817738100004,0,Previously infected (Pre-Omicron),BNT162b2,3 -169,2021-04-07,2021-01-21,Delta,849.2010148,0,Previously infected (Pre-Omicron),BNT162b2,3 -170,2021-05-26,2021-04-30,Ancestral,2482.75305900001,0,Previously infected (Pre-Omicron),AZD1222,3 -170,2021-07-08,2021-04-30,Ancestral,301.6169153,0,Previously infected (Pre-Omicron),AZD1222,3 -170,2021-12-02,2021-04-30,Ancestral,353.7814825,0,Previously infected (Pre-Omicron),AZD1222,3 -170,2021-05-26,2021-04-30,Alpha,460.991830000001,0,Previously infected (Pre-Omicron),AZD1222,3 -170,2021-07-08,2021-04-30,Alpha,322.9586098,0,Previously infected (Pre-Omicron),AZD1222,3 -170,2021-12-02,2021-04-30,Alpha,161.31221889536,0,Previously infected (Pre-Omicron),AZD1222,3 -170,2021-05-26,2021-04-30,Delta,220.191306000001,0,Previously infected (Pre-Omicron),AZD1222,3 -170,2021-07-08,2021-04-30,Delta,255.5710741,0,Previously infected (Pre-Omicron),AZD1222,3 -170,2021-12-02,2021-04-30,Delta,183.0129149,0,Previously infected (Pre-Omicron),AZD1222,3 -171,2021-04-15,2021-03-19,Ancestral,659.753280500002,0,Infection naive,BNT162b2,2 -171,2021-06-28,2021-03-19,Ancestral,118.0738452,0,Infection naive,BNT162b2,2 -171,2021-04-15,2021-03-19,Alpha,350.694162500001,0,Infection naive,BNT162b2,2 -171,2021-06-28,2021-03-19,Alpha,171.2189689,0,Infection naive,BNT162b2,2 -171,2021-04-15,2021-03-19,Delta,192.3885111,0,Infection naive,BNT162b2,2 -171,2021-06-28,2021-03-19,Delta,82.7919289299998,0,Infection naive,BNT162b2,2 -172,2021-03-02,2021-02-25,Ancestral,161.453669903554,0,Infection naive,BNT162b2,2 -172,2021-04-14,2021-02-25,Ancestral,1194.223775,0,Infection naive,BNT162b2,2 -172,2021-09-16,2021-02-25,Ancestral,267.7234849,0,Infection naive,BNT162b2,2 -172,2021-03-02,2021-02-25,Alpha,182.372400207781,0,Infection naive,BNT162b2,2 -172,2021-04-14,2021-02-25,Alpha,648.857147700003,0,Infection naive,BNT162b2,2 -172,2021-09-16,2021-02-25,Alpha,133.606076800001,0,Infection naive,BNT162b2,2 -172,2021-03-02,2021-02-25,Delta,96.2633217966529,0,Infection naive,BNT162b2,2 -172,2021-04-14,2021-02-25,Delta,211.861138,0,Infection naive,BNT162b2,2 -172,2021-09-16,2021-02-25,Delta,164.741498,0,Infection naive,BNT162b2,2 -173,2021-02-25,2021-02-25,Ancestral,106.7525503898,0,Infection naive,BNT162b2,2 -173,2021-04-06,2021-02-25,Ancestral,2560,1,Infection naive,BNT162b2,2 -173,2021-07-02,2021-02-25,Ancestral,155.3456349,0,Infection naive,BNT162b2,2 -173,2021-02-25,2021-02-25,Alpha,5,-1,Infection naive,BNT162b2,2 -173,2021-04-06,2021-02-25,Alpha,983.922117299998,0,Infection naive,BNT162b2,2 -173,2021-07-02,2021-02-25,Alpha,167.06809,0,Infection naive,BNT162b2,2 -173,2021-02-25,2021-02-25,Delta,5,-1,Infection naive,BNT162b2,2 -173,2021-04-06,2021-02-25,Delta,307.759015099999,0,Infection naive,BNT162b2,2 -173,2021-07-02,2021-02-25,Delta,107.5037238,0,Infection naive,BNT162b2,2 -174,2021-03-22,2021-02-24,Ancestral,431.2840209,0,Infection naive,BNT162b2,2 -174,2021-03-22,2021-02-24,Alpha,200.4794992,0,Infection naive,BNT162b2,2 -174,2021-03-22,2021-02-24,Delta,84.2560552900003,0,Infection naive,BNT162b2,2 -175,2021-01-29,2021-01-05,Ancestral,108.8310183,0,Infection naive,BNT162b2,2 -175,2021-02-19,2021-01-05,Ancestral,118.6964262,0,Infection naive,BNT162b2,2 -175,2021-04-06,2021-01-05,Ancestral,92.7840422799997,0,Infection naive,BNT162b2,2 -175,2021-07-06,2021-01-05,Ancestral,56.1509832100001,0,Infection naive,BNT162b2,2 -175,2021-01-29,2021-01-05,Alpha,88.6500886099999,0,Infection naive,BNT162b2,2 -175,2021-02-19,2021-01-05,Alpha,50.2799342700001,0,Infection naive,BNT162b2,2 -175,2021-04-06,2021-01-05,Alpha,46.4253300100001,0,Infection naive,BNT162b2,2 -175,2021-07-06,2021-01-05,Alpha,5,-1,Infection naive,BNT162b2,2 -175,2021-01-29,2021-01-05,Delta,44.47365804,0,Infection naive,BNT162b2,2 -175,2021-02-19,2021-01-05,Delta,5,-1,Infection naive,BNT162b2,2 -175,2021-04-06,2021-01-05,Delta,5,-1,Infection naive,BNT162b2,2 -175,2021-07-06,2021-01-05,Delta,5,-1,Infection naive,BNT162b2,2 -176,2021-04-15,2021-04-15,Ancestral,198.034467000762,0,Infection naive,AZD1222,2 -176,2021-04-15,2021-04-15,Alpha,171.970976643965,0,Infection naive,AZD1222,2 -176,2021-04-15,2021-04-15,Delta,126.317704098264,0,Infection naive,AZD1222,2 -177,2021-04-12,2021-03-07,Ancestral,2560,1,Infection naive,BNT162b2,2 -177,2021-06-28,2021-03-07,Ancestral,181.5749083,0,Infection naive,BNT162b2,2 -177,2021-04-12,2021-03-07,Alpha,450.605170699999,0,Infection naive,BNT162b2,2 -177,2021-06-28,2021-03-07,Alpha,199.2532328,0,Infection naive,BNT162b2,2 -177,2021-04-12,2021-03-07,Delta,254.4534935,0,Infection naive,BNT162b2,2 -177,2021-06-28,2021-03-07,Delta,194.9346195,0,Infection naive,BNT162b2,2 -178,2021-03-23,2021-03-09,Ancestral,1632.97647200001,0,Infection naive,BNT162b2,2 -178,2021-10-08,2021-03-09,Ancestral,655.143308864813,0,Infection naive,BNT162b2,2 -178,2021-03-23,2021-03-09,Alpha,1040.693186,0,Infection naive,BNT162b2,2 -178,2021-10-08,2021-03-09,Alpha,905.312250251336,0,Infection naive,BNT162b2,2 -178,2021-03-23,2021-03-09,Delta,258.0470597,0,Infection naive,BNT162b2,2 -179,2021-06-02,2021-04-17,Ancestral,1002.200235,0,Previously infected (Pre-Omicron),AZD1222,4 -179,2021-07-07,2021-04-17,Ancestral,248.7203729,0,Previously infected (Pre-Omicron),AZD1222,4 -179,2021-06-02,2021-04-17,Alpha,509.434109100002,0,Previously infected (Pre-Omicron),AZD1222,4 -179,2021-07-07,2021-04-17,Alpha,206.3628983,0,Previously infected (Pre-Omicron),AZD1222,4 -179,2021-06-02,2021-04-17,Delta,181.4158289,0,Previously infected (Pre-Omicron),AZD1222,4 -179,2021-07-07,2021-04-17,Delta,161.1708918,0,Previously infected (Pre-Omicron),AZD1222,4 -180,2021-04-19,2021-03-29,Ancestral,2560,1,Infection naive,BNT162b2,2 -180,2021-07-08,2021-03-29,Ancestral,437.374908599999,0,Infection naive,BNT162b2,2 -180,2021-04-19,2021-03-29,Alpha,2122.24779199999,0,Infection naive,BNT162b2,2 -180,2021-07-08,2021-03-29,Alpha,744.581248899999,0,Infection naive,BNT162b2,2 -180,2021-04-19,2021-03-29,Delta,1028.902405,0,Infection naive,BNT162b2,2 -180,2021-07-08,2021-03-29,Delta,191.7151835,0,Infection naive,BNT162b2,2 -181,2021-04-15,2021-03-28,Ancestral,2205.69245200001,0,Infection naive,BNT162b2,2 -181,2021-07-07,2021-03-28,Ancestral,197.6876195,0,Infection naive,BNT162b2,2 -181,2021-04-15,2021-03-28,Alpha,1715.128513,0,Infection naive,BNT162b2,2 -181,2021-07-07,2021-03-28,Alpha,273.175381900001,0,Infection naive,BNT162b2,2 -181,2021-04-15,2021-03-28,Delta,771.825270199999,0,Infection naive,BNT162b2,2 -181,2021-07-07,2021-03-28,Delta,176.5528935,0,Infection naive,BNT162b2,2 -182,2021-04-23,2021-03-22,Ancestral,1099.775506,0,Infection naive,BNT162b2,2 -182,2021-07-07,2021-03-22,Ancestral,293.7893255,0,Infection naive,BNT162b2,2 -182,2021-12-02,2021-03-22,Ancestral,322.9586098,0,Infection naive,BNT162b2,2 -182,2021-04-23,2021-03-22,Alpha,1143.017579,0,Infection naive,BNT162b2,2 -182,2021-07-07,2021-03-22,Alpha,213.1649974,0,Infection naive,BNT162b2,2 -182,2021-04-23,2021-03-22,Delta,642.0682879,0,Infection naive,BNT162b2,2 -182,2021-07-07,2021-03-22,Delta,247.199033100001,0,Infection naive,BNT162b2,2 -182,2021-12-02,2021-03-22,Delta,160.6068206,0,Infection naive,BNT162b2,2 -183,2021-04-19,2021-03-13,Ancestral,808.5255807,0,Infection naive,BNT162b2,2 -183,2021-07-08,2021-03-13,Ancestral,262.3803941,0,Infection naive,BNT162b2,2 -183,2021-04-19,2021-03-13,Alpha,529.464548799999,0,Infection naive,BNT162b2,2 -183,2021-07-08,2021-03-13,Alpha,319.0198321,0,Infection naive,BNT162b2,2 -183,2021-04-19,2021-03-13,Delta,245.471750300001,0,Infection naive,BNT162b2,2 -183,2021-07-08,2021-03-13,Delta,148.164318200001,0,Infection naive,BNT162b2,2 -184,2021-03-22,2021-03-13,Ancestral,2560,1,Infection naive,BNT162b2,2 -184,2021-09-22,2021-03-13,Ancestral,296.375686400001,0,Infection naive,BNT162b2,2 -184,2021-03-22,2021-03-13,Alpha,1016.353992,0,Infection naive,BNT162b2,2 -184,2021-09-22,2021-03-13,Alpha,171.820311329011,0,Infection naive,BNT162b2,2 -184,2021-03-22,2021-03-13,Delta,505.8744803,0,Infection naive,BNT162b2,2 -184,2021-09-22,2021-03-13,Delta,130.1387196,0,Infection naive,BNT162b2,2 -185,2021-04-15,2021-03-29,Ancestral,2027.691941,0,Infection naive,BNT162b2,2 -185,2021-06-28,2021-03-29,Ancestral,176.089261200001,0,Infection naive,BNT162b2,2 -185,2021-12-02,2021-03-29,Ancestral,328.094293000001,0,Infection naive,BNT162b2,2 -185,2021-04-15,2021-03-29,Alpha,1184.840275,0,Infection naive,BNT162b2,2 -185,2021-06-28,2021-03-29,Alpha,436.608868200001,0,Infection naive,BNT162b2,2 -185,2021-12-02,2021-03-29,Alpha,193.912157451256,0,Infection naive,BNT162b2,2 -185,2021-04-15,2021-03-29,Delta,651.1360152,0,Infection naive,BNT162b2,2 -185,2021-06-28,2021-03-29,Delta,288.431198699999,0,Infection naive,BNT162b2,2 -185,2021-12-02,2021-03-29,Delta,245.2566903,0,Infection naive,BNT162b2,2 -186,2021-04-19,2021-03-29,Ancestral,513.918889000001,0,Infection naive,BNT162b2,2 -186,2021-07-08,2021-03-29,Ancestral,114.406339,0,Infection naive,BNT162b2,2 -186,2021-04-19,2021-03-29,Alpha,467.5022717,0,Infection naive,BNT162b2,2 -186,2021-07-08,2021-03-29,Alpha,155.2095352,0,Infection naive,BNT162b2,2 -186,2021-04-19,2021-03-29,Delta,148.0345101,0,Infection naive,BNT162b2,2 -186,2021-07-08,2021-03-29,Delta,80.9265345799999,0,Infection naive,BNT162b2,2 -186,2022-06-22,2021-03-29,Delta,116.8384626,0,Infection naive,BNT162b2,2 -186,2022-06-22,2021-03-29,Delta,116.8384626,0,Infection naive,BNT162b2,2 -187,2021-02-24,2021-01-10,Ancestral,203.1326853,0,Infection naive,BNT162b2,2 -187,2021-04-07,2021-01-10,Ancestral,82.5745152699999,0,Infection naive,BNT162b2,2 -187,2021-05-19,2021-01-10,Ancestral,5,-1,Infection naive,BNT162b2,2 -187,2021-02-24,2021-01-10,Alpha,46.3846563599999,0,Infection naive,BNT162b2,2 -187,2021-04-07,2021-01-10,Alpha,5,-1,Infection naive,BNT162b2,2 -187,2021-02-24,2021-01-10,Delta,5,-1,Infection naive,BNT162b2,2 -187,2021-04-07,2021-01-10,Delta,5,-1,Infection naive,BNT162b2,2 -187,2021-05-19,2021-01-10,Delta,5,-1,Infection naive,BNT162b2,2 -188,2021-04-23,2021-04-08,Ancestral,519.352771,0,Previously infected (Pre-Omicron),AZD1222,3 -188,2021-06-29,2021-04-08,Ancestral,151.0490716,0,Previously infected (Pre-Omicron),AZD1222,3 -188,2021-10-08,2021-04-08,Ancestral,124.8865576,0,Previously infected (Pre-Omicron),AZD1222,3 -188,2021-04-23,2021-04-08,Alpha,233.509268699999,0,Previously infected (Pre-Omicron),AZD1222,3 -188,2021-06-29,2021-04-08,Alpha,99.0883265799999,0,Previously infected (Pre-Omicron),AZD1222,3 -188,2021-10-08,2021-04-08,Alpha,89.5089351915363,0,Previously infected (Pre-Omicron),AZD1222,3 -188,2021-04-23,2021-04-08,Delta,166.337522,0,Previously infected (Pre-Omicron),AZD1222,3 -188,2021-06-29,2021-04-08,Delta,90.2969230099998,0,Previously infected (Pre-Omicron),AZD1222,3 -188,2021-10-08,2021-04-08,Delta,68.69233191,0,Previously infected (Pre-Omicron),AZD1222,3 -189,2021-04-12,2021-03-09,Ancestral,2560,1,Infection naive,BNT162b2,2 -189,2021-04-12,2021-03-09,Alpha,620.491210500002,0,Infection naive,BNT162b2,2 -189,2021-04-12,2021-03-09,Delta,358.463498,0,Infection naive,BNT162b2,2 -190,2021-02-03,2021-01-10,Ancestral,682.097548600003,0,Infection naive,BNT162b2,2 -190,2021-02-24,2021-01-10,Ancestral,364.483106299999,0,Infection naive,BNT162b2,2 -190,2021-02-03,2021-01-10,Alpha,472.031457600001,0,Infection naive,BNT162b2,2 -190,2021-02-24,2021-01-10,Alpha,1016.353992,0,Infection naive,BNT162b2,2 -190,2021-04-07,2021-01-10,Alpha,1026.200481,0,Infection naive,BNT162b2,2 -190,2021-07-01,2021-01-10,Alpha,179.675127100001,0,Infection naive,BNT162b2,2 -190,2021-02-03,2021-01-10,Delta,361.302397200001,0,Infection naive,BNT162b2,2 -190,2021-02-24,2021-01-10,Delta,423.047306599999,0,Infection naive,BNT162b2,2 -190,2021-04-07,2021-01-10,Delta,404.1986132,0,Infection naive,BNT162b2,2 -190,2021-07-01,2021-01-10,Delta,115.1104312,0,Infection naive,BNT162b2,2 -191,2021-04-15,2021-03-25,Ancestral,363.844732199999,0,Infection naive,BNT162b2,2 -191,2021-04-15,2021-03-25,Alpha,504.988466300001,0,Infection naive,BNT162b2,2 -191,2021-04-15,2021-03-25,Delta,349.160620500001,0,Infection naive,BNT162b2,2 -192,2021-04-20,2021-03-20,Ancestral,832.982871400002,0,Previously infected (Pre-Omicron),BNT162b2,3 -192,2021-06-29,2021-03-20,Ancestral,172.1217741,0,Previously infected (Pre-Omicron),BNT162b2,3 -192,2021-04-20,2021-03-20,Alpha,765.7607266,0,Previously infected (Pre-Omicron),BNT162b2,3 -192,2021-06-29,2021-03-20,Alpha,336.2459375,0,Previously infected (Pre-Omicron),BNT162b2,3 -192,2021-04-20,2021-03-20,Delta,591.8071482,0,Previously infected (Pre-Omicron),BNT162b2,3 -192,2021-06-29,2021-03-20,Delta,115.8188566,0,Previously infected (Pre-Omicron),BNT162b2,3 -193,2021-04-12,2021-03-02,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -193,2021-07-09,2021-03-02,Ancestral,526.687425899999,0,Previously infected (Pre-Omicron),BNT162b2,3 -193,2021-04-12,2021-03-02,Alpha,1170.390057,0,Previously infected (Pre-Omicron),BNT162b2,3 -193,2021-07-09,2021-03-02,Alpha,560.013987499999,0,Previously infected (Pre-Omicron),BNT162b2,3 -193,2021-04-12,2021-03-02,Delta,524.384287100001,0,Previously infected (Pre-Omicron),BNT162b2,3 -193,2021-07-09,2021-03-02,Delta,506.318070100001,0,Previously infected (Pre-Omicron),BNT162b2,3 -194,2021-02-18,2021-01-10,Ancestral,670.8323899,0,Infection naive,BNT162b2,2 -194,2021-03-12,2021-01-10,Ancestral,660.331803100001,0,Infection naive,BNT162b2,2 -194,2021-04-28,2021-01-10,Ancestral,290.2062941,0,Infection naive,BNT162b2,2 -194,2021-07-21,2021-01-10,Ancestral,156.164743,0,Infection naive,BNT162b2,2 -194,2021-02-18,2021-01-10,Alpha,169.8736322,0,Infection naive,BNT162b2,2 -194,2021-03-12,2021-01-10,Alpha,133.9578534,0,Infection naive,BNT162b2,2 -194,2021-04-28,2021-01-10,Alpha,97.87985316,0,Infection naive,BNT162b2,2 -194,2021-07-21,2021-01-10,Alpha,80.7847957700002,0,Infection naive,BNT162b2,2 -194,2021-02-18,2021-01-10,Delta,190.042156000001,0,Infection naive,BNT162b2,2 -194,2021-03-12,2021-01-10,Delta,193.4029393,0,Infection naive,BNT162b2,2 -194,2021-04-28,2021-01-10,Delta,149.0761676,0,Infection naive,BNT162b2,2 -194,2021-07-21,2021-01-10,Delta,80.50206246,0,Infection naive,BNT162b2,2 -195,2021-02-03,2020-12-27,Ancestral,500.14305484178,0,Infection naive,BNT162b2,1 -195,2021-02-03,2020-12-27,Alpha,988.243583847195,0,Infection naive,BNT162b2,1 -195,2021-02-03,2020-12-27,Delta,249.156758622271,0,Infection naive,BNT162b2,1 -196,2021-02-24,2021-02-04,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -196,2021-04-07,2021-02-04,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -196,2021-07-01,2021-02-04,Ancestral,990.845569000003,0,Previously infected (Pre-Omicron),BNT162b2,3 -196,2021-02-24,2021-02-04,Alpha,1403.222141,0,Previously infected (Pre-Omicron),BNT162b2,3 -196,2021-04-07,2021-02-04,Alpha,2154.106858,0,Previously infected (Pre-Omicron),BNT162b2,3 -196,2021-07-01,2021-02-04,Alpha,1020.817902,0,Previously infected (Pre-Omicron),BNT162b2,3 -196,2021-02-24,2021-02-04,Delta,463.4225525,0,Previously infected (Pre-Omicron),BNT162b2,3 -197,2021-04-23,2021-03-19,Ancestral,430.151458299999,0,Infection naive,BNT162b2,2 -197,2021-06-29,2021-03-19,Ancestral,344.600113099999,0,Infection naive,BNT162b2,2 -197,2021-04-23,2021-03-19,Alpha,455.369609900001,0,Infection naive,BNT162b2,2 -197,2021-06-29,2021-03-19,Alpha,269.607344,0,Infection naive,BNT162b2,2 -197,2021-04-23,2021-03-19,Delta,274.375190600001,0,Infection naive,BNT162b2,2 -197,2021-06-29,2021-03-19,Delta,143.5621682,0,Infection naive,BNT162b2,2 -198,2021-04-20,2021-03-25,Ancestral,438.526490099999,0,Infection naive,BNT162b2,2 -198,2021-07-07,2021-03-25,Ancestral,220.191306000001,0,Infection naive,BNT162b2,2 -198,2021-11-02,2021-03-25,Ancestral,167.507970100001,0,Infection naive,BNT162b2,2 -198,2021-04-20,2021-03-25,Alpha,745.887634099998,0,Infection naive,BNT162b2,2 -198,2021-07-07,2021-03-25,Alpha,160.888609,0,Infection naive,BNT162b2,2 -198,2021-11-02,2021-03-25,Alpha,124.8865576,0,Infection naive,BNT162b2,2 -198,2021-04-20,2021-03-25,Delta,235.771518399999,0,Infection naive,BNT162b2,2 -198,2021-07-07,2021-03-25,Delta,136.5660075,0,Infection naive,BNT162b2,2 -198,2021-11-02,2021-03-25,Delta,51.3488175,0,Infection naive,BNT162b2,2 -199,2021-03-16,2021-03-03,Ancestral,2560,1,Infection naive,BNT162b2,2 -199,2021-04-07,2021-03-03,Ancestral,977.047042700003,0,Infection naive,BNT162b2,2 -199,2021-05-19,2021-03-03,Ancestral,1212.151396,0,Infection naive,BNT162b2,2 -199,2021-08-11,2021-03-03,Ancestral,5,-1,Infection naive,BNT162b2,2 -199,2021-03-16,2021-03-03,Alpha,432.7987443,0,Infection naive,BNT162b2,2 -199,2021-04-07,2021-03-03,Alpha,505.8744803,0,Infection naive,BNT162b2,2 -199,2021-05-19,2021-03-03,Alpha,241.41767,0,Infection naive,BNT162b2,2 -199,2021-08-11,2021-03-03,Alpha,76.3109723399998,0,Infection naive,BNT162b2,2 -199,2021-03-16,2021-03-03,Delta,263.763876200001,0,Infection naive,BNT162b2,2 -199,2021-04-07,2021-03-03,Delta,255.347166000001,0,Infection naive,BNT162b2,2 -199,2021-05-19,2021-03-03,Delta,106.4722155,0,Infection naive,BNT162b2,2 -199,2021-08-11,2021-03-03,Delta,40.7058277100001,0,Infection naive,BNT162b2,2 -200,2021-04-15,2021-03-14,Ancestral,1625.835669,0,Previously infected (Pre-Omicron),BNT162b2,4 -200,2021-04-15,2021-03-14,Alpha,647.720706600002,0,Previously infected (Pre-Omicron),BNT162b2,4 -200,2021-04-15,2021-03-14,Delta,217.3153114,0,Previously infected (Pre-Omicron),BNT162b2,4 -201,2021-04-19,2021-03-21,Ancestral,1212.151396,0,Previously infected (Pre-Omicron),BNT162b2,3 -201,2021-06-29,2021-03-21,Ancestral,738.083564100002,0,Previously infected (Pre-Omicron),BNT162b2,3 -201,2021-04-19,2021-03-21,Alpha,678.519842099999,0,Previously infected (Pre-Omicron),BNT162b2,3 -201,2021-06-29,2021-03-21,Alpha,550.282565399999,0,Previously infected (Pre-Omicron),BNT162b2,3 -201,2021-04-19,2021-03-21,Delta,1399.537244,0,Previously infected (Pre-Omicron),BNT162b2,3 -201,2021-06-29,2021-03-21,Delta,940.083884500002,0,Previously infected (Pre-Omicron),BNT162b2,3 -202,2021-02-22,2021-01-05,Ancestral,177.328328281948,0,Infection naive,BNT162b2,2 -202,2021-02-22,2021-01-05,Alpha,176.862659680467,0,Infection naive,BNT162b2,2 -202,2021-03-15,2021-01-05,Alpha,93.1099114400002,0,Infection naive,BNT162b2,2 -202,2021-04-26,2021-01-05,Alpha,132.7888529,0,Infection naive,BNT162b2,2 -202,2021-07-19,2021-01-05,Alpha,63.2596215999999,0,Infection naive,BNT162b2,2 -202,2021-02-22,2021-01-05,Delta,119.636458255127,0,Infection naive,BNT162b2,2 -202,2021-03-15,2021-01-05,Delta,50.9900218800002,0,Infection naive,BNT162b2,2 -202,2021-04-26,2021-01-05,Delta,69.9071152200002,0,Infection naive,BNT162b2,2 -202,2021-07-19,2021-01-05,Delta,52.2111082799999,0,Infection naive,BNT162b2,2 -203,2021-04-19,2021-03-15,Ancestral,702.730486399999,0,Infection naive,BNT162b2,2 -203,2021-06-29,2021-03-15,Ancestral,278.494095800001,0,Infection naive,BNT162b2,2 -203,2021-04-19,2021-03-15,Alpha,844.746824900003,0,Infection naive,BNT162b2,2 -203,2021-06-29,2021-03-15,Alpha,304.538995399999,0,Infection naive,BNT162b2,2 -203,2021-04-19,2021-03-15,Delta,581.523253000001,0,Infection naive,BNT162b2,2 -203,2021-06-29,2021-03-15,Delta,158.5090795,0,Infection naive,BNT162b2,2 -204,2021-02-26,2021-02-25,Ancestral,139.8364296,0,Infection naive,BNT162b2,2 -204,2021-04-09,2021-02-25,Ancestral,267.0204364,0,Infection naive,BNT162b2,2 -204,2021-07-02,2021-02-25,Ancestral,268.428384500001,0,Infection naive,BNT162b2,2 -204,2021-02-26,2021-02-25,Alpha,5,-1,Infection naive,BNT162b2,2 -204,2021-04-09,2021-02-25,Alpha,511.2233054,0,Infection naive,BNT162b2,2 -204,2021-07-02,2021-02-25,Alpha,89.4305156099998,0,Infection naive,BNT162b2,2 -204,2021-02-26,2021-02-25,Delta,5,-1,Infection naive,BNT162b2,2 -204,2021-04-09,2021-02-25,Delta,324.0928808,0,Infection naive,BNT162b2,2 -204,2021-07-02,2021-02-25,Delta,186.2493902,0,Infection naive,BNT162b2,2 -205,2021-04-20,2021-03-30,Ancestral,753.113831499999,0,Infection naive,BNT162b2,2 -205,2021-06-28,2021-03-30,Ancestral,309.653059899999,0,Infection naive,BNT162b2,2 -205,2021-04-20,2021-03-30,Alpha,1009.252303,0,Infection naive,BNT162b2,2 -205,2021-06-28,2021-03-30,Alpha,280.4537432,0,Infection naive,BNT162b2,2 -205,2021-04-20,2021-03-30,Delta,455.768913199999,0,Infection naive,BNT162b2,2 -205,2021-06-28,2021-03-30,Delta,255.123454000001,0,Infection naive,BNT162b2,2 -206,2021-02-02,2021-01-10,Ancestral,699.657533199999,0,Infection naive,BNT162b2,2 -206,2021-02-22,2021-01-10,Ancestral,838.109307200003,0,Infection naive,BNT162b2,2 -206,2022-02-01,2021-01-10,Ancestral,868.775494099999,0,Infection naive,BNT162b2,2 -206,2022-08-11,2021-01-10,Ancestral,557.076628047233,0,Infection naive,BNT162b2,2 -206,2021-02-02,2021-01-10,Alpha,545.958772599999,0,Infection naive,BNT162b2,2 -206,2021-02-22,2021-01-10,Alpha,210.5652539,0,Infection naive,BNT162b2,2 -206,2021-02-02,2021-01-10,Delta,162.8750199,0,Infection naive,BNT162b2,2 -206,2021-02-22,2021-01-10,Delta,57.69759397,0,Infection naive,BNT162b2,2 -207,2021-04-20,2021-03-19,Ancestral,337.4268752,0,Infection naive,BNT162b2,2 -207,2021-06-28,2021-03-19,Ancestral,157.2636095,0,Infection naive,BNT162b2,2 -207,2021-04-20,2021-03-19,Alpha,531.324094499999,0,Infection naive,BNT162b2,2 -207,2021-06-28,2021-03-19,Alpha,135.1371453,0,Infection naive,BNT162b2,2 -207,2021-04-20,2021-03-19,Delta,315.958807000001,0,Infection naive,BNT162b2,2 -207,2021-06-28,2021-03-19,Delta,79.93956094,0,Infection naive,BNT162b2,2 -208,2021-03-25,2021-02-28,Ancestral,2560,1,Infection naive,BNT162b2,2 -208,2021-09-23,2021-02-28,Ancestral,160.606820581806,0,Infection naive,BNT162b2,2 -208,2021-03-25,2021-02-28,Alpha,1255.402845,0,Infection naive,BNT162b2,2 -208,2021-09-23,2021-02-28,Alpha,151.712491519182,0,Infection naive,BNT162b2,2 -208,2021-03-25,2021-02-28,Delta,388.226020499999,0,Infection naive,BNT162b2,2 -208,2021-09-23,2021-02-28,Delta,105.358218481155,0,Infection naive,BNT162b2,2 -209,2021-01-29,2021-01-11,Ancestral,927.805124399998,0,Infection naive,BNT162b2,2 -209,2021-02-19,2021-01-11,Ancestral,569.418194200001,0,Infection naive,BNT162b2,2 -209,2021-04-06,2021-01-11,Ancestral,978.7612945,0,Infection naive,BNT162b2,2 -209,2021-01-29,2021-01-11,Alpha,219.4206732,0,Infection naive,BNT162b2,2 -209,2021-02-19,2021-01-11,Alpha,276.5481413,0,Infection naive,BNT162b2,2 -209,2021-04-06,2021-01-11,Alpha,143.0597245,0,Infection naive,BNT162b2,2 -209,2021-01-29,2021-01-11,Delta,213.726247800001,0,Infection naive,BNT162b2,2 -209,2021-02-19,2021-01-11,Delta,192.3885111,0,Infection naive,BNT162b2,2 -209,2021-04-06,2021-01-11,Delta,109.3090131,0,Infection naive,BNT162b2,2 -210,2021-06-09,2021-05-01,Ancestral,72.3380783200001,0,Infection naive,AZD1222,2 -210,2021-06-09,2021-05-01,Alpha,5,-1,Infection naive,AZD1222,2 -210,2021-06-09,2021-05-01,Delta,5,-1,Infection naive,AZD1222,2 -211,2021-02-26,2021-02-25,Ancestral,99.9606461299999,0,Previously infected (Pre-Omicron),BNT162b2,3 -211,2021-04-09,2021-02-25,Ancestral,595.971449500002,0,Previously infected (Pre-Omicron),BNT162b2,3 -211,2021-07-02,2021-02-25,Ancestral,290.2062941,0,Previously infected (Pre-Omicron),BNT162b2,3 -211,2021-02-26,2021-02-25,Alpha,5,-1,Previously infected (Pre-Omicron),BNT162b2,3 -211,2021-04-09,2021-02-25,Alpha,559.523354199999,0,Previously infected (Pre-Omicron),BNT162b2,3 -211,2021-07-02,2021-02-25,Alpha,172.272703700001,0,Previously infected (Pre-Omicron),BNT162b2,3 -211,2021-02-26,2021-02-25,Delta,5,-1,Previously infected (Pre-Omicron),BNT162b2,3 -211,2021-04-09,2021-02-25,Delta,371.254033700001,0,Previously infected (Pre-Omicron),BNT162b2,3 -211,2021-07-02,2021-02-25,Delta,123.9052733,0,Previously infected (Pre-Omicron),BNT162b2,3 -212,2021-05-26,2021-05-05,Ancestral,465.050150400001,0,Infection naive,AZD1222,2 -212,2021-06-28,2021-05-05,Ancestral,67.5578460500001,0,Infection naive,AZD1222,2 -212,2021-05-26,2021-05-05,Alpha,149.7309223,0,Infection naive,AZD1222,2 -212,2021-06-28,2021-05-05,Alpha,74.9192135799999,0,Infection naive,AZD1222,2 -212,2021-05-26,2021-05-05,Delta,46.8751009699999,0,Infection naive,AZD1222,2 -212,2021-06-28,2021-05-05,Delta,51.3938441100001,0,Infection naive,AZD1222,2 -213,2021-04-01,2021-03-08,Ancestral,2560,1,Infection naive,BNT162b2,2 -213,2021-06-25,2021-03-08,Ancestral,102.6239523,0,Infection naive,BNT162b2,2 -213,2021-04-01,2021-03-08,Alpha,469.55558,0,Infection naive,BNT162b2,2 -213,2021-06-25,2021-03-08,Alpha,152.9139987,0,Infection naive,BNT162b2,2 -213,2021-04-01,2021-03-08,Delta,202.7769085,0,Infection naive,BNT162b2,2 -213,2021-06-25,2021-03-08,Delta,78.7572612900001,0,Infection naive,BNT162b2,2 -214,2021-01-29,2021-01-08,Ancestral,727.8050042,0,Infection naive,BNT162b2,2 -214,2021-02-22,2021-01-08,Ancestral,980.478554,0,Infection naive,BNT162b2,2 -214,2021-01-29,2021-01-08,Alpha,539.3003024,0,Infection naive,BNT162b2,2 -214,2021-02-22,2021-01-08,Alpha,334.189232900001,0,Infection naive,BNT162b2,2 -214,2021-04-14,2021-01-08,Alpha,203.8461127,0,Infection naive,BNT162b2,2 -214,2021-01-29,2021-01-08,Delta,236.8070462,0,Infection naive,BNT162b2,2 -214,2021-02-22,2021-01-08,Delta,184.139233300001,0,Infection naive,BNT162b2,2 -214,2021-04-14,2021-01-08,Delta,151.3140907,0,Infection naive,BNT162b2,2 -215,2021-05-28,2021-04-26,Ancestral,181.7341272,0,Infection naive,AZD1222,1 -215,2021-05-28,2021-04-26,Alpha,5,-1,Infection naive,AZD1222,1 -215,2021-05-28,2021-04-26,Delta,5,-1,Infection naive,AZD1222,1 -216,2021-02-01,2021-01-12,Ancestral,617.7778794,0,Infection naive,BNT162b2,2 -216,2021-02-22,2021-01-12,Ancestral,477.440736200001,0,Infection naive,BNT162b2,2 -216,2021-02-01,2021-01-12,Alpha,371.254033700001,0,Infection naive,BNT162b2,2 -216,2021-02-22,2021-01-12,Alpha,232.284476699999,0,Infection naive,BNT162b2,2 -216,2021-04-08,2021-01-12,Alpha,204.9209546,0,Infection naive,BNT162b2,2 -216,2021-07-01,2021-01-12,Alpha,132.2081837,0,Infection naive,BNT162b2,2 -216,2021-02-01,2021-01-12,Delta,229.0496805,0,Infection naive,BNT162b2,2 -216,2021-02-22,2021-01-12,Delta,166.7754785,0,Infection naive,BNT162b2,2 -216,2021-04-08,2021-01-12,Delta,97.4518367100002,0,Infection naive,BNT162b2,2 -216,2021-07-01,2021-01-12,Delta,43.9697831399999,0,Infection naive,BNT162b2,2 -217,2021-02-19,2021-02-14,Ancestral,267.48893,0,Infection naive,BNT162b2,4 -217,2021-04-07,2021-02-14,Ancestral,219.4206732,0,Infection naive,BNT162b2,4 -217,2021-06-30,2021-02-14,Ancestral,377.819441999999,0,Infection naive,BNT162b2,4 -217,2021-02-19,2021-02-14,Alpha,103.7090388,0,Infection naive,BNT162b2,4 -217,2021-02-19,2021-02-14,Delta,76.9827724900003,0,Infection naive,BNT162b2,4 -217,2021-04-07,2021-02-14,Delta,85.5209025299999,0,Infection naive,BNT162b2,4 -217,2021-06-30,2021-02-14,Delta,123.9052733,0,Infection naive,BNT162b2,4 -218,2021-02-25,2021-01-12,Ancestral,277.5194129,0,Previously infected (Pre-Omicron),BNT162b2,3 -218,2021-02-25,2021-01-12,Alpha,186.7397735,0,Previously infected (Pre-Omicron),BNT162b2,3 -218,2021-03-22,2021-01-12,Alpha,75.9107095599998,0,Previously infected (Pre-Omicron),BNT162b2,3 -218,2021-05-17,2021-01-12,Alpha,45.0622313999999,0,Previously infected (Pre-Omicron),BNT162b2,3 -218,2021-02-25,2021-01-12,Delta,106.5655786,0,Previously infected (Pre-Omicron),BNT162b2,3 -218,2021-03-22,2021-01-12,Delta,82.5021709899999,0,Previously infected (Pre-Omicron),BNT162b2,3 -218,2021-05-17,2021-01-12,Delta,41.24453684,0,Previously infected (Pre-Omicron),BNT162b2,3 -219,2021-04-01,2021-03-11,Ancestral,2560,1,Infection naive,BNT162b2,2 -219,2021-06-24,2021-03-11,Ancestral,1354.877985,0,Infection naive,BNT162b2,2 -219,2021-04-01,2021-03-11,Alpha,1264.236594,0,Infection naive,BNT162b2,2 -219,2021-06-24,2021-03-11,Alpha,1240.092051,0,Infection naive,BNT162b2,2 -219,2021-04-01,2021-03-11,Delta,725.893770200002,0,Infection naive,BNT162b2,2 -219,2021-06-24,2021-03-11,Delta,892.704861899999,0,Infection naive,BNT162b2,2 -220,2021-04-19,2021-03-19,Ancestral,309.653059899999,0,Infection naive,BNT162b2,2 -220,2021-07-08,2021-03-19,Ancestral,208.1796046,0,Infection naive,BNT162b2,2 -220,2021-11-16,2021-03-19,Ancestral,116.0220635,0,Infection naive,BNT162b2,2 -220,2021-04-19,2021-03-19,Alpha,284.913514500001,0,Infection naive,BNT162b2,2 -220,2021-07-08,2021-03-19,Alpha,148.164318200001,0,Infection naive,BNT162b2,2 -220,2021-11-16,2021-03-19,Alpha,142.309354279994,0,Infection naive,BNT162b2,2 -220,2021-04-19,2021-03-19,Delta,187.0674127,0,Infection naive,BNT162b2,2 -220,2021-07-08,2021-03-19,Delta,175.0121818,0,Infection naive,BNT162b2,2 -220,2021-11-16,2021-03-19,Delta,40.7415217199999,0,Infection naive,BNT162b2,2 -221,2021-03-30,2021-03-09,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -221,2021-03-30,2021-03-09,Alpha,584.077350800001,0,Previously infected (Pre-Omicron),BNT162b2,3 -221,2021-03-30,2021-03-09,Delta,337.1312525,0,Previously infected (Pre-Omicron),BNT162b2,3 -222,2021-05-04,2021-03-22,Ancestral,160.4661115,0,Previously infected (Pre-Omicron),BNT162b2,3 -222,2021-06-28,2021-03-22,Ancestral,170.320899100001,0,Previously infected (Pre-Omicron),BNT162b2,3 -222,2021-05-04,2021-03-22,Alpha,569.418194200001,0,Previously infected (Pre-Omicron),BNT162b2,3 -222,2021-06-28,2021-03-22,Alpha,156.7132131,0,Previously infected (Pre-Omicron),BNT162b2,3 -222,2021-05-04,2021-03-22,Delta,110.27131,0,Previously infected (Pre-Omicron),BNT162b2,3 -222,2021-06-28,2021-03-22,Delta,46.46603932,0,Previously infected (Pre-Omicron),BNT162b2,3 -223,2021-04-23,2021-04-07,Ancestral,2560,1,Previously infected (Pre-Omicron),AZD1222,2 -223,2021-04-23,2021-04-07,Alpha,992.584030628349,0,Previously infected (Pre-Omicron),AZD1222,2 -223,2021-04-23,2021-04-07,Delta,2560,1,Previously infected (Pre-Omicron),AZD1222,2 -224,2021-04-08,2021-03-15,Ancestral,1433.052741,0,Infection naive,BNT162b2,2 -224,2021-07-01,2021-03-15,Ancestral,136.0880493,0,Infection naive,BNT162b2,2 -224,2021-04-08,2021-03-15,Alpha,699.657533199999,0,Infection naive,BNT162b2,2 -224,2021-07-01,2021-03-15,Alpha,109.69292,0,Infection naive,BNT162b2,2 -224,2021-04-08,2021-03-15,Delta,278.494095800001,0,Infection naive,BNT162b2,2 -224,2021-07-01,2021-03-15,Delta,46.2628491,0,Infection naive,BNT162b2,2 -225,2021-03-16,2021-03-04,Ancestral,5,-1,Previously infected (Pre-Omicron),BNT162b2,3 -225,2021-04-20,2021-03-04,Ancestral,984.784896199998,0,Previously infected (Pre-Omicron),BNT162b2,3 -225,2021-07-07,2021-03-04,Ancestral,145.7173155,0,Previously infected (Pre-Omicron),BNT162b2,3 -225,2021-03-16,2021-03-04,Alpha,40.67016497,0,Previously infected (Pre-Omicron),BNT162b2,3 -225,2021-04-20,2021-03-04,Alpha,558.543376799999,0,Previously infected (Pre-Omicron),BNT162b2,3 -225,2021-07-07,2021-03-04,Alpha,174.7056566,0,Previously infected (Pre-Omicron),BNT162b2,3 -225,2021-03-16,2021-03-04,Delta,5,-1,Previously infected (Pre-Omicron),BNT162b2,3 -225,2021-04-20,2021-03-04,Delta,347.3292193,0,Previously infected (Pre-Omicron),BNT162b2,3 -225,2021-07-07,2021-03-04,Delta,139.5915131,0,Previously infected (Pre-Omicron),BNT162b2,3 -226,2021-03-08,2021-03-03,Ancestral,1823.65462085467,0,Previously infected (Pre-Omicron),BNT162b2,3 -226,2021-03-29,2021-03-03,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -226,2021-03-08,2021-03-03,Alpha,944.212809897676,0,Previously infected (Pre-Omicron),BNT162b2,3 -226,2021-03-29,2021-03-03,Alpha,2450.32496399999,0,Previously infected (Pre-Omicron),BNT162b2,3 -226,2021-03-08,2021-03-03,Delta,1175.53050583235,0,Previously infected (Pre-Omicron),BNT162b2,3 -226,2021-03-29,2021-03-03,Delta,1220.680803,0,Previously infected (Pre-Omicron),BNT162b2,3 -227,2021-04-15,2021-03-24,Ancestral,1116.285275,0,Infection naive,BNT162b2,2 -227,2021-06-28,2021-03-24,Ancestral,565.4394316,0,Infection naive,BNT162b2,2 -227,2021-04-15,2021-03-24,Alpha,1164.251181,0,Infection naive,BNT162b2,2 -227,2021-06-28,2021-03-24,Alpha,270.7914815,0,Infection naive,BNT162b2,2 -227,2021-04-15,2021-03-24,Delta,504.104003999998,0,Infection naive,BNT162b2,2 -227,2021-06-28,2021-03-24,Delta,154.8019511,0,Infection naive,BNT162b2,2 -228,2021-04-15,2021-03-25,Ancestral,508.096322500001,0,Infection naive,BNT162b2,2 -228,2021-10-12,2021-03-25,Ancestral,175.6268464,0,Infection naive,BNT162b2,2 -228,2021-04-15,2021-03-25,Alpha,455.369609900001,0,Infection naive,BNT162b2,2 -228,2021-10-12,2021-03-25,Alpha,194.422716341038,0,Infection naive,BNT162b2,2 -228,2021-04-15,2021-03-25,Delta,205.2804932,0,Infection naive,BNT162b2,2 -228,2021-10-12,2021-03-25,Delta,130.1387196,0,Infection naive,BNT162b2,2 -229,2021-04-14,2021-04-14,Ancestral,529.000680191154,0,Previously infected (Pre-Omicron),BNT162b2,3 -229,2021-04-14,2021-04-14,Alpha,1644.46704994187,0,Previously infected (Pre-Omicron),BNT162b2,3 -229,2021-04-14,2021-04-14,Delta,331.854113211825,0,Previously infected (Pre-Omicron),BNT162b2,3 -230,2021-02-03,2021-01-07,Ancestral,797.2660445,0,Infection naive,BNT162b2,2 -230,2021-02-24,2021-01-07,Ancestral,646.586256,0,Infection naive,BNT162b2,2 -230,2021-04-07,2021-01-07,Ancestral,473.274287600001,0,Infection naive,BNT162b2,2 -230,2021-06-30,2021-01-07,Ancestral,381.479776,0,Infection naive,BNT162b2,2 -230,2021-02-03,2021-01-07,Alpha,630.358252700001,0,Infection naive,BNT162b2,2 -230,2021-02-24,2021-01-07,Alpha,474.9364861,0,Infection naive,BNT162b2,2 -230,2021-04-07,2021-01-07,Alpha,254.899938100001,0,Infection naive,BNT162b2,2 -230,2021-06-30,2021-01-07,Alpha,132.324114,0,Infection naive,BNT162b2,2 -230,2021-02-03,2021-01-07,Delta,384.1640909,0,Infection naive,BNT162b2,2 -230,2021-02-24,2021-01-07,Delta,358.463498,0,Infection naive,BNT162b2,2 -230,2021-04-07,2021-01-07,Delta,225.6620542,0,Infection naive,BNT162b2,2 -230,2021-06-30,2021-01-07,Delta,183.1733947,0,Infection naive,BNT162b2,2 -231,2021-03-16,2021-02-24,Ancestral,174.5525954,0,Infection naive,BNT162b2,2 -231,2021-06-08,2021-02-24,Ancestral,160.6068206,0,Infection naive,BNT162b2,2 -231,2021-06-08,2021-02-24,Ancestral,94.6734882000001,0,Infection naive,BNT162b2,2 -231,2021-03-16,2021-02-24,Alpha,122.501459,0,Infection naive,BNT162b2,2 -231,2021-06-08,2021-02-24,Alpha,185.4349447,0,Infection naive,BNT162b2,2 -231,2021-06-08,2021-02-24,Alpha,5,-1,Infection naive,BNT162b2,2 -231,2021-03-16,2021-02-24,Delta,124.7771433,0,Infection naive,BNT162b2,2 -231,2021-06-08,2021-02-24,Delta,227.6486598,0,Infection naive,BNT162b2,2 -231,2021-06-08,2021-02-24,Delta,5,-1,Infection naive,BNT162b2,2 -232,2021-04-19,2021-04-06,Ancestral,210.3807757,0,Previously infected (Pre-Omicron),AZD1222,2 -232,2021-04-19,2021-04-06,Alpha,5,-1,Previously infected (Pre-Omicron),AZD1222,2 -232,2021-04-19,2021-04-06,Delta,44.59075447,0,Previously infected (Pre-Omicron),AZD1222,2 -233,2021-04-01,2021-03-11,Ancestral,2560,1,Infection naive,BNT162b2,2 -233,2021-06-23,2021-03-11,Ancestral,164.021103826873,0,Infection naive,BNT162b2,2 -233,2021-04-01,2021-03-11,Alpha,1139.017209,0,Infection naive,BNT162b2,2 -233,2021-06-23,2021-03-11,Alpha,282.922704859781,0,Infection naive,BNT162b2,2 -233,2021-04-01,2021-03-11,Delta,423.047306599999,0,Infection naive,BNT162b2,2 -233,2021-06-23,2021-03-11,Delta,170.769343633808,0,Infection naive,BNT162b2,2 -234,2021-05-26,2021-04-23,Ancestral,206.182101900001,0,Infection naive,AZD1222,2 -234,2021-06-29,2021-04-23,Ancestral,151.0490716,0,Infection naive,AZD1222,2 -234,2021-09-17,2021-04-23,Ancestral,115.5147134,0,Infection naive,AZD1222,2 -234,2021-12-08,2021-04-23,Ancestral,146.8713431,0,Infection naive,AZD1222,2 -234,2021-05-26,2021-04-23,Alpha,89.6659807099998,0,Infection naive,AZD1222,2 -234,2021-06-29,2021-04-23,Alpha,84.2560552900003,0,Infection naive,AZD1222,2 -234,2021-09-17,2021-04-23,Alpha,5,-1,Infection naive,AZD1222,2 -234,2021-12-08,2021-04-23,Alpha,5,-1,Infection naive,AZD1222,2 -234,2021-05-26,2021-04-23,Delta,56.74469133,0,Infection naive,AZD1222,2 -234,2021-06-29,2021-04-23,Delta,49.4495377399999,0,Infection naive,AZD1222,2 -234,2021-09-17,2021-04-23,Delta,5,-1,Infection naive,AZD1222,2 -234,2021-12-08,2021-04-23,Delta,5,-1,Infection naive,AZD1222,2 -235,2021-04-20,2021-03-23,Ancestral,474.9364861,0,Infection naive,BNT162b2,2 -235,2021-06-29,2021-03-23,Ancestral,213.726247800001,0,Infection naive,BNT162b2,2 -235,2021-09-28,2021-03-23,Ancestral,146.8713431,0,Infection naive,BNT162b2,2 -235,2021-04-20,2021-03-23,Alpha,488.445967700001,0,Infection naive,BNT162b2,2 -235,2021-06-29,2021-03-23,Alpha,170.470249599999,0,Infection naive,BNT162b2,2 -235,2021-09-28,2021-03-23,Alpha,196.82315603441,0,Infection naive,BNT162b2,2 -235,2021-04-20,2021-03-23,Delta,361.302397200001,0,Infection naive,BNT162b2,2 -235,2021-06-29,2021-03-23,Delta,139.2249423,0,Infection naive,BNT162b2,2 -235,2021-09-28,2021-03-23,Delta,74.78799629,0,Infection naive,BNT162b2,2 -236,2021-04-19,2021-03-24,Ancestral,864.218633100003,0,Infection naive,BNT162b2,2 -236,2021-07-16,2021-03-24,Ancestral,122.9316995,0,Infection naive,BNT162b2,2 -236,2021-09-28,2021-03-24,Ancestral,153.7202852,0,Infection naive,BNT162b2,2 -236,2021-04-19,2021-03-24,Alpha,401.726264699999,0,Infection naive,BNT162b2,2 -236,2021-07-16,2021-03-24,Alpha,213.726247800001,0,Infection naive,BNT162b2,2 -236,2021-09-28,2021-03-24,Alpha,153.855079039045,0,Infection naive,BNT162b2,2 -236,2021-04-19,2021-03-24,Delta,216.744635999999,0,Infection naive,BNT162b2,2 -236,2021-07-16,2021-03-24,Delta,124.5586024,0,Infection naive,BNT162b2,2 -236,2021-09-28,2021-03-24,Delta,59.28680425,0,Infection naive,BNT162b2,2 -237,2021-04-23,2021-04-08,Ancestral,110.7556306,0,Infection naive,AZD1222,1 -237,2021-04-23,2021-04-08,Alpha,5,-1,Infection naive,AZD1222,1 -237,2021-04-23,2021-04-08,Delta,5,-1,Infection naive,AZD1222,1 -238,2021-02-05,2021-01-06,Ancestral,132.208183677306,0,Previously infected (Pre-Omicron),BNT162b2,2 -238,2021-02-26,2021-01-06,Ancestral,146.614105212046,0,Previously infected (Pre-Omicron),BNT162b2,2 -238,2021-02-05,2021-01-06,Alpha,127.54147645632,0,Previously infected (Pre-Omicron),BNT162b2,2 -238,2021-02-26,2021-01-06,Alpha,54.1214982344394,0,Previously infected (Pre-Omicron),BNT162b2,2 -238,2021-02-05,2021-01-06,Delta,5,-1,Previously infected (Pre-Omicron),BNT162b2,2 -238,2021-02-26,2021-01-06,Delta,5,-1,Previously infected (Pre-Omicron),BNT162b2,2 -239,2021-06-02,2021-04-28,Ancestral,513.918889000001,0,Previously infected (Pre-Omicron),AZD1222,3 -239,2021-07-07,2021-04-28,Ancestral,178.419662,0,Previously infected (Pre-Omicron),AZD1222,3 -239,2022-01-06,2021-04-28,Ancestral,238.8917662,0,Previously infected (Pre-Omicron),AZD1222,3 -239,2021-06-02,2021-04-28,Alpha,381.479776,0,Previously infected (Pre-Omicron),AZD1222,3 -239,2021-07-07,2021-04-28,Alpha,179.2032958,0,Previously infected (Pre-Omicron),AZD1222,3 -239,2021-06-02,2021-04-28,Delta,193.2334973,0,Previously infected (Pre-Omicron),AZD1222,3 -239,2021-07-07,2021-04-28,Delta,191.8832941,0,Previously infected (Pre-Omicron),AZD1222,3 -239,2022-01-06,2021-04-28,Delta,205.2804932,0,Previously infected (Pre-Omicron),AZD1222,3 -240,2021-03-24,2021-03-04,Ancestral,443.551816099999,0,Infection naive,BNT162b2,2 -240,2021-03-24,2021-03-04,Alpha,405.2628435,0,Infection naive,BNT162b2,2 -240,2021-03-24,2021-03-04,Delta,421.566711600001,0,Infection naive,BNT162b2,2 -241,2021-04-15,2021-03-22,Ancestral,360.669594000001,0,Infection naive,BNT162b2,2 -241,2021-06-29,2021-03-22,Ancestral,210.7498937,0,Infection naive,BNT162b2,2 -241,2021-04-15,2021-03-22,Alpha,375.179459799999,0,Infection naive,BNT162b2,2 -241,2021-06-29,2021-03-22,Alpha,170.769343600001,0,Infection naive,BNT162b2,2 -241,2021-04-15,2021-03-22,Delta,134.4283302,0,Infection naive,BNT162b2,2 -241,2021-06-29,2021-03-22,Delta,51.8917502899999,0,Infection naive,BNT162b2,2 -242,2021-04-23,2021-03-20,Ancestral,1099.775506,0,Infection naive,BNT162b2,2 -242,2021-07-07,2021-03-20,Ancestral,355.646905200001,0,Infection naive,BNT162b2,2 -242,2021-10-08,2021-03-20,Ancestral,275.5802689,0,Infection naive,BNT162b2,2 -242,2021-04-23,2021-03-20,Alpha,1260.916677,0,Infection naive,BNT162b2,2 -242,2021-07-07,2021-03-20,Alpha,429.3980694,0,Infection naive,BNT162b2,2 -242,2021-10-08,2021-03-20,Alpha,413.515579682548,0,Infection naive,BNT162b2,2 -242,2021-04-23,2021-03-20,Delta,583.565635300001,0,Infection naive,BNT162b2,2 -242,2021-07-07,2021-03-20,Delta,178.107168800001,0,Infection naive,BNT162b2,2 -242,2021-10-08,2021-03-20,Delta,177.0177465,0,Infection naive,BNT162b2,2 -243,2021-03-23,2021-03-12,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -243,2021-09-30,2021-03-12,Ancestral,450.605170699999,0,Previously infected (Pre-Omicron),BNT162b2,3 -243,2021-03-23,2021-03-12,Alpha,806.402372399998,0,Previously infected (Pre-Omicron),BNT162b2,3 -243,2021-09-30,2021-03-12,Alpha,320.983179424583,0,Previously infected (Pre-Omicron),BNT162b2,3 -243,2021-03-23,2021-03-12,Delta,1561.588019,0,Previously infected (Pre-Omicron),BNT162b2,3 -243,2021-09-30,2021-03-12,Delta,179.0462942,0,Previously infected (Pre-Omicron),BNT162b2,3 -244,2021-04-15,2021-04-06,Ancestral,656.868261300003,0,Infection naive,BNT162b2,2 -244,2021-04-15,2021-04-06,Alpha,641.505766099999,0,Infection naive,BNT162b2,2 -244,2021-04-15,2021-04-06,Delta,453.775892300001,0,Infection naive,BNT162b2,2 -245,2021-04-15,2021-03-26,Ancestral,2560,1,Infection naive,BNT162b2,2 -245,2021-07-08,2021-03-26,Ancestral,190.2087997,0,Infection naive,BNT162b2,2 -245,2021-04-15,2021-03-26,Alpha,1035.23459,0,Infection naive,BNT162b2,2 -245,2021-07-08,2021-03-26,Alpha,293.2747681,0,Infection naive,BNT162b2,2 -245,2021-04-15,2021-03-26,Delta,920.514984000001,0,Infection naive,BNT162b2,2 -245,2021-07-08,2021-03-26,Delta,227.050848700001,0,Infection naive,BNT162b2,2 -246,2021-03-12,2021-02-26,Ancestral,2560,1,Infection naive,BNT162b2,2 -246,2021-04-01,2021-02-26,Ancestral,155.7546505,0,Infection naive,BNT162b2,2 -246,2021-05-13,2021-02-26,Ancestral,295.597396500001,0,Infection naive,BNT162b2,2 -246,2021-08-16,2021-02-26,Ancestral,92.2165131599998,0,Infection naive,BNT162b2,2 -246,2021-03-12,2021-02-26,Alpha,338.611960600001,0,Infection naive,BNT162b2,2 -246,2021-04-01,2021-02-26,Alpha,305.0733162,0,Infection naive,BNT162b2,2 -246,2021-05-13,2021-02-26,Alpha,125.5450607,0,Infection naive,BNT162b2,2 -246,2021-08-16,2021-02-26,Alpha,153.7202852,0,Infection naive,BNT162b2,2 -246,2021-03-12,2021-02-26,Delta,145.7173155,0,Infection naive,BNT162b2,2 -246,2021-04-01,2021-02-26,Delta,136.0880493,0,Infection naive,BNT162b2,2 -246,2021-05-13,2021-02-26,Delta,92.2165131599998,0,Infection naive,BNT162b2,2 -246,2021-08-16,2021-02-26,Delta,50.50076786,0,Infection naive,BNT162b2,2 -247,2021-03-09,2021-03-04,Ancestral,2036.59773000001,0,Previously infected (Pre-Omicron),BNT162b2,3 -247,2021-04-01,2021-03-04,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -247,2021-03-09,2021-03-04,Alpha,988.243583847195,0,Previously infected (Pre-Omicron),BNT162b2,3 -247,2021-04-01,2021-03-04,Alpha,1254.302975,0,Previously infected (Pre-Omicron),BNT162b2,3 -247,2021-03-09,2021-03-04,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -247,2021-04-01,2021-03-04,Delta,2551.13748200001,0,Previously infected (Pre-Omicron),BNT162b2,3 -248,2021-02-01,2021-01-11,Ancestral,2560,1,Infection naive,BNT162b2,2 -248,2021-02-22,2021-01-11,Ancestral,2560,1,Infection naive,BNT162b2,2 -248,2021-04-06,2021-01-11,Ancestral,2560,1,Infection naive,BNT162b2,2 -248,2021-02-01,2021-01-11,Alpha,702.114817999998,0,Infection naive,BNT162b2,2 -248,2021-02-22,2021-01-11,Alpha,712.030563400002,0,Infection naive,BNT162b2,2 -248,2021-04-06,2021-01-11,Alpha,640.943737099998,0,Infection naive,BNT162b2,2 -248,2021-02-01,2021-01-11,Delta,386.528356299999,0,Infection naive,BNT162b2,2 -248,2021-02-22,2021-01-11,Delta,322.392963799999,0,Infection naive,BNT162b2,2 -248,2021-04-06,2021-01-11,Delta,180.7809038,0,Infection naive,BNT162b2,2 -249,2021-04-30,2021-03-17,Ancestral,370.279111379964,0,Infection naive,BNT162b2,2 -249,2021-04-30,2021-03-17,Alpha,562.473614824264,0,Infection naive,BNT162b2,2 -249,2021-04-30,2021-03-17,Delta,278.250104602277,0,Infection naive,BNT162b2,2 -250,2021-03-22,2021-03-14,Ancestral,2560,1,Infection naive,BNT162b2,2 -250,2021-03-22,2021-03-14,Alpha,666.145003900002,0,Infection naive,BNT162b2,2 -250,2021-03-22,2021-03-14,Delta,482.0662063,0,Infection naive,BNT162b2,2 -251,2021-05-26,2021-04-30,Ancestral,335.362947300001,0,Infection naive,AZD1222,2 -251,2021-06-28,2021-04-30,Ancestral,409.189050599999,0,Infection naive,AZD1222,2 -251,2021-09-14,2021-04-30,Ancestral,171.9709766,0,Infection naive,AZD1222,2 -251,2021-11-16,2021-04-30,Ancestral,168.8345717,0,Infection naive,AZD1222,2 -251,2021-05-26,2021-04-30,Alpha,228.0480747,0,Infection naive,AZD1222,2 -251,2021-06-28,2021-04-30,Alpha,191.7151835,0,Infection naive,AZD1222,2 -251,2021-09-14,2021-04-30,Alpha,212.978241590407,0,Infection naive,AZD1222,2 -251,2021-11-16,2021-04-30,Alpha,80.997497209708,0,Infection naive,AZD1222,2 -251,2021-05-26,2021-04-30,Delta,243.5429794,0,Infection naive,AZD1222,2 -251,2021-06-28,2021-04-30,Delta,287.1699249,0,Infection naive,AZD1222,2 -251,2021-09-14,2021-04-30,Delta,74.78799629,0,Infection naive,AZD1222,2 -251,2021-11-16,2021-04-30,Delta,125.5450607,0,Infection naive,AZD1222,2 -252,2021-02-19,2021-01-07,Ancestral,5,-1,Infection naive,BNT162b2,2 -252,2021-02-19,2021-01-07,Alpha,209.0939465,0,Infection naive,BNT162b2,2 -252,2021-03-12,2021-01-07,Alpha,139.3470255,0,Infection naive,BNT162b2,2 -252,2021-04-29,2021-01-07,Alpha,153.855079,0,Infection naive,BNT162b2,2 -252,2021-02-19,2021-01-07,Delta,5,-1,Infection naive,BNT162b2,2 -253,2021-04-23,2021-03-23,Ancestral,737.436922400002,0,Infection naive,BNT162b2,2 -253,2021-07-16,2021-03-23,Ancestral,114.3061066,0,Infection naive,BNT162b2,2 -253,2021-04-23,2021-03-23,Alpha,588.703028700001,0,Infection naive,BNT162b2,2 -253,2021-07-16,2021-03-23,Alpha,162.3049845,0,Infection naive,BNT162b2,2 -253,2021-04-23,2021-03-23,Delta,343.996563099999,0,Infection naive,BNT162b2,2 -253,2021-07-16,2021-03-23,Delta,76.6461363799998,0,Infection naive,BNT162b2,2 -254,2021-04-23,2021-03-11,Ancestral,305.340828000001,0,Previously infected (Pre-Omicron),BNT162b2,3 -254,2021-06-28,2021-03-11,Ancestral,126.3177041,0,Previously infected (Pre-Omicron),BNT162b2,3 -254,2021-09-28,2021-03-11,Ancestral,101.8175944,0,Previously infected (Pre-Omicron),BNT162b2,3 -254,2021-04-23,2021-03-11,Alpha,489.732016200002,0,Previously infected (Pre-Omicron),BNT162b2,3 -254,2021-06-28,2021-03-11,Alpha,112.0248427,0,Previously infected (Pre-Omicron),BNT162b2,3 -254,2021-09-28,2021-03-11,Alpha,79.3809898542299,0,Previously infected (Pre-Omicron),BNT162b2,3 -254,2021-04-23,2021-03-11,Delta,271.9808199,0,Previously infected (Pre-Omicron),BNT162b2,3 -254,2021-06-28,2021-03-11,Delta,65.6893251900002,0,Previously infected (Pre-Omicron),BNT162b2,3 -254,2021-09-28,2021-03-11,Delta,5,-1,Previously infected (Pre-Omicron),BNT162b2,3 -255,2021-04-23,2021-03-18,Ancestral,2560,1,Infection naive,BNT162b2,2 -255,2021-06-28,2021-03-18,Ancestral,370.279111400002,0,Infection naive,BNT162b2,2 -255,2021-09-24,2021-03-18,Ancestral,342.192248199999,0,Infection naive,BNT162b2,2 -255,2021-04-23,2021-03-18,Alpha,783.411868400002,0,Infection naive,BNT162b2,2 -255,2021-06-28,2021-03-18,Alpha,381.479776,0,Infection naive,BNT162b2,2 -255,2021-09-24,2021-03-18,Alpha,168.982618852693,0,Infection naive,BNT162b2,2 -255,2021-04-23,2021-03-18,Delta,477.8593931,0,Infection naive,BNT162b2,2 -255,2021-06-28,2021-03-18,Delta,182.2126221,0,Infection naive,BNT162b2,2 -255,2021-09-24,2021-03-18,Delta,102.7139409,0,Infection naive,BNT162b2,2 -256,2021-04-13,2021-03-03,Ancestral,1740.875928,0,Infection naive,BNT162b2,2 -256,2021-04-13,2021-03-03,Alpha,450.2103914,0,Infection naive,BNT162b2,2 -256,2021-04-13,2021-03-03,Delta,146.1009803,0,Infection naive,BNT162b2,2 -257,2021-03-24,2021-03-05,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -257,2021-04-30,2021-03-05,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -257,2021-07-27,2021-03-05,Ancestral,298.7228729,0,Previously infected (Pre-Omicron),BNT162b2,3 -257,2021-03-24,2021-03-05,Alpha,1098.811983,0,Previously infected (Pre-Omicron),BNT162b2,3 -257,2021-04-30,2021-03-05,Alpha,435.080810000002,0,Previously infected (Pre-Omicron),BNT162b2,3 -257,2021-07-27,2021-03-05,Alpha,272.219313700001,0,Previously infected (Pre-Omicron),BNT162b2,3 -257,2021-03-24,2021-03-05,Delta,605.4485789,0,Previously infected (Pre-Omicron),BNT162b2,3 -257,2021-04-30,2021-03-05,Delta,301.3526661,0,Previously infected (Pre-Omicron),BNT162b2,3 -257,2021-07-27,2021-03-05,Delta,166.0461901,0,Previously infected (Pre-Omicron),BNT162b2,3 -258,2021-04-23,2021-04-09,Ancestral,83.8141193200002,0,Infection naive,AZD1222,2 -258,2021-07-07,2021-04-09,Ancestral,5,-1,Infection naive,AZD1222,2 -258,2021-04-23,2021-04-09,Alpha,5,-1,Infection naive,AZD1222,2 -258,2021-07-07,2021-04-09,Alpha,5,-1,Infection naive,AZD1222,2 -258,2021-12-02,2021-04-09,Alpha,5,-1,Infection naive,AZD1222,2 -258,2021-04-23,2021-04-09,Delta,5,-1,Infection naive,AZD1222,2 -258,2021-07-07,2021-04-09,Delta,5,-1,Infection naive,AZD1222,2 -258,2021-12-02,2021-04-09,Delta,5,-1,Infection naive,AZD1222,2 -259,2021-02-26,2021-01-11,Ancestral,455.768913199999,0,Previously infected (Pre-Omicron),BNT162b2,3 -259,2021-03-24,2021-01-11,Ancestral,164.1649302,0,Previously infected (Pre-Omicron),BNT162b2,3 -259,2021-02-26,2021-01-11,Alpha,154.5308232,0,Previously infected (Pre-Omicron),BNT162b2,3 -259,2021-03-24,2021-01-11,Alpha,110.8527497,0,Previously infected (Pre-Omicron),BNT162b2,3 -259,2021-02-26,2021-01-11,Delta,51.4389102,0,Previously infected (Pre-Omicron),BNT162b2,3 -259,2021-03-24,2021-01-11,Delta,87.7994827499998,0,Previously infected (Pre-Omicron),BNT162b2,3 -260,2021-02-01,2021-01-11,Ancestral,291.9923139,0,Infection naive,BNT162b2,2 -260,2021-02-22,2021-01-11,Ancestral,338.9088817,0,Infection naive,BNT162b2,2 -260,2021-04-13,2021-01-11,Ancestral,138.1309956,0,Infection naive,BNT162b2,2 -260,2021-07-06,2021-01-11,Ancestral,151.7124915,0,Infection naive,BNT162b2,2 -260,2021-02-01,2021-01-11,Alpha,190.8768368,0,Infection naive,BNT162b2,2 -260,2021-02-22,2021-01-11,Alpha,130.3670511,0,Infection naive,BNT162b2,2 -260,2021-04-13,2021-01-11,Alpha,103.7090388,0,Infection naive,BNT162b2,2 -260,2021-07-06,2021-01-11,Alpha,65.9778380900002,0,Infection naive,BNT162b2,2 -260,2021-02-01,2021-01-11,Delta,160.0447235,0,Infection naive,BNT162b2,2 -260,2021-02-22,2021-01-11,Delta,159.7644131,0,Infection naive,BNT162b2,2 -260,2021-04-13,2021-01-11,Delta,81.8539180400001,0,Infection naive,BNT162b2,2 -260,2021-07-06,2021-01-11,Delta,98.9147783000003,0,Infection naive,BNT162b2,2 -261,2021-04-19,2021-03-30,Ancestral,1267.565252,0,Previously infected (Pre-Omicron),BNT162b2,3 -261,2021-07-16,2021-03-30,Ancestral,204.5620457,0,Previously infected (Pre-Omicron),BNT162b2,3 -261,2021-11-02,2021-03-30,Ancestral,236.8070462,0,Previously infected (Pre-Omicron),BNT162b2,3 -261,2021-04-19,2021-03-30,Alpha,449.421870300001,0,Previously infected (Pre-Omicron),BNT162b2,3 -261,2021-07-16,2021-03-30,Alpha,244.3983328,0,Previously infected (Pre-Omicron),BNT162b2,3 -261,2021-11-02,2021-03-30,Alpha,291.480903887568,0,Previously infected (Pre-Omicron),BNT162b2,3 -261,2021-04-19,2021-03-30,Delta,867.253876999999,0,Previously infected (Pre-Omicron),BNT162b2,3 -261,2021-07-16,2021-03-30,Delta,242.4779962,0,Previously infected (Pre-Omicron),BNT162b2,3 -261,2021-11-02,2021-03-30,Delta,110.6585966,0,Previously infected (Pre-Omicron),BNT162b2,3 -262,2021-04-01,2021-03-18,Ancestral,2560,1,Infection naive,BNT162b2,2 -262,2021-07-08,2021-03-18,Ancestral,354.7129676,0,Infection naive,BNT162b2,2 -262,2021-04-01,2021-03-18,Alpha,1184.840275,0,Infection naive,BNT162b2,2 -262,2021-07-08,2021-03-18,Alpha,667.313770799999,0,Infection naive,BNT162b2,2 -262,2021-04-01,2021-03-18,Delta,557.565115799999,0,Infection naive,BNT162b2,2 -262,2021-07-08,2021-03-18,Delta,288.431198699999,0,Infection naive,BNT162b2,2 -263,2021-04-15,2021-03-14,Ancestral,494.4765649,0,Infection naive,BNT162b2,2 -263,2021-04-15,2021-03-14,Alpha,356.895981600001,0,Infection naive,BNT162b2,2 -263,2021-04-15,2021-03-14,Delta,458.573856899999,0,Infection naive,BNT162b2,2 -264,2021-04-06,2021-03-10,Ancestral,630.358252700001,0,Infection naive,BNT162b2,2 -264,2021-04-06,2021-03-10,Alpha,1529.08181300001,0,Infection naive,BNT162b2,2 -264,2021-04-06,2021-03-10,Delta,522.091219700001,0,Infection naive,BNT162b2,2 -265,2021-02-24,2021-01-05,Ancestral,169.5761069,0,Infection naive,BNT162b2,2 -265,2021-03-17,2021-01-05,Ancestral,136.5660075,0,Infection naive,BNT162b2,2 -265,2021-02-24,2021-01-05,Alpha,112.6155285,0,Infection naive,BNT162b2,2 -265,2021-03-17,2021-01-05,Alpha,90.3761023199997,0,Infection naive,BNT162b2,2 -265,2021-04-28,2021-01-05,Alpha,127.0951026,0,Infection naive,BNT162b2,2 -265,2021-07-21,2021-01-05,Alpha,129.1161671,0,Infection naive,BNT162b2,2 -265,2021-02-24,2021-01-05,Delta,57.0939158300001,0,Infection naive,BNT162b2,2 -265,2021-03-17,2021-01-05,Delta,42.15827502,0,Infection naive,BNT162b2,2 -265,2021-04-28,2021-01-05,Delta,57.6470445899999,0,Infection naive,BNT162b2,2 -265,2021-07-21,2021-01-05,Delta,91.1717242,0,Infection naive,BNT162b2,2 -266,2021-04-15,2021-03-18,Ancestral,1262.022346,0,Infection naive,BNT162b2,2 -266,2021-06-29,2021-03-18,Ancestral,324.0928808,0,Infection naive,BNT162b2,2 -266,2021-04-15,2021-03-18,Alpha,1497.25226,0,Infection naive,BNT162b2,2 -266,2021-06-29,2021-03-18,Alpha,369.306749200001,0,Infection naive,BNT162b2,2 -266,2021-04-15,2021-03-18,Delta,1020.817902,0,Infection naive,BNT162b2,2 -266,2021-06-29,2021-03-18,Delta,230.8636698,0,Infection naive,BNT162b2,2 -267,2021-05-11,2021-04-09,Ancestral,413.515579700001,0,Infection naive,BNT162b2,2 -267,2021-06-29,2021-04-09,Ancestral,317.0684939,0,Infection naive,BNT162b2,2 -267,2021-12-02,2021-04-09,Ancestral,129.7969721,0,Infection naive,BNT162b2,2 -267,2021-05-11,2021-04-09,Alpha,337.7227572,0,Infection naive,BNT162b2,2 -267,2021-06-29,2021-04-09,Alpha,190.042156000001,0,Infection naive,BNT162b2,2 -267,2021-12-02,2021-04-09,Alpha,71.6439877140535,0,Infection naive,BNT162b2,2 -267,2021-05-11,2021-04-09,Delta,251.570601999999,0,Infection naive,BNT162b2,2 -267,2021-06-29,2021-04-09,Delta,224.675262,0,Infection naive,BNT162b2,2 -267,2021-12-02,2021-04-09,Delta,53.1810232499998,0,Infection naive,BNT162b2,2 -268,2021-04-20,2021-04-14,Ancestral,163.590380327854,0,Infection naive,AZD1222,2 -268,2021-06-28,2021-04-14,Ancestral,107.2214163,0,Infection naive,AZD1222,2 -268,2021-04-20,2021-04-14,Alpha,163.3038598957,0,Infection naive,AZD1222,2 -268,2021-06-28,2021-04-14,Alpha,81.06852207,0,Infection naive,AZD1222,2 -268,2021-04-20,2021-04-14,Delta,81.6389676192483,0,Infection naive,AZD1222,2 -268,2021-06-28,2021-04-14,Delta,60.7065783099999,0,Infection naive,AZD1222,2 -269,2021-04-23,2021-03-18,Ancestral,711.406746999998,0,Infection naive,BNT162b2,2 -269,2021-07-08,2021-03-18,Ancestral,107.2214163,0,Infection naive,BNT162b2,2 -269,2021-04-23,2021-03-18,Alpha,235.152376499999,0,Infection naive,BNT162b2,2 -269,2021-07-08,2021-03-18,Alpha,112.1230748,0,Infection naive,BNT162b2,2 -269,2021-04-23,2021-03-18,Delta,89.7446067599999,0,Infection naive,BNT162b2,2 -269,2021-07-08,2021-03-18,Delta,56.7944494599999,0,Infection naive,BNT162b2,2 -270,2021-06-09,2021-04-21,Ancestral,221.740700900001,0,Infection naive,AZD1222,1 -270,2021-06-09,2021-04-21,Alpha,157.539532143869,0,Infection naive,AZD1222,1 -270,2021-06-09,2021-04-21,Delta,40.4568437,0,Infection naive,AZD1222,1 -271,2021-02-18,2021-01-11,Ancestral,559.523354199999,0,Infection naive,BNT162b2,2 -271,2021-03-11,2021-01-11,Ancestral,358.777826499999,0,Infection naive,BNT162b2,2 -271,2021-04-14,2021-01-11,Ancestral,344.902285100001,0,Infection naive,BNT162b2,2 -271,2021-07-02,2021-01-11,Ancestral,186.7397735,0,Infection naive,BNT162b2,2 -271,2021-02-18,2021-01-11,Alpha,487.1632965,0,Infection naive,BNT162b2,2 -271,2021-03-11,2021-01-11,Alpha,262.150520300001,0,Infection naive,BNT162b2,2 -271,2021-04-14,2021-01-11,Alpha,187.889028099999,0,Infection naive,BNT162b2,2 -271,2021-07-02,2021-01-11,Alpha,82.5021709899999,0,Infection naive,BNT162b2,2 -271,2021-02-18,2021-01-11,Delta,190.042156000001,0,Infection naive,BNT162b2,2 -271,2021-03-11,2021-01-11,Delta,246.7660763,0,Infection naive,BNT162b2,2 -271,2021-04-14,2021-01-11,Delta,190.7096078,0,Infection naive,BNT162b2,2 -271,2021-07-02,2021-01-11,Delta,85.89651734,0,Infection naive,BNT162b2,2 -272,2021-05-05,2021-03-23,Ancestral,2560,1,Infection naive,BNT162b2,2 -272,2021-06-28,2021-03-23,Ancestral,186.9035213,0,Infection naive,BNT162b2,2 -272,2021-12-02,2021-03-23,Ancestral,248.067227000001,0,Infection naive,BNT162b2,2 -272,2021-05-05,2021-03-23,Alpha,864.976446700001,0,Infection naive,BNT162b2,2 -272,2021-06-28,2021-03-23,Alpha,260.7755005,0,Infection naive,BNT162b2,2 -272,2021-12-02,2021-03-23,Alpha,156.850631321271,0,Infection naive,BNT162b2,2 -272,2021-05-05,2021-03-23,Delta,406.329875899999,0,Infection naive,BNT162b2,2 -272,2021-06-28,2021-03-23,Delta,141.3149794,0,Infection naive,BNT162b2,2 -272,2021-12-02,2021-03-23,Delta,95.5906897799999,0,Infection naive,BNT162b2,2 -273,2021-03-09,2021-03-09,Ancestral,397.5230848,0,Previously infected (Pre-Omicron),BNT162b2,3 -273,2021-04-27,2021-03-09,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -273,2021-07-20,2021-03-09,Ancestral,1047.097936,0,Previously infected (Pre-Omicron),BNT162b2,3 -273,2021-03-09,2021-03-09,Alpha,200.303857279495,0,Previously infected (Pre-Omicron),BNT162b2,3 -273,2021-04-27,2021-03-09,Alpha,1137.022277,0,Previously infected (Pre-Omicron),BNT162b2,3 -273,2021-07-20,2021-03-09,Alpha,416.790471097569,0,Previously infected (Pre-Omicron),BNT162b2,3 -273,2021-03-09,2021-03-09,Delta,123.4716256,0,Previously infected (Pre-Omicron),BNT162b2,3 -273,2021-04-27,2021-03-09,Delta,2324.793169,0,Previously infected (Pre-Omicron),BNT162b2,3 -273,2021-07-20,2021-03-09,Delta,638.700541000001,0,Previously infected (Pre-Omicron),BNT162b2,3 -274,2021-02-26,2021-02-24,Ancestral,124.886557571153,0,Infection naive,BNT162b2,2 -274,2021-04-09,2021-02-24,Ancestral,2560,1,Infection naive,BNT162b2,2 -274,2021-07-02,2021-02-24,Ancestral,198.729988805792,0,Infection naive,BNT162b2,2 -274,2021-02-26,2021-02-24,Alpha,123.147385999295,0,Infection naive,BNT162b2,2 -274,2021-04-09,2021-02-24,Alpha,354.091705500001,0,Infection naive,BNT162b2,2 -274,2021-07-02,2021-02-24,Alpha,287.926025764238,0,Infection naive,BNT162b2,2 -274,2021-02-26,2021-02-24,Delta,52.348576940565,0,Infection naive,BNT162b2,2 -274,2021-04-09,2021-02-24,Delta,221.740700900001,0,Infection naive,BNT162b2,2 -274,2021-07-02,2021-02-24,Delta,170.619731080311,0,Infection naive,BNT162b2,2 -275,2021-04-20,2021-04-06,Ancestral,329.824271999999,0,Infection naive,BNT162b2,2 -275,2021-07-07,2021-04-06,Ancestral,356.895981600001,0,Infection naive,BNT162b2,2 -275,2021-04-20,2021-04-06,Alpha,162.8750199,0,Infection naive,BNT162b2,2 -275,2021-07-07,2021-04-06,Alpha,214.1012355,0,Infection naive,BNT162b2,2 -275,2021-04-20,2021-04-06,Delta,160.4661115,0,Infection naive,BNT162b2,2 -275,2021-07-07,2021-04-06,Delta,72.02175288,0,Infection naive,BNT162b2,2 -276,2021-04-15,2021-03-29,Ancestral,370.928774700001,0,Infection naive,BNT162b2,2 -276,2021-07-16,2021-03-29,Ancestral,215.041585700001,0,Infection naive,BNT162b2,2 -276,2021-10-26,2021-03-29,Ancestral,311.83196,0,Infection naive,BNT162b2,2 -276,2021-04-15,2021-03-29,Alpha,273.8946361,0,Infection naive,BNT162b2,2 -276,2021-07-16,2021-03-29,Alpha,145.9729799,0,Infection naive,BNT162b2,2 -276,2021-10-26,2021-03-29,Alpha,166.629365,0,Infection naive,BNT162b2,2 -276,2021-04-15,2021-03-29,Delta,190.8768368,0,Infection naive,BNT162b2,2 -276,2021-07-16,2021-03-29,Delta,162.8750199,0,Infection naive,BNT162b2,2 -276,2021-10-26,2021-03-29,Delta,105.6356202,0,Infection naive,BNT162b2,2 -277,2021-02-01,2021-01-11,Ancestral,598.589004999999,0,Infection naive,BNT162b2,2 -277,2021-02-25,2021-01-11,Ancestral,76.3109723399998,0,Infection naive,BNT162b2,2 -277,2021-02-01,2021-01-11,Alpha,474.104658399999,0,Infection naive,BNT162b2,2 -277,2021-02-25,2021-01-11,Alpha,5,-1,Infection naive,BNT162b2,2 -277,2021-02-01,2021-01-11,Delta,255.7951785,0,Infection naive,BNT162b2,2 -277,2021-02-25,2021-01-11,Delta,5,-1,Infection naive,BNT162b2,2 -278,2021-04-15,2021-03-28,Ancestral,195.105553200001,0,Infection naive,BNT162b2,2 -278,2021-06-29,2021-03-28,Ancestral,124.5586024,0,Infection naive,BNT162b2,2 -278,2021-04-15,2021-03-28,Alpha,472.445371200002,0,Infection naive,BNT162b2,2 -278,2021-06-29,2021-03-28,Alpha,89.98089884,0,Infection naive,BNT162b2,2 -278,2021-04-15,2021-03-28,Delta,168.096279000001,0,Infection naive,BNT162b2,2 -278,2021-06-29,2021-03-28,Delta,82.0694344200001,0,Infection naive,BNT162b2,2 -279,2021-01-29,2021-01-09,Ancestral,514.369532699999,0,Infection naive,BNT162b2,2 -279,2021-02-19,2021-01-09,Ancestral,351.001678200001,0,Infection naive,BNT162b2,2 -279,2021-04-14,2021-01-09,Ancestral,293.531934100001,0,Infection naive,BNT162b2,2 -279,2021-01-29,2021-01-09,Alpha,436.608868200001,0,Infection naive,BNT162b2,2 -279,2021-02-19,2021-01-09,Alpha,305.8765556,0,Infection naive,BNT162b2,2 -279,2021-04-14,2021-01-09,Alpha,118.8005084,0,Infection naive,BNT162b2,2 -279,2021-01-29,2021-01-09,Delta,222.129750100001,0,Infection naive,BNT162b2,2 -279,2021-02-19,2021-01-09,Delta,127.0951026,0,Infection naive,BNT162b2,2 -279,2021-04-14,2021-01-09,Delta,62.37866742,0,Infection naive,BNT162b2,2 -280,2021-04-19,2021-03-24,Ancestral,652.850416600002,0,Infection naive,BNT162b2,2 -280,2021-07-07,2021-03-24,Ancestral,99.4363371700003,0,Infection naive,BNT162b2,2 -280,2021-04-19,2021-03-24,Alpha,368.983196300001,0,Infection naive,BNT162b2,2 -280,2021-07-07,2021-03-24,Alpha,125.4350696,0,Infection naive,BNT162b2,2 -280,2021-04-19,2021-03-24,Delta,209.0939465,0,Infection naive,BNT162b2,2 -280,2021-07-07,2021-03-24,Delta,100.3996815,0,Infection naive,BNT162b2,2 -281,2021-03-12,2021-03-11,Ancestral,107.127478692248,0,Infection naive,BNT162b2,2 -281,2021-04-13,2021-03-11,Ancestral,2560,1,Infection naive,BNT162b2,2 -281,2021-05-28,2021-03-11,Ancestral,2560,1,Infection naive,BNT162b2,2 -281,2021-08-27,2021-03-11,Ancestral,156.0279256,0,Infection naive,BNT162b2,2 -281,2021-03-12,2021-03-11,Alpha,5,-1,Infection naive,BNT162b2,2 -281,2021-04-13,2021-03-11,Alpha,480.379055100002,0,Infection naive,BNT162b2,2 -281,2021-05-28,2021-03-11,Alpha,279.227353800001,0,Infection naive,BNT162b2,2 -281,2021-08-27,2021-03-11,Alpha,211.6755245,0,Infection naive,BNT162b2,2 -281,2021-03-12,2021-03-11,Delta,5,-1,Infection naive,BNT162b2,2 -281,2021-04-13,2021-03-11,Delta,255.123454000001,0,Infection naive,BNT162b2,2 -281,2021-05-28,2021-03-11,Delta,343.695184599999,0,Infection naive,BNT162b2,2 -281,2021-08-27,2021-03-11,Delta,131.3995102,0,Infection naive,BNT162b2,2 -282,2021-02-05,2021-01-10,Ancestral,571.418062100002,0,Infection naive,BNT162b2,2 -282,2021-02-26,2021-01-10,Ancestral,553.184101099999,0,Infection naive,BNT162b2,2 -282,2021-04-12,2021-01-10,Ancestral,404.1986132,0,Infection naive,BNT162b2,2 -282,2021-07-05,2021-01-10,Ancestral,296.375686400001,0,Infection naive,BNT162b2,2 -282,2021-02-05,2021-01-10,Alpha,427.145810499999,0,Infection naive,BNT162b2,2 -282,2021-02-26,2021-01-10,Alpha,653.4228862,0,Infection naive,BNT162b2,2 -282,2021-04-12,2021-01-10,Alpha,192.5572123,0,Infection naive,BNT162b2,2 -282,2021-07-05,2021-01-10,Alpha,102.5340426,0,Infection naive,BNT162b2,2 -282,2021-02-05,2021-01-10,Delta,208.1796046,0,Infection naive,BNT162b2,2 -282,2021-02-26,2021-01-10,Delta,245.686998900001,0,Infection naive,BNT162b2,2 -282,2021-04-12,2021-01-10,Delta,173.789298600001,0,Infection naive,BNT162b2,2 -282,2021-07-05,2021-01-10,Delta,102.8040085,0,Infection naive,BNT162b2,2 -283,2021-04-19,2021-03-17,Ancestral,1075.938979,0,Previously infected (Pre-Omicron),BNT162b2,3 -283,2021-06-28,2021-03-17,Ancestral,495.7784916,0,Previously infected (Pre-Omicron),BNT162b2,3 -283,2021-04-19,2021-03-17,Alpha,775.21519,0,Previously infected (Pre-Omicron),BNT162b2,3 -283,2021-06-28,2021-03-17,Alpha,283.419099300001,0,Previously infected (Pre-Omicron),BNT162b2,3 -283,2021-04-19,2021-03-17,Delta,1055.390567,0,Previously infected (Pre-Omicron),BNT162b2,3 -283,2021-06-28,2021-03-17,Delta,251.7911985,0,Previously infected (Pre-Omicron),BNT162b2,3 -284,2021-02-18,2021-01-11,Ancestral,581.523253000001,0,Previously infected (Pre-Omicron),BNT162b2,3 -284,2021-03-24,2021-01-11,Ancestral,183.1733947,0,Previously infected (Pre-Omicron),BNT162b2,3 -284,2021-02-18,2021-01-11,Alpha,224.085259200001,0,Previously infected (Pre-Omicron),BNT162b2,3 -284,2021-03-24,2021-01-11,Alpha,48.8036602599998,0,Previously infected (Pre-Omicron),BNT162b2,3 -284,2021-02-18,2021-01-11,Delta,98.4822362500002,0,Previously infected (Pre-Omicron),BNT162b2,3 -284,2021-03-24,2021-01-11,Delta,42.7911527100001,0,Previously infected (Pre-Omicron),BNT162b2,3 -285,2021-05-11,2021-04-28,Ancestral,458.1720963,0,Previously infected (Pre-Omicron),AZD1222,4 -285,2021-07-08,2021-04-28,Ancestral,252.2329721,0,Previously infected (Pre-Omicron),AZD1222,4 -285,2021-12-02,2021-04-28,Ancestral,178.2633469,0,Previously infected (Pre-Omicron),AZD1222,4 -285,2021-05-11,2021-04-28,Alpha,235.771518399999,0,Previously infected (Pre-Omicron),AZD1222,4 -285,2021-07-08,2021-04-28,Alpha,119.5316437,0,Previously infected (Pre-Omicron),AZD1222,4 -285,2021-12-02,2021-04-28,Alpha,91.3316871172036,0,Previously infected (Pre-Omicron),AZD1222,4 -285,2021-05-11,2021-04-28,Delta,249.375238500001,0,Previously infected (Pre-Omicron),AZD1222,4 -285,2021-07-08,2021-04-28,Delta,159.7644131,0,Previously infected (Pre-Omicron),AZD1222,4 -285,2021-12-02,2021-04-28,Delta,45.7387031300002,0,Previously infected (Pre-Omicron),AZD1222,4 -286,2021-06-02,2021-04-30,Ancestral,202.067223099999,0,Infection naive,AZD1222,1 -286,2021-06-02,2021-04-30,Alpha,5,-1,Infection naive,AZD1222,1 -286,2021-06-02,2021-04-30,Delta,5,-1,Infection naive,AZD1222,1 -287,2021-05-28,2021-05-06,Ancestral,267.0204364,0,Previously infected (Pre-Omicron),AZD1222,3 -287,2021-05-28,2021-05-06,Alpha,384.1640909,0,Previously infected (Pre-Omicron),AZD1222,3 -287,2021-05-28,2021-05-06,Delta,315.4054209,0,Previously infected (Pre-Omicron),AZD1222,3 -288,2021-06-11,2021-05-07,Ancestral,93.3550641612179,0,Previously infected (Pre-Omicron),AZD1222,2 -288,2021-06-11,2021-05-07,Alpha,5,-1,Previously infected (Pre-Omicron),AZD1222,2 -288,2021-06-11,2021-05-07,Delta,5,-1,Previously infected (Pre-Omicron),AZD1222,2 -289,2021-04-20,2021-03-24,Ancestral,2560,1,Infection naive,BNT162b2,2 -289,2021-06-28,2021-03-24,Ancestral,1136.026121,0,Infection naive,BNT162b2,2 -289,2021-04-20,2021-03-24,Alpha,1023.505653,0,Infection naive,BNT162b2,2 -289,2021-06-28,2021-03-24,Alpha,965.131054,0,Infection naive,BNT162b2,2 -289,2021-04-20,2021-03-24,Delta,1324.351075,0,Infection naive,BNT162b2,2 -289,2021-06-28,2021-03-24,Delta,965.131054,0,Infection naive,BNT162b2,2 -290,2021-04-12,2021-02-24,Ancestral,2560,1,Infection naive,BNT162b2,2 -290,2021-06-28,2021-02-24,Ancestral,80.9265345799999,0,Infection naive,BNT162b2,2 -290,2021-04-12,2021-02-24,Alpha,347.0249211,0,Infection naive,BNT162b2,2 -290,2021-06-28,2021-02-24,Alpha,137.889066,0,Infection naive,BNT162b2,2 -290,2021-04-12,2021-02-24,Delta,175.0121818,0,Infection naive,BNT162b2,2 -290,2021-06-28,2021-02-24,Delta,82.5021709899999,0,Infection naive,BNT162b2,2 -291,2021-02-18,2021-01-20,Ancestral,979.619547991975,0,Previously infected (Pre-Omicron),BNT162b2,2 -291,2021-02-18,2021-01-20,Alpha,930.247978689868,0,Previously infected (Pre-Omicron),BNT162b2,2 -291,2021-02-18,2021-01-20,Delta,677.331448270097,0,Previously infected (Pre-Omicron),BNT162b2,2 -292,2021-03-03,2021-02-24,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -292,2021-03-24,2021-02-24,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -292,2021-05-12,2021-02-24,Ancestral,1905.352765,0,Previously infected (Pre-Omicron),BNT162b2,3 -292,2021-08-04,2021-02-24,Ancestral,776.575323100002,0,Previously infected (Pre-Omicron),BNT162b2,3 -292,2021-03-03,2021-02-24,Alpha,1743.930335,0,Previously infected (Pre-Omicron),BNT162b2,3 -292,2021-03-24,2021-02-24,Alpha,1439.346826,0,Previously infected (Pre-Omicron),BNT162b2,3 -292,2021-05-12,2021-02-24,Alpha,1046.180564,0,Previously infected (Pre-Omicron),BNT162b2,3 -292,2021-08-04,2021-02-24,Alpha,447.8489687,0,Previously infected (Pre-Omicron),BNT162b2,3 -292,2021-03-03,2021-02-24,Delta,1327.838011,0,Previously infected (Pre-Omicron),BNT162b2,3 -292,2021-03-24,2021-02-24,Delta,1676.48475799999,0,Previously infected (Pre-Omicron),BNT162b2,3 -292,2021-05-12,2021-02-24,Delta,973.627541000001,0,Previously infected (Pre-Omicron),BNT162b2,3 -292,2021-08-04,2021-02-24,Delta,448.241677300001,0,Previously infected (Pre-Omicron),BNT162b2,3 -293,2021-02-01,2021-01-11,Ancestral,171.369106900001,0,Infection naive,BNT162b2,2 -293,2021-02-22,2021-01-11,Ancestral,159.6244421,0,Infection naive,BNT162b2,2 -293,2021-04-06,2021-01-11,Ancestral,207.8149884,0,Infection naive,BNT162b2,2 -293,2021-06-28,2021-01-11,Ancestral,47.95559391,0,Infection naive,BNT162b2,2 -293,2021-02-01,2021-01-11,Alpha,301.6169153,0,Infection naive,BNT162b2,2 -293,2021-02-22,2021-01-11,Alpha,152.111941300001,0,Infection naive,BNT162b2,2 -293,2021-04-06,2021-01-11,Alpha,149.3377252,0,Infection naive,BNT162b2,2 -293,2021-06-28,2021-01-11,Alpha,91.0120414500003,0,Infection naive,BNT162b2,2 -293,2021-02-01,2021-01-11,Delta,211.861138,0,Infection naive,BNT162b2,2 -293,2021-02-22,2021-01-11,Delta,121.0074409,0,Infection naive,BNT162b2,2 -293,2021-04-06,2021-01-11,Delta,94.1769112,0,Infection naive,BNT162b2,2 -293,2021-06-28,2021-01-11,Delta,5,-1,Infection naive,BNT162b2,2 -294,2021-04-20,2021-04-08,Ancestral,225.06946,0,Infection naive,AZD1222,2 -294,2021-06-28,2021-04-08,Ancestral,72.6557930900001,0,Infection naive,AZD1222,2 -294,2021-04-20,2021-04-08,Alpha,164.021103800001,0,Infection naive,AZD1222,2 -294,2021-06-28,2021-04-08,Alpha,97.5372900100001,0,Infection naive,AZD1222,2 -294,2021-04-20,2021-04-08,Delta,67.2624239800003,0,Infection naive,AZD1222,2 -294,2021-06-28,2021-04-08,Delta,46.3846563599999,0,Infection naive,AZD1222,2 -295,2021-03-09,2021-03-09,Ancestral,111.9266968,0,Infection naive,BNT162b2,2 -295,2021-03-31,2021-03-09,Ancestral,1050.775475,0,Infection naive,BNT162b2,2 -295,2021-05-12,2021-03-09,Ancestral,629.805990200002,0,Infection naive,BNT162b2,2 -295,2021-07-28,2021-03-09,Ancestral,316.235864099999,0,Infection naive,BNT162b2,2 -295,2021-03-09,2021-03-09,Alpha,57.7988257483812,0,Infection naive,BNT162b2,2 -295,2021-03-31,2021-03-09,Alpha,586.128703399999,0,Infection naive,BNT162b2,2 -295,2021-05-12,2021-03-09,Alpha,399.9695656,0,Infection naive,BNT162b2,2 -295,2021-07-28,2021-03-09,Alpha,247.632749599999,0,Infection naive,BNT162b2,2 -295,2021-03-09,2021-03-09,Delta,5,-1,Infection naive,BNT162b2,2 -295,2021-03-31,2021-03-09,Delta,579.4880186,0,Infection naive,BNT162b2,2 -295,2021-05-12,2021-03-09,Delta,339.503505299999,0,Infection naive,BNT162b2,2 -295,2021-07-28,2021-03-09,Delta,172.1217741,0,Infection naive,BNT162b2,2 -296,2021-06-09,2021-04-29,Ancestral,255.795178527938,0,Previously infected (Pre-Omicron),AZD1222,2 -296,2021-06-09,2021-04-29,Alpha,787.542650715989,0,Previously infected (Pre-Omicron),AZD1222,2 -296,2021-06-09,2021-04-29,Delta,321.264642258916,0,Previously infected (Pre-Omicron),AZD1222,2 -297,2021-06-11,2021-04-30,Ancestral,197.6876195,0,Infection naive,AZD1222,2 -297,2021-06-11,2021-04-30,Alpha,64.0968121900002,0,Infection naive,AZD1222,2 -297,2021-06-11,2021-04-30,Delta,5,-1,Infection naive,AZD1222,2 -298,2021-06-11,2021-05-04,Ancestral,388.907172099179,0,Infection naive,AZD1222,2 -298,2021-07-16,2021-05-04,Ancestral,379.146391096023,0,Infection naive,AZD1222,2 -298,2021-09-17,2021-05-04,Ancestral,165.465056107443,0,Infection naive,AZD1222,2 -298,2021-06-11,2021-05-04,Alpha,601.218056900837,0,Infection naive,AZD1222,2 -298,2021-07-16,2021-05-04,Alpha,315.12909135797,0,Infection naive,AZD1222,2 -298,2021-09-17,2021-05-04,Alpha,180.148200793166,0,Infection naive,AZD1222,2 -298,2021-06-11,2021-05-04,Delta,355.335319792884,0,Infection naive,AZD1222,2 -298,2021-07-16,2021-05-04,Delta,321.828308569038,0,Infection naive,AZD1222,2 -298,2021-09-17,2021-05-04,Delta,127.429736224945,0,Infection naive,AZD1222,2 -299,2021-03-16,2021-03-11,Ancestral,143.185170342123,0,Previously infected (Pre-Omicron),BNT162b2,3 -299,2021-04-23,2021-03-11,Ancestral,888.801174300003,0,Previously infected (Pre-Omicron),BNT162b2,3 -299,2021-07-07,2021-03-11,Ancestral,72.7195032999999,0,Previously infected (Pre-Omicron),BNT162b2,3 -299,2021-03-16,2021-03-11,Alpha,320.701963182361,0,Previously infected (Pre-Omicron),BNT162b2,3 -299,2021-04-23,2021-03-11,Alpha,747.8515108,0,Previously infected (Pre-Omicron),BNT162b2,3 -299,2021-07-07,2021-03-11,Alpha,84.7003214900002,0,Previously infected (Pre-Omicron),BNT162b2,3 -299,2021-09-24,2021-03-11,Alpha,146.485655279567,0,Previously infected (Pre-Omicron),BNT162b2,3 -299,2021-03-16,2021-03-11,Delta,118.384726415322,0,Previously infected (Pre-Omicron),BNT162b2,3 -299,2021-04-23,2021-03-11,Delta,192.5572123,0,Previously infected (Pre-Omicron),BNT162b2,3 -299,2021-07-07,2021-03-11,Delta,82.8645272899999,0,Previously infected (Pre-Omicron),BNT162b2,3 -299,2021-09-24,2021-03-11,Delta,101.5502189,0,Previously infected (Pre-Omicron),BNT162b2,3 -300,2021-03-29,2021-02-27,Ancestral,2560,1,Infection naive,BNT162b2,2 -300,2021-03-29,2021-02-27,Alpha,830.795437600003,0,Infection naive,BNT162b2,2 -300,2021-03-29,2021-02-27,Delta,297.677392700001,0,Infection naive,BNT162b2,2 -301,2021-04-15,2021-03-15,Ancestral,1521.061544,0,Infection naive,BNT162b2,2 -301,2021-04-15,2021-03-15,Alpha,1395.862025,0,Infection naive,BNT162b2,2 -301,2021-04-15,2021-03-15,Delta,523.924869300001,0,Infection naive,BNT162b2,2 -302,2021-04-19,2021-03-18,Ancestral,813.501498699998,0,Infection naive,BNT162b2,2 -302,2021-06-29,2021-03-18,Ancestral,297.1560255,0,Infection naive,BNT162b2,2 -302,2021-09-24,2021-03-18,Ancestral,275.5802689,0,Infection naive,BNT162b2,2 -302,2021-04-19,2021-03-18,Alpha,391.643750499999,0,Infection naive,BNT162b2,2 -302,2021-06-29,2021-03-18,Alpha,472.445371200002,0,Infection naive,BNT162b2,2 -302,2021-09-24,2021-03-18,Alpha,199.777854367301,0,Infection naive,BNT162b2,2 -302,2021-04-19,2021-03-18,Delta,236.185184999999,0,Infection naive,BNT162b2,2 -302,2021-06-29,2021-03-18,Delta,183.8167226,0,Infection naive,BNT162b2,2 -302,2021-09-24,2021-03-18,Delta,120.1619114,0,Infection naive,BNT162b2,2 -303,2021-03-02,2021-03-02,Ancestral,134.310556300001,0,Previously infected (Pre-Omicron),BNT162b2,3 -303,2021-03-02,2021-03-02,Alpha,64.4347825330459,0,Previously infected (Pre-Omicron),BNT162b2,3 -303,2021-03-02,2021-03-02,Delta,5,-1,Previously infected (Pre-Omicron),BNT162b2,3 -304,2021-01-29,2021-01-11,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -304,2021-03-18,2021-01-11,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -304,2021-04-29,2021-01-11,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -304,2021-07-22,2021-01-11,Ancestral,626.502560999998,0,Previously infected (Pre-Omicron),BNT162b2,3 -304,2021-01-29,2021-01-11,Alpha,2094.528381,0,Previously infected (Pre-Omicron),BNT162b2,3 -304,2021-03-18,2021-01-11,Alpha,1015.463555,0,Previously infected (Pre-Omicron),BNT162b2,3 -304,2021-04-29,2021-01-11,Alpha,1237.920091,0,Previously infected (Pre-Omicron),BNT162b2,3 -304,2021-07-22,2021-01-11,Alpha,1664.770459,0,Previously infected (Pre-Omicron),BNT162b2,3 -304,2021-01-29,2021-01-11,Delta,895.055299400003,0,Previously infected (Pre-Omicron),BNT162b2,3 -304,2021-03-18,2021-01-11,Delta,540.246517400001,0,Previously infected (Pre-Omicron),BNT162b2,3 -304,2021-04-29,2021-01-11,Delta,468.733176700001,0,Previously infected (Pre-Omicron),BNT162b2,3 -304,2021-07-22,2021-01-11,Delta,813.501498699998,0,Previously infected (Pre-Omicron),BNT162b2,3 -305,2021-03-16,2021-03-16,Ancestral,130.36705105991,0,Infection naive,AZD1222,1 -305,2021-05-11,2021-03-16,Ancestral,111.828636774095,0,Infection naive,AZD1222,1 -305,2021-03-16,2021-03-16,Alpha,5,-1,Infection naive,AZD1222,1 -305,2021-05-11,2021-03-16,Alpha,5,-1,Infection naive,AZD1222,1 -305,2021-03-16,2021-03-16,Delta,5,-1,Infection naive,AZD1222,1 -305,2021-05-11,2021-03-16,Delta,5,-1,Infection naive,AZD1222,1 -306,2021-02-02,2021-01-11,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -306,2021-02-23,2021-01-11,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -306,2021-04-09,2021-01-11,Ancestral,2011.75954500001,0,Previously infected (Pre-Omicron),BNT162b2,3 -306,2021-02-02,2021-01-11,Alpha,2146.567843,0,Previously infected (Pre-Omicron),BNT162b2,3 -306,2021-02-23,2021-01-11,Alpha,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -306,2021-04-09,2021-01-11,Alpha,1990.710915,0,Previously infected (Pre-Omicron),BNT162b2,3 -306,2021-02-02,2021-01-11,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -306,2021-02-23,2021-01-11,Delta,2308.548869,0,Previously infected (Pre-Omicron),BNT162b2,3 -306,2021-04-09,2021-01-11,Delta,884.139275500002,0,Previously infected (Pre-Omicron),BNT162b2,3 -307,2021-03-23,2021-03-23,Ancestral,161.8787676,0,Infection naive,BNT162b2,2 -307,2021-03-23,2021-03-23,Alpha,90.6935144891519,0,Infection naive,BNT162b2,2 -307,2021-03-23,2021-03-23,Delta,40.5989332000001,0,Infection naive,BNT162b2,2 -308,2021-04-23,2021-03-23,Ancestral,977.903792999997,0,Infection naive,BNT162b2,2 -308,2021-07-07,2021-03-23,Ancestral,145.2073292,0,Infection naive,BNT162b2,2 -308,2021-04-23,2021-03-23,Alpha,465.050150400001,0,Infection naive,BNT162b2,2 -308,2021-07-07,2021-03-23,Alpha,156.5759152,0,Infection naive,BNT162b2,2 -308,2021-04-23,2021-03-23,Delta,355.0240073,0,Infection naive,BNT162b2,2 -308,2021-07-07,2021-03-23,Delta,99.8730697099998,0,Infection naive,BNT162b2,2 -309,2021-03-22,2021-03-14,Ancestral,2560,1,Infection naive,BNT162b2,2 -309,2021-03-22,2021-03-14,Alpha,532.256315000001,0,Infection naive,BNT162b2,2 -309,2021-03-22,2021-03-14,Delta,649.426115799998,0,Infection naive,BNT162b2,2 -310,2021-04-20,2021-03-18,Ancestral,2560,1,Infection naive,BNT162b2,2 -310,2021-06-29,2021-03-18,Ancestral,1058.169346,0,Infection naive,BNT162b2,2 -310,2021-12-14,2021-03-18,Ancestral,695.377960810212,0,Infection naive,BNT162b2,2 -310,2022-01-17,2021-03-18,Ancestral,607.57498998905,0,Infection naive,BNT162b2,2 -310,2022-07-14,2021-03-18,Ancestral,936.793747699999,0,Infection naive,BNT162b2,2 -310,2021-04-20,2021-03-18,Alpha,1353.690964,0,Infection naive,BNT162b2,2 -310,2021-06-29,2021-03-18,Alpha,725.257808200001,0,Infection naive,BNT162b2,2 -310,2021-12-14,2021-03-18,Alpha,1007.4846472003,0,Infection naive,BNT162b2,2 -310,2022-01-17,2021-03-18,Alpha,941.733283569616,0,Infection naive,BNT162b2,2 -310,2022-07-14,2021-03-18,Alpha,695.377960799999,0,Infection naive,BNT162b2,2 -310,2021-04-20,2021-03-18,Delta,602.272908000001,0,Infection naive,BNT162b2,2 -310,2021-06-29,2021-03-18,Delta,456.9689249,0,Infection naive,BNT162b2,2 -310,2021-12-14,2021-03-18,Delta,371.905407571902,0,Infection naive,BNT162b2,2 -310,2022-01-17,2021-03-18,Delta,416.060483272753,0,Infection naive,BNT162b2,2 -311,2021-04-27,2021-04-01,Ancestral,357.522163954259,0,Infection naive,AZD1222,3 -311,2021-04-27,2021-04-01,Alpha,515.272006078912,0,Infection naive,AZD1222,3 -311,2021-04-27,2021-04-01,Delta,301.616915337642,0,Infection naive,AZD1222,3 -312,2021-04-23,2021-03-23,Ancestral,888.801174300003,0,Infection naive,BNT162b2,2 -312,2021-07-16,2021-03-23,Ancestral,67.2034947699999,0,Infection naive,BNT162b2,2 -312,2021-04-23,2021-03-23,Alpha,291.225534900001,0,Infection naive,BNT162b2,2 -312,2021-07-16,2021-03-23,Alpha,114.8081484,0,Infection naive,BNT162b2,2 -312,2021-09-24,2021-03-23,Alpha,109.500798270708,0,Infection naive,BNT162b2,2 -312,2021-04-23,2021-03-23,Delta,124.8865576,0,Infection naive,BNT162b2,2 -312,2021-07-16,2021-03-23,Delta,44.3957646400001,0,Infection naive,BNT162b2,2 -312,2021-09-24,2021-03-23,Delta,47.1222645000002,0,Infection naive,BNT162b2,2 -313,2021-03-15,2021-03-09,Ancestral,2560,1,Infection naive,BNT162b2,2 -313,2021-04-06,2021-03-09,Ancestral,1347.771441,0,Infection naive,BNT162b2,2 -313,2021-05-18,2021-03-09,Ancestral,775.894958500002,0,Infection naive,BNT162b2,2 -313,2021-08-10,2021-03-09,Ancestral,339.801208099999,0,Infection naive,BNT162b2,2 -313,2021-03-15,2021-03-09,Alpha,1001.32219871309,0,Infection naive,BNT162b2,2 -313,2021-04-06,2021-03-09,Alpha,2433.20351999999,0,Infection naive,BNT162b2,2 -313,2021-05-18,2021-03-09,Alpha,2560,1,Infection naive,BNT162b2,2 -313,2021-08-10,2021-03-09,Alpha,199.953035,0,Infection naive,BNT162b2,2 -313,2021-03-15,2021-03-09,Delta,2560,1,Infection naive,BNT162b2,2 -313,2021-04-06,2021-03-09,Delta,812.076691199999,0,Infection naive,BNT162b2,2 -313,2021-05-18,2021-03-09,Delta,516.628685899999,0,Infection naive,BNT162b2,2 -313,2021-08-10,2021-03-09,Delta,184.4623099,0,Infection naive,BNT162b2,2 -314,2021-06-02,2021-04-29,Ancestral,203.667521299999,0,Infection naive,AZD1222,2 -314,2021-06-02,2021-04-29,Alpha,40.4568437,0,Infection naive,AZD1222,2 -314,2021-06-02,2021-04-29,Delta,61.4560919600002,0,Infection naive,AZD1222,2 -315,2021-04-19,2021-03-17,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -315,2021-06-29,2021-03-17,Ancestral,2223.160726,0,Previously infected (Pre-Omicron),BNT162b2,3 -315,2021-11-30,2021-03-17,Ancestral,2286.398127,0,Previously infected (Pre-Omicron),BNT162b2,3 -315,2021-04-19,2021-03-17,Alpha,2098.20327900001,0,Previously infected (Pre-Omicron),BNT162b2,3 -315,2021-06-29,2021-03-17,Alpha,1820.46058,0,Previously infected (Pre-Omicron),BNT162b2,3 -315,2021-11-30,2021-03-17,Alpha,983.060094309901,0,Previously infected (Pre-Omicron),BNT162b2,3 -315,2021-04-19,2021-03-17,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -315,2021-06-29,2021-03-17,Delta,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -315,2021-11-30,2021-03-17,Delta,1148.037806,0,Previously infected (Pre-Omicron),BNT162b2,3 -316,2021-04-23,2021-03-12,Ancestral,460.5879509,0,Infection naive,BNT162b2,2 -316,2021-06-29,2021-03-12,Ancestral,191.0442123,0,Infection naive,BNT162b2,2 -316,2021-04-23,2021-03-12,Alpha,298.199674599999,0,Infection naive,BNT162b2,2 -316,2021-06-29,2021-03-12,Alpha,210.3807757,0,Infection naive,BNT162b2,2 -316,2021-04-23,2021-03-12,Delta,389.248195900001,0,Infection naive,BNT162b2,2 -316,2021-06-29,2021-03-12,Delta,164.5971664,0,Infection naive,BNT162b2,2 -317,2021-02-15,2020-12-29,Ancestral,109.213246450387,0,Infection naive,"",1 -317,2021-02-15,2020-12-29,Alpha,5,-1,Infection naive,"",1 -317,2021-02-15,2020-12-29,Delta,5,-1,Infection naive,"",1 -318,2021-04-23,2021-03-23,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -318,2021-06-29,2021-03-23,Ancestral,382.484188999999,0,Previously infected (Pre-Omicron),BNT162b2,3 -318,2021-04-23,2021-03-23,Alpha,508.541860499999,0,Previously infected (Pre-Omicron),BNT162b2,3 -318,2021-06-29,2021-03-23,Alpha,357.522164,0,Previously infected (Pre-Omicron),BNT162b2,3 -318,2021-04-23,2021-03-23,Delta,351.925844300001,0,Previously infected (Pre-Omicron),BNT162b2,3 -318,2021-06-29,2021-03-23,Delta,218.269778,0,Previously infected (Pre-Omicron),BNT162b2,3 -319,2021-03-05,2021-03-01,Ancestral,501.89961977487,0,Previously infected (Pre-Omicron),BNT162b2,3 -319,2021-04-16,2021-03-01,Ancestral,1047.097936,0,Previously infected (Pre-Omicron),BNT162b2,3 -319,2021-03-05,2021-03-01,Alpha,403.137177574692,0,Previously infected (Pre-Omicron),BNT162b2,3 -319,2021-04-16,2021-03-01,Alpha,677.331448299999,0,Previously infected (Pre-Omicron),BNT162b2,3 -319,2021-03-05,2021-03-01,Delta,190.542525447934,0,Previously infected (Pre-Omicron),BNT162b2,3 -319,2021-04-16,2021-03-01,Delta,374.194229200001,0,Previously infected (Pre-Omicron),BNT162b2,3 -320,2021-02-19,2021-01-11,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -320,2021-03-12,2021-01-11,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -320,2021-05-14,2021-01-11,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -320,2021-02-19,2021-01-11,Alpha,792.389433300002,0,Previously infected (Pre-Omicron),BNT162b2,3 -320,2021-03-12,2021-01-11,Alpha,937.615200800003,0,Previously infected (Pre-Omicron),BNT162b2,3 -320,2021-05-14,2021-01-11,Alpha,1127.099904,0,Previously infected (Pre-Omicron),BNT162b2,3 -320,2021-02-19,2021-01-11,Delta,557.565115799999,0,Previously infected (Pre-Omicron),BNT162b2,3 -320,2021-03-12,2021-01-11,Delta,681.4999568,0,Previously infected (Pre-Omicron),BNT162b2,3 -320,2021-05-14,2021-01-11,Delta,651.706981500002,0,Previously infected (Pre-Omicron),BNT162b2,3 -321,2021-04-19,2021-03-24,Ancestral,430.528648299999,0,Infection naive,BNT162b2,2 -321,2021-07-08,2021-03-24,Ancestral,288.937258,0,Infection naive,BNT162b2,2 -321,2021-09-29,2021-03-24,Ancestral,229.854131600001,0,Infection naive,BNT162b2,2 -321,2021-04-19,2021-03-24,Alpha,311.2858018,0,Infection naive,BNT162b2,2 -321,2021-07-08,2021-03-24,Alpha,130.9396338,0,Infection naive,BNT162b2,2 -321,2021-09-29,2021-03-24,Alpha,145.334658200302,0,Infection naive,BNT162b2,2 -321,2021-04-19,2021-03-24,Delta,215.230150699999,0,Infection naive,BNT162b2,2 -321,2021-07-08,2021-03-24,Delta,170.320899100001,0,Infection naive,BNT162b2,2 -321,2021-09-29,2021-03-24,Delta,70.7082208599999,0,Infection naive,BNT162b2,2 -322,2021-04-20,2021-03-20,Ancestral,1167.316583,0,Infection naive,BNT162b2,2 -322,2021-06-29,2021-03-20,Ancestral,174.3996683,0,Infection naive,BNT162b2,2 -322,2021-12-02,2021-03-20,Ancestral,110.5616476,0,Infection naive,BNT162b2,2 -322,2021-04-20,2021-03-20,Alpha,1489.398942,0,Infection naive,BNT162b2,2 -322,2021-06-29,2021-03-20,Alpha,417.887855000001,0,Infection naive,BNT162b2,2 -322,2021-12-02,2021-03-20,Alpha,128.101649069628,0,Infection naive,BNT162b2,2 -322,2021-04-20,2021-03-20,Delta,1059.09723,0,Infection naive,BNT162b2,2 -322,2021-06-29,2021-03-20,Delta,292.761111899999,0,Infection naive,BNT162b2,2 -322,2021-12-02,2021-03-20,Delta,71.2057652699998,0,Infection naive,BNT162b2,2 -323,2021-02-02,2020-12-27,Ancestral,114.4063389926,0,Infection naive,BNT162b2,1 -323,2021-02-23,2020-12-27,Ancestral,138.737678205393,0,Infection naive,BNT162b2,1 -323,2021-02-02,2020-12-27,Alpha,107.033623347396,0,Infection naive,BNT162b2,1 -323,2021-02-23,2020-12-27,Alpha,60.0187886685244,0,Infection naive,BNT162b2,1 -323,2021-02-02,2020-12-27,Delta,5,-1,Infection naive,BNT162b2,1 -323,2021-02-23,2020-12-27,Delta,5,-1,Infection naive,BNT162b2,1 -324,2021-06-09,2021-05-06,Ancestral,461.800650900001,0,Previously infected (Pre-Omicron),AZD1222,3 -324,2021-07-16,2021-05-06,Ancestral,388.907172100001,0,Previously infected (Pre-Omicron),AZD1222,3 -324,2021-06-09,2021-05-06,Alpha,817.074464,0,Previously infected (Pre-Omicron),AZD1222,3 -324,2021-07-16,2021-05-06,Alpha,261.6913767,0,Previously infected (Pre-Omicron),AZD1222,3 -324,2021-06-09,2021-05-06,Delta,325.5163233,0,Previously infected (Pre-Omicron),AZD1222,3 -324,2021-07-16,2021-05-06,Delta,229.0496805,0,Previously infected (Pre-Omicron),AZD1222,3 -325,2021-04-19,2021-03-29,Ancestral,2560,1,Previously infected (Pre-Omicron),BNT162b2,3 -325,2021-06-28,2021-03-29,Ancestral,303.4731597,0,Previously infected (Pre-Omicron),BNT162b2,3 -325,2021-04-19,2021-03-29,Alpha,1672.082267,0,Previously infected (Pre-Omicron),BNT162b2,3 -325,2021-06-28,2021-03-29,Alpha,812.788782800003,0,Previously infected (Pre-Omicron),BNT162b2,3 -325,2021-04-19,2021-03-29,Delta,1011.023059,0,Previously infected (Pre-Omicron),BNT162b2,3 -325,2021-06-28,2021-03-29,Delta,651.1360152,0,Previously infected (Pre-Omicron),BNT162b2,3 -326,2021-05-05,2021-03-18,Ancestral,804.284739699998,0,Infection naive,BNT162b2,2 -326,2021-07-08,2021-03-18,Ancestral,487.1632965,0,Infection naive,BNT162b2,2 -326,2021-05-05,2021-03-18,Alpha,553.184101099999,0,Infection naive,BNT162b2,2 -326,2021-07-08,2021-03-18,Alpha,465.050150400001,0,Infection naive,BNT162b2,2 -326,2021-05-05,2021-03-18,Delta,380.144660400001,0,Infection naive,BNT162b2,2 -326,2021-07-08,2021-03-18,Delta,245.686998900001,0,Infection naive,BNT162b2,2 -327,2021-06-11,2021-05-06,Ancestral,278.250104599999,0,Infection naive,AZD1222,2 -327,2021-07-08,2021-05-06,Ancestral,220.7710563,0,Infection naive,AZD1222,2 -327,2021-06-11,2021-05-06,Alpha,206.182101900001,0,Infection naive,AZD1222,2 -327,2021-07-08,2021-05-06,Alpha,155.6181924,0,Infection naive,AZD1222,2 -327,2021-06-11,2021-05-06,Delta,41.4256862299999,0,Infection naive,AZD1222,2 -327,2021-07-08,2021-05-06,Delta,68.9940342600001,0,Infection naive,AZD1222,2 -328,2021-04-15,2021-03-23,Ancestral,633.1268378,0,Infection naive,BNT162b2,2 -328,2021-06-28,2021-03-23,Ancestral,128.5515581,0,Infection naive,BNT162b2,2 -328,2021-04-15,2021-03-23,Alpha,719.559164000002,0,Infection naive,BNT162b2,2 -328,2021-06-28,2021-03-23,Alpha,280.2080351,0,Infection naive,BNT162b2,2 -328,2021-09-28,2021-03-23,Alpha,212.605220770371,0,Infection naive,BNT162b2,2 -328,2021-04-15,2021-03-23,Delta,348.243716,0,Infection naive,BNT162b2,2 -328,2021-06-28,2021-03-23,Delta,155.8912282,0,Infection naive,BNT162b2,2 -328,2021-09-28,2021-03-23,Delta,193.7422693,0,Infection naive,BNT162b2,2 -329,2021-04-06,2021-03-08,Ancestral,494.043349599999,0,Previously infected (Pre-Omicron),BNT162b2,3 -329,2021-06-29,2021-03-08,Ancestral,388.226020499999,0,Previously infected (Pre-Omicron),BNT162b2,3 -329,2021-04-06,2021-03-08,Alpha,527.149266099999,0,Previously infected (Pre-Omicron),BNT162b2,3 -329,2021-06-29,2021-03-08,Alpha,155.0735547,0,Previously infected (Pre-Omicron),BNT162b2,3 -329,2021-04-06,2021-03-08,Delta,324.3770705,0,Previously infected (Pre-Omicron),BNT162b2,3 -329,2021-06-29,2021-03-08,Delta,190.3755894,0,Previously infected (Pre-Omicron),BNT162b2,3 -330,2021-04-19,2021-03-23,Ancestral,604.388165800002,0,Infection naive,BNT162b2,2 -330,2021-06-29,2021-03-23,Ancestral,320.420993300001,0,Infection naive,BNT162b2,2 -330,2021-04-19,2021-03-23,Alpha,878.731289700001,0,Infection naive,BNT162b2,2 -330,2021-06-29,2021-03-23,Alpha,246.982459799999,0,Infection naive,BNT162b2,2 -330,2021-04-19,2021-03-23,Delta,597.540606,0,Infection naive,BNT162b2,2 -330,2021-06-29,2021-03-23,Delta,212.6052208,0,Infection naive,BNT162b2,2 -331,2021-06-09,2021-04-20,Ancestral,183.6556791,0,Infection naive,AZD1222,2 -331,2021-06-09,2021-04-20,Alpha,45.7387031300002,0,Infection naive,AZD1222,2 -331,2021-06-09,2021-04-20,Delta,40.3152515,0,Infection naive,AZD1222,2 -332,2021-02-05,2021-01-16,Ancestral,165.61014864394,0,Infection naive,BNT162b2,1 -332,2021-02-26,2021-01-16,Ancestral,154.260170083228,0,Infection naive,BNT162b2,1 -332,2021-02-05,2021-01-16,Alpha,176.243669879066,0,Infection naive,BNT162b2,1 -332,2021-02-26,2021-01-16,Alpha,155.891228179604,0,Infection naive,BNT162b2,1 -332,2021-02-05,2021-01-16,Delta,111.047243401498,0,Infection naive,BNT162b2,1 -332,2021-02-26,2021-01-16,Delta,68.3919488710283,0,Infection naive,BNT162b2,1 -333,2021-04-23,2021-03-24,Ancestral,438.1422931,0,Infection naive,BNT162b2,2 -333,2021-06-29,2021-03-24,Ancestral,163.733829,0,Infection naive,BNT162b2,2 -333,2021-09-22,2021-03-24,Ancestral,103.5273976,0,Infection naive,BNT162b2,2 -333,2021-04-23,2021-03-24,Alpha,580.5047439,0,Infection naive,BNT162b2,2 -333,2021-06-29,2021-03-24,Alpha,165.900715500001,0,Infection naive,BNT162b2,2 -333,2021-09-22,2021-03-24,Alpha,151.181523110332,0,Infection naive,BNT162b2,2 -333,2021-04-23,2021-03-24,Delta,171.2189689,0,Infection naive,BNT162b2,2 -333,2021-06-29,2021-03-24,Delta,84.9233322799998,0,Infection naive,BNT162b2,2 -333,2021-09-22,2021-03-24,Delta,44.4346942700001,0,Infection naive,BNT162b2,2 -334,2021-04-13,2021-04-13,Ancestral,88.1851052684112,0,Infection naive,AZD1222,2 -334,2021-07-16,2021-04-13,Ancestral,5,-1,Infection naive,AZD1222,2 -334,2021-04-13,2021-04-13,Alpha,5,-1,Infection naive,AZD1222,2 -334,2021-04-13,2021-04-13,Delta,5,-1,Infection naive,AZD1222,2 -335,2021-06-09,2021-05-05,Ancestral,136.805615775511,0,Infection naive,AZD1222,1 -335,2021-06-29,2021-05-05,Ancestral,120.689672339818,0,Infection naive,AZD1222,1 -335,2021-06-09,2021-05-05,Alpha,70.0297688893001,0,Infection naive,AZD1222,1 -335,2021-06-29,2021-05-05,Alpha,50.9007153836499,0,Infection naive,AZD1222,1 -335,2021-06-09,2021-05-05,Delta,5,-1,Infection naive,AZD1222,1 -335,2021-06-29,2021-05-05,Delta,5,-1,Infection naive,AZD1222,1 +pid,day,last_exp_day,titre_type,value,infection_history,last_vax_type,exp_num +1,2021-03-10,2021-03-08,Ancestral,175.9349878,Infection naive,BNT162b2,2 +1,2021-04-15,2021-03-08,Ancestral,607.57499,Infection naive,BNT162b2,2 +1,2021-07-08,2021-03-08,Ancestral,179.0462942,Infection naive,BNT162b2,2 +1,2021-03-10,2021-03-08,Alpha,5,Infection naive,BNT162b2,2 +1,2021-04-15,2021-03-08,Alpha,416.790471100001,Infection naive,BNT162b2,2 +1,2021-07-08,2021-03-08,Alpha,103.5273976,Infection naive,BNT162b2,2 +1,2021-03-10,2021-03-08,Delta,5,Infection naive,BNT162b2,2 +1,2021-04-15,2021-03-08,Delta,288.1785015,Infection naive,BNT162b2,2 +1,2021-07-08,2021-03-08,Delta,128.8900265,Infection naive,BNT162b2,2 +2,2021-02-23,2021-01-11,Ancestral,595.449313599998,Infection naive,BNT162b2,2 +2,2021-03-16,2021-01-11,Ancestral,430.528648299999,Infection naive,BNT162b2,2 +2,2021-04-27,2021-01-11,Ancestral,198.2081189,Infection naive,BNT162b2,2 +2,2021-07-27,2021-01-11,Ancestral,110.3680043,Infection naive,BNT162b2,2 +2,2021-02-23,2021-01-11,Alpha,189.0453557,Infection naive,BNT162b2,2 +2,2021-03-16,2021-01-11,Alpha,142.9343886,Infection naive,BNT162b2,2 +2,2021-04-27,2021-01-11,Alpha,133.8404918,Infection naive,BNT162b2,2 +2,2021-07-27,2021-01-11,Alpha,93.9296002800003,Infection naive,BNT162b2,2 +2,2021-02-23,2021-01-11,Delta,72.02175288,Infection naive,BNT162b2,2 +2,2021-03-16,2021-01-11,Delta,92.7027533499997,Infection naive,BNT162b2,2 +2,2021-04-27,2021-01-11,Delta,46.2628491,Infection naive,BNT162b2,2 +2,2021-07-27,2021-01-11,Delta,54.55012061,Infection naive,BNT162b2,2 +3,2021-04-26,2021-03-23,Ancestral,1624.411259,Infection naive,BNT162b2,2 +3,2021-07-19,2021-03-23,Ancestral,1023.505653,Infection naive,BNT162b2,2 +3,2021-04-26,2021-03-23,Alpha,1095.926476,Infection naive,BNT162b2,2 +3,2021-07-19,2021-03-23,Alpha,961.753256300001,Infection naive,BNT162b2,2 +3,2021-04-26,2021-03-23,Delta,965.977355399999,Infection naive,BNT162b2,2 +3,2021-07-19,2021-03-23,Delta,643.758814500001,Infection naive,BNT162b2,2 +4,2021-03-17,2021-02-24,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +4,2021-04-27,2021-02-24,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +4,2021-07-20,2021-02-24,Ancestral,930.247978699997,Previously infected (Pre-Omicron),BNT162b2,3 +4,2021-03-17,2021-02-24,Alpha,2294.428243,Previously infected (Pre-Omicron),BNT162b2,3 +4,2021-04-27,2021-02-24,Alpha,1049.854881,Previously infected (Pre-Omicron),BNT162b2,3 +4,2021-07-20,2021-02-24,Alpha,933.515125899998,Previously infected (Pre-Omicron),BNT162b2,3 +4,2021-03-17,2021-02-24,Delta,694.1600408,Previously infected (Pre-Omicron),BNT162b2,3 +4,2021-04-27,2021-02-24,Delta,452.981126300002,Previously infected (Pre-Omicron),BNT162b2,3 +4,2021-07-20,2021-02-24,Delta,734.212202300003,Previously infected (Pre-Omicron),BNT162b2,3 +5,2021-02-04,2021-01-11,Ancestral,2560,Infection naive,BNT162b2,2 +5,2021-03-23,2021-01-11,Ancestral,426.024114999999,Infection naive,BNT162b2,2 +5,2021-05-12,2021-01-11,Ancestral,213.5390003,Infection naive,BNT162b2,2 +5,2021-08-04,2021-01-11,Ancestral,368.0142372,Infection naive,BNT162b2,2 +5,2021-02-04,2021-01-11,Alpha,540.7202473,Infection naive,BNT162b2,2 +5,2021-03-23,2021-01-11,Alpha,415.331774000001,Infection naive,BNT162b2,2 +5,2021-05-12,2021-01-11,Alpha,250.909971299999,Infection naive,BNT162b2,2 +5,2021-08-04,2021-01-11,Alpha,183.9779073,Infection naive,BNT162b2,2 +5,2021-02-04,2021-01-11,Delta,311.83196,Infection naive,BNT162b2,2 +5,2021-03-23,2021-01-11,Delta,280.4537432,Infection naive,BNT162b2,2 +5,2021-05-12,2021-01-11,Delta,110.5616476,Infection naive,BNT162b2,2 +5,2021-08-04,2021-01-11,Delta,79.1725334000003,Infection naive,BNT162b2,2 +6,2021-03-11,2021-03-11,Ancestral,5,Previously infected (Pre-Omicron),BNT162b2,3 +6,2021-03-11,2021-03-11,Alpha,5,Previously infected (Pre-Omicron),BNT162b2,3 +6,2021-03-11,2021-03-11,Delta,5,Previously infected (Pre-Omicron),BNT162b2,3 +7,2021-06-02,2021-05-02,Ancestral,115.312395150577,Infection naive,AZD1222,1 +7,2021-06-02,2021-05-02,Alpha,69.1756913491035,Infection naive,AZD1222,1 +7,2021-06-02,2021-05-02,Delta,5,Infection naive,AZD1222,1 +8,2021-06-11,2021-05-06,Ancestral,209.0939465,Previously infected (Pre-Omicron),AZD1222,3 +8,2021-07-07,2021-05-06,Ancestral,50.10396289,Previously infected (Pre-Omicron),AZD1222,3 +8,2021-06-11,2021-05-06,Alpha,5,Previously infected (Pre-Omicron),AZD1222,3 +8,2021-06-11,2021-05-06,Delta,5,Previously infected (Pre-Omicron),AZD1222,3 +8,2021-07-07,2021-05-06,Delta,5,Previously infected (Pre-Omicron),AZD1222,3 +8,2021-09-20,2021-05-06,Delta,5,Previously infected (Pre-Omicron),AZD1222,3 +9,2021-02-02,2021-01-05,Ancestral,657.444254099999,Infection naive,BNT162b2,2 +9,2021-02-23,2021-01-05,Ancestral,934.333704000001,Infection naive,BNT162b2,2 +9,2021-04-06,2021-01-05,Ancestral,399.619148699999,Infection naive,BNT162b2,2 +9,2021-02-02,2021-01-05,Alpha,396.131820300001,Infection naive,BNT162b2,2 +9,2021-02-23,2021-01-05,Alpha,282.922704900001,Infection naive,BNT162b2,2 +9,2021-02-02,2021-01-05,Delta,316.513164100001,Infection naive,BNT162b2,2 +9,2021-02-23,2021-01-05,Delta,306.681909900001,Infection naive,BNT162b2,2 +9,2021-04-06,2021-01-05,Delta,174.2468752,Infection naive,BNT162b2,2 +10,2021-05-26,2021-04-14,Ancestral,2232.92503000001,Previously infected (Pre-Omicron),AZD1222,2 +10,2021-05-26,2021-04-14,Alpha,607.57498998905,Previously infected (Pre-Omicron),AZD1222,2 +10,2021-05-26,2021-04-14,Delta,2560,Previously infected (Pre-Omicron),AZD1222,2 +11,2021-04-19,2021-03-24,Ancestral,913.282125200002,Infection naive,BNT162b2,2 +11,2021-06-28,2021-03-24,Ancestral,413.878182099999,Infection naive,BNT162b2,2 +11,2021-09-23,2021-03-24,Ancestral,165.610148600001,Infection naive,BNT162b2,2 +11,2021-04-19,2021-03-24,Alpha,462.6108909,Infection naive,BNT162b2,2 +11,2021-06-28,2021-03-24,Alpha,203.4890863,Infection naive,BNT162b2,2 +11,2021-09-23,2021-03-24,Alpha,198.555879680297,Infection naive,BNT162b2,2 +11,2021-04-19,2021-03-24,Delta,226.8519274,Infection naive,BNT162b2,2 +11,2021-06-28,2021-03-24,Delta,128.5515581,Infection naive,BNT162b2,2 +11,2021-09-23,2021-03-24,Delta,127.5414765,Infection naive,BNT162b2,2 +12,2021-03-16,2021-03-13,Ancestral,253.785292299999,Infection naive,BNT162b2,2 +12,2021-03-16,2021-03-13,Alpha,48.0397331146746,Infection naive,BNT162b2,2 +12,2021-03-16,2021-03-13,Delta,47.70405944,Infection naive,BNT162b2,2 +13,2021-04-23,2021-04-22,Ancestral,121.1135496,Previously infected (Pre-Omicron),BNT162b2,3 +13,2021-04-23,2021-04-22,Alpha,60.8130894204273,Previously infected (Pre-Omicron),BNT162b2,3 +13,2021-04-23,2021-04-22,Delta,5,Previously infected (Pre-Omicron),BNT162b2,3 +14,2021-02-25,2021-01-07,Ancestral,197.860967200001,Infection naive,BNT162b2,2 +14,2021-02-25,2021-01-07,Alpha,172.7262873,Infection naive,BNT162b2,2 +14,2021-03-18,2021-01-07,Alpha,132.0923549,Infection naive,BNT162b2,2 +14,2021-02-25,2021-01-07,Delta,45.3395584000001,Infection naive,BNT162b2,2 +14,2021-03-18,2021-01-07,Delta,45.41910771,Infection naive,BNT162b2,2 +15,2021-03-08,2021-02-26,Ancestral,1526.40370200001,Infection naive,BNT162b2,2 +15,2021-04-16,2021-02-26,Ancestral,662.070416499999,Infection naive,BNT162b2,2 +15,2021-07-12,2021-02-26,Ancestral,106.0995805,Infection naive,BNT162b2,2 +15,2021-10-04,2021-02-26,Ancestral,129.342704377527,Infection naive,BNT162b2,2 +15,2021-03-08,2021-02-26,Alpha,974.481292799999,Infection naive,BNT162b2,2 +15,2021-04-16,2021-02-26,Alpha,798.6648664,Infection naive,BNT162b2,2 +15,2021-07-12,2021-02-26,Alpha,51.5743457200001,Infection naive,BNT162b2,2 +15,2021-10-04,2021-02-26,Alpha,95.6745110753895,Infection naive,BNT162b2,2 +15,2021-03-08,2021-02-26,Delta,334.482275799999,Infection naive,BNT162b2,2 +15,2021-04-16,2021-02-26,Delta,311.013081500001,Infection naive,BNT162b2,2 +15,2021-07-12,2021-02-26,Delta,45.8591303399999,Infection naive,BNT162b2,2 +15,2021-10-04,2021-02-26,Delta,5,Infection naive,BNT162b2,2 +16,2021-04-19,2021-03-23,Ancestral,2560,Infection naive,BNT162b2,2 +16,2021-06-29,2021-03-23,Ancestral,281.438731800001,Infection naive,BNT162b2,2 +16,2021-04-19,2021-03-23,Alpha,971.922280699998,Infection naive,BNT162b2,2 +16,2021-06-29,2021-03-23,Alpha,524.384287100001,Infection naive,BNT162b2,2 +16,2021-04-19,2021-03-23,Delta,467.092688800001,Infection naive,BNT162b2,2 +16,2021-06-29,2021-03-23,Delta,344.2982058,Infection naive,BNT162b2,2 +17,2021-04-15,2021-03-15,Ancestral,780.670057600001,Infection naive,BNT162b2,2 +17,2021-06-28,2021-03-15,Ancestral,224.478422,Infection naive,BNT162b2,2 +17,2021-04-15,2021-03-15,Alpha,1123.155242,Infection naive,BNT162b2,2 +17,2021-06-28,2021-03-15,Alpha,201.8901902,Infection naive,BNT162b2,2 +17,2021-04-15,2021-03-15,Delta,389.931141,Infection naive,BNT162b2,2 +17,2021-06-28,2021-03-15,Delta,161.1708918,Infection naive,BNT162b2,2 +18,2021-03-12,2021-03-01,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +18,2021-04-06,2021-03-01,Ancestral,944.2128099,Previously infected (Pre-Omicron),BNT162b2,3 +18,2021-03-12,2021-03-01,Alpha,617.236638700002,Previously infected (Pre-Omicron),BNT162b2,3 +18,2021-04-06,2021-03-01,Alpha,599.6392433,Previously infected (Pre-Omicron),BNT162b2,3 +18,2021-05-18,2021-03-01,Alpha,221.3523331,Previously infected (Pre-Omicron),BNT162b2,3 +18,2021-08-10,2021-03-01,Alpha,155.7546505,Previously infected (Pre-Omicron),BNT162b2,3 +18,2021-03-12,2021-03-01,Delta,369.630585900001,Previously infected (Pre-Omicron),BNT162b2,3 +18,2021-04-06,2021-03-01,Delta,199.078665199999,Previously infected (Pre-Omicron),BNT162b2,3 +18,2021-05-18,2021-03-01,Delta,76.04389667,Previously infected (Pre-Omicron),BNT162b2,3 +18,2021-08-10,2021-03-01,Delta,47.4954555099999,Previously infected (Pre-Omicron),BNT162b2,3 +19,2021-04-08,2021-02-26,Ancestral,2560,Infection naive,BNT162b2,2 +19,2021-06-22,2021-02-26,Ancestral,122.9316995,Infection naive,BNT162b2,2 +19,2021-04-08,2021-02-26,Alpha,186.9035213,Infection naive,BNT162b2,2 +19,2021-06-22,2021-02-26,Alpha,121.538915500001,Infection naive,BNT162b2,2 +19,2021-04-08,2021-02-26,Delta,155.7546505,Infection naive,BNT162b2,2 +19,2021-06-22,2021-02-26,Delta,86.3494333899999,Infection naive,BNT162b2,2 +20,2021-04-16,2021-03-09,Ancestral,791.001602599998,Infection naive,BNT162b2,2 +20,2021-09-23,2021-03-09,Ancestral,141.811295282677,Infection naive,BNT162b2,2 +20,2021-10-19,2021-03-09,Ancestral,130.8249164,Infection naive,BNT162b2,2 +20,2021-04-16,2021-03-09,Alpha,810.654379200002,Infection naive,BNT162b2,2 +20,2021-09-23,2021-03-09,Alpha,163.447057328495,Infection naive,BNT162b2,2 +20,2021-10-19,2021-03-09,Alpha,81.1396092100002,Infection naive,BNT162b2,2 +20,2021-04-16,2021-03-09,Delta,318.1820781,Infection naive,BNT162b2,2 +20,2021-09-23,2021-03-09,Delta,80.290662041196,Infection naive,BNT162b2,2 +20,2021-10-19,2021-03-09,Delta,45.8591303399999,Infection naive,BNT162b2,2 +21,2021-04-19,2021-03-26,Ancestral,713.279837599999,Infection naive,BNT162b2,2 +21,2021-06-29,2021-03-26,Ancestral,102.4442116,Infection naive,BNT162b2,2 +21,2021-04-19,2021-03-26,Alpha,447.8489687,Infection naive,BNT162b2,2 +21,2021-06-29,2021-03-26,Alpha,175.6268464,Infection naive,BNT162b2,2 +21,2021-04-19,2021-03-26,Delta,171.9709766,Infection naive,BNT162b2,2 +21,2021-06-29,2021-03-26,Delta,136.0880493,Infection naive,BNT162b2,2 +22,2021-04-19,2021-03-09,Ancestral,200.1283693,Previously infected (Pre-Omicron),AZD1222,2 +22,2021-04-19,2021-03-09,Alpha,67.0270167161586,Previously infected (Pre-Omicron),AZD1222,2 +22,2021-04-19,2021-03-09,Delta,5,Previously infected (Pre-Omicron),AZD1222,2 +23,2021-04-06,2021-02-28,Ancestral,97.87985316,Infection naive,BNT162b2,2 +23,2021-09-21,2021-02-28,Ancestral,81.9256938794759,Infection naive,BNT162b2,2 +23,2021-04-06,2021-02-28,Alpha,270.7914815,Infection naive,BNT162b2,2 +23,2021-09-21,2021-02-28,Alpha,5,Infection naive,BNT162b2,2 +23,2021-04-06,2021-02-28,Delta,74.3957217499998,Infection naive,BNT162b2,2 +23,2021-09-21,2021-02-28,Delta,5,Infection naive,BNT162b2,2 +24,2021-05-20,2021-04-22,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +24,2021-08-10,2021-04-22,Ancestral,483.335457300001,Previously infected (Pre-Omicron),BNT162b2,3 +24,2021-05-20,2021-04-22,Alpha,1971.609858,Previously infected (Pre-Omicron),BNT162b2,3 +24,2021-08-10,2021-04-22,Alpha,517.535122900002,Previously infected (Pre-Omicron),BNT162b2,3 +24,2021-05-20,2021-04-22,Delta,1613.06082,Previously infected (Pre-Omicron),BNT162b2,3 +24,2021-08-10,2021-04-22,Delta,421.197373199999,Previously infected (Pre-Omicron),BNT162b2,3 +25,2021-02-01,2021-01-12,Ancestral,167.654854,Infection naive,BNT162b2,2 +25,2021-02-22,2021-01-12,Ancestral,288.684117400001,Infection naive,BNT162b2,2 +25,2021-04-06,2021-01-12,Ancestral,160.4661115,Infection naive,BNT162b2,2 +25,2021-06-29,2021-01-12,Ancestral,157.677675,Infection naive,BNT162b2,2 +25,2021-02-01,2021-01-12,Alpha,82.6469229800001,Infection naive,BNT162b2,2 +25,2021-02-22,2021-01-12,Alpha,89.0394470600002,Infection naive,BNT162b2,2 +25,2021-04-06,2021-01-12,Alpha,46.7930015600001,Infection naive,BNT162b2,2 +25,2021-06-29,2021-01-12,Alpha,53.0878793300002,Infection naive,BNT162b2,2 +25,2021-02-01,2021-01-12,Delta,49.4062145500001,Infection naive,BNT162b2,2 +25,2021-02-22,2021-01-12,Delta,60.2823961099999,Infection naive,BNT162b2,2 +25,2021-04-06,2021-01-12,Delta,54.4068706399999,Infection naive,BNT162b2,2 +25,2021-06-29,2021-01-12,Delta,75.97727393,Infection naive,BNT162b2,2 +26,2021-04-13,2021-03-07,Ancestral,2560,Infection naive,BNT162b2,2 +26,2021-04-13,2021-03-07,Alpha,591.8071482,Infection naive,BNT162b2,2 +26,2021-04-13,2021-03-07,Delta,292.761111899999,Infection naive,BNT162b2,2 +27,2021-04-19,2021-03-14,Ancestral,205.1006451,Previously infected (Pre-Omicron),BNT162b2,3 +27,2021-06-29,2021-03-14,Ancestral,80.4315338800003,Previously infected (Pre-Omicron),BNT162b2,3 +27,2021-09-28,2021-03-14,Ancestral,81.7105549699998,Previously infected (Pre-Omicron),BNT162b2,3 +27,2021-04-19,2021-03-14,Alpha,153.9899911,Previously infected (Pre-Omicron),BNT162b2,3 +27,2021-06-29,2021-03-14,Alpha,103.4366963,Previously infected (Pre-Omicron),BNT162b2,3 +27,2021-09-28,2021-03-14,Alpha,5,Previously infected (Pre-Omicron),BNT162b2,3 +27,2021-04-19,2021-03-14,Delta,86.3494333899999,Previously infected (Pre-Omicron),BNT162b2,3 +27,2021-06-29,2021-03-14,Delta,54.0267071200002,Previously infected (Pre-Omicron),BNT162b2,3 +27,2021-09-28,2021-03-14,Delta,5,Previously infected (Pre-Omicron),BNT162b2,3 +28,2021-02-02,2021-01-14,Ancestral,128.551558075558,Infection naive,BNT162b2,1 +28,2021-02-24,2021-01-14,Ancestral,129.796972124846,Infection naive,BNT162b2,1 +28,2021-02-02,2021-01-14,Alpha,209.828310596494,Infection naive,BNT162b2,1 +28,2021-02-24,2021-01-14,Alpha,148.68468983509,Infection naive,BNT162b2,1 +28,2021-02-02,2021-01-14,Delta,110.368004349061,Infection naive,BNT162b2,1 +28,2021-02-24,2021-01-14,Delta,45.3395583998115,Infection naive,BNT162b2,1 +29,2021-02-12,2021-01-12,Ancestral,375.837720899999,Infection naive,BNT162b2,2 +29,2021-03-02,2021-01-12,Ancestral,306.950832300001,Infection naive,BNT162b2,2 +29,2021-02-12,2021-01-12,Alpha,133.606076800001,Infection naive,BNT162b2,2 +29,2021-03-02,2021-01-12,Alpha,233.1002888,Infection naive,BNT162b2,2 +29,2021-04-12,2021-01-12,Alpha,105.7282497,Infection naive,BNT162b2,2 +29,2021-02-12,2021-01-12,Delta,105.1736888,Infection naive,BNT162b2,2 +29,2021-03-02,2021-01-12,Delta,162.162787600001,Infection naive,BNT162b2,2 +29,2021-04-12,2021-01-12,Delta,94.0119650100003,Infection naive,BNT162b2,2 +30,2021-02-03,2021-01-08,Ancestral,5,Infection naive,BNT162b2,2 +30,2021-02-24,2021-01-08,Ancestral,265.3871612,Infection naive,BNT162b2,2 +30,2021-02-03,2021-01-08,Alpha,170.769343600001,Infection naive,BNT162b2,2 +30,2021-02-24,2021-01-08,Alpha,169.5761069,Infection naive,BNT162b2,2 +30,2021-04-09,2021-01-08,Alpha,80.3610670899999,Infection naive,BNT162b2,2 +30,2021-02-03,2021-01-08,Delta,130.5957831,Infection naive,BNT162b2,2 +30,2021-02-24,2021-01-08,Delta,65.8045786499999,Infection naive,BNT162b2,2 +30,2021-04-09,2021-01-08,Delta,73.0388933099998,Infection naive,BNT162b2,2 +31,2021-04-23,2021-03-29,Ancestral,1103.638055,Previously infected (Pre-Omicron),BNT162b2,3 +31,2021-07-16,2021-03-29,Ancestral,529.464548799999,Previously infected (Pre-Omicron),BNT162b2,3 +31,2021-12-02,2021-03-29,Ancestral,237.6387421,Previously infected (Pre-Omicron),BNT162b2,3 +31,2021-04-23,2021-03-29,Alpha,485.458306200001,Previously infected (Pre-Omicron),BNT162b2,3 +31,2021-07-16,2021-03-29,Alpha,294.304785699999,Previously infected (Pre-Omicron),BNT162b2,3 +31,2021-12-02,2021-03-29,Alpha,226.454607549813,Previously infected (Pre-Omicron),BNT162b2,3 +31,2021-04-23,2021-03-29,Delta,678.519842099999,Previously infected (Pre-Omicron),BNT162b2,3 +31,2021-07-16,2021-03-29,Delta,258.953353199999,Previously infected (Pre-Omicron),BNT162b2,3 +31,2021-12-02,2021-03-29,Delta,89.2738825000001,Previously infected (Pre-Omicron),BNT162b2,3 +32,2021-02-18,2021-01-10,Ancestral,869.537303600003,Infection naive,BNT162b2,2 +32,2021-02-18,2021-01-10,Alpha,228.2480448,Infection naive,BNT162b2,2 +32,2021-04-01,2021-01-10,Alpha,102.4442116,Infection naive,BNT162b2,2 +32,2021-02-18,2021-01-10,Delta,129.9107881,Infection naive,BNT162b2,2 +32,2021-04-01,2021-01-10,Delta,46.2223177999999,Infection naive,BNT162b2,2 +32,2021-05-13,2021-01-10,Delta,71.8956103600002,Infection naive,BNT162b2,2 +32,2021-08-16,2021-01-10,Delta,42.7911527100001,Infection naive,BNT162b2,2 +33,2021-04-27,2021-03-12,Ancestral,667.8989231,Infection naive,BNT162b2,2 +33,2021-07-08,2021-03-12,Ancestral,305.340828000001,Infection naive,BNT162b2,2 +33,2021-12-07,2021-03-12,Ancestral,171.369106900001,Infection naive,BNT162b2,2 +33,2021-04-27,2021-03-12,Alpha,554.640601099999,Infection naive,BNT162b2,2 +33,2021-07-08,2021-03-12,Alpha,191.379403800001,Infection naive,BNT162b2,2 +33,2021-12-07,2021-03-12,Alpha,224.28175447665,Infection naive,BNT162b2,2 +33,2021-04-27,2021-03-12,Delta,454.173798000001,Infection naive,BNT162b2,2 +33,2021-07-08,2021-03-12,Delta,135.255644,Infection naive,BNT162b2,2 +33,2021-12-07,2021-03-12,Delta,92.6215356399999,Infection naive,BNT162b2,2 +34,2021-02-17,2021-01-12,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +34,2021-03-10,2021-01-12,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +34,2021-02-17,2021-01-12,Alpha,2041.95996799999,Previously infected (Pre-Omicron),BNT162b2,3 +34,2021-03-10,2021-01-12,Alpha,1606.007105,Previously infected (Pre-Omicron),BNT162b2,3 +34,2021-02-17,2021-01-12,Delta,1262.022346,Previously infected (Pre-Omicron),BNT162b2,3 +34,2021-03-10,2021-01-12,Delta,431.2840209,Previously infected (Pre-Omicron),BNT162b2,3 +35,2021-04-19,2021-04-07,Ancestral,232.692025200001,Infection naive,AZD1222,2 +35,2021-06-28,2021-04-07,Ancestral,258.953353199999,Infection naive,AZD1222,2 +35,2021-04-19,2021-04-07,Alpha,86.1981966500001,Infection naive,AZD1222,2 +35,2021-04-19,2021-04-07,Delta,51.8462874599999,Infection naive,AZD1222,2 +35,2021-06-28,2021-04-07,Delta,42.6413908199999,Infection naive,AZD1222,2 +36,2021-03-23,2021-03-06,Ancestral,1076.882446,Infection naive,BNT162b2,2 +36,2021-04-20,2021-03-06,Ancestral,572.922571000002,Infection naive,BNT162b2,2 +36,2021-03-23,2021-03-06,Alpha,804.284739699998,Infection naive,BNT162b2,2 +36,2021-04-20,2021-03-06,Alpha,419.355529400001,Infection naive,BNT162b2,2 +36,2021-03-23,2021-03-06,Delta,448.241677300001,Infection naive,BNT162b2,2 +36,2021-04-20,2021-03-06,Delta,168.096279000001,Infection naive,BNT162b2,2 +37,2021-03-11,2021-03-02,Ancestral,2560,Infection naive,BNT162b2,2 +37,2021-04-07,2021-03-02,Ancestral,2560,Infection naive,BNT162b2,2 +37,2021-05-19,2021-03-02,Ancestral,2560,Infection naive,BNT162b2,2 +37,2021-08-11,2021-03-02,Ancestral,186.7397735,Infection naive,BNT162b2,2 +37,2021-03-11,2021-03-02,Alpha,975.335793300001,Infection naive,BNT162b2,2 +37,2021-04-07,2021-03-02,Alpha,1182.765086,Infection naive,BNT162b2,2 +37,2021-05-19,2021-03-02,Alpha,388.907172100001,Infection naive,BNT162b2,2 +37,2021-08-11,2021-03-02,Alpha,295.856599099999,Infection naive,BNT162b2,2 +37,2021-03-11,2021-03-02,Delta,488.0180358,Infection naive,BNT162b2,2 +37,2021-04-07,2021-03-02,Delta,940.083884500002,Infection naive,BNT162b2,2 +37,2021-05-19,2021-03-02,Delta,288.684117400001,Infection naive,BNT162b2,2 +37,2021-08-11,2021-03-02,Delta,162.447306,Infection naive,BNT162b2,2 +38,2021-04-15,2021-03-25,Ancestral,1004.838967,Infection naive,BNT162b2,2 +38,2021-07-27,2021-03-25,Ancestral,192.726061299999,Infection naive,BNT162b2,2 +38,2021-04-15,2021-03-25,Alpha,441.612219099999,Infection naive,BNT162b2,2 +38,2021-07-27,2021-03-25,Alpha,117.5575229,Infection naive,BNT162b2,2 +38,2021-04-15,2021-03-25,Delta,403.490679399999,Infection naive,BNT162b2,2 +38,2021-07-27,2021-03-25,Delta,85.0723322500003,Infection naive,BNT162b2,2 +39,2021-02-02,2021-01-12,Ancestral,2560,Infection naive,BNT162b2,2 +39,2021-02-23,2021-01-12,Ancestral,2560,Infection naive,BNT162b2,2 +39,2021-04-14,2021-01-12,Ancestral,1312.793954,Infection naive,BNT162b2,2 +39,2021-02-02,2021-01-12,Alpha,2308.548869,Infection naive,BNT162b2,2 +39,2021-02-23,2021-01-12,Alpha,1138.019305,Infection naive,BNT162b2,2 +39,2021-04-14,2021-01-12,Alpha,1286.593871,Infection naive,BNT162b2,2 +39,2021-02-02,2021-01-12,Delta,877.961425299999,Infection naive,BNT162b2,2 +39,2021-02-23,2021-01-12,Delta,601.2180569,Infection naive,BNT162b2,2 +39,2021-04-14,2021-01-12,Delta,890.360596700001,Infection naive,BNT162b2,2 +40,2021-06-09,2021-04-30,Ancestral,398.9192356,Infection naive,AZD1222,2 +40,2021-07-07,2021-04-30,Ancestral,116.5316419,Infection naive,AZD1222,2 +40,2021-09-17,2021-04-30,Ancestral,111.1446182,Infection naive,AZD1222,2 +40,2021-06-09,2021-04-30,Alpha,180.62252,Infection naive,AZD1222,2 +40,2021-07-07,2021-04-30,Alpha,116.3275425,Infection naive,AZD1222,2 +40,2021-09-17,2021-04-30,Alpha,110.8527497,Infection naive,AZD1222,2 +40,2021-06-09,2021-04-30,Delta,62.98299513,Infection naive,AZD1222,2 +40,2021-07-07,2021-04-30,Delta,45.93959126,Infection naive,AZD1222,2 +40,2021-09-17,2021-04-30,Delta,41.6076312399999,Infection naive,AZD1222,2 +41,2021-04-19,2021-03-14,Ancestral,2560,Infection naive,BNT162b2,2 +41,2021-06-28,2021-03-14,Ancestral,283.170793299999,Infection naive,BNT162b2,2 +41,2021-04-19,2021-03-14,Alpha,1754.663025,Infection naive,BNT162b2,2 +41,2021-06-28,2021-03-14,Alpha,166.629365,Infection naive,BNT162b2,2 +41,2021-04-19,2021-03-14,Delta,453.775892300001,Infection naive,BNT162b2,2 +41,2021-06-28,2021-03-14,Delta,125.3251748,Infection naive,BNT162b2,2 +42,2021-05-28,2021-04-08,Ancestral,254.899938100001,Previously infected (Pre-Omicron),AZD1222,3 +42,2021-07-16,2021-04-08,Ancestral,171.669778,Previously infected (Pre-Omicron),AZD1222,3 +42,2021-05-28,2021-04-08,Alpha,149.0761676,Previously infected (Pre-Omicron),AZD1222,3 +42,2021-07-16,2021-04-08,Alpha,118.3847264,Previously infected (Pre-Omicron),AZD1222,3 +42,2021-05-28,2021-04-08,Delta,44.20162747,Previously infected (Pre-Omicron),AZD1222,3 +42,2021-07-16,2021-04-08,Delta,60.8664150300001,Previously infected (Pre-Omicron),AZD1222,3 +43,2021-04-23,2021-03-23,Ancestral,483.759283100001,Infection naive,BNT162b2,2 +43,2021-04-23,2021-03-23,Alpha,148.9455606,Infection naive,BNT162b2,2 +43,2021-04-23,2021-03-23,Delta,109.3090131,Infection naive,BNT162b2,2 +44,2021-06-09,2021-04-30,Ancestral,130.2528353,Infection naive,AZD1222,2 +44,2021-07-08,2021-04-30,Ancestral,40.95634405,Infection naive,AZD1222,2 +44,2021-06-09,2021-04-30,Alpha,58.0018224500001,Infection naive,AZD1222,2 +44,2021-07-08,2021-04-30,Alpha,60.44111598,Infection naive,AZD1222,2 +44,2021-06-09,2021-04-30,Delta,5,Infection naive,AZD1222,2 +45,2021-04-16,2021-04-01,Ancestral,2560,Infection naive,BNT162b2,2 +45,2021-07-26,2021-04-01,Ancestral,540.246517400001,Infection naive,BNT162b2,2 +45,2021-10-19,2021-04-01,Ancestral,651.706981500002,Infection naive,BNT162b2,2 +45,2021-04-16,2021-04-01,Alpha,2211.499906,Infection naive,BNT162b2,2 +45,2021-07-26,2021-04-01,Alpha,835.1760645,Infection naive,BNT162b2,2 +45,2021-10-19,2021-04-01,Alpha,416.790471097569,Infection naive,BNT162b2,2 +45,2021-04-16,2021-04-01,Delta,896.625694799998,Infection naive,BNT162b2,2 +45,2021-07-26,2021-04-01,Delta,394.399585100001,Infection naive,BNT162b2,2 +45,2021-10-19,2021-04-01,Delta,394.745425100001,Infection naive,BNT162b2,2 +46,2021-03-16,2021-03-16,Ancestral,144.572355573196,Infection naive,BNT162b2,2 +46,2021-04-15,2021-03-16,Ancestral,2270.422109,Infection naive,BNT162b2,2 +46,2021-07-07,2021-03-16,Ancestral,214.8531858,Infection naive,BNT162b2,2 +46,2021-10-07,2021-03-16,Ancestral,218.4611738,Infection naive,BNT162b2,2 +46,2021-03-16,2021-03-16,Alpha,66.8510021028247,Infection naive,BNT162b2,2 +46,2021-04-15,2021-03-16,Alpha,588.187260700001,Infection naive,BNT162b2,2 +46,2021-07-07,2021-03-16,Alpha,297.4165949,Infection naive,BNT162b2,2 +46,2021-10-07,2021-03-16,Alpha,185.272483477799,Infection naive,BNT162b2,2 +46,2021-03-16,2021-03-16,Delta,5,Infection naive,BNT162b2,2 +46,2021-04-15,2021-03-16,Delta,315.4054209,Infection naive,BNT162b2,2 +46,2021-07-07,2021-03-16,Delta,130.0247039,Infection naive,BNT162b2,2 +46,2021-10-07,2021-03-16,Delta,97.7084214600002,Infection naive,BNT162b2,2 +47,2021-04-20,2021-03-20,Ancestral,1186.919105,Infection naive,BNT162b2,2 +47,2021-06-29,2021-03-20,Ancestral,501.899619800001,Infection naive,BNT162b2,2 +47,2021-04-20,2021-03-20,Alpha,1334.839449,Infection naive,BNT162b2,2 +47,2021-06-29,2021-03-20,Alpha,318.1820781,Infection naive,BNT162b2,2 +47,2021-04-20,2021-03-20,Delta,832.982871400002,Infection naive,BNT162b2,2 +47,2021-06-29,2021-03-20,Delta,405.618209199999,Infection naive,BNT162b2,2 +48,2021-03-30,2021-03-20,Ancestral,2560,Infection naive,BNT162b2,2 +48,2021-05-11,2021-03-20,Ancestral,571.919125600001,Infection naive,BNT162b2,2 +48,2021-07-08,2021-03-20,Ancestral,91.4117737899999,Infection naive,BNT162b2,2 +48,2021-03-30,2021-03-20,Alpha,397.1748113,Infection naive,BNT162b2,2 +48,2021-05-11,2021-03-20,Alpha,238.682470999999,Infection naive,BNT162b2,2 +48,2021-07-08,2021-03-20,Alpha,176.7077087,Infection naive,BNT162b2,2 +48,2021-03-30,2021-03-20,Delta,233.1002888,Infection naive,BNT162b2,2 +48,2021-05-11,2021-03-20,Delta,166.7754785,Infection naive,BNT162b2,2 +48,2021-07-08,2021-03-20,Delta,135.3742465,Infection naive,BNT162b2,2 +49,2021-02-18,2021-01-05,Ancestral,2560,Infection naive,BNT162b2,2 +49,2021-02-18,2021-01-05,Alpha,815.643398600001,Infection naive,BNT162b2,2 +49,2021-02-18,2021-01-05,Delta,458.1720963,Infection naive,BNT162b2,2 +50,2021-02-09,2021-01-19,Ancestral,110.464783536617,Previously infected (Pre-Omicron),BNT162b2,2 +50,2021-03-02,2021-01-19,Ancestral,104.713777301928,Previously infected (Pre-Omicron),BNT162b2,2 +50,2021-02-09,2021-01-19,Alpha,5,Previously infected (Pre-Omicron),BNT162b2,2 +50,2021-03-02,2021-01-19,Alpha,92.0550005127693,Previously infected (Pre-Omicron),BNT162b2,2 +50,2021-02-09,2021-01-19,Delta,5,Previously infected (Pre-Omicron),BNT162b2,2 +50,2021-03-02,2021-01-19,Delta,5,Previously infected (Pre-Omicron),BNT162b2,2 +51,2021-04-08,2021-03-30,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +51,2021-05-20,2021-03-30,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +51,2021-08-10,2021-03-30,Ancestral,331.854113199999,Previously infected (Pre-Omicron),BNT162b2,3 +51,2021-04-08,2021-03-30,Alpha,1494.629897,Previously infected (Pre-Omicron),BNT162b2,3 +51,2021-05-20,2021-03-30,Alpha,1527.74217,Previously infected (Pre-Omicron),BNT162b2,3 +51,2021-08-10,2021-03-30,Alpha,274.615783899999,Previously infected (Pre-Omicron),BNT162b2,3 +51,2021-04-08,2021-03-30,Delta,828.613748100001,Previously infected (Pre-Omicron),BNT162b2,3 +51,2021-05-20,2021-03-30,Delta,922.938643800003,Previously infected (Pre-Omicron),BNT162b2,3 +51,2021-08-10,2021-03-30,Delta,200.6552951,Previously infected (Pre-Omicron),BNT162b2,3 +52,2021-04-15,2021-03-11,Ancestral,2560,Infection naive,BNT162b2,2 +52,2021-07-16,2021-03-11,Ancestral,346.113625,Infection naive,BNT162b2,2 +52,2021-09-24,2021-03-11,Ancestral,306.950832311165,Infection naive,BNT162b2,2 +52,2021-04-15,2021-03-11,Alpha,859.6856735,Infection naive,BNT162b2,2 +52,2021-07-16,2021-03-11,Alpha,439.6811036,Infection naive,BNT162b2,2 +52,2021-09-24,2021-03-11,Alpha,359.72246663529,Infection naive,BNT162b2,2 +52,2021-04-15,2021-03-11,Delta,482.488919199999,Infection naive,BNT162b2,2 +52,2021-07-16,2021-03-11,Delta,249.375238500001,Infection naive,BNT162b2,2 +52,2021-09-24,2021-03-11,Delta,242.903429471149,Infection naive,BNT162b2,2 +53,2021-05-04,2021-03-23,Ancestral,600.165053300002,Infection naive,BNT162b2,2 +53,2021-06-29,2021-03-23,Ancestral,286.666961000001,Infection naive,BNT162b2,2 +53,2021-10-07,2021-03-23,Ancestral,128.8900265,Infection naive,BNT162b2,2 +53,2021-05-04,2021-03-23,Alpha,824.267541600003,Infection naive,BNT162b2,2 +53,2021-06-29,2021-03-23,Alpha,173.4849153,Infection naive,BNT162b2,2 +53,2021-10-07,2021-03-23,Alpha,107.503723789764,Infection naive,BNT162b2,2 +53,2021-05-04,2021-03-23,Delta,586.6426663,Infection naive,BNT162b2,2 +53,2021-06-29,2021-03-23,Delta,137.889066,Infection naive,BNT162b2,2 +53,2021-10-07,2021-03-23,Delta,58.15453771,Infection naive,BNT162b2,2 +54,2021-04-26,2021-03-14,Ancestral,1561.588019,Infection naive,BNT162b2,2 +54,2021-04-26,2021-03-14,Alpha,741.3252875,Infection naive,BNT162b2,2 +54,2021-04-26,2021-03-14,Delta,258.7264819,Infection naive,BNT162b2,2 +55,2021-02-04,2021-01-05,Ancestral,148.68468983509,Infection naive,BNT162b2,1 +55,2021-02-04,2021-01-05,Alpha,128.551558075558,Infection naive,BNT162b2,1 +55,2021-02-04,2021-01-05,Delta,5,Infection naive,BNT162b2,1 +56,2021-04-01,2021-03-14,Ancestral,2560,Infection naive,BNT162b2,2 +56,2021-09-30,2021-03-14,Ancestral,161.0296885,Infection naive,BNT162b2,2 +56,2021-09-30,2021-03-14,Ancestral,161.0296885,Infection naive,BNT162b2,2 +56,2021-04-01,2021-03-14,Alpha,916.489686199999,Infection naive,BNT162b2,2 +56,2021-09-30,2021-03-14,Alpha,204.5620457,Infection naive,BNT162b2,2 +56,2021-09-30,2021-03-14,Alpha,204.5620457,Infection naive,BNT162b2,2 +56,2021-04-01,2021-03-14,Delta,359.092430599999,Infection naive,BNT162b2,2 +56,2021-09-30,2021-03-14,Delta,86.3494333899999,Infection naive,BNT162b2,2 +56,2021-09-30,2021-03-14,Delta,86.3494333899999,Infection naive,BNT162b2,2 +57,2021-03-01,2021-03-01,Ancestral,1682.372782,Infection naive,BNT162b2,2 +57,2021-03-24,2021-03-01,Ancestral,1262.022346,Infection naive,BNT162b2,2 +57,2021-03-01,2021-03-01,Alpha,2169.2644141146,Infection naive,BNT162b2,2 +57,2021-03-24,2021-03-01,Alpha,977.047042700003,Infection naive,BNT162b2,2 +57,2021-03-01,2021-03-01,Delta,560.013987499999,Infection naive,BNT162b2,2 +57,2021-03-24,2021-03-01,Delta,1095.926476,Infection naive,BNT162b2,2 +58,2021-03-11,2021-03-11,Ancestral,112.615528487616,Infection naive,BNT162b2,2 +58,2021-04-26,2021-03-11,Ancestral,2560,Infection naive,BNT162b2,2 +58,2021-03-11,2021-03-11,Alpha,89.5089351915363,Infection naive,BNT162b2,2 +58,2021-04-26,2021-03-11,Alpha,841.790351999999,Infection naive,BNT162b2,2 +58,2021-03-11,2021-03-11,Delta,40.5278261784787,Infection naive,BNT162b2,2 +58,2021-04-26,2021-03-11,Delta,513.018785499999,Infection naive,BNT162b2,2 +59,2021-02-17,2021-01-12,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +59,2021-03-10,2021-01-12,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +59,2021-04-14,2021-01-12,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +59,2021-02-17,2021-01-12,Alpha,2560,Previously infected (Pre-Omicron),BNT162b2,3 +59,2021-03-10,2021-01-12,Alpha,1339.527572,Previously infected (Pre-Omicron),BNT162b2,3 +59,2021-04-14,2021-01-12,Alpha,1030.707638,Previously infected (Pre-Omicron),BNT162b2,3 +59,2021-02-17,2021-01-12,Delta,1421.792665,Previously infected (Pre-Omicron),BNT162b2,3 +59,2021-03-10,2021-01-12,Delta,496.6483465,Previously infected (Pre-Omicron),BNT162b2,3 +59,2021-04-14,2021-01-12,Delta,497.955991299999,Previously infected (Pre-Omicron),BNT162b2,3 +60,2021-02-23,2021-02-05,Ancestral,498.392637599999,Infection naive,BNT162b2,2 +60,2021-03-16,2021-02-05,Ancestral,385.851371,Infection naive,BNT162b2,2 +60,2021-04-27,2021-02-05,Ancestral,188.548917900001,Infection naive,BNT162b2,2 +60,2021-07-21,2021-02-05,Ancestral,147.3871736,Infection naive,BNT162b2,2 +60,2021-02-23,2021-02-05,Alpha,130.481367,Infection naive,BNT162b2,2 +60,2021-03-16,2021-02-05,Alpha,147.1290323,Infection naive,BNT162b2,2 +60,2021-04-27,2021-02-05,Alpha,67.7357217499998,Infection naive,BNT162b2,2 +60,2021-07-21,2021-02-05,Alpha,73.9406678700002,Infection naive,BNT162b2,2 +60,2021-02-23,2021-02-05,Delta,259.1804235,Infection naive,BNT162b2,2 +60,2021-03-16,2021-02-05,Delta,197.6876195,Infection naive,BNT162b2,2 +60,2021-04-27,2021-02-05,Delta,113.4079572,Infection naive,BNT162b2,2 +60,2021-07-21,2021-02-05,Delta,59.0793103299999,Infection naive,BNT162b2,2 +61,2021-04-23,2021-03-28,Ancestral,1893.698356,Previously infected (Pre-Omicron),BNT162b2,3 +61,2021-07-16,2021-03-28,Ancestral,119.2177506,Previously infected (Pre-Omicron),BNT162b2,3 +61,2021-12-02,2021-03-28,Ancestral,100.664027719392,Previously infected (Pre-Omicron),BNT162b2,3 +61,2021-04-23,2021-03-28,Alpha,562.966835099998,Previously infected (Pre-Omicron),BNT162b2,3 +61,2021-07-16,2021-03-28,Alpha,132.2081837,Previously infected (Pre-Omicron),BNT162b2,3 +61,2021-12-02,2021-03-28,Alpha,108.735670477585,Previously infected (Pre-Omicron),BNT162b2,3 +61,2021-04-23,2021-03-28,Delta,327.2327092,Previously infected (Pre-Omicron),BNT162b2,3 +61,2021-07-16,2021-03-28,Delta,112.8131151,Previously infected (Pre-Omicron),BNT162b2,3 +61,2021-12-02,2021-03-28,Delta,41.2084021348052,Previously infected (Pre-Omicron),BNT162b2,3 +62,2021-04-15,2021-03-16,Ancestral,2560,Infection naive,AZD1222,1 +62,2021-04-15,2021-03-16,Alpha,871.826742274675,Infection naive,AZD1222,1 +62,2021-04-15,2021-03-16,Delta,2560,Infection naive,AZD1222,1 +63,2021-04-08,2021-03-19,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +63,2021-10-01,2021-03-19,Ancestral,1589.203781,Previously infected (Pre-Omicron),BNT162b2,3 +63,2021-04-08,2021-03-19,Alpha,2560,Previously infected (Pre-Omicron),BNT162b2,3 +63,2021-10-01,2021-03-19,Alpha,1542.54301454384,Previously infected (Pre-Omicron),BNT162b2,3 +63,2021-04-08,2021-03-19,Delta,905.312250299999,Previously infected (Pre-Omicron),BNT162b2,3 +63,2021-10-01,2021-03-19,Delta,864.218633100003,Previously infected (Pre-Omicron),BNT162b2,3 +64,2021-04-06,2021-02-25,Ancestral,2560,Infection naive,BNT162b2,2 +64,2021-06-29,2021-02-25,Ancestral,174.2468752,Infection naive,BNT162b2,2 +64,2021-04-06,2021-02-25,Alpha,1401.992765,Infection naive,BNT162b2,2 +64,2021-06-29,2021-02-25,Alpha,153.0480855,Infection naive,BNT162b2,2 +64,2021-04-06,2021-02-25,Delta,525.304331599999,Infection naive,BNT162b2,2 +64,2021-06-29,2021-02-25,Delta,102.2647856,Infection naive,BNT162b2,2 +65,2021-04-09,2021-03-04,Ancestral,1087.315338,Infection naive,BNT162b2,2 +65,2021-07-02,2021-03-04,Ancestral,477.8593931,Infection naive,BNT162b2,2 +65,2021-04-09,2021-03-04,Alpha,892.704861899999,Infection naive,BNT162b2,2 +65,2021-07-02,2021-03-04,Alpha,374.194229200001,Infection naive,BNT162b2,2 +65,2021-04-09,2021-03-04,Delta,853.678690799998,Infection naive,BNT162b2,2 +65,2021-07-02,2021-03-04,Delta,333.603917,Infection naive,BNT162b2,2 +66,2021-04-19,2021-03-24,Ancestral,809.234558300001,Infection naive,BNT162b2,2 +66,2021-06-28,2021-03-24,Ancestral,227.6486598,Infection naive,BNT162b2,2 +66,2021-09-28,2021-03-24,Ancestral,127.9894181,Infection naive,BNT162b2,2 +66,2021-04-19,2021-03-24,Alpha,705.198563800002,Infection naive,BNT162b2,2 +66,2021-06-28,2021-03-24,Alpha,233.3046891,Infection naive,BNT162b2,2 +66,2021-09-28,2021-03-24,Alpha,242.053307993616,Infection naive,BNT162b2,2 +66,2021-04-19,2021-03-24,Delta,429.7745987,Infection naive,BNT162b2,2 +66,2021-06-28,2021-03-24,Delta,67.8545656499999,Infection naive,BNT162b2,2 +66,2021-09-28,2021-03-24,Delta,43.0545027799999,Infection naive,BNT162b2,2 +67,2021-01-29,2021-01-05,Ancestral,1025.301418,Infection naive,BNT162b2,2 +67,2021-02-19,2021-01-05,Ancestral,892.704861899999,Infection naive,BNT162b2,2 +67,2021-04-15,2021-01-05,Ancestral,296.375686400001,Infection naive,BNT162b2,2 +67,2021-07-08,2021-01-05,Ancestral,56.4965538399999,Infection naive,BNT162b2,2 +67,2021-01-29,2021-01-05,Alpha,238.8917662,Infection naive,BNT162b2,2 +67,2021-02-19,2021-01-05,Alpha,219.8056519,Infection naive,BNT162b2,2 +67,2021-04-15,2021-01-05,Alpha,118.3847264,Infection naive,BNT162b2,2 +67,2021-07-08,2021-01-05,Alpha,72.7195032999999,Infection naive,BNT162b2,2 +67,2021-01-29,2021-01-05,Delta,104.6220366,Infection naive,BNT162b2,2 +67,2021-02-19,2021-01-05,Delta,88.8834988900001,Infection naive,BNT162b2,2 +67,2021-04-15,2021-01-05,Delta,69.2970617100001,Infection naive,BNT162b2,2 +67,2021-07-08,2021-01-05,Delta,48.7181830699999,Infection naive,BNT162b2,2 +68,2021-03-16,2021-03-12,Ancestral,129.796972124846,Previously infected (Pre-Omicron),BNT162b2,3 +68,2021-04-20,2021-03-12,Ancestral,963.4406748,Previously infected (Pre-Omicron),BNT162b2,3 +68,2021-07-07,2021-03-12,Ancestral,143.0597245,Previously infected (Pre-Omicron),BNT162b2,3 +68,2021-03-16,2021-03-12,Alpha,50.8561208104012,Previously infected (Pre-Omicron),BNT162b2,3 +68,2021-04-20,2021-03-12,Alpha,804.284739699998,Previously infected (Pre-Omicron),BNT162b2,3 +68,2021-07-07,2021-03-12,Alpha,178.7327035,Previously infected (Pre-Omicron),BNT162b2,3 +68,2021-09-23,2021-03-12,Alpha,171.068962431355,Previously infected (Pre-Omicron),BNT162b2,3 +68,2021-03-16,2021-03-12,Delta,5,Previously infected (Pre-Omicron),BNT162b2,3 +68,2021-04-20,2021-03-12,Delta,270.3172037,Previously infected (Pre-Omicron),BNT162b2,3 +68,2021-07-07,2021-03-12,Delta,168.8345717,Previously infected (Pre-Omicron),BNT162b2,3 +68,2021-09-23,2021-03-12,Delta,221.9351403,Previously infected (Pre-Omicron),BNT162b2,3 +69,2021-03-22,2021-03-10,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +69,2021-03-22,2021-03-10,Alpha,1587.811465,Previously infected (Pre-Omicron),BNT162b2,3 +69,2021-03-22,2021-03-10,Delta,679.710320999999,Previously infected (Pre-Omicron),BNT162b2,3 +70,2021-05-05,2021-03-28,Ancestral,331.854113199999,Previously infected (Pre-Omicron),BNT162b2,3 +70,2021-06-29,2021-03-28,Ancestral,139.5915131,Previously infected (Pre-Omicron),BNT162b2,3 +70,2021-10-01,2021-03-28,Ancestral,118.4885353,Previously infected (Pre-Omicron),BNT162b2,3 +70,2021-05-05,2021-03-28,Alpha,399.9695656,Previously infected (Pre-Omicron),BNT162b2,3 +70,2021-06-29,2021-03-28,Alpha,194.422716300001,Previously infected (Pre-Omicron),BNT162b2,3 +70,2021-10-01,2021-03-28,Alpha,194.422716341038,Previously infected (Pre-Omicron),BNT162b2,3 +70,2021-05-05,2021-03-28,Delta,175.0121818,Previously infected (Pre-Omicron),BNT162b2,3 +70,2021-06-29,2021-03-28,Delta,95.0059933199999,Previously infected (Pre-Omicron),BNT162b2,3 +70,2021-10-01,2021-03-28,Delta,47.95559391,Previously infected (Pre-Omicron),BNT162b2,3 +71,2021-04-19,2021-04-13,Ancestral,106.846159268181,Infection naive,AZD1222,1 +71,2021-04-19,2021-04-13,Alpha,5,Infection naive,AZD1222,1 +71,2021-04-19,2021-04-13,Delta,5,Infection naive,AZD1222,1 +72,2021-01-29,2021-01-07,Ancestral,1353.690964,Infection naive,BNT162b2,2 +72,2021-01-29,2021-01-07,Alpha,436.608868200001,Infection naive,BNT162b2,2 +72,2021-01-29,2021-01-07,Delta,279.227353800001,Infection naive,BNT162b2,2 +73,2021-02-03,2021-01-06,Ancestral,1007.484647,Previously infected (Pre-Omicron),BNT162b2,3 +73,2021-02-03,2021-01-06,Alpha,414.604341,Previously infected (Pre-Omicron),BNT162b2,3 +73,2021-02-26,2021-01-06,Alpha,321.546351899999,Previously infected (Pre-Omicron),BNT162b2,3 +73,2021-02-03,2021-01-06,Delta,220.9646454,Previously infected (Pre-Omicron),BNT162b2,3 +73,2021-02-26,2021-01-06,Delta,205.2804932,Previously infected (Pre-Omicron),BNT162b2,3 +74,2021-04-12,2021-03-15,Ancestral,2560,Infection naive,BNT162b2,2 +74,2021-04-12,2021-03-15,Alpha,1019.02999,Infection naive,BNT162b2,2 +74,2021-04-12,2021-03-15,Delta,607.57499,Infection naive,BNT162b2,2 +75,2021-06-11,2021-05-02,Ancestral,204.3828271,Infection naive,AZD1222,2 +75,2021-09-22,2021-05-02,Ancestral,129.456122,Infection naive,AZD1222,2 +75,2021-06-11,2021-05-02,Alpha,138.7376782,Infection naive,AZD1222,2 +75,2021-09-22,2021-05-02,Alpha,74.5262507817008,Infection naive,AZD1222,2 +75,2021-06-11,2021-05-02,Delta,45.0622313999999,Infection naive,AZD1222,2 +75,2021-09-22,2021-05-02,Delta,5,Infection naive,AZD1222,2 +76,2021-06-11,2021-04-22,Ancestral,93.8473077200001,Infection naive,AZD1222,1 +76,2021-06-11,2021-04-22,Alpha,47.4538443170817,Infection naive,AZD1222,1 +76,2021-06-11,2021-04-22,Delta,41.53475753,Infection naive,AZD1222,1 +77,2021-03-19,2021-03-07,Ancestral,2560,Infection naive,BNT162b2,2 +77,2021-10-06,2021-03-07,Ancestral,135.255643954031,Infection naive,BNT162b2,2 +77,2021-03-19,2021-03-07,Alpha,598.064575800001,Infection naive,BNT162b2,2 +77,2021-10-06,2021-03-07,Alpha,85.1469302348619,Infection naive,BNT162b2,2 +77,2021-03-19,2021-03-07,Delta,423.047306599999,Infection naive,BNT162b2,2 +77,2021-10-06,2021-03-07,Delta,51.1242754956066,Infection naive,BNT162b2,2 +78,2021-03-12,2021-02-26,Ancestral,565.4394316,Infection naive,BNT162b2,2 +78,2021-04-07,2021-02-26,Ancestral,552.6994515,Infection naive,BNT162b2,2 +78,2021-05-17,2021-02-26,Ancestral,232.4881616,Infection naive,BNT162b2,2 +78,2021-03-12,2021-02-26,Alpha,682.695664400001,Infection naive,BNT162b2,2 +78,2021-04-07,2021-02-26,Alpha,387.206529300001,Infection naive,BNT162b2,2 +78,2021-05-17,2021-02-26,Alpha,224.478422,Infection naive,BNT162b2,2 +78,2021-03-12,2021-02-26,Delta,416.0604833,Infection naive,BNT162b2,2 +78,2021-04-07,2021-02-26,Delta,426.397685799999,Infection naive,BNT162b2,2 +78,2021-05-17,2021-02-26,Delta,265.8527891,Infection naive,BNT162b2,2 +79,2021-04-19,2021-03-17,Ancestral,1710.624543,Infection naive,BNT162b2,2 +79,2021-06-29,2021-03-17,Ancestral,205.1006451,Infection naive,BNT162b2,2 +79,2021-04-19,2021-03-17,Alpha,1377.630189,Infection naive,BNT162b2,2 +79,2021-06-29,2021-03-17,Alpha,257.143938,Infection naive,BNT162b2,2 +79,2021-04-19,2021-03-17,Delta,940.908222600001,Infection naive,BNT162b2,2 +79,2021-06-29,2021-03-17,Delta,205.1006451,Infection naive,BNT162b2,2 +80,2021-05-05,2021-03-23,Ancestral,2560,Infection naive,BNT162b2,2 +80,2021-06-28,2021-03-23,Ancestral,131.5147314,Infection naive,BNT162b2,2 +80,2021-09-22,2021-03-23,Ancestral,204.3828271,Infection naive,BNT162b2,2 +80,2021-05-05,2021-03-23,Alpha,1305.908147,Infection naive,BNT162b2,2 +80,2021-06-28,2021-03-23,Alpha,445.499932,Infection naive,BNT162b2,2 +80,2021-09-22,2021-03-23,Alpha,177.328328281948,Infection naive,BNT162b2,2 +80,2021-05-05,2021-03-23,Delta,624.857349700001,Infection naive,BNT162b2,2 +80,2021-06-28,2021-03-23,Delta,130.7102996,Infection naive,BNT162b2,2 +80,2021-09-22,2021-03-23,Delta,99.0883265799999,Infection naive,BNT162b2,2 +81,2021-05-26,2021-04-30,Ancestral,144.6991278,Infection naive,AZD1222,2 +81,2021-07-08,2021-04-30,Ancestral,75.8442035,Infection naive,AZD1222,2 +81,2021-11-23,2021-04-30,Ancestral,148.5544258,Infection naive,AZD1222,2 +81,2021-05-26,2021-04-30,Alpha,202.7769085,Infection naive,AZD1222,2 +81,2021-07-08,2021-04-30,Alpha,96.2633217999998,Infection naive,AZD1222,2 +81,2021-11-23,2021-04-30,Alpha,106.006625751991,Infection naive,AZD1222,2 +81,2021-05-26,2021-04-30,Delta,53.2276564800001,Infection naive,AZD1222,2 +81,2021-07-08,2021-04-30,Delta,60.7065783099999,Infection naive,AZD1222,2 +81,2021-11-23,2021-04-30,Delta,42.6413908199999,Infection naive,AZD1222,2 +82,2021-04-13,2021-03-24,Ancestral,2560,Infection naive,BNT162b2,2 +82,2021-09-28,2021-03-24,Ancestral,119.0089466,Infection naive,BNT162b2,2 +82,2021-04-13,2021-03-24,Alpha,380.478000600002,Infection naive,BNT162b2,2 +82,2021-09-28,2021-03-24,Alpha,130.481366955718,Infection naive,BNT162b2,2 +82,2021-04-13,2021-03-24,Delta,209.2772962,Infection naive,BNT162b2,2 +82,2021-09-28,2021-03-24,Delta,63.3150925200002,Infection naive,BNT162b2,2 +83,2021-04-15,2021-03-24,Ancestral,2560,Infection naive,BNT162b2,2 +83,2021-07-07,2021-03-24,Ancestral,255.123454000001,Infection naive,BNT162b2,2 +83,2021-04-15,2021-03-24,Alpha,1277.603903,Infection naive,BNT162b2,2 +83,2021-07-07,2021-03-24,Alpha,321.264642300001,Infection naive,BNT162b2,2 +83,2021-04-15,2021-03-24,Delta,560.013987499999,Infection naive,BNT162b2,2 +83,2021-07-07,2021-03-24,Delta,173.9416905,Infection naive,BNT162b2,2 +84,2021-04-20,2021-03-11,Ancestral,2560,Infection naive,BNT162b2,2 +84,2021-06-28,2021-03-11,Ancestral,583.054368300002,Infection naive,BNT162b2,2 +84,2021-04-20,2021-03-11,Alpha,1018.137209,Infection naive,BNT162b2,2 +84,2021-06-28,2021-03-11,Alpha,339.801208099999,Infection naive,BNT162b2,2 +84,2021-04-20,2021-03-11,Delta,587.1570799,Infection naive,BNT162b2,2 +84,2021-06-28,2021-03-11,Delta,264.690247899999,Infection naive,BNT162b2,2 +85,2021-04-20,2021-03-31,Ancestral,996.943540999999,Previously infected (Pre-Omicron),AZD1222,3 +85,2021-07-07,2021-03-31,Ancestral,400.6713215,Previously infected (Pre-Omicron),AZD1222,3 +85,2021-04-20,2021-03-31,Alpha,759.0782163,Previously infected (Pre-Omicron),AZD1222,3 +85,2021-07-07,2021-03-31,Alpha,392.674924599999,Previously infected (Pre-Omicron),AZD1222,3 +85,2021-04-20,2021-03-31,Delta,457.369630600001,Previously infected (Pre-Omicron),AZD1222,3 +85,2021-07-07,2021-03-31,Delta,294.562854899999,Previously infected (Pre-Omicron),AZD1222,3 +86,2021-02-03,2021-01-08,Ancestral,541.194392500001,Infection naive,BNT162b2,2 +86,2021-02-03,2021-01-08,Alpha,301.6169153,Infection naive,BNT162b2,2 +86,2021-02-03,2021-01-08,Delta,193.7422693,Infection naive,BNT162b2,2 +87,2021-04-19,2021-03-28,Ancestral,1113.353883,Previously infected (Pre-Omicron),BNT162b2,3 +87,2021-06-28,2021-03-28,Ancestral,213.5390003,Previously infected (Pre-Omicron),BNT162b2,3 +87,2021-04-19,2021-03-28,Alpha,643.1948116,Previously infected (Pre-Omicron),BNT162b2,3 +87,2021-06-28,2021-03-28,Alpha,463.828917200002,Previously infected (Pre-Omicron),BNT162b2,3 +87,2021-09-30,2021-03-28,Alpha,364.802713224805,Previously infected (Pre-Omicron),BNT162b2,3 +87,2021-04-19,2021-03-28,Delta,272.219313700001,Previously infected (Pre-Omicron),BNT162b2,3 +87,2021-06-28,2021-03-28,Delta,241.2061618,Previously infected (Pre-Omicron),BNT162b2,3 +87,2021-09-30,2021-03-28,Delta,333.019626300001,Previously infected (Pre-Omicron),BNT162b2,3 +88,2021-03-16,2021-03-12,Ancestral,1124.14011170073,Previously infected (Pre-Omicron),BNT162b2,3 +88,2021-03-16,2021-03-12,Alpha,767.776927952915,Previously infected (Pre-Omicron),BNT162b2,3 +88,2021-03-16,2021-03-12,Delta,695.377960810212,Previously infected (Pre-Omicron),BNT162b2,3 +88,2021-05-05,2021-03-12,Delta,503.662354,Previously infected (Pre-Omicron),BNT162b2,3 +88,2021-06-29,2021-03-12,Delta,527.149266099999,Previously infected (Pre-Omicron),BNT162b2,3 +88,2021-09-29,2021-03-12,Delta,283.6676231,Previously infected (Pre-Omicron),BNT162b2,3 +89,2021-04-07,2021-03-23,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +89,2021-05-18,2021-03-23,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +89,2021-08-10,2021-03-23,Ancestral,284.4145027,Previously infected (Pre-Omicron),BNT162b2,3 +89,2021-10-08,2021-03-23,Ancestral,399.269038768964,Previously infected (Pre-Omicron),BNT162b2,3 +89,2021-10-27,2021-03-23,Ancestral,506.318070100001,Previously infected (Pre-Omicron),BNT162b2,3 +89,2021-04-07,2021-03-23,Alpha,1651.689684,Previously infected (Pre-Omicron),BNT162b2,3 +89,2021-05-18,2021-03-23,Alpha,1240.092051,Previously infected (Pre-Omicron),BNT162b2,3 +89,2021-08-10,2021-03-23,Alpha,421.9363738,Previously infected (Pre-Omicron),BNT162b2,3 +89,2021-10-08,2021-03-23,Alpha,447.848968718045,Previously infected (Pre-Omicron),BNT162b2,3 +89,2021-04-07,2021-03-23,Delta,848.457022200001,Previously infected (Pre-Omicron),BNT162b2,3 +89,2021-05-18,2021-03-23,Delta,633.1268378,Previously infected (Pre-Omicron),BNT162b2,3 +89,2021-08-10,2021-03-23,Delta,217.505870200001,Previously infected (Pre-Omicron),BNT162b2,3 +89,2021-10-08,2021-03-23,Delta,326.659577338246,Previously infected (Pre-Omicron),BNT162b2,3 +89,2021-10-27,2021-03-23,Delta,559.033150799998,Previously infected (Pre-Omicron),BNT162b2,3 +90,2021-04-19,2021-03-12,Ancestral,2052.72683499999,Infection naive,BNT162b2,2 +90,2021-07-08,2021-03-12,Ancestral,220.7710563,Infection naive,BNT162b2,2 +90,2021-04-19,2021-03-12,Alpha,649.995582700002,Infection naive,BNT162b2,2 +90,2021-07-08,2021-03-12,Alpha,315.958807000001,Infection naive,BNT162b2,2 +90,2021-04-19,2021-03-12,Delta,350.694162500001,Infection naive,BNT162b2,2 +90,2021-07-08,2021-03-12,Delta,178.419662,Infection naive,BNT162b2,2 +91,2021-06-11,2021-04-24,Ancestral,126.317704098264,Infection naive,AZD1222,1 +91,2021-06-11,2021-04-24,Alpha,144.572355573196,Infection naive,AZD1222,1 +91,2021-06-11,2021-04-24,Delta,5,Infection naive,AZD1222,1 +92,2021-04-20,2021-03-19,Ancestral,1644.46705,Previously infected (Pre-Omicron),BNT162b2,3 +92,2021-06-28,2021-03-19,Ancestral,117.0434584,Previously infected (Pre-Omicron),BNT162b2,3 +92,2021-04-20,2021-03-19,Alpha,574.934746699999,Previously infected (Pre-Omicron),BNT162b2,3 +92,2021-06-28,2021-03-19,Alpha,98.3097495,Previously infected (Pre-Omicron),BNT162b2,3 +92,2021-04-20,2021-03-19,Delta,241.2061618,Previously infected (Pre-Omicron),BNT162b2,3 +92,2021-06-28,2021-03-19,Delta,76.7806138099998,Previously infected (Pre-Omicron),BNT162b2,3 +93,2021-03-18,2021-03-05,Ancestral,2560,Infection naive,BNT162b2,2 +93,2021-09-17,2021-03-05,Ancestral,218.6527375,Infection naive,BNT162b2,2 +93,2021-03-18,2021-03-05,Alpha,837.375032099998,Infection naive,BNT162b2,2 +93,2021-09-17,2021-03-05,Alpha,224.675262,Infection naive,BNT162b2,2 +93,2021-03-18,2021-03-05,Delta,359.407310600001,Infection naive,BNT162b2,2 +93,2021-09-17,2021-03-05,Delta,219.4206732,Infection naive,BNT162b2,2 +94,2021-02-01,2021-01-11,Ancestral,1494.629897,Infection naive,BNT162b2,2 +94,2021-02-22,2021-01-11,Ancestral,1207.909069,Infection naive,BNT162b2,2 +94,2021-04-06,2021-01-11,Ancestral,641.505766099999,Infection naive,BNT162b2,2 +94,2021-02-01,2021-01-11,Alpha,685.694119700002,Infection naive,BNT162b2,2 +94,2021-02-22,2021-01-11,Alpha,473.6892911,Infection naive,BNT162b2,2 +94,2021-04-06,2021-01-11,Alpha,447.456604200001,Infection naive,BNT162b2,2 +94,2021-02-01,2021-01-11,Delta,1103.638055,Infection naive,BNT162b2,2 +94,2021-02-22,2021-01-11,Delta,1045.263996,Infection naive,BNT162b2,2 +94,2021-04-06,2021-01-11,Delta,190.8768368,Infection naive,BNT162b2,2 +95,2021-02-18,2021-01-20,Ancestral,146.485655279567,Infection naive,BNT162b2,1 +95,2021-02-18,2021-01-20,Alpha,164.597166448315,Infection naive,BNT162b2,1 +95,2021-02-18,2021-01-20,Delta,110.174700267007,Infection naive,BNT162b2,1 +96,2021-04-07,2021-03-04,Ancestral,732.926266099998,Infection naive,BNT162b2,2 +96,2021-06-30,2021-03-04,Ancestral,381.8142869,Infection naive,BNT162b2,2 +96,2021-04-07,2021-03-04,Alpha,1120.205809,Infection naive,BNT162b2,2 +96,2021-06-30,2021-03-04,Alpha,172.272703700001,Infection naive,BNT162b2,2 +96,2021-04-07,2021-03-04,Delta,651.706981500002,Infection naive,BNT162b2,2 +96,2021-06-30,2021-03-04,Delta,180.1482008,Infection naive,BNT162b2,2 +97,2021-04-15,2021-03-21,Ancestral,2435.337141,Previously infected (Pre-Omicron),BNT162b2,3 +97,2021-04-15,2021-03-21,Alpha,2152.219626,Previously infected (Pre-Omicron),BNT162b2,3 +97,2021-04-15,2021-03-21,Delta,406.329875899999,Previously infected (Pre-Omicron),BNT162b2,3 +98,2021-04-15,2021-03-22,Ancestral,290.2062941,Infection naive,BNT162b2,2 +98,2021-07-07,2021-03-22,Ancestral,82.3576725299998,Infection naive,BNT162b2,2 +98,2021-04-15,2021-03-22,Alpha,245.471750300001,Infection naive,BNT162b2,2 +98,2021-07-07,2021-03-22,Alpha,171.669778,Infection naive,BNT162b2,2 +98,2021-04-15,2021-03-22,Delta,96.4322180399998,Infection naive,BNT162b2,2 +98,2021-07-07,2021-03-22,Delta,53.7904550299999,Infection naive,BNT162b2,2 +99,2021-03-22,2021-03-10,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +99,2021-09-21,2021-03-10,Ancestral,134.310556301701,Previously infected (Pre-Omicron),BNT162b2,3 +99,2021-03-22,2021-03-10,Alpha,700.271046999999,Previously infected (Pre-Omicron),BNT162b2,3 +99,2021-09-21,2021-03-10,Alpha,87.9535289881869,Previously infected (Pre-Omicron),BNT162b2,3 +99,2021-03-22,2021-03-10,Delta,399.269038800001,Previously infected (Pre-Omicron),BNT162b2,3 +99,2021-09-21,2021-03-10,Delta,54.9339671726918,Previously infected (Pre-Omicron),BNT162b2,3 +100,2021-03-08,2021-03-08,Ancestral,95.1726835550794,Infection naive,BNT162b2,2 +100,2021-04-13,2021-03-08,Ancestral,2560,Infection naive,BNT162b2,2 +100,2021-07-06,2021-03-08,Ancestral,117.5575229,Infection naive,BNT162b2,2 +100,2021-03-08,2021-03-08,Alpha,5,Infection naive,BNT162b2,2 +100,2021-04-13,2021-03-08,Alpha,201.8901902,Infection naive,BNT162b2,2 +100,2021-07-06,2021-03-08,Alpha,133.606076800001,Infection naive,BNT162b2,2 +100,2021-03-08,2021-03-08,Delta,5,Infection naive,BNT162b2,2 +100,2021-04-13,2021-03-08,Delta,79.45059724,Infection naive,BNT162b2,2 +100,2021-07-06,2021-03-08,Delta,57.3446769799999,Infection naive,BNT162b2,2 +101,2021-04-23,2021-03-19,Ancestral,934.333704000001,Previously infected (Pre-Omicron),AZD1222,2 +101,2021-04-23,2021-03-19,Alpha,532.723038468038,Previously infected (Pre-Omicron),AZD1222,2 +101,2021-04-23,2021-03-19,Delta,649.995582700002,Previously infected (Pre-Omicron),AZD1222,2 +102,2021-05-25,2021-04-14,Ancestral,121.645490188642,Infection naive,"",1 +102,2021-05-25,2021-04-14,Alpha,122.608877763544,Infection naive,"",1 +102,2021-05-25,2021-04-14,Delta,154.260170083228,Infection naive,"",1 +103,2021-04-08,2021-02-26,Ancestral,182.8525756,Infection naive,BNT162b2,2 +103,2021-04-08,2021-02-26,Alpha,199.777854400001,Infection naive,BNT162b2,2 +103,2021-04-08,2021-02-26,Delta,120.583935,Infection naive,BNT162b2,2 +104,2021-05-26,2021-04-22,Ancestral,91.65245542,Infection naive,AZD1222,2 +104,2021-06-29,2021-04-22,Ancestral,5,Infection naive,AZD1222,2 +104,2021-05-26,2021-04-22,Alpha,5,Infection naive,AZD1222,2 +104,2021-05-26,2021-04-22,Delta,5,Infection naive,AZD1222,2 +104,2021-06-29,2021-04-22,Delta,5,Infection naive,AZD1222,2 +105,2021-02-19,2021-01-08,Ancestral,266.319234099999,Infection naive,BNT162b2,2 +105,2021-02-19,2021-01-08,Alpha,227.6486598,Infection naive,BNT162b2,2 +105,2021-02-19,2021-01-08,Delta,155.4818539,Infection naive,BNT162b2,2 +106,2021-04-15,2021-02-24,Ancestral,380.478000600002,Infection naive,BNT162b2,2 +106,2021-04-15,2021-02-24,Alpha,304.538995399999,Infection naive,BNT162b2,2 +106,2021-04-15,2021-02-24,Delta,180.7809038,Infection naive,BNT162b2,2 +107,2021-04-07,2021-04-01,Ancestral,761.076822999998,Previously infected (Pre-Omicron),BNT162b2,3 +107,2021-07-01,2021-04-01,Ancestral,452.187752400001,Previously infected (Pre-Omicron),BNT162b2,3 +107,2021-10-04,2021-04-01,Ancestral,246.549882300001,Previously infected (Pre-Omicron),BNT162b2,3 +107,2021-04-07,2021-04-01,Alpha,1171.41634518555,Previously infected (Pre-Omicron),BNT162b2,3 +107,2021-07-01,2021-04-01,Alpha,367.369678499999,Previously infected (Pre-Omicron),BNT162b2,3 +107,2021-10-04,2021-04-01,Alpha,349.160620479432,Previously infected (Pre-Omicron),BNT162b2,3 +107,2021-04-07,2021-04-01,Delta,786.8526775,Previously infected (Pre-Omicron),BNT162b2,3 +107,2021-07-01,2021-04-01,Delta,488.445967700001,Previously infected (Pre-Omicron),BNT162b2,3 +107,2021-10-04,2021-04-01,Delta,214.288976000001,Previously infected (Pre-Omicron),BNT162b2,3 +108,2021-05-11,2021-04-22,Ancestral,124.449475455526,Infection naive,AZD1222,1 +108,2021-05-11,2021-04-22,Alpha,5,Infection naive,AZD1222,1 +108,2021-05-11,2021-04-22,Delta,5,Infection naive,AZD1222,1 +109,2021-04-16,2021-03-10,Ancestral,458.573856899999,Infection naive,BNT162b2,2 +109,2021-04-16,2021-03-10,Alpha,350.3869162,Infection naive,BNT162b2,2 +109,2021-04-16,2021-03-10,Delta,148.164318200001,Infection naive,BNT162b2,2 +110,2021-03-10,2021-02-28,Ancestral,517.988937699999,Infection naive,BNT162b2,2 +110,2021-03-31,2021-02-28,Ancestral,2560,Infection naive,BNT162b2,2 +110,2021-03-10,2021-02-28,Alpha,544.525071300002,Infection naive,BNT162b2,2 +110,2021-03-31,2021-02-28,Alpha,201.3600216,Infection naive,BNT162b2,2 +110,2021-03-10,2021-02-28,Delta,214.288976000001,Infection naive,BNT162b2,2 +110,2021-03-31,2021-02-28,Delta,125.5450607,Infection naive,BNT162b2,2 +111,2021-04-19,2021-04-11,Ancestral,1211.089419,Infection naive,BNT162b2,2 +111,2021-07-07,2021-04-11,Ancestral,81.2107586800002,Infection naive,BNT162b2,2 +111,2021-04-19,2021-04-11,Alpha,527.149266099999,Infection naive,BNT162b2,2 +111,2021-07-07,2021-04-11,Alpha,209.6444781,Infection naive,BNT162b2,2 +111,2021-04-19,2021-04-11,Delta,254.676618,Infection naive,BNT162b2,2 +111,2021-07-07,2021-04-11,Delta,116.8384626,Infection naive,BNT162b2,2 +112,2021-06-04,2021-05-02,Ancestral,766.4322048,Infection naive,AZD1222,2 +112,2021-06-28,2021-05-02,Ancestral,73.6818878699998,Infection naive,AZD1222,2 +112,2021-06-04,2021-05-02,Alpha,45.6185921499999,Infection naive,AZD1222,2 +112,2021-06-28,2021-05-02,Alpha,40.1389579100002,Infection naive,AZD1222,2 +112,2021-06-04,2021-05-02,Delta,41.1001878499999,Infection naive,AZD1222,2 +112,2021-06-28,2021-05-02,Delta,5,Infection naive,AZD1222,2 +113,2021-03-22,2021-02-26,Ancestral,2560,Infection naive,BNT162b2,2 +113,2021-03-22,2021-02-26,Alpha,378.8142175,Infection naive,BNT162b2,2 +113,2021-03-22,2021-02-26,Delta,142.8091625,Infection naive,BNT162b2,2 +114,2021-03-31,2021-03-11,Ancestral,2560,Infection naive,BNT162b2,2 +114,2021-05-12,2021-03-11,Ancestral,374.194229200001,Infection naive,BNT162b2,2 +114,2021-07-28,2021-03-11,Ancestral,131.7454771,Infection naive,BNT162b2,2 +114,2021-03-31,2021-03-11,Alpha,361.936310700001,Infection naive,BNT162b2,2 +114,2021-05-12,2021-03-11,Alpha,368.0142372,Infection naive,BNT162b2,2 +114,2021-07-28,2021-03-11,Alpha,119.8463632,Infection naive,BNT162b2,2 +114,2021-03-31,2021-03-11,Delta,301.3526661,Infection naive,BNT162b2,2 +114,2021-05-12,2021-03-11,Delta,186.7397735,Infection naive,BNT162b2,2 +114,2021-07-28,2021-03-11,Delta,76.7133456300002,Infection naive,BNT162b2,2 +115,2021-03-18,2021-03-08,Ancestral,2560,Infection naive,BNT162b2,2 +115,2021-03-18,2021-03-08,Alpha,2256.534692,Infection naive,BNT162b2,2 +115,2021-03-18,2021-03-08,Delta,1176.561302,Infection naive,BNT162b2,2 +116,2021-03-02,2021-02-27,Ancestral,5,Infection naive,AZD1222,1 +116,2021-03-02,2021-02-27,Alpha,5,Infection naive,AZD1222,1 +116,2021-04-20,2021-02-27,Alpha,5,Infection naive,AZD1222,1 +116,2021-03-02,2021-02-27,Delta,5,Infection naive,AZD1222,1 +116,2021-04-20,2021-02-27,Delta,5,Infection naive,AZD1222,1 +117,2021-04-19,2021-03-17,Ancestral,2036.59773000001,Infection naive,BNT162b2,2 +117,2021-06-29,2021-03-17,Ancestral,298.9848162,Infection naive,BNT162b2,2 +117,2021-12-20,2021-03-17,Ancestral,395.438015100001,Infection naive,BNT162b2,2 +117,2021-04-19,2021-03-17,Alpha,1022.608951,Infection naive,BNT162b2,2 +117,2021-06-29,2021-03-17,Alpha,910.0857901,Infection naive,BNT162b2,2 +117,2021-12-20,2021-03-17,Alpha,324.092880833301,Infection naive,BNT162b2,2 +117,2021-04-19,2021-03-17,Delta,538.8278166,Infection naive,BNT162b2,2 +117,2021-06-29,2021-03-17,Delta,446.672906199999,Infection naive,BNT162b2,2 +117,2021-12-20,2021-03-17,Delta,266.085909400001,Infection naive,BNT162b2,2 +118,2021-06-11,2021-05-06,Ancestral,145.589651248851,Previously infected (Pre-Omicron),mRNA1273,2 +118,2021-06-11,2021-05-06,Alpha,149.20688905334,Previously infected (Pre-Omicron),mRNA1273,2 +118,2021-06-11,2021-05-06,Delta,69.6624519845714,Previously infected (Pre-Omicron),mRNA1273,2 +119,2021-02-02,2021-01-12,Ancestral,493.6105138,Infection naive,BNT162b2,2 +119,2021-02-23,2021-01-12,Ancestral,367.369678499999,Infection naive,BNT162b2,2 +119,2021-04-06,2021-01-12,Ancestral,184.9479879,Infection naive,BNT162b2,2 +119,2021-02-02,2021-01-12,Alpha,238.0556849,Infection naive,BNT162b2,2 +119,2021-02-23,2021-01-12,Alpha,118.2810085,Infection naive,BNT162b2,2 +119,2021-04-06,2021-01-12,Alpha,114.7075639,Infection naive,BNT162b2,2 +119,2021-02-02,2021-01-12,Delta,169.5761069,Infection naive,BNT162b2,2 +119,2021-02-23,2021-01-12,Delta,138.9810967,Infection naive,BNT162b2,2 +119,2021-04-06,2021-01-12,Delta,93.60086235,Infection naive,BNT162b2,2 +120,2021-04-23,2021-03-13,Ancestral,1041.605746,Infection naive,BNT162b2,2 +120,2021-06-28,2021-03-13,Ancestral,661.490370600001,Infection naive,BNT162b2,2 +120,2021-04-23,2021-03-13,Alpha,665.561388300001,Infection naive,BNT162b2,2 +120,2021-06-28,2021-03-13,Alpha,385.5133232,Infection naive,BNT162b2,2 +120,2021-04-23,2021-03-13,Delta,1132.050219,Infection naive,BNT162b2,2 +120,2021-06-28,2021-03-13,Delta,390.615284299999,Infection naive,BNT162b2,2 +121,2021-02-08,2021-01-12,Ancestral,114.707563909016,Infection naive,BNT162b2,1 +121,2021-03-01,2021-01-12,Ancestral,116.327542543632,Infection naive,BNT162b2,1 +121,2021-02-08,2021-01-12,Alpha,59.3387915012427,Infection naive,BNT162b2,1 +121,2021-03-01,2021-01-12,Alpha,5,Infection naive,BNT162b2,1 +121,2021-02-08,2021-01-12,Delta,5,Infection naive,BNT162b2,1 +121,2021-03-01,2021-01-12,Delta,5,Infection naive,BNT162b2,1 +122,2021-04-20,2021-03-11,Ancestral,1847.789234,Infection naive,BNT162b2,2 +122,2021-06-28,2021-03-11,Ancestral,199.953035,Infection naive,BNT162b2,2 +122,2021-09-30,2021-03-11,Ancestral,163.0178413,Infection naive,BNT162b2,2 +122,2021-04-20,2021-03-11,Alpha,927.805124399998,Infection naive,BNT162b2,2 +122,2021-06-28,2021-03-11,Alpha,350.694162500001,Infection naive,BNT162b2,2 +122,2021-09-30,2021-03-11,Alpha,200.831245125291,Infection naive,BNT162b2,2 +122,2021-04-20,2021-03-11,Delta,775.21519,Infection naive,BNT162b2,2 +122,2021-06-28,2021-03-11,Delta,193.912157500001,Infection naive,BNT162b2,2 +122,2021-09-30,2021-03-11,Delta,95.7584058700001,Infection naive,BNT162b2,2 +123,2021-05-28,2021-04-12,Ancestral,185.1101646,Infection naive,AZD1222,2 +123,2021-07-07,2021-04-12,Ancestral,157.5395321,Infection naive,AZD1222,2 +123,2021-05-28,2021-04-12,Alpha,87.4921992100002,Infection naive,AZD1222,2 +123,2021-07-07,2021-04-12,Alpha,74.8535761800001,Infection naive,AZD1222,2 +123,2021-05-28,2021-04-12,Delta,70.2141530000002,Infection naive,AZD1222,2 +123,2021-07-07,2021-04-12,Delta,79.93956094,Infection naive,AZD1222,2 +124,2021-06-02,2021-04-20,Ancestral,141.3149794,Infection naive,AZD1222,1 +124,2021-06-02,2021-04-20,Alpha,56.1509832100001,Infection naive,AZD1222,1 +124,2021-06-02,2021-04-20,Delta,5,Infection naive,AZD1222,1 +125,2021-04-07,2021-03-12,Ancestral,2560,Infection naive,BNT162b2,2 +125,2021-06-30,2021-03-12,Ancestral,115.1104312,Infection naive,BNT162b2,2 +125,2021-04-07,2021-03-12,Alpha,809.234558300001,Infection naive,BNT162b2,2 +125,2021-06-30,2021-03-12,Alpha,159.6244421,Infection naive,BNT162b2,2 +125,2021-04-07,2021-03-12,Delta,377.15771,Infection naive,BNT162b2,2 +125,2021-06-30,2021-03-12,Delta,116.6338259,Infection naive,BNT162b2,2 +126,2021-06-09,2021-04-29,Ancestral,186.739773455233,Infection naive,AZD1222,1 +126,2021-06-09,2021-04-29,Alpha,114.105905100308,Infection naive,AZD1222,1 +126,2021-06-09,2021-04-29,Delta,5,Infection naive,AZD1222,1 +127,2021-04-15,2021-03-20,Ancestral,674.369561900001,Infection naive,BNT162b2,2 +127,2021-07-07,2021-03-20,Ancestral,99.7855700200003,Infection naive,BNT162b2,2 +127,2021-04-15,2021-03-20,Alpha,357.2089356,Infection naive,BNT162b2,2 +127,2021-07-07,2021-03-20,Alpha,204.741421500001,Infection naive,BNT162b2,2 +127,2021-04-15,2021-03-20,Delta,256.0194795,Infection naive,BNT162b2,2 +127,2021-07-07,2021-03-20,Delta,84.2560552900003,Infection naive,BNT162b2,2 +128,2021-04-15,2021-03-11,Ancestral,416.060483272753,Infection naive,BNT162b2,2 +128,2021-07-07,2021-03-11,Ancestral,243.116426,Infection naive,BNT162b2,2 +128,2021-09-29,2021-03-11,Ancestral,177.328328299999,Infection naive,BNT162b2,2 +128,2021-04-15,2021-03-11,Alpha,457.770687576985,Infection naive,BNT162b2,2 +128,2021-07-07,2021-03-11,Alpha,366.404956600001,Infection naive,BNT162b2,2 +128,2021-09-29,2021-03-11,Alpha,227.050848726935,Infection naive,BNT162b2,2 +128,2021-04-15,2021-03-11,Delta,306.950832311165,Infection naive,BNT162b2,2 +128,2021-07-07,2021-03-11,Delta,262.3803941,Infection naive,BNT162b2,2 +128,2021-09-29,2021-03-11,Delta,255.7951785,Infection naive,BNT162b2,2 +129,2021-03-09,2021-02-24,Ancestral,494.4765649,Previously infected (Pre-Omicron),BNT162b2,3 +129,2021-04-27,2021-02-24,Ancestral,278.982720200001,Previously infected (Pre-Omicron),BNT162b2,3 +129,2021-07-20,2021-02-24,Ancestral,143.8140513,Previously infected (Pre-Omicron),BNT162b2,3 +129,2021-03-09,2021-02-24,Alpha,843.267292800003,Previously infected (Pre-Omicron),BNT162b2,3 +129,2021-04-27,2021-02-24,Alpha,168.2436788,Previously infected (Pre-Omicron),BNT162b2,3 +129,2021-07-20,2021-02-24,Alpha,155.8912282,Previously infected (Pre-Omicron),BNT162b2,3 +129,2021-03-09,2021-02-24,Delta,282.6748337,Previously infected (Pre-Omicron),BNT162b2,3 +129,2021-04-27,2021-02-24,Delta,155.0735547,Previously infected (Pre-Omicron),BNT162b2,3 +129,2021-07-20,2021-02-24,Delta,163.733829,Previously infected (Pre-Omicron),BNT162b2,3 +130,2021-02-12,2021-01-13,Ancestral,166.483379566172,Infection naive,BNT162b2,1 +130,2021-02-12,2021-01-13,Alpha,168.096279036151,Infection naive,BNT162b2,1 +130,2021-02-12,2021-01-13,Delta,191.044212302065,Infection naive,BNT162b2,1 +131,2021-03-17,2021-02-26,Ancestral,2560,Infection naive,BNT162b2,2 +131,2021-04-28,2021-02-26,Ancestral,890.360596700001,Infection naive,BNT162b2,2 +131,2021-07-21,2021-02-26,Ancestral,418.621048999999,Infection naive,BNT162b2,2 +131,2021-03-17,2021-02-26,Alpha,1469.945388,Infection naive,BNT162b2,2 +131,2021-04-28,2021-02-26,Alpha,563.954573599998,Infection naive,BNT162b2,2 +131,2021-03-17,2021-02-26,Delta,996.943540999999,Infection naive,BNT162b2,2 +131,2021-04-28,2021-02-26,Delta,365.1226004,Infection naive,BNT162b2,2 +131,2021-07-21,2021-02-26,Delta,445.499932,Infection naive,BNT162b2,2 +132,2021-06-11,2021-04-23,Ancestral,1880.466295,Infection naive,AZD1222,2 +132,2021-06-28,2021-04-23,Ancestral,290.2062941,Infection naive,AZD1222,2 +132,2021-09-22,2021-04-23,Ancestral,570.91743762185,Infection naive,AZD1222,2 +132,2021-12-20,2021-04-23,Ancestral,780.670057600001,Infection naive,AZD1222,2 +132,2021-06-11,2021-04-23,Alpha,308.028882,Infection naive,AZD1222,2 +132,2021-06-28,2021-04-23,Alpha,510.327923100001,Infection naive,AZD1222,2 +132,2021-09-22,2021-04-23,Alpha,625.405272831979,Infection naive,AZD1222,2 +132,2021-12-20,2021-04-23,Alpha,473.274287620173,Infection naive,AZD1222,2 +132,2021-06-11,2021-04-23,Delta,328.958145200001,Infection naive,AZD1222,2 +132,2021-06-28,2021-04-23,Delta,274.134808000001,Infection naive,AZD1222,2 +132,2021-09-22,2021-04-23,Delta,435.080810005539,Infection naive,AZD1222,2 +132,2021-12-20,2021-04-23,Delta,745.887634099998,Infection naive,AZD1222,2 +133,2021-04-15,2021-03-21,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +133,2021-07-07,2021-03-21,Ancestral,332.1451085,Previously infected (Pre-Omicron),BNT162b2,3 +133,2021-11-23,2021-03-21,Ancestral,352.543306400001,Previously infected (Pre-Omicron),BNT162b2,3 +133,2021-04-15,2021-03-21,Alpha,1791.964782,Previously infected (Pre-Omicron),BNT162b2,3 +133,2021-07-07,2021-03-21,Alpha,528.537218,Previously infected (Pre-Omicron),BNT162b2,3 +133,2021-11-23,2021-03-21,Alpha,315.12909135797,Previously infected (Pre-Omicron),BNT162b2,3 +133,2021-04-15,2021-03-21,Delta,1244.447409,Previously infected (Pre-Omicron),BNT162b2,3 +133,2021-07-07,2021-03-21,Delta,293.531934100001,Previously infected (Pre-Omicron),BNT162b2,3 +133,2021-11-23,2021-03-21,Delta,177.639455,Previously infected (Pre-Omicron),BNT162b2,3 +134,2021-02-02,2021-01-03,Ancestral,136.9255775,Previously infected (Pre-Omicron),BNT162b2,2 +134,2021-02-02,2021-01-03,Alpha,101.461249822687,Previously infected (Pre-Omicron),BNT162b2,2 +134,2021-02-25,2021-01-03,Alpha,125.325174773812,Previously infected (Pre-Omicron),BNT162b2,2 +134,2021-02-02,2021-01-03,Delta,47.1222645000002,Previously infected (Pre-Omicron),BNT162b2,2 +134,2021-02-25,2021-01-03,Delta,5,Previously infected (Pre-Omicron),BNT162b2,2 +135,2021-06-11,2021-04-28,Ancestral,2065.35995499999,Previously infected (Pre-Omicron),AZD1222,3 +135,2021-07-08,2021-04-28,Ancestral,2560,Previously infected (Pre-Omicron),AZD1222,3 +135,2021-09-20,2021-04-28,Ancestral,1593.388057,Previously infected (Pre-Omicron),AZD1222,3 +135,2021-06-11,2021-04-28,Alpha,881.044935599999,Previously infected (Pre-Omicron),AZD1222,3 +135,2021-07-08,2021-04-28,Alpha,815.643398595694,Previously infected (Pre-Omicron),AZD1222,3 +135,2021-09-20,2021-04-28,Alpha,447.848968718045,Previously infected (Pre-Omicron),AZD1222,3 +135,2021-06-11,2021-04-28,Delta,1216.408623,Previously infected (Pre-Omicron),AZD1222,3 +135,2021-07-08,2021-04-28,Delta,854.427262200003,Previously infected (Pre-Omicron),AZD1222,3 +135,2021-09-20,2021-04-28,Delta,1009.252303,Previously infected (Pre-Omicron),AZD1222,3 +136,2021-04-12,2021-02-25,Ancestral,2560,Infection naive,BNT162b2,2 +136,2021-07-05,2021-02-25,Ancestral,196.650717500001,Infection naive,BNT162b2,2 +136,2021-10-04,2021-02-25,Ancestral,168.096279036151,Infection naive,BNT162b2,2 +136,2021-04-12,2021-02-25,Alpha,454.5720527,Infection naive,BNT162b2,2 +136,2021-07-05,2021-02-25,Alpha,166.0461901,Infection naive,BNT162b2,2 +136,2021-10-04,2021-02-25,Alpha,327.519652092377,Infection naive,BNT162b2,2 +136,2021-04-12,2021-02-25,Delta,180.9394264,Infection naive,BNT162b2,2 +136,2021-07-05,2021-02-25,Delta,111.8286368,Infection naive,BNT162b2,2 +136,2021-10-04,2021-02-25,Delta,148.164318226981,Infection naive,BNT162b2,2 +137,2021-06-11,2021-04-22,Ancestral,255.347166000001,Infection naive,AZD1222,2 +137,2021-07-08,2021-04-22,Ancestral,150.1251547,Infection naive,AZD1222,2 +137,2021-09-17,2021-04-22,Ancestral,156.4387377,Infection naive,AZD1222,2 +137,2021-06-11,2021-04-22,Alpha,162.7323236,Infection naive,AZD1222,2 +137,2021-07-08,2021-04-22,Alpha,94.8395950400003,Infection naive,AZD1222,2 +137,2021-09-17,2021-04-22,Alpha,5,Infection naive,AZD1222,2 +137,2021-06-11,2021-04-22,Delta,65.74692666,Infection naive,AZD1222,2 +137,2021-07-08,2021-04-22,Delta,43.3574594500001,Infection naive,AZD1222,2 +137,2021-09-17,2021-04-22,Delta,5,Infection naive,AZD1222,2 +138,2021-03-11,2021-03-11,Ancestral,101.639265952646,Infection naive,BNT162b2,2 +138,2021-04-15,2021-03-11,Ancestral,2560,Infection naive,BNT162b2,2 +138,2021-07-08,2021-03-11,Ancestral,130.0247039,Infection naive,BNT162b2,2 +138,2021-03-11,2021-03-11,Alpha,5,Infection naive,BNT162b2,2 +138,2021-04-15,2021-03-11,Alpha,741.975338799998,Infection naive,BNT162b2,2 +138,2021-07-08,2021-03-11,Alpha,177.951127500001,Infection naive,BNT162b2,2 +138,2021-03-11,2021-03-11,Delta,5,Infection naive,BNT162b2,2 +138,2021-04-15,2021-03-11,Delta,468.733176700001,Infection naive,BNT162b2,2 +138,2021-07-08,2021-03-11,Delta,139.469215700001,Infection naive,BNT162b2,2 +139,2021-04-08,2021-03-01,Ancestral,2560,Infection naive,BNT162b2,2 +139,2021-04-08,2021-03-01,Alpha,1264.236594,Infection naive,BNT162b2,2 +139,2021-04-08,2021-03-01,Delta,707.055308599998,Infection naive,BNT162b2,2 +140,2021-04-28,2021-03-12,Ancestral,1079.717811,Infection naive,BNT162b2,2 +140,2021-07-20,2021-03-12,Ancestral,97.7940997500001,Infection naive,BNT162b2,2 +140,2021-04-28,2021-03-12,Alpha,482.912002799999,Infection naive,BNT162b2,2 +140,2021-07-20,2021-03-12,Alpha,181.2568889,Infection naive,BNT162b2,2 +140,2021-09-29,2021-03-12,Alpha,110.078175224005,Infection naive,BNT162b2,2 +140,2021-04-28,2021-03-12,Delta,238.4733591,Infection naive,BNT162b2,2 +140,2021-07-20,2021-03-12,Delta,75.8442035,Infection naive,BNT162b2,2 +140,2021-09-29,2021-03-12,Delta,70.5843789200002,Infection naive,BNT162b2,2 +141,2021-02-04,2021-01-13,Ancestral,1038.870464,Infection naive,BNT162b2,3 +141,2021-02-25,2021-01-13,Ancestral,2560,Infection naive,BNT162b2,3 +141,2021-04-09,2021-01-13,Ancestral,348.8547177,Infection naive,BNT162b2,3 +141,2021-02-04,2021-01-13,Alpha,452.981126300002,Infection naive,BNT162b2,3 +141,2021-02-25,2021-01-13,Alpha,442.387037999999,Infection naive,BNT162b2,3 +141,2021-04-09,2021-01-13,Alpha,408.4723763,Infection naive,BNT162b2,3 +141,2021-02-04,2021-01-13,Delta,249.375238500001,Infection naive,BNT162b2,3 +141,2021-02-25,2021-01-13,Delta,185.5975484,Infection naive,BNT162b2,3 +141,2021-04-09,2021-01-13,Delta,97.6228182400002,Infection naive,BNT162b2,3 +142,2021-04-23,2021-04-09,Ancestral,429.7745987,Previously infected (Pre-Omicron),AZD1222,4 +142,2021-07-08,2021-04-09,Ancestral,129.9107881,Previously infected (Pre-Omicron),AZD1222,4 +142,2021-04-23,2021-04-09,Alpha,485.8839935,Previously infected (Pre-Omicron),AZD1222,4 +142,2021-07-08,2021-04-09,Alpha,286.164878000001,Previously infected (Pre-Omicron),AZD1222,4 +142,2021-10-20,2021-04-09,Alpha,254.899938100001,Previously infected (Pre-Omicron),AZD1222,4 +142,2021-04-23,2021-04-09,Delta,183.9779073,Previously infected (Pre-Omicron),AZD1222,4 +142,2021-07-08,2021-04-09,Delta,123.579895,Previously infected (Pre-Omicron),AZD1222,4 +142,2021-10-20,2021-04-09,Delta,144.4456944,Previously infected (Pre-Omicron),AZD1222,4 +143,2021-02-17,2021-01-11,Ancestral,731.001583499999,Infection naive,BNT162b2,2 +143,2021-03-10,2021-01-11,Ancestral,285.4134019,Infection naive,BNT162b2,2 +143,2021-04-26,2021-01-11,Ancestral,222.9098976,Infection naive,BNT162b2,2 +143,2021-07-19,2021-01-11,Ancestral,138.6161289,Infection naive,BNT162b2,2 +143,2021-02-17,2021-01-11,Alpha,179.2032958,Infection naive,BNT162b2,2 +143,2021-03-10,2021-01-11,Alpha,178.2633469,Infection naive,BNT162b2,2 +143,2021-04-26,2021-01-11,Alpha,237.4305447,Infection naive,BNT162b2,2 +143,2021-07-19,2021-01-11,Alpha,110.5616476,Infection naive,BNT162b2,2 +143,2021-02-17,2021-01-11,Delta,320.140269600001,Infection naive,BNT162b2,2 +143,2021-03-10,2021-01-11,Delta,167.9490084,Infection naive,BNT162b2,2 +143,2021-04-26,2021-01-11,Delta,149.468676,Infection naive,BNT162b2,2 +143,2021-07-19,2021-01-11,Delta,61.9971178600002,Infection naive,BNT162b2,2 +144,2021-06-04,2021-05-05,Ancestral,265.6198731,Infection naive,AZD1222,2 +144,2021-06-04,2021-05-05,Alpha,85.22159364,Infection naive,AZD1222,2 +144,2021-06-04,2021-05-05,Delta,160.3255257,Infection naive,AZD1222,2 +145,2021-04-20,2021-04-13,Ancestral,184.3007008,Infection naive,AZD1222,2 +145,2021-07-08,2021-04-13,Ancestral,56.3481924800002,Infection naive,AZD1222,2 +145,2021-04-20,2021-04-13,Alpha,145.9729799,Infection naive,AZD1222,2 +145,2021-07-08,2021-04-13,Alpha,96.1789846400002,Infection naive,AZD1222,2 +145,2021-04-20,2021-04-13,Delta,68.93358797,Infection naive,AZD1222,2 +145,2021-07-08,2021-04-13,Delta,125.8756132,Infection naive,AZD1222,2 +146,2021-06-02,2021-04-28,Ancestral,2560,Previously infected (Pre-Omicron),AZD1222,3 +146,2021-07-16,2021-04-28,Ancestral,264.2266561,Previously infected (Pre-Omicron),AZD1222,3 +146,2021-09-20,2021-04-28,Ancestral,231.674491839836,Previously infected (Pre-Omicron),AZD1222,3 +146,2021-06-02,2021-04-28,Alpha,492.745979499999,Previously infected (Pre-Omicron),AZD1222,3 +146,2021-07-16,2021-04-28,Alpha,245.2566903,Previously infected (Pre-Omicron),AZD1222,3 +146,2021-06-02,2021-04-28,Delta,342.192248199999,Previously infected (Pre-Omicron),AZD1222,3 +146,2021-07-16,2021-04-28,Delta,201.3600216,Previously infected (Pre-Omicron),AZD1222,3 +146,2021-09-20,2021-04-28,Delta,278.738300902528,Previously infected (Pre-Omicron),AZD1222,3 +147,2021-03-11,2021-03-11,Ancestral,141.4388953,Infection naive,BNT162b2,2 +147,2021-04-19,2021-03-11,Ancestral,479.537695000001,Infection naive,BNT162b2,2 +147,2021-06-28,2021-03-11,Ancestral,284.4145027,Infection naive,BNT162b2,2 +147,2021-10-01,2021-03-11,Ancestral,166.337522,Infection naive,BNT162b2,2 +147,2021-03-11,2021-03-11,Alpha,5,Infection naive,BNT162b2,2 +147,2021-04-19,2021-03-11,Alpha,619.404450899999,Infection naive,BNT162b2,2 +147,2021-06-28,2021-03-11,Alpha,138.859334100001,Infection naive,BNT162b2,2 +147,2021-10-01,2021-03-11,Alpha,131.630053697801,Infection naive,BNT162b2,2 +147,2021-03-11,2021-03-11,Delta,5,Infection naive,BNT162b2,2 +147,2021-04-19,2021-03-11,Delta,291.480903899999,Infection naive,BNT162b2,2 +147,2021-06-28,2021-03-11,Delta,193.4029393,Infection naive,BNT162b2,2 +147,2021-10-01,2021-03-11,Delta,58.40995721,Infection naive,BNT162b2,2 +148,2021-05-26,2021-04-29,Ancestral,289.9520417,Infection naive,AZD1222,2 +148,2021-07-07,2021-04-29,Ancestral,373.8663943,Infection naive,AZD1222,2 +148,2021-05-26,2021-04-29,Alpha,54.4068706399999,Infection naive,AZD1222,2 +148,2021-07-07,2021-04-29,Alpha,98.9147783000003,Infection naive,AZD1222,2 +148,2021-05-26,2021-04-29,Delta,72.2113817700003,Infection naive,AZD1222,2 +148,2021-07-07,2021-04-29,Delta,99.7855700200003,Infection naive,AZD1222,2 +149,2021-02-12,2021-01-06,Ancestral,220.191306000001,Infection naive,BNT162b2,2 +149,2021-02-12,2021-01-06,Alpha,164.021103800001,Infection naive,BNT162b2,2 +149,2021-03-09,2021-01-06,Alpha,202.954718900001,Infection naive,BNT162b2,2 +149,2021-04-13,2021-01-06,Alpha,116.6338259,Infection naive,BNT162b2,2 +149,2021-07-06,2021-01-06,Alpha,48.8036602599998,Infection naive,BNT162b2,2 +149,2021-02-12,2021-01-06,Delta,90.2178130599998,Infection naive,BNT162b2,2 +149,2021-03-09,2021-01-06,Delta,94.2594927799998,Infection naive,BNT162b2,2 +149,2021-04-13,2021-01-06,Delta,70.64627275,Infection naive,BNT162b2,2 +149,2021-07-06,2021-01-06,Delta,41.5711784200001,Infection naive,BNT162b2,2 +150,2021-03-12,2021-02-24,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +150,2021-04-01,2021-02-24,Ancestral,1273.13250237821,Previously infected (Pre-Omicron),BNT162b2,3 +150,2021-05-13,2021-02-24,Ancestral,1333.669984,Previously infected (Pre-Omicron),BNT162b2,3 +150,2021-08-05,2021-02-24,Ancestral,607.57499,Previously infected (Pre-Omicron),BNT162b2,3 +150,2021-03-12,2021-02-24,Alpha,2560,Previously infected (Pre-Omicron),BNT162b2,3 +150,2021-04-01,2021-02-24,Alpha,1143.01757944835,Previously infected (Pre-Omicron),BNT162b2,3 +150,2021-05-13,2021-02-24,Alpha,1211.089419,Previously infected (Pre-Omicron),BNT162b2,3 +150,2021-08-05,2021-02-24,Alpha,440.838757200001,Previously infected (Pre-Omicron),BNT162b2,3 +150,2021-03-12,2021-02-24,Delta,877.961425299999,Previously infected (Pre-Omicron),BNT162b2,3 +150,2021-04-01,2021-02-24,Delta,950.856843638419,Previously infected (Pre-Omicron),BNT162b2,3 +150,2021-05-13,2021-02-24,Delta,1060.025929,Previously infected (Pre-Omicron),BNT162b2,3 +150,2021-08-05,2021-02-24,Delta,525.764959,Previously infected (Pre-Omicron),BNT162b2,3 +151,2021-04-15,2021-03-09,Ancestral,1182.765086,Infection naive,BNT162b2,2 +151,2021-04-15,2021-03-09,Alpha,1210.028373,Infection naive,BNT162b2,2 +151,2021-04-15,2021-03-09,Delta,782.725514299998,Infection naive,BNT162b2,2 +152,2021-03-11,2021-03-04,Ancestral,777.937842600003,Previously infected (Pre-Omicron),BNT162b2,3 +152,2021-04-19,2021-03-04,Ancestral,422.306360200001,Previously infected (Pre-Omicron),BNT162b2,3 +152,2021-07-08,2021-03-04,Ancestral,161.0296885,Previously infected (Pre-Omicron),BNT162b2,3 +152,2021-03-11,2021-03-04,Alpha,398.9192356,Previously infected (Pre-Omicron),BNT162b2,3 +152,2021-04-19,2021-03-04,Alpha,560.996545100001,Previously infected (Pre-Omicron),BNT162b2,3 +152,2021-07-08,2021-03-04,Alpha,262.8407466,Previously infected (Pre-Omicron),BNT162b2,3 +152,2021-03-11,2021-03-04,Delta,243.756536699999,Previously infected (Pre-Omicron),BNT162b2,3 +152,2021-04-19,2021-03-04,Delta,172.4237657,Previously infected (Pre-Omicron),BNT162b2,3 +152,2021-07-08,2021-03-04,Delta,127.9894181,Previously infected (Pre-Omicron),BNT162b2,3 +153,2021-04-20,2021-03-22,Ancestral,739.378548899999,Previously infected (Pre-Omicron),BNT162b2,3 +153,2021-07-07,2021-03-22,Ancestral,253.1188458,Previously infected (Pre-Omicron),BNT162b2,3 +153,2021-10-08,2021-03-22,Ancestral,439.6811036,Previously infected (Pre-Omicron),BNT162b2,3 +153,2021-04-20,2021-03-22,Alpha,598.589004999999,Previously infected (Pre-Omicron),BNT162b2,3 +153,2021-07-07,2021-03-22,Alpha,420.091298400001,Previously infected (Pre-Omicron),BNT162b2,3 +153,2021-10-08,2021-03-22,Alpha,409.906982324407,Previously infected (Pre-Omicron),BNT162b2,3 +153,2021-04-20,2021-03-22,Delta,565.935252499999,Previously infected (Pre-Omicron),BNT162b2,3 +153,2021-07-07,2021-03-22,Delta,288.1785015,Previously infected (Pre-Omicron),BNT162b2,3 +153,2021-10-08,2021-03-22,Delta,142.6840461,Previously infected (Pre-Omicron),BNT162b2,3 +154,2021-04-07,2021-02-25,Ancestral,160.888609,Infection naive,BNT162b2,2 +154,2021-04-07,2021-02-25,Alpha,321.8283086,Infection naive,BNT162b2,2 +154,2021-04-07,2021-02-25,Delta,170.6197311,Infection naive,BNT162b2,2 +155,2021-04-09,2021-03-22,Ancestral,1181.728855,Infection naive,BNT162b2,2 +155,2021-09-24,2021-03-22,Ancestral,279.227353800001,Infection naive,BNT162b2,2 +155,2021-04-09,2021-03-22,Alpha,1078.771861,Infection naive,BNT162b2,2 +155,2021-09-24,2021-03-22,Alpha,354.712967615556,Infection naive,BNT162b2,2 +155,2021-04-09,2021-03-22,Delta,1343.054466,Infection naive,BNT162b2,2 +155,2021-09-24,2021-03-22,Delta,266.552763300001,Infection naive,BNT162b2,2 +156,2021-02-12,2021-01-26,Ancestral,185.9231836,Previously infected (Pre-Omicron),others,3 +156,2021-04-15,2021-01-26,Ancestral,306.681909900001,Previously infected (Pre-Omicron),others,3 +156,2021-06-28,2021-01-26,Ancestral,90.3761023199997,Previously infected (Pre-Omicron),others,3 +156,2021-12-13,2021-01-26,Ancestral,139.469215684706,Previously infected (Pre-Omicron),others,3 +156,2021-02-12,2021-01-26,Alpha,218.4611738,Previously infected (Pre-Omicron),others,3 +156,2021-04-15,2021-01-26,Alpha,128.7771048,Previously infected (Pre-Omicron),others,3 +156,2021-06-28,2021-01-26,Alpha,119.9514538,Previously infected (Pre-Omicron),others,3 +156,2021-12-13,2021-01-26,Alpha,112.418287978578,Previously infected (Pre-Omicron),others,3 +156,2021-02-12,2021-01-26,Delta,60.8130894199999,Previously infected (Pre-Omicron),others,3 +156,2021-04-15,2021-01-26,Delta,91.4117737899999,Previously infected (Pre-Omicron),others,3 +156,2021-06-28,2021-01-26,Delta,50.58937264,Previously infected (Pre-Omicron),others,3 +156,2021-12-13,2021-01-26,Delta,97.1107715442805,Previously infected (Pre-Omicron),others,3 +157,2021-03-03,2021-02-26,Ancestral,154.260170083228,Infection naive,BNT162b2,2 +157,2021-04-14,2021-02-26,Ancestral,617.7778794,Infection naive,BNT162b2,2 +157,2021-06-23,2021-02-26,Ancestral,109.9817347,Infection naive,BNT162b2,2 +157,2021-03-03,2021-02-26,Alpha,125.105673950083,Infection naive,BNT162b2,2 +157,2021-04-14,2021-02-26,Alpha,161.1708918,Infection naive,BNT162b2,2 +157,2021-06-23,2021-02-26,Alpha,92.7840422799997,Infection naive,BNT162b2,2 +157,2021-03-03,2021-02-26,Delta,57.394961222384,Infection naive,BNT162b2,2 +157,2021-04-14,2021-02-26,Delta,102.4442116,Infection naive,BNT162b2,2 +157,2021-06-23,2021-02-26,Delta,46.6292338600001,Infection naive,BNT162b2,2 +158,2021-04-15,2021-03-26,Ancestral,140.943882757322,Infection naive,AZD1222,1 +158,2021-04-15,2021-03-26,Alpha,50.6781328723178,Infection naive,AZD1222,1 +158,2021-04-15,2021-03-26,Delta,5,Infection naive,AZD1222,1 +159,2021-03-05,2021-03-02,Ancestral,97.9656817769744,Infection naive,BNT162b2,2 +159,2021-03-05,2021-03-02,Alpha,57.1439801799681,Infection naive,BNT162b2,2 +159,2021-03-05,2021-03-02,Delta,5,Infection naive,BNT162b2,2 +160,2021-03-03,2021-02-24,Ancestral,1448.205014,Previously infected (Pre-Omicron),BNT162b2,3 +160,2021-04-14,2021-02-24,Ancestral,633.6820123,Previously infected (Pre-Omicron),BNT162b2,3 +160,2021-03-03,2021-02-24,Alpha,911.682556900002,Previously infected (Pre-Omicron),BNT162b2,3 +160,2021-04-14,2021-02-24,Alpha,362.5713364,Previously infected (Pre-Omicron),BNT162b2,3 +160,2021-03-03,2021-02-24,Delta,227.050848700001,Previously infected (Pre-Omicron),BNT162b2,3 +160,2021-04-14,2021-02-24,Delta,184.6240607,Previously infected (Pre-Omicron),BNT162b2,3 +161,2021-05-26,2021-04-09,Ancestral,499.704875025919,Previously infected (Pre-Omicron),AZD1222,2 +161,2021-05-26,2021-04-09,Alpha,769.798437800932,Previously infected (Pre-Omicron),AZD1222,2 +161,2021-05-26,2021-04-09,Delta,359.407310556111,Previously infected (Pre-Omicron),AZD1222,2 +162,2021-04-19,2021-03-29,Ancestral,1862.423045,Infection naive,BNT162b2,2 +162,2021-06-28,2021-03-29,Ancestral,228.2480448,Infection naive,BNT162b2,2 +162,2021-04-19,2021-03-29,Alpha,1116.285275,Infection naive,BNT162b2,2 +162,2021-06-28,2021-03-29,Alpha,352.543306400001,Infection naive,BNT162b2,2 +162,2021-09-29,2021-03-29,Alpha,225.464349655178,Infection naive,BNT162b2,2 +162,2021-04-19,2021-03-29,Delta,513.018785499999,Infection naive,BNT162b2,2 +162,2021-06-28,2021-03-29,Delta,190.8768368,Infection naive,BNT162b2,2 +162,2021-09-29,2021-03-29,Delta,282.6748337,Infection naive,BNT162b2,2 +163,2021-02-12,2021-01-19,Ancestral,104.530376317928,Infection naive,BNT162b2,1 +163,2021-02-12,2021-01-19,Alpha,46.1818220151127,Infection naive,BNT162b2,1 +163,2021-02-12,2021-01-19,Delta,5,Infection naive,BNT162b2,1 +164,2021-04-23,2021-03-24,Ancestral,355.335319799999,Previously infected (Pre-Omicron),BNT162b2,3 +164,2021-06-28,2021-03-24,Ancestral,70.64627275,Previously infected (Pre-Omicron),BNT162b2,3 +164,2021-04-23,2021-03-24,Alpha,316.513164100001,Previously infected (Pre-Omicron),BNT162b2,3 +164,2021-06-28,2021-03-24,Alpha,154.5308232,Previously infected (Pre-Omicron),BNT162b2,3 +164,2021-04-23,2021-03-24,Delta,174.094216,Previously infected (Pre-Omicron),BNT162b2,3 +164,2021-06-28,2021-03-24,Delta,89.8233017599999,Previously infected (Pre-Omicron),BNT162b2,3 +165,2021-05-04,2021-03-23,Ancestral,168.2436788,Infection naive,BNT162b2,2 +165,2021-05-04,2021-03-23,Alpha,79.3114434600003,Infection naive,BNT162b2,2 +165,2021-05-04,2021-03-23,Delta,165.0305408,Infection naive,BNT162b2,2 +166,2021-04-06,2021-03-11,Ancestral,2376.29701499999,Infection naive,BNT162b2,2 +166,2021-07-02,2021-03-11,Ancestral,1585.030492,Infection naive,BNT162b2,2 +166,2021-04-06,2021-03-11,Alpha,1757.741623,Infection naive,BNT162b2,2 +166,2021-07-02,2021-03-11,Alpha,878.731289700001,Infection naive,BNT162b2,2 +166,2021-04-06,2021-03-11,Delta,1449.47491200001,Infection naive,BNT162b2,2 +166,2021-07-02,2021-03-11,Delta,1034.327612,Infection naive,BNT162b2,2 +167,2021-05-25,2021-04-27,Ancestral,322.110512499999,Infection naive,BNT162b2,3 +167,2021-06-28,2021-04-27,Ancestral,542.619324400001,Infection naive,BNT162b2,3 +167,2021-09-20,2021-04-27,Ancestral,192.726061299999,Infection naive,BNT162b2,3 +167,2021-05-25,2021-04-27,Alpha,360.669594000001,Infection naive,BNT162b2,3 +167,2021-06-28,2021-04-27,Alpha,433.558099799999,Infection naive,BNT162b2,3 +167,2021-09-20,2021-04-27,Alpha,175.934987838245,Infection naive,BNT162b2,3 +167,2021-05-25,2021-04-27,Delta,305.608574399999,Infection naive,BNT162b2,3 +167,2021-06-28,2021-04-27,Delta,277.276275700001,Infection naive,BNT162b2,3 +167,2021-09-20,2021-04-27,Delta,107.8812903,Infection naive,BNT162b2,3 +168,2021-04-15,2021-03-24,Ancestral,1478.991889,Infection naive,BNT162b2,2 +168,2021-06-28,2021-03-24,Ancestral,199.602827200001,Infection naive,BNT162b2,2 +168,2021-04-15,2021-03-24,Alpha,611.850243099998,Infection naive,BNT162b2,2 +168,2021-06-28,2021-03-24,Alpha,321.546351899999,Infection naive,BNT162b2,2 +168,2021-04-15,2021-03-24,Delta,343.695184599999,Infection naive,BNT162b2,2 +168,2021-06-28,2021-03-24,Delta,201.3600216,Infection naive,BNT162b2,2 +169,2021-02-01,2021-01-21,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +169,2021-02-25,2021-01-21,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +169,2021-04-07,2021-01-21,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +169,2021-02-01,2021-01-21,Alpha,2250.608976,Previously infected (Pre-Omicron),BNT162b2,3 +169,2021-02-25,2021-01-21,Alpha,2560,Previously infected (Pre-Omicron),BNT162b2,3 +169,2021-04-07,2021-01-21,Alpha,2560,Previously infected (Pre-Omicron),BNT162b2,3 +169,2021-02-01,2021-01-21,Delta,1299.058458,Previously infected (Pre-Omicron),BNT162b2,3 +169,2021-02-25,2021-01-21,Delta,997.817738100004,Previously infected (Pre-Omicron),BNT162b2,3 +169,2021-04-07,2021-01-21,Delta,849.2010148,Previously infected (Pre-Omicron),BNT162b2,3 +170,2021-05-26,2021-04-30,Ancestral,2482.75305900001,Previously infected (Pre-Omicron),AZD1222,3 +170,2021-07-08,2021-04-30,Ancestral,301.6169153,Previously infected (Pre-Omicron),AZD1222,3 +170,2021-12-02,2021-04-30,Ancestral,353.7814825,Previously infected (Pre-Omicron),AZD1222,3 +170,2021-05-26,2021-04-30,Alpha,460.991830000001,Previously infected (Pre-Omicron),AZD1222,3 +170,2021-07-08,2021-04-30,Alpha,322.9586098,Previously infected (Pre-Omicron),AZD1222,3 +170,2021-12-02,2021-04-30,Alpha,161.31221889536,Previously infected (Pre-Omicron),AZD1222,3 +170,2021-05-26,2021-04-30,Delta,220.191306000001,Previously infected (Pre-Omicron),AZD1222,3 +170,2021-07-08,2021-04-30,Delta,255.5710741,Previously infected (Pre-Omicron),AZD1222,3 +170,2021-12-02,2021-04-30,Delta,183.0129149,Previously infected (Pre-Omicron),AZD1222,3 +171,2021-04-15,2021-03-19,Ancestral,659.753280500002,Infection naive,BNT162b2,2 +171,2021-06-28,2021-03-19,Ancestral,118.0738452,Infection naive,BNT162b2,2 +171,2021-04-15,2021-03-19,Alpha,350.694162500001,Infection naive,BNT162b2,2 +171,2021-06-28,2021-03-19,Alpha,171.2189689,Infection naive,BNT162b2,2 +171,2021-04-15,2021-03-19,Delta,192.3885111,Infection naive,BNT162b2,2 +171,2021-06-28,2021-03-19,Delta,82.7919289299998,Infection naive,BNT162b2,2 +172,2021-03-02,2021-02-25,Ancestral,161.453669903554,Infection naive,BNT162b2,2 +172,2021-04-14,2021-02-25,Ancestral,1194.223775,Infection naive,BNT162b2,2 +172,2021-09-16,2021-02-25,Ancestral,267.7234849,Infection naive,BNT162b2,2 +172,2021-03-02,2021-02-25,Alpha,182.372400207781,Infection naive,BNT162b2,2 +172,2021-04-14,2021-02-25,Alpha,648.857147700003,Infection naive,BNT162b2,2 +172,2021-09-16,2021-02-25,Alpha,133.606076800001,Infection naive,BNT162b2,2 +172,2021-03-02,2021-02-25,Delta,96.2633217966529,Infection naive,BNT162b2,2 +172,2021-04-14,2021-02-25,Delta,211.861138,Infection naive,BNT162b2,2 +172,2021-09-16,2021-02-25,Delta,164.741498,Infection naive,BNT162b2,2 +173,2021-02-25,2021-02-25,Ancestral,106.7525503898,Infection naive,BNT162b2,2 +173,2021-04-06,2021-02-25,Ancestral,2560,Infection naive,BNT162b2,2 +173,2021-07-02,2021-02-25,Ancestral,155.3456349,Infection naive,BNT162b2,2 +173,2021-02-25,2021-02-25,Alpha,5,Infection naive,BNT162b2,2 +173,2021-04-06,2021-02-25,Alpha,983.922117299998,Infection naive,BNT162b2,2 +173,2021-07-02,2021-02-25,Alpha,167.06809,Infection naive,BNT162b2,2 +173,2021-02-25,2021-02-25,Delta,5,Infection naive,BNT162b2,2 +173,2021-04-06,2021-02-25,Delta,307.759015099999,Infection naive,BNT162b2,2 +173,2021-07-02,2021-02-25,Delta,107.5037238,Infection naive,BNT162b2,2 +174,2021-03-22,2021-02-24,Ancestral,431.2840209,Infection naive,BNT162b2,2 +174,2021-03-22,2021-02-24,Alpha,200.4794992,Infection naive,BNT162b2,2 +174,2021-03-22,2021-02-24,Delta,84.2560552900003,Infection naive,BNT162b2,2 +175,2021-01-29,2021-01-05,Ancestral,108.8310183,Infection naive,BNT162b2,2 +175,2021-02-19,2021-01-05,Ancestral,118.6964262,Infection naive,BNT162b2,2 +175,2021-04-06,2021-01-05,Ancestral,92.7840422799997,Infection naive,BNT162b2,2 +175,2021-07-06,2021-01-05,Ancestral,56.1509832100001,Infection naive,BNT162b2,2 +175,2021-01-29,2021-01-05,Alpha,88.6500886099999,Infection naive,BNT162b2,2 +175,2021-02-19,2021-01-05,Alpha,50.2799342700001,Infection naive,BNT162b2,2 +175,2021-04-06,2021-01-05,Alpha,46.4253300100001,Infection naive,BNT162b2,2 +175,2021-07-06,2021-01-05,Alpha,5,Infection naive,BNT162b2,2 +175,2021-01-29,2021-01-05,Delta,44.47365804,Infection naive,BNT162b2,2 +175,2021-02-19,2021-01-05,Delta,5,Infection naive,BNT162b2,2 +175,2021-04-06,2021-01-05,Delta,5,Infection naive,BNT162b2,2 +175,2021-07-06,2021-01-05,Delta,5,Infection naive,BNT162b2,2 +176,2021-04-15,2021-04-15,Ancestral,198.034467000762,Infection naive,AZD1222,2 +176,2021-04-15,2021-04-15,Alpha,171.970976643965,Infection naive,AZD1222,2 +176,2021-04-15,2021-04-15,Delta,126.317704098264,Infection naive,AZD1222,2 +177,2021-04-12,2021-03-07,Ancestral,2560,Infection naive,BNT162b2,2 +177,2021-06-28,2021-03-07,Ancestral,181.5749083,Infection naive,BNT162b2,2 +177,2021-04-12,2021-03-07,Alpha,450.605170699999,Infection naive,BNT162b2,2 +177,2021-06-28,2021-03-07,Alpha,199.2532328,Infection naive,BNT162b2,2 +177,2021-04-12,2021-03-07,Delta,254.4534935,Infection naive,BNT162b2,2 +177,2021-06-28,2021-03-07,Delta,194.9346195,Infection naive,BNT162b2,2 +178,2021-03-23,2021-03-09,Ancestral,1632.97647200001,Infection naive,BNT162b2,2 +178,2021-10-08,2021-03-09,Ancestral,655.143308864813,Infection naive,BNT162b2,2 +178,2021-03-23,2021-03-09,Alpha,1040.693186,Infection naive,BNT162b2,2 +178,2021-10-08,2021-03-09,Alpha,905.312250251336,Infection naive,BNT162b2,2 +178,2021-03-23,2021-03-09,Delta,258.0470597,Infection naive,BNT162b2,2 +179,2021-06-02,2021-04-17,Ancestral,1002.200235,Previously infected (Pre-Omicron),AZD1222,4 +179,2021-07-07,2021-04-17,Ancestral,248.7203729,Previously infected (Pre-Omicron),AZD1222,4 +179,2021-06-02,2021-04-17,Alpha,509.434109100002,Previously infected (Pre-Omicron),AZD1222,4 +179,2021-07-07,2021-04-17,Alpha,206.3628983,Previously infected (Pre-Omicron),AZD1222,4 +179,2021-06-02,2021-04-17,Delta,181.4158289,Previously infected (Pre-Omicron),AZD1222,4 +179,2021-07-07,2021-04-17,Delta,161.1708918,Previously infected (Pre-Omicron),AZD1222,4 +180,2021-04-19,2021-03-29,Ancestral,2560,Infection naive,BNT162b2,2 +180,2021-07-08,2021-03-29,Ancestral,437.374908599999,Infection naive,BNT162b2,2 +180,2021-04-19,2021-03-29,Alpha,2122.24779199999,Infection naive,BNT162b2,2 +180,2021-07-08,2021-03-29,Alpha,744.581248899999,Infection naive,BNT162b2,2 +180,2021-04-19,2021-03-29,Delta,1028.902405,Infection naive,BNT162b2,2 +180,2021-07-08,2021-03-29,Delta,191.7151835,Infection naive,BNT162b2,2 +181,2021-04-15,2021-03-28,Ancestral,2205.69245200001,Infection naive,BNT162b2,2 +181,2021-07-07,2021-03-28,Ancestral,197.6876195,Infection naive,BNT162b2,2 +181,2021-04-15,2021-03-28,Alpha,1715.128513,Infection naive,BNT162b2,2 +181,2021-07-07,2021-03-28,Alpha,273.175381900001,Infection naive,BNT162b2,2 +181,2021-04-15,2021-03-28,Delta,771.825270199999,Infection naive,BNT162b2,2 +181,2021-07-07,2021-03-28,Delta,176.5528935,Infection naive,BNT162b2,2 +182,2021-04-23,2021-03-22,Ancestral,1099.775506,Infection naive,BNT162b2,2 +182,2021-07-07,2021-03-22,Ancestral,293.7893255,Infection naive,BNT162b2,2 +182,2021-12-02,2021-03-22,Ancestral,322.9586098,Infection naive,BNT162b2,2 +182,2021-04-23,2021-03-22,Alpha,1143.017579,Infection naive,BNT162b2,2 +182,2021-07-07,2021-03-22,Alpha,213.1649974,Infection naive,BNT162b2,2 +182,2021-04-23,2021-03-22,Delta,642.0682879,Infection naive,BNT162b2,2 +182,2021-07-07,2021-03-22,Delta,247.199033100001,Infection naive,BNT162b2,2 +182,2021-12-02,2021-03-22,Delta,160.6068206,Infection naive,BNT162b2,2 +183,2021-04-19,2021-03-13,Ancestral,808.5255807,Infection naive,BNT162b2,2 +183,2021-07-08,2021-03-13,Ancestral,262.3803941,Infection naive,BNT162b2,2 +183,2021-04-19,2021-03-13,Alpha,529.464548799999,Infection naive,BNT162b2,2 +183,2021-07-08,2021-03-13,Alpha,319.0198321,Infection naive,BNT162b2,2 +183,2021-04-19,2021-03-13,Delta,245.471750300001,Infection naive,BNT162b2,2 +183,2021-07-08,2021-03-13,Delta,148.164318200001,Infection naive,BNT162b2,2 +184,2021-03-22,2021-03-13,Ancestral,2560,Infection naive,BNT162b2,2 +184,2021-09-22,2021-03-13,Ancestral,296.375686400001,Infection naive,BNT162b2,2 +184,2021-03-22,2021-03-13,Alpha,1016.353992,Infection naive,BNT162b2,2 +184,2021-09-22,2021-03-13,Alpha,171.820311329011,Infection naive,BNT162b2,2 +184,2021-03-22,2021-03-13,Delta,505.8744803,Infection naive,BNT162b2,2 +184,2021-09-22,2021-03-13,Delta,130.1387196,Infection naive,BNT162b2,2 +185,2021-04-15,2021-03-29,Ancestral,2027.691941,Infection naive,BNT162b2,2 +185,2021-06-28,2021-03-29,Ancestral,176.089261200001,Infection naive,BNT162b2,2 +185,2021-12-02,2021-03-29,Ancestral,328.094293000001,Infection naive,BNT162b2,2 +185,2021-04-15,2021-03-29,Alpha,1184.840275,Infection naive,BNT162b2,2 +185,2021-06-28,2021-03-29,Alpha,436.608868200001,Infection naive,BNT162b2,2 +185,2021-12-02,2021-03-29,Alpha,193.912157451256,Infection naive,BNT162b2,2 +185,2021-04-15,2021-03-29,Delta,651.1360152,Infection naive,BNT162b2,2 +185,2021-06-28,2021-03-29,Delta,288.431198699999,Infection naive,BNT162b2,2 +185,2021-12-02,2021-03-29,Delta,245.2566903,Infection naive,BNT162b2,2 +186,2021-04-19,2021-03-29,Ancestral,513.918889000001,Infection naive,BNT162b2,2 +186,2021-07-08,2021-03-29,Ancestral,114.406339,Infection naive,BNT162b2,2 +186,2021-04-19,2021-03-29,Alpha,467.5022717,Infection naive,BNT162b2,2 +186,2021-07-08,2021-03-29,Alpha,155.2095352,Infection naive,BNT162b2,2 +186,2021-04-19,2021-03-29,Delta,148.0345101,Infection naive,BNT162b2,2 +186,2021-07-08,2021-03-29,Delta,80.9265345799999,Infection naive,BNT162b2,2 +186,2022-06-22,2021-03-29,Delta,116.8384626,Infection naive,BNT162b2,2 +186,2022-06-22,2021-03-29,Delta,116.8384626,Infection naive,BNT162b2,2 +187,2021-02-24,2021-01-10,Ancestral,203.1326853,Infection naive,BNT162b2,2 +187,2021-04-07,2021-01-10,Ancestral,82.5745152699999,Infection naive,BNT162b2,2 +187,2021-05-19,2021-01-10,Ancestral,5,Infection naive,BNT162b2,2 +187,2021-02-24,2021-01-10,Alpha,46.3846563599999,Infection naive,BNT162b2,2 +187,2021-04-07,2021-01-10,Alpha,5,Infection naive,BNT162b2,2 +187,2021-02-24,2021-01-10,Delta,5,Infection naive,BNT162b2,2 +187,2021-04-07,2021-01-10,Delta,5,Infection naive,BNT162b2,2 +187,2021-05-19,2021-01-10,Delta,5,Infection naive,BNT162b2,2 +188,2021-04-23,2021-04-08,Ancestral,519.352771,Previously infected (Pre-Omicron),AZD1222,3 +188,2021-06-29,2021-04-08,Ancestral,151.0490716,Previously infected (Pre-Omicron),AZD1222,3 +188,2021-10-08,2021-04-08,Ancestral,124.8865576,Previously infected (Pre-Omicron),AZD1222,3 +188,2021-04-23,2021-04-08,Alpha,233.509268699999,Previously infected (Pre-Omicron),AZD1222,3 +188,2021-06-29,2021-04-08,Alpha,99.0883265799999,Previously infected (Pre-Omicron),AZD1222,3 +188,2021-10-08,2021-04-08,Alpha,89.5089351915363,Previously infected (Pre-Omicron),AZD1222,3 +188,2021-04-23,2021-04-08,Delta,166.337522,Previously infected (Pre-Omicron),AZD1222,3 +188,2021-06-29,2021-04-08,Delta,90.2969230099998,Previously infected (Pre-Omicron),AZD1222,3 +188,2021-10-08,2021-04-08,Delta,68.69233191,Previously infected (Pre-Omicron),AZD1222,3 +189,2021-04-12,2021-03-09,Ancestral,2560,Infection naive,BNT162b2,2 +189,2021-04-12,2021-03-09,Alpha,620.491210500002,Infection naive,BNT162b2,2 +189,2021-04-12,2021-03-09,Delta,358.463498,Infection naive,BNT162b2,2 +190,2021-02-03,2021-01-10,Ancestral,682.097548600003,Infection naive,BNT162b2,2 +190,2021-02-24,2021-01-10,Ancestral,364.483106299999,Infection naive,BNT162b2,2 +190,2021-02-03,2021-01-10,Alpha,472.031457600001,Infection naive,BNT162b2,2 +190,2021-02-24,2021-01-10,Alpha,1016.353992,Infection naive,BNT162b2,2 +190,2021-04-07,2021-01-10,Alpha,1026.200481,Infection naive,BNT162b2,2 +190,2021-07-01,2021-01-10,Alpha,179.675127100001,Infection naive,BNT162b2,2 +190,2021-02-03,2021-01-10,Delta,361.302397200001,Infection naive,BNT162b2,2 +190,2021-02-24,2021-01-10,Delta,423.047306599999,Infection naive,BNT162b2,2 +190,2021-04-07,2021-01-10,Delta,404.1986132,Infection naive,BNT162b2,2 +190,2021-07-01,2021-01-10,Delta,115.1104312,Infection naive,BNT162b2,2 +191,2021-04-15,2021-03-25,Ancestral,363.844732199999,Infection naive,BNT162b2,2 +191,2021-04-15,2021-03-25,Alpha,504.988466300001,Infection naive,BNT162b2,2 +191,2021-04-15,2021-03-25,Delta,349.160620500001,Infection naive,BNT162b2,2 +192,2021-04-20,2021-03-20,Ancestral,832.982871400002,Previously infected (Pre-Omicron),BNT162b2,3 +192,2021-06-29,2021-03-20,Ancestral,172.1217741,Previously infected (Pre-Omicron),BNT162b2,3 +192,2021-04-20,2021-03-20,Alpha,765.7607266,Previously infected (Pre-Omicron),BNT162b2,3 +192,2021-06-29,2021-03-20,Alpha,336.2459375,Previously infected (Pre-Omicron),BNT162b2,3 +192,2021-04-20,2021-03-20,Delta,591.8071482,Previously infected (Pre-Omicron),BNT162b2,3 +192,2021-06-29,2021-03-20,Delta,115.8188566,Previously infected (Pre-Omicron),BNT162b2,3 +193,2021-04-12,2021-03-02,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +193,2021-07-09,2021-03-02,Ancestral,526.687425899999,Previously infected (Pre-Omicron),BNT162b2,3 +193,2021-04-12,2021-03-02,Alpha,1170.390057,Previously infected (Pre-Omicron),BNT162b2,3 +193,2021-07-09,2021-03-02,Alpha,560.013987499999,Previously infected (Pre-Omicron),BNT162b2,3 +193,2021-04-12,2021-03-02,Delta,524.384287100001,Previously infected (Pre-Omicron),BNT162b2,3 +193,2021-07-09,2021-03-02,Delta,506.318070100001,Previously infected (Pre-Omicron),BNT162b2,3 +194,2021-02-18,2021-01-10,Ancestral,670.8323899,Infection naive,BNT162b2,2 +194,2021-03-12,2021-01-10,Ancestral,660.331803100001,Infection naive,BNT162b2,2 +194,2021-04-28,2021-01-10,Ancestral,290.2062941,Infection naive,BNT162b2,2 +194,2021-07-21,2021-01-10,Ancestral,156.164743,Infection naive,BNT162b2,2 +194,2021-02-18,2021-01-10,Alpha,169.8736322,Infection naive,BNT162b2,2 +194,2021-03-12,2021-01-10,Alpha,133.9578534,Infection naive,BNT162b2,2 +194,2021-04-28,2021-01-10,Alpha,97.87985316,Infection naive,BNT162b2,2 +194,2021-07-21,2021-01-10,Alpha,80.7847957700002,Infection naive,BNT162b2,2 +194,2021-02-18,2021-01-10,Delta,190.042156000001,Infection naive,BNT162b2,2 +194,2021-03-12,2021-01-10,Delta,193.4029393,Infection naive,BNT162b2,2 +194,2021-04-28,2021-01-10,Delta,149.0761676,Infection naive,BNT162b2,2 +194,2021-07-21,2021-01-10,Delta,80.50206246,Infection naive,BNT162b2,2 +195,2021-02-03,2020-12-27,Ancestral,500.14305484178,Infection naive,BNT162b2,1 +195,2021-02-03,2020-12-27,Alpha,988.243583847195,Infection naive,BNT162b2,1 +195,2021-02-03,2020-12-27,Delta,249.156758622271,Infection naive,BNT162b2,1 +196,2021-02-24,2021-02-04,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +196,2021-04-07,2021-02-04,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +196,2021-07-01,2021-02-04,Ancestral,990.845569000003,Previously infected (Pre-Omicron),BNT162b2,3 +196,2021-02-24,2021-02-04,Alpha,1403.222141,Previously infected (Pre-Omicron),BNT162b2,3 +196,2021-04-07,2021-02-04,Alpha,2154.106858,Previously infected (Pre-Omicron),BNT162b2,3 +196,2021-07-01,2021-02-04,Alpha,1020.817902,Previously infected (Pre-Omicron),BNT162b2,3 +196,2021-02-24,2021-02-04,Delta,463.4225525,Previously infected (Pre-Omicron),BNT162b2,3 +197,2021-04-23,2021-03-19,Ancestral,430.151458299999,Infection naive,BNT162b2,2 +197,2021-06-29,2021-03-19,Ancestral,344.600113099999,Infection naive,BNT162b2,2 +197,2021-04-23,2021-03-19,Alpha,455.369609900001,Infection naive,BNT162b2,2 +197,2021-06-29,2021-03-19,Alpha,269.607344,Infection naive,BNT162b2,2 +197,2021-04-23,2021-03-19,Delta,274.375190600001,Infection naive,BNT162b2,2 +197,2021-06-29,2021-03-19,Delta,143.5621682,Infection naive,BNT162b2,2 +198,2021-04-20,2021-03-25,Ancestral,438.526490099999,Infection naive,BNT162b2,2 +198,2021-07-07,2021-03-25,Ancestral,220.191306000001,Infection naive,BNT162b2,2 +198,2021-11-02,2021-03-25,Ancestral,167.507970100001,Infection naive,BNT162b2,2 +198,2021-04-20,2021-03-25,Alpha,745.887634099998,Infection naive,BNT162b2,2 +198,2021-07-07,2021-03-25,Alpha,160.888609,Infection naive,BNT162b2,2 +198,2021-11-02,2021-03-25,Alpha,124.8865576,Infection naive,BNT162b2,2 +198,2021-04-20,2021-03-25,Delta,235.771518399999,Infection naive,BNT162b2,2 +198,2021-07-07,2021-03-25,Delta,136.5660075,Infection naive,BNT162b2,2 +198,2021-11-02,2021-03-25,Delta,51.3488175,Infection naive,BNT162b2,2 +199,2021-03-16,2021-03-03,Ancestral,2560,Infection naive,BNT162b2,2 +199,2021-04-07,2021-03-03,Ancestral,977.047042700003,Infection naive,BNT162b2,2 +199,2021-05-19,2021-03-03,Ancestral,1212.151396,Infection naive,BNT162b2,2 +199,2021-08-11,2021-03-03,Ancestral,5,Infection naive,BNT162b2,2 +199,2021-03-16,2021-03-03,Alpha,432.7987443,Infection naive,BNT162b2,2 +199,2021-04-07,2021-03-03,Alpha,505.8744803,Infection naive,BNT162b2,2 +199,2021-05-19,2021-03-03,Alpha,241.41767,Infection naive,BNT162b2,2 +199,2021-08-11,2021-03-03,Alpha,76.3109723399998,Infection naive,BNT162b2,2 +199,2021-03-16,2021-03-03,Delta,263.763876200001,Infection naive,BNT162b2,2 +199,2021-04-07,2021-03-03,Delta,255.347166000001,Infection naive,BNT162b2,2 +199,2021-05-19,2021-03-03,Delta,106.4722155,Infection naive,BNT162b2,2 +199,2021-08-11,2021-03-03,Delta,40.7058277100001,Infection naive,BNT162b2,2 +200,2021-04-15,2021-03-14,Ancestral,1625.835669,Previously infected (Pre-Omicron),BNT162b2,4 +200,2021-04-15,2021-03-14,Alpha,647.720706600002,Previously infected (Pre-Omicron),BNT162b2,4 +200,2021-04-15,2021-03-14,Delta,217.3153114,Previously infected (Pre-Omicron),BNT162b2,4 +201,2021-04-19,2021-03-21,Ancestral,1212.151396,Previously infected (Pre-Omicron),BNT162b2,3 +201,2021-06-29,2021-03-21,Ancestral,738.083564100002,Previously infected (Pre-Omicron),BNT162b2,3 +201,2021-04-19,2021-03-21,Alpha,678.519842099999,Previously infected (Pre-Omicron),BNT162b2,3 +201,2021-06-29,2021-03-21,Alpha,550.282565399999,Previously infected (Pre-Omicron),BNT162b2,3 +201,2021-04-19,2021-03-21,Delta,1399.537244,Previously infected (Pre-Omicron),BNT162b2,3 +201,2021-06-29,2021-03-21,Delta,940.083884500002,Previously infected (Pre-Omicron),BNT162b2,3 +202,2021-02-22,2021-01-05,Ancestral,177.328328281948,Infection naive,BNT162b2,2 +202,2021-02-22,2021-01-05,Alpha,176.862659680467,Infection naive,BNT162b2,2 +202,2021-03-15,2021-01-05,Alpha,93.1099114400002,Infection naive,BNT162b2,2 +202,2021-04-26,2021-01-05,Alpha,132.7888529,Infection naive,BNT162b2,2 +202,2021-07-19,2021-01-05,Alpha,63.2596215999999,Infection naive,BNT162b2,2 +202,2021-02-22,2021-01-05,Delta,119.636458255127,Infection naive,BNT162b2,2 +202,2021-03-15,2021-01-05,Delta,50.9900218800002,Infection naive,BNT162b2,2 +202,2021-04-26,2021-01-05,Delta,69.9071152200002,Infection naive,BNT162b2,2 +202,2021-07-19,2021-01-05,Delta,52.2111082799999,Infection naive,BNT162b2,2 +203,2021-04-19,2021-03-15,Ancestral,702.730486399999,Infection naive,BNT162b2,2 +203,2021-06-29,2021-03-15,Ancestral,278.494095800001,Infection naive,BNT162b2,2 +203,2021-04-19,2021-03-15,Alpha,844.746824900003,Infection naive,BNT162b2,2 +203,2021-06-29,2021-03-15,Alpha,304.538995399999,Infection naive,BNT162b2,2 +203,2021-04-19,2021-03-15,Delta,581.523253000001,Infection naive,BNT162b2,2 +203,2021-06-29,2021-03-15,Delta,158.5090795,Infection naive,BNT162b2,2 +204,2021-02-26,2021-02-25,Ancestral,139.8364296,Infection naive,BNT162b2,2 +204,2021-04-09,2021-02-25,Ancestral,267.0204364,Infection naive,BNT162b2,2 +204,2021-07-02,2021-02-25,Ancestral,268.428384500001,Infection naive,BNT162b2,2 +204,2021-02-26,2021-02-25,Alpha,5,Infection naive,BNT162b2,2 +204,2021-04-09,2021-02-25,Alpha,511.2233054,Infection naive,BNT162b2,2 +204,2021-07-02,2021-02-25,Alpha,89.4305156099998,Infection naive,BNT162b2,2 +204,2021-02-26,2021-02-25,Delta,5,Infection naive,BNT162b2,2 +204,2021-04-09,2021-02-25,Delta,324.0928808,Infection naive,BNT162b2,2 +204,2021-07-02,2021-02-25,Delta,186.2493902,Infection naive,BNT162b2,2 +205,2021-04-20,2021-03-30,Ancestral,753.113831499999,Infection naive,BNT162b2,2 +205,2021-06-28,2021-03-30,Ancestral,309.653059899999,Infection naive,BNT162b2,2 +205,2021-04-20,2021-03-30,Alpha,1009.252303,Infection naive,BNT162b2,2 +205,2021-06-28,2021-03-30,Alpha,280.4537432,Infection naive,BNT162b2,2 +205,2021-04-20,2021-03-30,Delta,455.768913199999,Infection naive,BNT162b2,2 +205,2021-06-28,2021-03-30,Delta,255.123454000001,Infection naive,BNT162b2,2 +206,2021-02-02,2021-01-10,Ancestral,699.657533199999,Infection naive,BNT162b2,2 +206,2021-02-22,2021-01-10,Ancestral,838.109307200003,Infection naive,BNT162b2,2 +206,2022-02-01,2021-01-10,Ancestral,868.775494099999,Infection naive,BNT162b2,2 +206,2022-08-11,2021-01-10,Ancestral,557.076628047233,Infection naive,BNT162b2,2 +206,2021-02-02,2021-01-10,Alpha,545.958772599999,Infection naive,BNT162b2,2 +206,2021-02-22,2021-01-10,Alpha,210.5652539,Infection naive,BNT162b2,2 +206,2021-02-02,2021-01-10,Delta,162.8750199,Infection naive,BNT162b2,2 +206,2021-02-22,2021-01-10,Delta,57.69759397,Infection naive,BNT162b2,2 +207,2021-04-20,2021-03-19,Ancestral,337.4268752,Infection naive,BNT162b2,2 +207,2021-06-28,2021-03-19,Ancestral,157.2636095,Infection naive,BNT162b2,2 +207,2021-04-20,2021-03-19,Alpha,531.324094499999,Infection naive,BNT162b2,2 +207,2021-06-28,2021-03-19,Alpha,135.1371453,Infection naive,BNT162b2,2 +207,2021-04-20,2021-03-19,Delta,315.958807000001,Infection naive,BNT162b2,2 +207,2021-06-28,2021-03-19,Delta,79.93956094,Infection naive,BNT162b2,2 +208,2021-03-25,2021-02-28,Ancestral,2560,Infection naive,BNT162b2,2 +208,2021-09-23,2021-02-28,Ancestral,160.606820581806,Infection naive,BNT162b2,2 +208,2021-03-25,2021-02-28,Alpha,1255.402845,Infection naive,BNT162b2,2 +208,2021-09-23,2021-02-28,Alpha,151.712491519182,Infection naive,BNT162b2,2 +208,2021-03-25,2021-02-28,Delta,388.226020499999,Infection naive,BNT162b2,2 +208,2021-09-23,2021-02-28,Delta,105.358218481155,Infection naive,BNT162b2,2 +209,2021-01-29,2021-01-11,Ancestral,927.805124399998,Infection naive,BNT162b2,2 +209,2021-02-19,2021-01-11,Ancestral,569.418194200001,Infection naive,BNT162b2,2 +209,2021-04-06,2021-01-11,Ancestral,978.7612945,Infection naive,BNT162b2,2 +209,2021-01-29,2021-01-11,Alpha,219.4206732,Infection naive,BNT162b2,2 +209,2021-02-19,2021-01-11,Alpha,276.5481413,Infection naive,BNT162b2,2 +209,2021-04-06,2021-01-11,Alpha,143.0597245,Infection naive,BNT162b2,2 +209,2021-01-29,2021-01-11,Delta,213.726247800001,Infection naive,BNT162b2,2 +209,2021-02-19,2021-01-11,Delta,192.3885111,Infection naive,BNT162b2,2 +209,2021-04-06,2021-01-11,Delta,109.3090131,Infection naive,BNT162b2,2 +210,2021-06-09,2021-05-01,Ancestral,72.3380783200001,Infection naive,AZD1222,2 +210,2021-06-09,2021-05-01,Alpha,5,Infection naive,AZD1222,2 +210,2021-06-09,2021-05-01,Delta,5,Infection naive,AZD1222,2 +211,2021-02-26,2021-02-25,Ancestral,99.9606461299999,Previously infected (Pre-Omicron),BNT162b2,3 +211,2021-04-09,2021-02-25,Ancestral,595.971449500002,Previously infected (Pre-Omicron),BNT162b2,3 +211,2021-07-02,2021-02-25,Ancestral,290.2062941,Previously infected (Pre-Omicron),BNT162b2,3 +211,2021-02-26,2021-02-25,Alpha,5,Previously infected (Pre-Omicron),BNT162b2,3 +211,2021-04-09,2021-02-25,Alpha,559.523354199999,Previously infected (Pre-Omicron),BNT162b2,3 +211,2021-07-02,2021-02-25,Alpha,172.272703700001,Previously infected (Pre-Omicron),BNT162b2,3 +211,2021-02-26,2021-02-25,Delta,5,Previously infected (Pre-Omicron),BNT162b2,3 +211,2021-04-09,2021-02-25,Delta,371.254033700001,Previously infected (Pre-Omicron),BNT162b2,3 +211,2021-07-02,2021-02-25,Delta,123.9052733,Previously infected (Pre-Omicron),BNT162b2,3 +212,2021-05-26,2021-05-05,Ancestral,465.050150400001,Infection naive,AZD1222,2 +212,2021-06-28,2021-05-05,Ancestral,67.5578460500001,Infection naive,AZD1222,2 +212,2021-05-26,2021-05-05,Alpha,149.7309223,Infection naive,AZD1222,2 +212,2021-06-28,2021-05-05,Alpha,74.9192135799999,Infection naive,AZD1222,2 +212,2021-05-26,2021-05-05,Delta,46.8751009699999,Infection naive,AZD1222,2 +212,2021-06-28,2021-05-05,Delta,51.3938441100001,Infection naive,AZD1222,2 +213,2021-04-01,2021-03-08,Ancestral,2560,Infection naive,BNT162b2,2 +213,2021-06-25,2021-03-08,Ancestral,102.6239523,Infection naive,BNT162b2,2 +213,2021-04-01,2021-03-08,Alpha,469.55558,Infection naive,BNT162b2,2 +213,2021-06-25,2021-03-08,Alpha,152.9139987,Infection naive,BNT162b2,2 +213,2021-04-01,2021-03-08,Delta,202.7769085,Infection naive,BNT162b2,2 +213,2021-06-25,2021-03-08,Delta,78.7572612900001,Infection naive,BNT162b2,2 +214,2021-01-29,2021-01-08,Ancestral,727.8050042,Infection naive,BNT162b2,2 +214,2021-02-22,2021-01-08,Ancestral,980.478554,Infection naive,BNT162b2,2 +214,2021-01-29,2021-01-08,Alpha,539.3003024,Infection naive,BNT162b2,2 +214,2021-02-22,2021-01-08,Alpha,334.189232900001,Infection naive,BNT162b2,2 +214,2021-04-14,2021-01-08,Alpha,203.8461127,Infection naive,BNT162b2,2 +214,2021-01-29,2021-01-08,Delta,236.8070462,Infection naive,BNT162b2,2 +214,2021-02-22,2021-01-08,Delta,184.139233300001,Infection naive,BNT162b2,2 +214,2021-04-14,2021-01-08,Delta,151.3140907,Infection naive,BNT162b2,2 +215,2021-05-28,2021-04-26,Ancestral,181.7341272,Infection naive,AZD1222,1 +215,2021-05-28,2021-04-26,Alpha,5,Infection naive,AZD1222,1 +215,2021-05-28,2021-04-26,Delta,5,Infection naive,AZD1222,1 +216,2021-02-01,2021-01-12,Ancestral,617.7778794,Infection naive,BNT162b2,2 +216,2021-02-22,2021-01-12,Ancestral,477.440736200001,Infection naive,BNT162b2,2 +216,2021-02-01,2021-01-12,Alpha,371.254033700001,Infection naive,BNT162b2,2 +216,2021-02-22,2021-01-12,Alpha,232.284476699999,Infection naive,BNT162b2,2 +216,2021-04-08,2021-01-12,Alpha,204.9209546,Infection naive,BNT162b2,2 +216,2021-07-01,2021-01-12,Alpha,132.2081837,Infection naive,BNT162b2,2 +216,2021-02-01,2021-01-12,Delta,229.0496805,Infection naive,BNT162b2,2 +216,2021-02-22,2021-01-12,Delta,166.7754785,Infection naive,BNT162b2,2 +216,2021-04-08,2021-01-12,Delta,97.4518367100002,Infection naive,BNT162b2,2 +216,2021-07-01,2021-01-12,Delta,43.9697831399999,Infection naive,BNT162b2,2 +217,2021-02-19,2021-02-14,Ancestral,267.48893,Infection naive,BNT162b2,4 +217,2021-04-07,2021-02-14,Ancestral,219.4206732,Infection naive,BNT162b2,4 +217,2021-06-30,2021-02-14,Ancestral,377.819441999999,Infection naive,BNT162b2,4 +217,2021-02-19,2021-02-14,Alpha,103.7090388,Infection naive,BNT162b2,4 +217,2021-02-19,2021-02-14,Delta,76.9827724900003,Infection naive,BNT162b2,4 +217,2021-04-07,2021-02-14,Delta,85.5209025299999,Infection naive,BNT162b2,4 +217,2021-06-30,2021-02-14,Delta,123.9052733,Infection naive,BNT162b2,4 +218,2021-02-25,2021-01-12,Ancestral,277.5194129,Previously infected (Pre-Omicron),BNT162b2,3 +218,2021-02-25,2021-01-12,Alpha,186.7397735,Previously infected (Pre-Omicron),BNT162b2,3 +218,2021-03-22,2021-01-12,Alpha,75.9107095599998,Previously infected (Pre-Omicron),BNT162b2,3 +218,2021-05-17,2021-01-12,Alpha,45.0622313999999,Previously infected (Pre-Omicron),BNT162b2,3 +218,2021-02-25,2021-01-12,Delta,106.5655786,Previously infected (Pre-Omicron),BNT162b2,3 +218,2021-03-22,2021-01-12,Delta,82.5021709899999,Previously infected (Pre-Omicron),BNT162b2,3 +218,2021-05-17,2021-01-12,Delta,41.24453684,Previously infected (Pre-Omicron),BNT162b2,3 +219,2021-04-01,2021-03-11,Ancestral,2560,Infection naive,BNT162b2,2 +219,2021-06-24,2021-03-11,Ancestral,1354.877985,Infection naive,BNT162b2,2 +219,2021-04-01,2021-03-11,Alpha,1264.236594,Infection naive,BNT162b2,2 +219,2021-06-24,2021-03-11,Alpha,1240.092051,Infection naive,BNT162b2,2 +219,2021-04-01,2021-03-11,Delta,725.893770200002,Infection naive,BNT162b2,2 +219,2021-06-24,2021-03-11,Delta,892.704861899999,Infection naive,BNT162b2,2 +220,2021-04-19,2021-03-19,Ancestral,309.653059899999,Infection naive,BNT162b2,2 +220,2021-07-08,2021-03-19,Ancestral,208.1796046,Infection naive,BNT162b2,2 +220,2021-11-16,2021-03-19,Ancestral,116.0220635,Infection naive,BNT162b2,2 +220,2021-04-19,2021-03-19,Alpha,284.913514500001,Infection naive,BNT162b2,2 +220,2021-07-08,2021-03-19,Alpha,148.164318200001,Infection naive,BNT162b2,2 +220,2021-11-16,2021-03-19,Alpha,142.309354279994,Infection naive,BNT162b2,2 +220,2021-04-19,2021-03-19,Delta,187.0674127,Infection naive,BNT162b2,2 +220,2021-07-08,2021-03-19,Delta,175.0121818,Infection naive,BNT162b2,2 +220,2021-11-16,2021-03-19,Delta,40.7415217199999,Infection naive,BNT162b2,2 +221,2021-03-30,2021-03-09,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +221,2021-03-30,2021-03-09,Alpha,584.077350800001,Previously infected (Pre-Omicron),BNT162b2,3 +221,2021-03-30,2021-03-09,Delta,337.1312525,Previously infected (Pre-Omicron),BNT162b2,3 +222,2021-05-04,2021-03-22,Ancestral,160.4661115,Previously infected (Pre-Omicron),BNT162b2,3 +222,2021-06-28,2021-03-22,Ancestral,170.320899100001,Previously infected (Pre-Omicron),BNT162b2,3 +222,2021-05-04,2021-03-22,Alpha,569.418194200001,Previously infected (Pre-Omicron),BNT162b2,3 +222,2021-06-28,2021-03-22,Alpha,156.7132131,Previously infected (Pre-Omicron),BNT162b2,3 +222,2021-05-04,2021-03-22,Delta,110.27131,Previously infected (Pre-Omicron),BNT162b2,3 +222,2021-06-28,2021-03-22,Delta,46.46603932,Previously infected (Pre-Omicron),BNT162b2,3 +223,2021-04-23,2021-04-07,Ancestral,2560,Previously infected (Pre-Omicron),AZD1222,2 +223,2021-04-23,2021-04-07,Alpha,992.584030628349,Previously infected (Pre-Omicron),AZD1222,2 +223,2021-04-23,2021-04-07,Delta,2560,Previously infected (Pre-Omicron),AZD1222,2 +224,2021-04-08,2021-03-15,Ancestral,1433.052741,Infection naive,BNT162b2,2 +224,2021-07-01,2021-03-15,Ancestral,136.0880493,Infection naive,BNT162b2,2 +224,2021-04-08,2021-03-15,Alpha,699.657533199999,Infection naive,BNT162b2,2 +224,2021-07-01,2021-03-15,Alpha,109.69292,Infection naive,BNT162b2,2 +224,2021-04-08,2021-03-15,Delta,278.494095800001,Infection naive,BNT162b2,2 +224,2021-07-01,2021-03-15,Delta,46.2628491,Infection naive,BNT162b2,2 +225,2021-03-16,2021-03-04,Ancestral,5,Previously infected (Pre-Omicron),BNT162b2,3 +225,2021-04-20,2021-03-04,Ancestral,984.784896199998,Previously infected (Pre-Omicron),BNT162b2,3 +225,2021-07-07,2021-03-04,Ancestral,145.7173155,Previously infected (Pre-Omicron),BNT162b2,3 +225,2021-03-16,2021-03-04,Alpha,40.67016497,Previously infected (Pre-Omicron),BNT162b2,3 +225,2021-04-20,2021-03-04,Alpha,558.543376799999,Previously infected (Pre-Omicron),BNT162b2,3 +225,2021-07-07,2021-03-04,Alpha,174.7056566,Previously infected (Pre-Omicron),BNT162b2,3 +225,2021-03-16,2021-03-04,Delta,5,Previously infected (Pre-Omicron),BNT162b2,3 +225,2021-04-20,2021-03-04,Delta,347.3292193,Previously infected (Pre-Omicron),BNT162b2,3 +225,2021-07-07,2021-03-04,Delta,139.5915131,Previously infected (Pre-Omicron),BNT162b2,3 +226,2021-03-08,2021-03-03,Ancestral,1823.65462085467,Previously infected (Pre-Omicron),BNT162b2,3 +226,2021-03-29,2021-03-03,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +226,2021-03-08,2021-03-03,Alpha,944.212809897676,Previously infected (Pre-Omicron),BNT162b2,3 +226,2021-03-29,2021-03-03,Alpha,2450.32496399999,Previously infected (Pre-Omicron),BNT162b2,3 +226,2021-03-08,2021-03-03,Delta,1175.53050583235,Previously infected (Pre-Omicron),BNT162b2,3 +226,2021-03-29,2021-03-03,Delta,1220.680803,Previously infected (Pre-Omicron),BNT162b2,3 +227,2021-04-15,2021-03-24,Ancestral,1116.285275,Infection naive,BNT162b2,2 +227,2021-06-28,2021-03-24,Ancestral,565.4394316,Infection naive,BNT162b2,2 +227,2021-04-15,2021-03-24,Alpha,1164.251181,Infection naive,BNT162b2,2 +227,2021-06-28,2021-03-24,Alpha,270.7914815,Infection naive,BNT162b2,2 +227,2021-04-15,2021-03-24,Delta,504.104003999998,Infection naive,BNT162b2,2 +227,2021-06-28,2021-03-24,Delta,154.8019511,Infection naive,BNT162b2,2 +228,2021-04-15,2021-03-25,Ancestral,508.096322500001,Infection naive,BNT162b2,2 +228,2021-10-12,2021-03-25,Ancestral,175.6268464,Infection naive,BNT162b2,2 +228,2021-04-15,2021-03-25,Alpha,455.369609900001,Infection naive,BNT162b2,2 +228,2021-10-12,2021-03-25,Alpha,194.422716341038,Infection naive,BNT162b2,2 +228,2021-04-15,2021-03-25,Delta,205.2804932,Infection naive,BNT162b2,2 +228,2021-10-12,2021-03-25,Delta,130.1387196,Infection naive,BNT162b2,2 +229,2021-04-14,2021-04-14,Ancestral,529.000680191154,Previously infected (Pre-Omicron),BNT162b2,3 +229,2021-04-14,2021-04-14,Alpha,1644.46704994187,Previously infected (Pre-Omicron),BNT162b2,3 +229,2021-04-14,2021-04-14,Delta,331.854113211825,Previously infected (Pre-Omicron),BNT162b2,3 +230,2021-02-03,2021-01-07,Ancestral,797.2660445,Infection naive,BNT162b2,2 +230,2021-02-24,2021-01-07,Ancestral,646.586256,Infection naive,BNT162b2,2 +230,2021-04-07,2021-01-07,Ancestral,473.274287600001,Infection naive,BNT162b2,2 +230,2021-06-30,2021-01-07,Ancestral,381.479776,Infection naive,BNT162b2,2 +230,2021-02-03,2021-01-07,Alpha,630.358252700001,Infection naive,BNT162b2,2 +230,2021-02-24,2021-01-07,Alpha,474.9364861,Infection naive,BNT162b2,2 +230,2021-04-07,2021-01-07,Alpha,254.899938100001,Infection naive,BNT162b2,2 +230,2021-06-30,2021-01-07,Alpha,132.324114,Infection naive,BNT162b2,2 +230,2021-02-03,2021-01-07,Delta,384.1640909,Infection naive,BNT162b2,2 +230,2021-02-24,2021-01-07,Delta,358.463498,Infection naive,BNT162b2,2 +230,2021-04-07,2021-01-07,Delta,225.6620542,Infection naive,BNT162b2,2 +230,2021-06-30,2021-01-07,Delta,183.1733947,Infection naive,BNT162b2,2 +231,2021-03-16,2021-02-24,Ancestral,174.5525954,Infection naive,BNT162b2,2 +231,2021-06-08,2021-02-24,Ancestral,160.6068206,Infection naive,BNT162b2,2 +231,2021-06-08,2021-02-24,Ancestral,94.6734882000001,Infection naive,BNT162b2,2 +231,2021-03-16,2021-02-24,Alpha,122.501459,Infection naive,BNT162b2,2 +231,2021-06-08,2021-02-24,Alpha,185.4349447,Infection naive,BNT162b2,2 +231,2021-06-08,2021-02-24,Alpha,5,Infection naive,BNT162b2,2 +231,2021-03-16,2021-02-24,Delta,124.7771433,Infection naive,BNT162b2,2 +231,2021-06-08,2021-02-24,Delta,227.6486598,Infection naive,BNT162b2,2 +231,2021-06-08,2021-02-24,Delta,5,Infection naive,BNT162b2,2 +232,2021-04-19,2021-04-06,Ancestral,210.3807757,Previously infected (Pre-Omicron),AZD1222,2 +232,2021-04-19,2021-04-06,Alpha,5,Previously infected (Pre-Omicron),AZD1222,2 +232,2021-04-19,2021-04-06,Delta,44.59075447,Previously infected (Pre-Omicron),AZD1222,2 +233,2021-04-01,2021-03-11,Ancestral,2560,Infection naive,BNT162b2,2 +233,2021-06-23,2021-03-11,Ancestral,164.021103826873,Infection naive,BNT162b2,2 +233,2021-04-01,2021-03-11,Alpha,1139.017209,Infection naive,BNT162b2,2 +233,2021-06-23,2021-03-11,Alpha,282.922704859781,Infection naive,BNT162b2,2 +233,2021-04-01,2021-03-11,Delta,423.047306599999,Infection naive,BNT162b2,2 +233,2021-06-23,2021-03-11,Delta,170.769343633808,Infection naive,BNT162b2,2 +234,2021-05-26,2021-04-23,Ancestral,206.182101900001,Infection naive,AZD1222,2 +234,2021-06-29,2021-04-23,Ancestral,151.0490716,Infection naive,AZD1222,2 +234,2021-09-17,2021-04-23,Ancestral,115.5147134,Infection naive,AZD1222,2 +234,2021-12-08,2021-04-23,Ancestral,146.8713431,Infection naive,AZD1222,2 +234,2021-05-26,2021-04-23,Alpha,89.6659807099998,Infection naive,AZD1222,2 +234,2021-06-29,2021-04-23,Alpha,84.2560552900003,Infection naive,AZD1222,2 +234,2021-09-17,2021-04-23,Alpha,5,Infection naive,AZD1222,2 +234,2021-12-08,2021-04-23,Alpha,5,Infection naive,AZD1222,2 +234,2021-05-26,2021-04-23,Delta,56.74469133,Infection naive,AZD1222,2 +234,2021-06-29,2021-04-23,Delta,49.4495377399999,Infection naive,AZD1222,2 +234,2021-09-17,2021-04-23,Delta,5,Infection naive,AZD1222,2 +234,2021-12-08,2021-04-23,Delta,5,Infection naive,AZD1222,2 +235,2021-04-20,2021-03-23,Ancestral,474.9364861,Infection naive,BNT162b2,2 +235,2021-06-29,2021-03-23,Ancestral,213.726247800001,Infection naive,BNT162b2,2 +235,2021-09-28,2021-03-23,Ancestral,146.8713431,Infection naive,BNT162b2,2 +235,2021-04-20,2021-03-23,Alpha,488.445967700001,Infection naive,BNT162b2,2 +235,2021-06-29,2021-03-23,Alpha,170.470249599999,Infection naive,BNT162b2,2 +235,2021-09-28,2021-03-23,Alpha,196.82315603441,Infection naive,BNT162b2,2 +235,2021-04-20,2021-03-23,Delta,361.302397200001,Infection naive,BNT162b2,2 +235,2021-06-29,2021-03-23,Delta,139.2249423,Infection naive,BNT162b2,2 +235,2021-09-28,2021-03-23,Delta,74.78799629,Infection naive,BNT162b2,2 +236,2021-04-19,2021-03-24,Ancestral,864.218633100003,Infection naive,BNT162b2,2 +236,2021-07-16,2021-03-24,Ancestral,122.9316995,Infection naive,BNT162b2,2 +236,2021-09-28,2021-03-24,Ancestral,153.7202852,Infection naive,BNT162b2,2 +236,2021-04-19,2021-03-24,Alpha,401.726264699999,Infection naive,BNT162b2,2 +236,2021-07-16,2021-03-24,Alpha,213.726247800001,Infection naive,BNT162b2,2 +236,2021-09-28,2021-03-24,Alpha,153.855079039045,Infection naive,BNT162b2,2 +236,2021-04-19,2021-03-24,Delta,216.744635999999,Infection naive,BNT162b2,2 +236,2021-07-16,2021-03-24,Delta,124.5586024,Infection naive,BNT162b2,2 +236,2021-09-28,2021-03-24,Delta,59.28680425,Infection naive,BNT162b2,2 +237,2021-04-23,2021-04-08,Ancestral,110.7556306,Infection naive,AZD1222,1 +237,2021-04-23,2021-04-08,Alpha,5,Infection naive,AZD1222,1 +237,2021-04-23,2021-04-08,Delta,5,Infection naive,AZD1222,1 +238,2021-02-05,2021-01-06,Ancestral,132.208183677306,Previously infected (Pre-Omicron),BNT162b2,2 +238,2021-02-26,2021-01-06,Ancestral,146.614105212046,Previously infected (Pre-Omicron),BNT162b2,2 +238,2021-02-05,2021-01-06,Alpha,127.54147645632,Previously infected (Pre-Omicron),BNT162b2,2 +238,2021-02-26,2021-01-06,Alpha,54.1214982344394,Previously infected (Pre-Omicron),BNT162b2,2 +238,2021-02-05,2021-01-06,Delta,5,Previously infected (Pre-Omicron),BNT162b2,2 +238,2021-02-26,2021-01-06,Delta,5,Previously infected (Pre-Omicron),BNT162b2,2 +239,2021-06-02,2021-04-28,Ancestral,513.918889000001,Previously infected (Pre-Omicron),AZD1222,3 +239,2021-07-07,2021-04-28,Ancestral,178.419662,Previously infected (Pre-Omicron),AZD1222,3 +239,2022-01-06,2021-04-28,Ancestral,238.8917662,Previously infected (Pre-Omicron),AZD1222,3 +239,2021-06-02,2021-04-28,Alpha,381.479776,Previously infected (Pre-Omicron),AZD1222,3 +239,2021-07-07,2021-04-28,Alpha,179.2032958,Previously infected (Pre-Omicron),AZD1222,3 +239,2021-06-02,2021-04-28,Delta,193.2334973,Previously infected (Pre-Omicron),AZD1222,3 +239,2021-07-07,2021-04-28,Delta,191.8832941,Previously infected (Pre-Omicron),AZD1222,3 +239,2022-01-06,2021-04-28,Delta,205.2804932,Previously infected (Pre-Omicron),AZD1222,3 +240,2021-03-24,2021-03-04,Ancestral,443.551816099999,Infection naive,BNT162b2,2 +240,2021-03-24,2021-03-04,Alpha,405.2628435,Infection naive,BNT162b2,2 +240,2021-03-24,2021-03-04,Delta,421.566711600001,Infection naive,BNT162b2,2 +241,2021-04-15,2021-03-22,Ancestral,360.669594000001,Infection naive,BNT162b2,2 +241,2021-06-29,2021-03-22,Ancestral,210.7498937,Infection naive,BNT162b2,2 +241,2021-04-15,2021-03-22,Alpha,375.179459799999,Infection naive,BNT162b2,2 +241,2021-06-29,2021-03-22,Alpha,170.769343600001,Infection naive,BNT162b2,2 +241,2021-04-15,2021-03-22,Delta,134.4283302,Infection naive,BNT162b2,2 +241,2021-06-29,2021-03-22,Delta,51.8917502899999,Infection naive,BNT162b2,2 +242,2021-04-23,2021-03-20,Ancestral,1099.775506,Infection naive,BNT162b2,2 +242,2021-07-07,2021-03-20,Ancestral,355.646905200001,Infection naive,BNT162b2,2 +242,2021-10-08,2021-03-20,Ancestral,275.5802689,Infection naive,BNT162b2,2 +242,2021-04-23,2021-03-20,Alpha,1260.916677,Infection naive,BNT162b2,2 +242,2021-07-07,2021-03-20,Alpha,429.3980694,Infection naive,BNT162b2,2 +242,2021-10-08,2021-03-20,Alpha,413.515579682548,Infection naive,BNT162b2,2 +242,2021-04-23,2021-03-20,Delta,583.565635300001,Infection naive,BNT162b2,2 +242,2021-07-07,2021-03-20,Delta,178.107168800001,Infection naive,BNT162b2,2 +242,2021-10-08,2021-03-20,Delta,177.0177465,Infection naive,BNT162b2,2 +243,2021-03-23,2021-03-12,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +243,2021-09-30,2021-03-12,Ancestral,450.605170699999,Previously infected (Pre-Omicron),BNT162b2,3 +243,2021-03-23,2021-03-12,Alpha,806.402372399998,Previously infected (Pre-Omicron),BNT162b2,3 +243,2021-09-30,2021-03-12,Alpha,320.983179424583,Previously infected (Pre-Omicron),BNT162b2,3 +243,2021-03-23,2021-03-12,Delta,1561.588019,Previously infected (Pre-Omicron),BNT162b2,3 +243,2021-09-30,2021-03-12,Delta,179.0462942,Previously infected (Pre-Omicron),BNT162b2,3 +244,2021-04-15,2021-04-06,Ancestral,656.868261300003,Infection naive,BNT162b2,2 +244,2021-04-15,2021-04-06,Alpha,641.505766099999,Infection naive,BNT162b2,2 +244,2021-04-15,2021-04-06,Delta,453.775892300001,Infection naive,BNT162b2,2 +245,2021-04-15,2021-03-26,Ancestral,2560,Infection naive,BNT162b2,2 +245,2021-07-08,2021-03-26,Ancestral,190.2087997,Infection naive,BNT162b2,2 +245,2021-04-15,2021-03-26,Alpha,1035.23459,Infection naive,BNT162b2,2 +245,2021-07-08,2021-03-26,Alpha,293.2747681,Infection naive,BNT162b2,2 +245,2021-04-15,2021-03-26,Delta,920.514984000001,Infection naive,BNT162b2,2 +245,2021-07-08,2021-03-26,Delta,227.050848700001,Infection naive,BNT162b2,2 +246,2021-03-12,2021-02-26,Ancestral,2560,Infection naive,BNT162b2,2 +246,2021-04-01,2021-02-26,Ancestral,155.7546505,Infection naive,BNT162b2,2 +246,2021-05-13,2021-02-26,Ancestral,295.597396500001,Infection naive,BNT162b2,2 +246,2021-08-16,2021-02-26,Ancestral,92.2165131599998,Infection naive,BNT162b2,2 +246,2021-03-12,2021-02-26,Alpha,338.611960600001,Infection naive,BNT162b2,2 +246,2021-04-01,2021-02-26,Alpha,305.0733162,Infection naive,BNT162b2,2 +246,2021-05-13,2021-02-26,Alpha,125.5450607,Infection naive,BNT162b2,2 +246,2021-08-16,2021-02-26,Alpha,153.7202852,Infection naive,BNT162b2,2 +246,2021-03-12,2021-02-26,Delta,145.7173155,Infection naive,BNT162b2,2 +246,2021-04-01,2021-02-26,Delta,136.0880493,Infection naive,BNT162b2,2 +246,2021-05-13,2021-02-26,Delta,92.2165131599998,Infection naive,BNT162b2,2 +246,2021-08-16,2021-02-26,Delta,50.50076786,Infection naive,BNT162b2,2 +247,2021-03-09,2021-03-04,Ancestral,2036.59773000001,Previously infected (Pre-Omicron),BNT162b2,3 +247,2021-04-01,2021-03-04,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +247,2021-03-09,2021-03-04,Alpha,988.243583847195,Previously infected (Pre-Omicron),BNT162b2,3 +247,2021-04-01,2021-03-04,Alpha,1254.302975,Previously infected (Pre-Omicron),BNT162b2,3 +247,2021-03-09,2021-03-04,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,3 +247,2021-04-01,2021-03-04,Delta,2551.13748200001,Previously infected (Pre-Omicron),BNT162b2,3 +248,2021-02-01,2021-01-11,Ancestral,2560,Infection naive,BNT162b2,2 +248,2021-02-22,2021-01-11,Ancestral,2560,Infection naive,BNT162b2,2 +248,2021-04-06,2021-01-11,Ancestral,2560,Infection naive,BNT162b2,2 +248,2021-02-01,2021-01-11,Alpha,702.114817999998,Infection naive,BNT162b2,2 +248,2021-02-22,2021-01-11,Alpha,712.030563400002,Infection naive,BNT162b2,2 +248,2021-04-06,2021-01-11,Alpha,640.943737099998,Infection naive,BNT162b2,2 +248,2021-02-01,2021-01-11,Delta,386.528356299999,Infection naive,BNT162b2,2 +248,2021-02-22,2021-01-11,Delta,322.392963799999,Infection naive,BNT162b2,2 +248,2021-04-06,2021-01-11,Delta,180.7809038,Infection naive,BNT162b2,2 +249,2021-04-30,2021-03-17,Ancestral,370.279111379964,Infection naive,BNT162b2,2 +249,2021-04-30,2021-03-17,Alpha,562.473614824264,Infection naive,BNT162b2,2 +249,2021-04-30,2021-03-17,Delta,278.250104602277,Infection naive,BNT162b2,2 +250,2021-03-22,2021-03-14,Ancestral,2560,Infection naive,BNT162b2,2 +250,2021-03-22,2021-03-14,Alpha,666.145003900002,Infection naive,BNT162b2,2 +250,2021-03-22,2021-03-14,Delta,482.0662063,Infection naive,BNT162b2,2 +251,2021-05-26,2021-04-30,Ancestral,335.362947300001,Infection naive,AZD1222,2 +251,2021-06-28,2021-04-30,Ancestral,409.189050599999,Infection naive,AZD1222,2 +251,2021-09-14,2021-04-30,Ancestral,171.9709766,Infection naive,AZD1222,2 +251,2021-11-16,2021-04-30,Ancestral,168.8345717,Infection naive,AZD1222,2 +251,2021-05-26,2021-04-30,Alpha,228.0480747,Infection naive,AZD1222,2 +251,2021-06-28,2021-04-30,Alpha,191.7151835,Infection naive,AZD1222,2 +251,2021-09-14,2021-04-30,Alpha,212.978241590407,Infection naive,AZD1222,2 +251,2021-11-16,2021-04-30,Alpha,80.997497209708,Infection naive,AZD1222,2 +251,2021-05-26,2021-04-30,Delta,243.5429794,Infection naive,AZD1222,2 +251,2021-06-28,2021-04-30,Delta,287.1699249,Infection naive,AZD1222,2 +251,2021-09-14,2021-04-30,Delta,74.78799629,Infection naive,AZD1222,2 +251,2021-11-16,2021-04-30,Delta,125.5450607,Infection naive,AZD1222,2 +252,2021-02-19,2021-01-07,Ancestral,5,Infection naive,BNT162b2,2 +252,2021-02-19,2021-01-07,Alpha,209.0939465,Infection naive,BNT162b2,2 +252,2021-03-12,2021-01-07,Alpha,139.3470255,Infection naive,BNT162b2,2 +252,2021-04-29,2021-01-07,Alpha,153.855079,Infection naive,BNT162b2,2 +252,2021-02-19,2021-01-07,Delta,5,Infection naive,BNT162b2,2 +253,2021-04-23,2021-03-23,Ancestral,737.436922400002,Infection naive,BNT162b2,2 +253,2021-07-16,2021-03-23,Ancestral,114.3061066,Infection naive,BNT162b2,2 +253,2021-04-23,2021-03-23,Alpha,588.703028700001,Infection naive,BNT162b2,2 +253,2021-07-16,2021-03-23,Alpha,162.3049845,Infection naive,BNT162b2,2 +253,2021-04-23,2021-03-23,Delta,343.996563099999,Infection naive,BNT162b2,2 +253,2021-07-16,2021-03-23,Delta,76.6461363799998,Infection naive,BNT162b2,2 +254,2021-04-23,2021-03-11,Ancestral,305.340828000001,Previously infected (Pre-Omicron),BNT162b2,3 +254,2021-06-28,2021-03-11,Ancestral,126.3177041,Previously infected (Pre-Omicron),BNT162b2,3 +254,2021-09-28,2021-03-11,Ancestral,101.8175944,Previously infected (Pre-Omicron),BNT162b2,3 +254,2021-04-23,2021-03-11,Alpha,489.732016200002,Previously infected (Pre-Omicron),BNT162b2,3 +254,2021-06-28,2021-03-11,Alpha,112.0248427,Previously infected (Pre-Omicron),BNT162b2,3 +254,2021-09-28,2021-03-11,Alpha,79.3809898542299,Previously infected (Pre-Omicron),BNT162b2,3 +254,2021-04-23,2021-03-11,Delta,271.9808199,Previously infected (Pre-Omicron),BNT162b2,3 +254,2021-06-28,2021-03-11,Delta,65.6893251900002,Previously infected (Pre-Omicron),BNT162b2,3 +254,2021-09-28,2021-03-11,Delta,5,Previously infected (Pre-Omicron),BNT162b2,3 +255,2021-04-23,2021-03-18,Ancestral,2560,Infection naive,BNT162b2,2 +255,2021-06-28,2021-03-18,Ancestral,370.279111400002,Infection naive,BNT162b2,2 +255,2021-09-24,2021-03-18,Ancestral,342.192248199999,Infection naive,BNT162b2,2 +255,2021-04-23,2021-03-18,Alpha,783.411868400002,Infection naive,BNT162b2,2 +255,2021-06-28,2021-03-18,Alpha,381.479776,Infection naive,BNT162b2,2 +255,2021-09-24,2021-03-18,Alpha,168.982618852693,Infection naive,BNT162b2,2 +255,2021-04-23,2021-03-18,Delta,477.8593931,Infection naive,BNT162b2,2 +255,2021-06-28,2021-03-18,Delta,182.2126221,Infection naive,BNT162b2,2 +255,2021-09-24,2021-03-18,Delta,102.7139409,Infection naive,BNT162b2,2 +256,2021-04-13,2021-03-03,Ancestral,1740.875928,Infection naive,BNT162b2,2 +256,2021-04-13,2021-03-03,Alpha,450.2103914,Infection naive,BNT162b2,2 +256,2021-04-13,2021-03-03,Delta,146.1009803,Infection naive,BNT162b2,2 +257,2021-03-24,2021-03-05,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +257,2021-04-30,2021-03-05,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +257,2021-07-27,2021-03-05,Ancestral,298.7228729,Previously infected (Pre-Omicron),BNT162b2,3 +257,2021-03-24,2021-03-05,Alpha,1098.811983,Previously infected (Pre-Omicron),BNT162b2,3 +257,2021-04-30,2021-03-05,Alpha,435.080810000002,Previously infected (Pre-Omicron),BNT162b2,3 +257,2021-07-27,2021-03-05,Alpha,272.219313700001,Previously infected (Pre-Omicron),BNT162b2,3 +257,2021-03-24,2021-03-05,Delta,605.4485789,Previously infected (Pre-Omicron),BNT162b2,3 +257,2021-04-30,2021-03-05,Delta,301.3526661,Previously infected (Pre-Omicron),BNT162b2,3 +257,2021-07-27,2021-03-05,Delta,166.0461901,Previously infected (Pre-Omicron),BNT162b2,3 +258,2021-04-23,2021-04-09,Ancestral,83.8141193200002,Infection naive,AZD1222,2 +258,2021-07-07,2021-04-09,Ancestral,5,Infection naive,AZD1222,2 +258,2021-04-23,2021-04-09,Alpha,5,Infection naive,AZD1222,2 +258,2021-07-07,2021-04-09,Alpha,5,Infection naive,AZD1222,2 +258,2021-12-02,2021-04-09,Alpha,5,Infection naive,AZD1222,2 +258,2021-04-23,2021-04-09,Delta,5,Infection naive,AZD1222,2 +258,2021-07-07,2021-04-09,Delta,5,Infection naive,AZD1222,2 +258,2021-12-02,2021-04-09,Delta,5,Infection naive,AZD1222,2 +259,2021-02-26,2021-01-11,Ancestral,455.768913199999,Previously infected (Pre-Omicron),BNT162b2,3 +259,2021-03-24,2021-01-11,Ancestral,164.1649302,Previously infected (Pre-Omicron),BNT162b2,3 +259,2021-02-26,2021-01-11,Alpha,154.5308232,Previously infected (Pre-Omicron),BNT162b2,3 +259,2021-03-24,2021-01-11,Alpha,110.8527497,Previously infected (Pre-Omicron),BNT162b2,3 +259,2021-02-26,2021-01-11,Delta,51.4389102,Previously infected (Pre-Omicron),BNT162b2,3 +259,2021-03-24,2021-01-11,Delta,87.7994827499998,Previously infected (Pre-Omicron),BNT162b2,3 +260,2021-02-01,2021-01-11,Ancestral,291.9923139,Infection naive,BNT162b2,2 +260,2021-02-22,2021-01-11,Ancestral,338.9088817,Infection naive,BNT162b2,2 +260,2021-04-13,2021-01-11,Ancestral,138.1309956,Infection naive,BNT162b2,2 +260,2021-07-06,2021-01-11,Ancestral,151.7124915,Infection naive,BNT162b2,2 +260,2021-02-01,2021-01-11,Alpha,190.8768368,Infection naive,BNT162b2,2 +260,2021-02-22,2021-01-11,Alpha,130.3670511,Infection naive,BNT162b2,2 +260,2021-04-13,2021-01-11,Alpha,103.7090388,Infection naive,BNT162b2,2 +260,2021-07-06,2021-01-11,Alpha,65.9778380900002,Infection naive,BNT162b2,2 +260,2021-02-01,2021-01-11,Delta,160.0447235,Infection naive,BNT162b2,2 +260,2021-02-22,2021-01-11,Delta,159.7644131,Infection naive,BNT162b2,2 +260,2021-04-13,2021-01-11,Delta,81.8539180400001,Infection naive,BNT162b2,2 +260,2021-07-06,2021-01-11,Delta,98.9147783000003,Infection naive,BNT162b2,2 +261,2021-04-19,2021-03-30,Ancestral,1267.565252,Previously infected (Pre-Omicron),BNT162b2,3 +261,2021-07-16,2021-03-30,Ancestral,204.5620457,Previously infected (Pre-Omicron),BNT162b2,3 +261,2021-11-02,2021-03-30,Ancestral,236.8070462,Previously infected (Pre-Omicron),BNT162b2,3 +261,2021-04-19,2021-03-30,Alpha,449.421870300001,Previously infected (Pre-Omicron),BNT162b2,3 +261,2021-07-16,2021-03-30,Alpha,244.3983328,Previously infected (Pre-Omicron),BNT162b2,3 +261,2021-11-02,2021-03-30,Alpha,291.480903887568,Previously infected (Pre-Omicron),BNT162b2,3 +261,2021-04-19,2021-03-30,Delta,867.253876999999,Previously infected (Pre-Omicron),BNT162b2,3 +261,2021-07-16,2021-03-30,Delta,242.4779962,Previously infected (Pre-Omicron),BNT162b2,3 +261,2021-11-02,2021-03-30,Delta,110.6585966,Previously infected (Pre-Omicron),BNT162b2,3 +262,2021-04-01,2021-03-18,Ancestral,2560,Infection naive,BNT162b2,2 +262,2021-07-08,2021-03-18,Ancestral,354.7129676,Infection naive,BNT162b2,2 +262,2021-04-01,2021-03-18,Alpha,1184.840275,Infection naive,BNT162b2,2 +262,2021-07-08,2021-03-18,Alpha,667.313770799999,Infection naive,BNT162b2,2 +262,2021-04-01,2021-03-18,Delta,557.565115799999,Infection naive,BNT162b2,2 +262,2021-07-08,2021-03-18,Delta,288.431198699999,Infection naive,BNT162b2,2 +263,2021-04-15,2021-03-14,Ancestral,494.4765649,Infection naive,BNT162b2,2 +263,2021-04-15,2021-03-14,Alpha,356.895981600001,Infection naive,BNT162b2,2 +263,2021-04-15,2021-03-14,Delta,458.573856899999,Infection naive,BNT162b2,2 +264,2021-04-06,2021-03-10,Ancestral,630.358252700001,Infection naive,BNT162b2,2 +264,2021-04-06,2021-03-10,Alpha,1529.08181300001,Infection naive,BNT162b2,2 +264,2021-04-06,2021-03-10,Delta,522.091219700001,Infection naive,BNT162b2,2 +265,2021-02-24,2021-01-05,Ancestral,169.5761069,Infection naive,BNT162b2,2 +265,2021-03-17,2021-01-05,Ancestral,136.5660075,Infection naive,BNT162b2,2 +265,2021-02-24,2021-01-05,Alpha,112.6155285,Infection naive,BNT162b2,2 +265,2021-03-17,2021-01-05,Alpha,90.3761023199997,Infection naive,BNT162b2,2 +265,2021-04-28,2021-01-05,Alpha,127.0951026,Infection naive,BNT162b2,2 +265,2021-07-21,2021-01-05,Alpha,129.1161671,Infection naive,BNT162b2,2 +265,2021-02-24,2021-01-05,Delta,57.0939158300001,Infection naive,BNT162b2,2 +265,2021-03-17,2021-01-05,Delta,42.15827502,Infection naive,BNT162b2,2 +265,2021-04-28,2021-01-05,Delta,57.6470445899999,Infection naive,BNT162b2,2 +265,2021-07-21,2021-01-05,Delta,91.1717242,Infection naive,BNT162b2,2 +266,2021-04-15,2021-03-18,Ancestral,1262.022346,Infection naive,BNT162b2,2 +266,2021-06-29,2021-03-18,Ancestral,324.0928808,Infection naive,BNT162b2,2 +266,2021-04-15,2021-03-18,Alpha,1497.25226,Infection naive,BNT162b2,2 +266,2021-06-29,2021-03-18,Alpha,369.306749200001,Infection naive,BNT162b2,2 +266,2021-04-15,2021-03-18,Delta,1020.817902,Infection naive,BNT162b2,2 +266,2021-06-29,2021-03-18,Delta,230.8636698,Infection naive,BNT162b2,2 +267,2021-05-11,2021-04-09,Ancestral,413.515579700001,Infection naive,BNT162b2,2 +267,2021-06-29,2021-04-09,Ancestral,317.0684939,Infection naive,BNT162b2,2 +267,2021-12-02,2021-04-09,Ancestral,129.7969721,Infection naive,BNT162b2,2 +267,2021-05-11,2021-04-09,Alpha,337.7227572,Infection naive,BNT162b2,2 +267,2021-06-29,2021-04-09,Alpha,190.042156000001,Infection naive,BNT162b2,2 +267,2021-12-02,2021-04-09,Alpha,71.6439877140535,Infection naive,BNT162b2,2 +267,2021-05-11,2021-04-09,Delta,251.570601999999,Infection naive,BNT162b2,2 +267,2021-06-29,2021-04-09,Delta,224.675262,Infection naive,BNT162b2,2 +267,2021-12-02,2021-04-09,Delta,53.1810232499998,Infection naive,BNT162b2,2 +268,2021-04-20,2021-04-14,Ancestral,163.590380327854,Infection naive,AZD1222,2 +268,2021-06-28,2021-04-14,Ancestral,107.2214163,Infection naive,AZD1222,2 +268,2021-04-20,2021-04-14,Alpha,163.3038598957,Infection naive,AZD1222,2 +268,2021-06-28,2021-04-14,Alpha,81.06852207,Infection naive,AZD1222,2 +268,2021-04-20,2021-04-14,Delta,81.6389676192483,Infection naive,AZD1222,2 +268,2021-06-28,2021-04-14,Delta,60.7065783099999,Infection naive,AZD1222,2 +269,2021-04-23,2021-03-18,Ancestral,711.406746999998,Infection naive,BNT162b2,2 +269,2021-07-08,2021-03-18,Ancestral,107.2214163,Infection naive,BNT162b2,2 +269,2021-04-23,2021-03-18,Alpha,235.152376499999,Infection naive,BNT162b2,2 +269,2021-07-08,2021-03-18,Alpha,112.1230748,Infection naive,BNT162b2,2 +269,2021-04-23,2021-03-18,Delta,89.7446067599999,Infection naive,BNT162b2,2 +269,2021-07-08,2021-03-18,Delta,56.7944494599999,Infection naive,BNT162b2,2 +270,2021-06-09,2021-04-21,Ancestral,221.740700900001,Infection naive,AZD1222,1 +270,2021-06-09,2021-04-21,Alpha,157.539532143869,Infection naive,AZD1222,1 +270,2021-06-09,2021-04-21,Delta,40.4568437,Infection naive,AZD1222,1 +271,2021-02-18,2021-01-11,Ancestral,559.523354199999,Infection naive,BNT162b2,2 +271,2021-03-11,2021-01-11,Ancestral,358.777826499999,Infection naive,BNT162b2,2 +271,2021-04-14,2021-01-11,Ancestral,344.902285100001,Infection naive,BNT162b2,2 +271,2021-07-02,2021-01-11,Ancestral,186.7397735,Infection naive,BNT162b2,2 +271,2021-02-18,2021-01-11,Alpha,487.1632965,Infection naive,BNT162b2,2 +271,2021-03-11,2021-01-11,Alpha,262.150520300001,Infection naive,BNT162b2,2 +271,2021-04-14,2021-01-11,Alpha,187.889028099999,Infection naive,BNT162b2,2 +271,2021-07-02,2021-01-11,Alpha,82.5021709899999,Infection naive,BNT162b2,2 +271,2021-02-18,2021-01-11,Delta,190.042156000001,Infection naive,BNT162b2,2 +271,2021-03-11,2021-01-11,Delta,246.7660763,Infection naive,BNT162b2,2 +271,2021-04-14,2021-01-11,Delta,190.7096078,Infection naive,BNT162b2,2 +271,2021-07-02,2021-01-11,Delta,85.89651734,Infection naive,BNT162b2,2 +272,2021-05-05,2021-03-23,Ancestral,2560,Infection naive,BNT162b2,2 +272,2021-06-28,2021-03-23,Ancestral,186.9035213,Infection naive,BNT162b2,2 +272,2021-12-02,2021-03-23,Ancestral,248.067227000001,Infection naive,BNT162b2,2 +272,2021-05-05,2021-03-23,Alpha,864.976446700001,Infection naive,BNT162b2,2 +272,2021-06-28,2021-03-23,Alpha,260.7755005,Infection naive,BNT162b2,2 +272,2021-12-02,2021-03-23,Alpha,156.850631321271,Infection naive,BNT162b2,2 +272,2021-05-05,2021-03-23,Delta,406.329875899999,Infection naive,BNT162b2,2 +272,2021-06-28,2021-03-23,Delta,141.3149794,Infection naive,BNT162b2,2 +272,2021-12-02,2021-03-23,Delta,95.5906897799999,Infection naive,BNT162b2,2 +273,2021-03-09,2021-03-09,Ancestral,397.5230848,Previously infected (Pre-Omicron),BNT162b2,3 +273,2021-04-27,2021-03-09,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +273,2021-07-20,2021-03-09,Ancestral,1047.097936,Previously infected (Pre-Omicron),BNT162b2,3 +273,2021-03-09,2021-03-09,Alpha,200.303857279495,Previously infected (Pre-Omicron),BNT162b2,3 +273,2021-04-27,2021-03-09,Alpha,1137.022277,Previously infected (Pre-Omicron),BNT162b2,3 +273,2021-07-20,2021-03-09,Alpha,416.790471097569,Previously infected (Pre-Omicron),BNT162b2,3 +273,2021-03-09,2021-03-09,Delta,123.4716256,Previously infected (Pre-Omicron),BNT162b2,3 +273,2021-04-27,2021-03-09,Delta,2324.793169,Previously infected (Pre-Omicron),BNT162b2,3 +273,2021-07-20,2021-03-09,Delta,638.700541000001,Previously infected (Pre-Omicron),BNT162b2,3 +274,2021-02-26,2021-02-24,Ancestral,124.886557571153,Infection naive,BNT162b2,2 +274,2021-04-09,2021-02-24,Ancestral,2560,Infection naive,BNT162b2,2 +274,2021-07-02,2021-02-24,Ancestral,198.729988805792,Infection naive,BNT162b2,2 +274,2021-02-26,2021-02-24,Alpha,123.147385999295,Infection naive,BNT162b2,2 +274,2021-04-09,2021-02-24,Alpha,354.091705500001,Infection naive,BNT162b2,2 +274,2021-07-02,2021-02-24,Alpha,287.926025764238,Infection naive,BNT162b2,2 +274,2021-02-26,2021-02-24,Delta,52.348576940565,Infection naive,BNT162b2,2 +274,2021-04-09,2021-02-24,Delta,221.740700900001,Infection naive,BNT162b2,2 +274,2021-07-02,2021-02-24,Delta,170.619731080311,Infection naive,BNT162b2,2 +275,2021-04-20,2021-04-06,Ancestral,329.824271999999,Infection naive,BNT162b2,2 +275,2021-07-07,2021-04-06,Ancestral,356.895981600001,Infection naive,BNT162b2,2 +275,2021-04-20,2021-04-06,Alpha,162.8750199,Infection naive,BNT162b2,2 +275,2021-07-07,2021-04-06,Alpha,214.1012355,Infection naive,BNT162b2,2 +275,2021-04-20,2021-04-06,Delta,160.4661115,Infection naive,BNT162b2,2 +275,2021-07-07,2021-04-06,Delta,72.02175288,Infection naive,BNT162b2,2 +276,2021-04-15,2021-03-29,Ancestral,370.928774700001,Infection naive,BNT162b2,2 +276,2021-07-16,2021-03-29,Ancestral,215.041585700001,Infection naive,BNT162b2,2 +276,2021-10-26,2021-03-29,Ancestral,311.83196,Infection naive,BNT162b2,2 +276,2021-04-15,2021-03-29,Alpha,273.8946361,Infection naive,BNT162b2,2 +276,2021-07-16,2021-03-29,Alpha,145.9729799,Infection naive,BNT162b2,2 +276,2021-10-26,2021-03-29,Alpha,166.629365,Infection naive,BNT162b2,2 +276,2021-04-15,2021-03-29,Delta,190.8768368,Infection naive,BNT162b2,2 +276,2021-07-16,2021-03-29,Delta,162.8750199,Infection naive,BNT162b2,2 +276,2021-10-26,2021-03-29,Delta,105.6356202,Infection naive,BNT162b2,2 +277,2021-02-01,2021-01-11,Ancestral,598.589004999999,Infection naive,BNT162b2,2 +277,2021-02-25,2021-01-11,Ancestral,76.3109723399998,Infection naive,BNT162b2,2 +277,2021-02-01,2021-01-11,Alpha,474.104658399999,Infection naive,BNT162b2,2 +277,2021-02-25,2021-01-11,Alpha,5,Infection naive,BNT162b2,2 +277,2021-02-01,2021-01-11,Delta,255.7951785,Infection naive,BNT162b2,2 +277,2021-02-25,2021-01-11,Delta,5,Infection naive,BNT162b2,2 +278,2021-04-15,2021-03-28,Ancestral,195.105553200001,Infection naive,BNT162b2,2 +278,2021-06-29,2021-03-28,Ancestral,124.5586024,Infection naive,BNT162b2,2 +278,2021-04-15,2021-03-28,Alpha,472.445371200002,Infection naive,BNT162b2,2 +278,2021-06-29,2021-03-28,Alpha,89.98089884,Infection naive,BNT162b2,2 +278,2021-04-15,2021-03-28,Delta,168.096279000001,Infection naive,BNT162b2,2 +278,2021-06-29,2021-03-28,Delta,82.0694344200001,Infection naive,BNT162b2,2 +279,2021-01-29,2021-01-09,Ancestral,514.369532699999,Infection naive,BNT162b2,2 +279,2021-02-19,2021-01-09,Ancestral,351.001678200001,Infection naive,BNT162b2,2 +279,2021-04-14,2021-01-09,Ancestral,293.531934100001,Infection naive,BNT162b2,2 +279,2021-01-29,2021-01-09,Alpha,436.608868200001,Infection naive,BNT162b2,2 +279,2021-02-19,2021-01-09,Alpha,305.8765556,Infection naive,BNT162b2,2 +279,2021-04-14,2021-01-09,Alpha,118.8005084,Infection naive,BNT162b2,2 +279,2021-01-29,2021-01-09,Delta,222.129750100001,Infection naive,BNT162b2,2 +279,2021-02-19,2021-01-09,Delta,127.0951026,Infection naive,BNT162b2,2 +279,2021-04-14,2021-01-09,Delta,62.37866742,Infection naive,BNT162b2,2 +280,2021-04-19,2021-03-24,Ancestral,652.850416600002,Infection naive,BNT162b2,2 +280,2021-07-07,2021-03-24,Ancestral,99.4363371700003,Infection naive,BNT162b2,2 +280,2021-04-19,2021-03-24,Alpha,368.983196300001,Infection naive,BNT162b2,2 +280,2021-07-07,2021-03-24,Alpha,125.4350696,Infection naive,BNT162b2,2 +280,2021-04-19,2021-03-24,Delta,209.0939465,Infection naive,BNT162b2,2 +280,2021-07-07,2021-03-24,Delta,100.3996815,Infection naive,BNT162b2,2 +281,2021-03-12,2021-03-11,Ancestral,107.127478692248,Infection naive,BNT162b2,2 +281,2021-04-13,2021-03-11,Ancestral,2560,Infection naive,BNT162b2,2 +281,2021-05-28,2021-03-11,Ancestral,2560,Infection naive,BNT162b2,2 +281,2021-08-27,2021-03-11,Ancestral,156.0279256,Infection naive,BNT162b2,2 +281,2021-03-12,2021-03-11,Alpha,5,Infection naive,BNT162b2,2 +281,2021-04-13,2021-03-11,Alpha,480.379055100002,Infection naive,BNT162b2,2 +281,2021-05-28,2021-03-11,Alpha,279.227353800001,Infection naive,BNT162b2,2 +281,2021-08-27,2021-03-11,Alpha,211.6755245,Infection naive,BNT162b2,2 +281,2021-03-12,2021-03-11,Delta,5,Infection naive,BNT162b2,2 +281,2021-04-13,2021-03-11,Delta,255.123454000001,Infection naive,BNT162b2,2 +281,2021-05-28,2021-03-11,Delta,343.695184599999,Infection naive,BNT162b2,2 +281,2021-08-27,2021-03-11,Delta,131.3995102,Infection naive,BNT162b2,2 +282,2021-02-05,2021-01-10,Ancestral,571.418062100002,Infection naive,BNT162b2,2 +282,2021-02-26,2021-01-10,Ancestral,553.184101099999,Infection naive,BNT162b2,2 +282,2021-04-12,2021-01-10,Ancestral,404.1986132,Infection naive,BNT162b2,2 +282,2021-07-05,2021-01-10,Ancestral,296.375686400001,Infection naive,BNT162b2,2 +282,2021-02-05,2021-01-10,Alpha,427.145810499999,Infection naive,BNT162b2,2 +282,2021-02-26,2021-01-10,Alpha,653.4228862,Infection naive,BNT162b2,2 +282,2021-04-12,2021-01-10,Alpha,192.5572123,Infection naive,BNT162b2,2 +282,2021-07-05,2021-01-10,Alpha,102.5340426,Infection naive,BNT162b2,2 +282,2021-02-05,2021-01-10,Delta,208.1796046,Infection naive,BNT162b2,2 +282,2021-02-26,2021-01-10,Delta,245.686998900001,Infection naive,BNT162b2,2 +282,2021-04-12,2021-01-10,Delta,173.789298600001,Infection naive,BNT162b2,2 +282,2021-07-05,2021-01-10,Delta,102.8040085,Infection naive,BNT162b2,2 +283,2021-04-19,2021-03-17,Ancestral,1075.938979,Previously infected (Pre-Omicron),BNT162b2,3 +283,2021-06-28,2021-03-17,Ancestral,495.7784916,Previously infected (Pre-Omicron),BNT162b2,3 +283,2021-04-19,2021-03-17,Alpha,775.21519,Previously infected (Pre-Omicron),BNT162b2,3 +283,2021-06-28,2021-03-17,Alpha,283.419099300001,Previously infected (Pre-Omicron),BNT162b2,3 +283,2021-04-19,2021-03-17,Delta,1055.390567,Previously infected (Pre-Omicron),BNT162b2,3 +283,2021-06-28,2021-03-17,Delta,251.7911985,Previously infected (Pre-Omicron),BNT162b2,3 +284,2021-02-18,2021-01-11,Ancestral,581.523253000001,Previously infected (Pre-Omicron),BNT162b2,3 +284,2021-03-24,2021-01-11,Ancestral,183.1733947,Previously infected (Pre-Omicron),BNT162b2,3 +284,2021-02-18,2021-01-11,Alpha,224.085259200001,Previously infected (Pre-Omicron),BNT162b2,3 +284,2021-03-24,2021-01-11,Alpha,48.8036602599998,Previously infected (Pre-Omicron),BNT162b2,3 +284,2021-02-18,2021-01-11,Delta,98.4822362500002,Previously infected (Pre-Omicron),BNT162b2,3 +284,2021-03-24,2021-01-11,Delta,42.7911527100001,Previously infected (Pre-Omicron),BNT162b2,3 +285,2021-05-11,2021-04-28,Ancestral,458.1720963,Previously infected (Pre-Omicron),AZD1222,4 +285,2021-07-08,2021-04-28,Ancestral,252.2329721,Previously infected (Pre-Omicron),AZD1222,4 +285,2021-12-02,2021-04-28,Ancestral,178.2633469,Previously infected (Pre-Omicron),AZD1222,4 +285,2021-05-11,2021-04-28,Alpha,235.771518399999,Previously infected (Pre-Omicron),AZD1222,4 +285,2021-07-08,2021-04-28,Alpha,119.5316437,Previously infected (Pre-Omicron),AZD1222,4 +285,2021-12-02,2021-04-28,Alpha,91.3316871172036,Previously infected (Pre-Omicron),AZD1222,4 +285,2021-05-11,2021-04-28,Delta,249.375238500001,Previously infected (Pre-Omicron),AZD1222,4 +285,2021-07-08,2021-04-28,Delta,159.7644131,Previously infected (Pre-Omicron),AZD1222,4 +285,2021-12-02,2021-04-28,Delta,45.7387031300002,Previously infected (Pre-Omicron),AZD1222,4 +286,2021-06-02,2021-04-30,Ancestral,202.067223099999,Infection naive,AZD1222,1 +286,2021-06-02,2021-04-30,Alpha,5,Infection naive,AZD1222,1 +286,2021-06-02,2021-04-30,Delta,5,Infection naive,AZD1222,1 +287,2021-05-28,2021-05-06,Ancestral,267.0204364,Previously infected (Pre-Omicron),AZD1222,3 +287,2021-05-28,2021-05-06,Alpha,384.1640909,Previously infected (Pre-Omicron),AZD1222,3 +287,2021-05-28,2021-05-06,Delta,315.4054209,Previously infected (Pre-Omicron),AZD1222,3 +288,2021-06-11,2021-05-07,Ancestral,93.3550641612179,Previously infected (Pre-Omicron),AZD1222,2 +288,2021-06-11,2021-05-07,Alpha,5,Previously infected (Pre-Omicron),AZD1222,2 +288,2021-06-11,2021-05-07,Delta,5,Previously infected (Pre-Omicron),AZD1222,2 +289,2021-04-20,2021-03-24,Ancestral,2560,Infection naive,BNT162b2,2 +289,2021-06-28,2021-03-24,Ancestral,1136.026121,Infection naive,BNT162b2,2 +289,2021-04-20,2021-03-24,Alpha,1023.505653,Infection naive,BNT162b2,2 +289,2021-06-28,2021-03-24,Alpha,965.131054,Infection naive,BNT162b2,2 +289,2021-04-20,2021-03-24,Delta,1324.351075,Infection naive,BNT162b2,2 +289,2021-06-28,2021-03-24,Delta,965.131054,Infection naive,BNT162b2,2 +290,2021-04-12,2021-02-24,Ancestral,2560,Infection naive,BNT162b2,2 +290,2021-06-28,2021-02-24,Ancestral,80.9265345799999,Infection naive,BNT162b2,2 +290,2021-04-12,2021-02-24,Alpha,347.0249211,Infection naive,BNT162b2,2 +290,2021-06-28,2021-02-24,Alpha,137.889066,Infection naive,BNT162b2,2 +290,2021-04-12,2021-02-24,Delta,175.0121818,Infection naive,BNT162b2,2 +290,2021-06-28,2021-02-24,Delta,82.5021709899999,Infection naive,BNT162b2,2 +291,2021-02-18,2021-01-20,Ancestral,979.619547991975,Previously infected (Pre-Omicron),BNT162b2,2 +291,2021-02-18,2021-01-20,Alpha,930.247978689868,Previously infected (Pre-Omicron),BNT162b2,2 +291,2021-02-18,2021-01-20,Delta,677.331448270097,Previously infected (Pre-Omicron),BNT162b2,2 +292,2021-03-03,2021-02-24,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +292,2021-03-24,2021-02-24,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +292,2021-05-12,2021-02-24,Ancestral,1905.352765,Previously infected (Pre-Omicron),BNT162b2,3 +292,2021-08-04,2021-02-24,Ancestral,776.575323100002,Previously infected (Pre-Omicron),BNT162b2,3 +292,2021-03-03,2021-02-24,Alpha,1743.930335,Previously infected (Pre-Omicron),BNT162b2,3 +292,2021-03-24,2021-02-24,Alpha,1439.346826,Previously infected (Pre-Omicron),BNT162b2,3 +292,2021-05-12,2021-02-24,Alpha,1046.180564,Previously infected (Pre-Omicron),BNT162b2,3 +292,2021-08-04,2021-02-24,Alpha,447.8489687,Previously infected (Pre-Omicron),BNT162b2,3 +292,2021-03-03,2021-02-24,Delta,1327.838011,Previously infected (Pre-Omicron),BNT162b2,3 +292,2021-03-24,2021-02-24,Delta,1676.48475799999,Previously infected (Pre-Omicron),BNT162b2,3 +292,2021-05-12,2021-02-24,Delta,973.627541000001,Previously infected (Pre-Omicron),BNT162b2,3 +292,2021-08-04,2021-02-24,Delta,448.241677300001,Previously infected (Pre-Omicron),BNT162b2,3 +293,2021-02-01,2021-01-11,Ancestral,171.369106900001,Infection naive,BNT162b2,2 +293,2021-02-22,2021-01-11,Ancestral,159.6244421,Infection naive,BNT162b2,2 +293,2021-04-06,2021-01-11,Ancestral,207.8149884,Infection naive,BNT162b2,2 +293,2021-06-28,2021-01-11,Ancestral,47.95559391,Infection naive,BNT162b2,2 +293,2021-02-01,2021-01-11,Alpha,301.6169153,Infection naive,BNT162b2,2 +293,2021-02-22,2021-01-11,Alpha,152.111941300001,Infection naive,BNT162b2,2 +293,2021-04-06,2021-01-11,Alpha,149.3377252,Infection naive,BNT162b2,2 +293,2021-06-28,2021-01-11,Alpha,91.0120414500003,Infection naive,BNT162b2,2 +293,2021-02-01,2021-01-11,Delta,211.861138,Infection naive,BNT162b2,2 +293,2021-02-22,2021-01-11,Delta,121.0074409,Infection naive,BNT162b2,2 +293,2021-04-06,2021-01-11,Delta,94.1769112,Infection naive,BNT162b2,2 +293,2021-06-28,2021-01-11,Delta,5,Infection naive,BNT162b2,2 +294,2021-04-20,2021-04-08,Ancestral,225.06946,Infection naive,AZD1222,2 +294,2021-06-28,2021-04-08,Ancestral,72.6557930900001,Infection naive,AZD1222,2 +294,2021-04-20,2021-04-08,Alpha,164.021103800001,Infection naive,AZD1222,2 +294,2021-06-28,2021-04-08,Alpha,97.5372900100001,Infection naive,AZD1222,2 +294,2021-04-20,2021-04-08,Delta,67.2624239800003,Infection naive,AZD1222,2 +294,2021-06-28,2021-04-08,Delta,46.3846563599999,Infection naive,AZD1222,2 +295,2021-03-09,2021-03-09,Ancestral,111.9266968,Infection naive,BNT162b2,2 +295,2021-03-31,2021-03-09,Ancestral,1050.775475,Infection naive,BNT162b2,2 +295,2021-05-12,2021-03-09,Ancestral,629.805990200002,Infection naive,BNT162b2,2 +295,2021-07-28,2021-03-09,Ancestral,316.235864099999,Infection naive,BNT162b2,2 +295,2021-03-09,2021-03-09,Alpha,57.7988257483812,Infection naive,BNT162b2,2 +295,2021-03-31,2021-03-09,Alpha,586.128703399999,Infection naive,BNT162b2,2 +295,2021-05-12,2021-03-09,Alpha,399.9695656,Infection naive,BNT162b2,2 +295,2021-07-28,2021-03-09,Alpha,247.632749599999,Infection naive,BNT162b2,2 +295,2021-03-09,2021-03-09,Delta,5,Infection naive,BNT162b2,2 +295,2021-03-31,2021-03-09,Delta,579.4880186,Infection naive,BNT162b2,2 +295,2021-05-12,2021-03-09,Delta,339.503505299999,Infection naive,BNT162b2,2 +295,2021-07-28,2021-03-09,Delta,172.1217741,Infection naive,BNT162b2,2 +296,2021-06-09,2021-04-29,Ancestral,255.795178527938,Previously infected (Pre-Omicron),AZD1222,2 +296,2021-06-09,2021-04-29,Alpha,787.542650715989,Previously infected (Pre-Omicron),AZD1222,2 +296,2021-06-09,2021-04-29,Delta,321.264642258916,Previously infected (Pre-Omicron),AZD1222,2 +297,2021-06-11,2021-04-30,Ancestral,197.6876195,Infection naive,AZD1222,2 +297,2021-06-11,2021-04-30,Alpha,64.0968121900002,Infection naive,AZD1222,2 +297,2021-06-11,2021-04-30,Delta,5,Infection naive,AZD1222,2 +298,2021-06-11,2021-05-04,Ancestral,388.907172099179,Infection naive,AZD1222,2 +298,2021-07-16,2021-05-04,Ancestral,379.146391096023,Infection naive,AZD1222,2 +298,2021-09-17,2021-05-04,Ancestral,165.465056107443,Infection naive,AZD1222,2 +298,2021-06-11,2021-05-04,Alpha,601.218056900837,Infection naive,AZD1222,2 +298,2021-07-16,2021-05-04,Alpha,315.12909135797,Infection naive,AZD1222,2 +298,2021-09-17,2021-05-04,Alpha,180.148200793166,Infection naive,AZD1222,2 +298,2021-06-11,2021-05-04,Delta,355.335319792884,Infection naive,AZD1222,2 +298,2021-07-16,2021-05-04,Delta,321.828308569038,Infection naive,AZD1222,2 +298,2021-09-17,2021-05-04,Delta,127.429736224945,Infection naive,AZD1222,2 +299,2021-03-16,2021-03-11,Ancestral,143.185170342123,Previously infected (Pre-Omicron),BNT162b2,3 +299,2021-04-23,2021-03-11,Ancestral,888.801174300003,Previously infected (Pre-Omicron),BNT162b2,3 +299,2021-07-07,2021-03-11,Ancestral,72.7195032999999,Previously infected (Pre-Omicron),BNT162b2,3 +299,2021-03-16,2021-03-11,Alpha,320.701963182361,Previously infected (Pre-Omicron),BNT162b2,3 +299,2021-04-23,2021-03-11,Alpha,747.8515108,Previously infected (Pre-Omicron),BNT162b2,3 +299,2021-07-07,2021-03-11,Alpha,84.7003214900002,Previously infected (Pre-Omicron),BNT162b2,3 +299,2021-09-24,2021-03-11,Alpha,146.485655279567,Previously infected (Pre-Omicron),BNT162b2,3 +299,2021-03-16,2021-03-11,Delta,118.384726415322,Previously infected (Pre-Omicron),BNT162b2,3 +299,2021-04-23,2021-03-11,Delta,192.5572123,Previously infected (Pre-Omicron),BNT162b2,3 +299,2021-07-07,2021-03-11,Delta,82.8645272899999,Previously infected (Pre-Omicron),BNT162b2,3 +299,2021-09-24,2021-03-11,Delta,101.5502189,Previously infected (Pre-Omicron),BNT162b2,3 +300,2021-03-29,2021-02-27,Ancestral,2560,Infection naive,BNT162b2,2 +300,2021-03-29,2021-02-27,Alpha,830.795437600003,Infection naive,BNT162b2,2 +300,2021-03-29,2021-02-27,Delta,297.677392700001,Infection naive,BNT162b2,2 +301,2021-04-15,2021-03-15,Ancestral,1521.061544,Infection naive,BNT162b2,2 +301,2021-04-15,2021-03-15,Alpha,1395.862025,Infection naive,BNT162b2,2 +301,2021-04-15,2021-03-15,Delta,523.924869300001,Infection naive,BNT162b2,2 +302,2021-04-19,2021-03-18,Ancestral,813.501498699998,Infection naive,BNT162b2,2 +302,2021-06-29,2021-03-18,Ancestral,297.1560255,Infection naive,BNT162b2,2 +302,2021-09-24,2021-03-18,Ancestral,275.5802689,Infection naive,BNT162b2,2 +302,2021-04-19,2021-03-18,Alpha,391.643750499999,Infection naive,BNT162b2,2 +302,2021-06-29,2021-03-18,Alpha,472.445371200002,Infection naive,BNT162b2,2 +302,2021-09-24,2021-03-18,Alpha,199.777854367301,Infection naive,BNT162b2,2 +302,2021-04-19,2021-03-18,Delta,236.185184999999,Infection naive,BNT162b2,2 +302,2021-06-29,2021-03-18,Delta,183.8167226,Infection naive,BNT162b2,2 +302,2021-09-24,2021-03-18,Delta,120.1619114,Infection naive,BNT162b2,2 +303,2021-03-02,2021-03-02,Ancestral,134.310556300001,Previously infected (Pre-Omicron),BNT162b2,3 +303,2021-03-02,2021-03-02,Alpha,64.4347825330459,Previously infected (Pre-Omicron),BNT162b2,3 +303,2021-03-02,2021-03-02,Delta,5,Previously infected (Pre-Omicron),BNT162b2,3 +304,2021-01-29,2021-01-11,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +304,2021-03-18,2021-01-11,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +304,2021-04-29,2021-01-11,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +304,2021-07-22,2021-01-11,Ancestral,626.502560999998,Previously infected (Pre-Omicron),BNT162b2,3 +304,2021-01-29,2021-01-11,Alpha,2094.528381,Previously infected (Pre-Omicron),BNT162b2,3 +304,2021-03-18,2021-01-11,Alpha,1015.463555,Previously infected (Pre-Omicron),BNT162b2,3 +304,2021-04-29,2021-01-11,Alpha,1237.920091,Previously infected (Pre-Omicron),BNT162b2,3 +304,2021-07-22,2021-01-11,Alpha,1664.770459,Previously infected (Pre-Omicron),BNT162b2,3 +304,2021-01-29,2021-01-11,Delta,895.055299400003,Previously infected (Pre-Omicron),BNT162b2,3 +304,2021-03-18,2021-01-11,Delta,540.246517400001,Previously infected (Pre-Omicron),BNT162b2,3 +304,2021-04-29,2021-01-11,Delta,468.733176700001,Previously infected (Pre-Omicron),BNT162b2,3 +304,2021-07-22,2021-01-11,Delta,813.501498699998,Previously infected (Pre-Omicron),BNT162b2,3 +305,2021-03-16,2021-03-16,Ancestral,130.36705105991,Infection naive,AZD1222,1 +305,2021-05-11,2021-03-16,Ancestral,111.828636774095,Infection naive,AZD1222,1 +305,2021-03-16,2021-03-16,Alpha,5,Infection naive,AZD1222,1 +305,2021-05-11,2021-03-16,Alpha,5,Infection naive,AZD1222,1 +305,2021-03-16,2021-03-16,Delta,5,Infection naive,AZD1222,1 +305,2021-05-11,2021-03-16,Delta,5,Infection naive,AZD1222,1 +306,2021-02-02,2021-01-11,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +306,2021-02-23,2021-01-11,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +306,2021-04-09,2021-01-11,Ancestral,2011.75954500001,Previously infected (Pre-Omicron),BNT162b2,3 +306,2021-02-02,2021-01-11,Alpha,2146.567843,Previously infected (Pre-Omicron),BNT162b2,3 +306,2021-02-23,2021-01-11,Alpha,2560,Previously infected (Pre-Omicron),BNT162b2,3 +306,2021-04-09,2021-01-11,Alpha,1990.710915,Previously infected (Pre-Omicron),BNT162b2,3 +306,2021-02-02,2021-01-11,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,3 +306,2021-02-23,2021-01-11,Delta,2308.548869,Previously infected (Pre-Omicron),BNT162b2,3 +306,2021-04-09,2021-01-11,Delta,884.139275500002,Previously infected (Pre-Omicron),BNT162b2,3 +307,2021-03-23,2021-03-23,Ancestral,161.8787676,Infection naive,BNT162b2,2 +307,2021-03-23,2021-03-23,Alpha,90.6935144891519,Infection naive,BNT162b2,2 +307,2021-03-23,2021-03-23,Delta,40.5989332000001,Infection naive,BNT162b2,2 +308,2021-04-23,2021-03-23,Ancestral,977.903792999997,Infection naive,BNT162b2,2 +308,2021-07-07,2021-03-23,Ancestral,145.2073292,Infection naive,BNT162b2,2 +308,2021-04-23,2021-03-23,Alpha,465.050150400001,Infection naive,BNT162b2,2 +308,2021-07-07,2021-03-23,Alpha,156.5759152,Infection naive,BNT162b2,2 +308,2021-04-23,2021-03-23,Delta,355.0240073,Infection naive,BNT162b2,2 +308,2021-07-07,2021-03-23,Delta,99.8730697099998,Infection naive,BNT162b2,2 +309,2021-03-22,2021-03-14,Ancestral,2560,Infection naive,BNT162b2,2 +309,2021-03-22,2021-03-14,Alpha,532.256315000001,Infection naive,BNT162b2,2 +309,2021-03-22,2021-03-14,Delta,649.426115799998,Infection naive,BNT162b2,2 +310,2021-04-20,2021-03-18,Ancestral,2560,Infection naive,BNT162b2,2 +310,2021-06-29,2021-03-18,Ancestral,1058.169346,Infection naive,BNT162b2,2 +310,2021-12-14,2021-03-18,Ancestral,695.377960810212,Infection naive,BNT162b2,2 +310,2022-01-17,2021-03-18,Ancestral,607.57498998905,Infection naive,BNT162b2,2 +310,2022-07-14,2021-03-18,Ancestral,936.793747699999,Infection naive,BNT162b2,2 +310,2021-04-20,2021-03-18,Alpha,1353.690964,Infection naive,BNT162b2,2 +310,2021-06-29,2021-03-18,Alpha,725.257808200001,Infection naive,BNT162b2,2 +310,2021-12-14,2021-03-18,Alpha,1007.4846472003,Infection naive,BNT162b2,2 +310,2022-01-17,2021-03-18,Alpha,941.733283569616,Infection naive,BNT162b2,2 +310,2022-07-14,2021-03-18,Alpha,695.377960799999,Infection naive,BNT162b2,2 +310,2021-04-20,2021-03-18,Delta,602.272908000001,Infection naive,BNT162b2,2 +310,2021-06-29,2021-03-18,Delta,456.9689249,Infection naive,BNT162b2,2 +310,2021-12-14,2021-03-18,Delta,371.905407571902,Infection naive,BNT162b2,2 +310,2022-01-17,2021-03-18,Delta,416.060483272753,Infection naive,BNT162b2,2 +311,2021-04-27,2021-04-01,Ancestral,357.522163954259,Infection naive,AZD1222,3 +311,2021-04-27,2021-04-01,Alpha,515.272006078912,Infection naive,AZD1222,3 +311,2021-04-27,2021-04-01,Delta,301.616915337642,Infection naive,AZD1222,3 +312,2021-04-23,2021-03-23,Ancestral,888.801174300003,Infection naive,BNT162b2,2 +312,2021-07-16,2021-03-23,Ancestral,67.2034947699999,Infection naive,BNT162b2,2 +312,2021-04-23,2021-03-23,Alpha,291.225534900001,Infection naive,BNT162b2,2 +312,2021-07-16,2021-03-23,Alpha,114.8081484,Infection naive,BNT162b2,2 +312,2021-09-24,2021-03-23,Alpha,109.500798270708,Infection naive,BNT162b2,2 +312,2021-04-23,2021-03-23,Delta,124.8865576,Infection naive,BNT162b2,2 +312,2021-07-16,2021-03-23,Delta,44.3957646400001,Infection naive,BNT162b2,2 +312,2021-09-24,2021-03-23,Delta,47.1222645000002,Infection naive,BNT162b2,2 +313,2021-03-15,2021-03-09,Ancestral,2560,Infection naive,BNT162b2,2 +313,2021-04-06,2021-03-09,Ancestral,1347.771441,Infection naive,BNT162b2,2 +313,2021-05-18,2021-03-09,Ancestral,775.894958500002,Infection naive,BNT162b2,2 +313,2021-08-10,2021-03-09,Ancestral,339.801208099999,Infection naive,BNT162b2,2 +313,2021-03-15,2021-03-09,Alpha,1001.32219871309,Infection naive,BNT162b2,2 +313,2021-04-06,2021-03-09,Alpha,2433.20351999999,Infection naive,BNT162b2,2 +313,2021-05-18,2021-03-09,Alpha,2560,Infection naive,BNT162b2,2 +313,2021-08-10,2021-03-09,Alpha,199.953035,Infection naive,BNT162b2,2 +313,2021-03-15,2021-03-09,Delta,2560,Infection naive,BNT162b2,2 +313,2021-04-06,2021-03-09,Delta,812.076691199999,Infection naive,BNT162b2,2 +313,2021-05-18,2021-03-09,Delta,516.628685899999,Infection naive,BNT162b2,2 +313,2021-08-10,2021-03-09,Delta,184.4623099,Infection naive,BNT162b2,2 +314,2021-06-02,2021-04-29,Ancestral,203.667521299999,Infection naive,AZD1222,2 +314,2021-06-02,2021-04-29,Alpha,40.4568437,Infection naive,AZD1222,2 +314,2021-06-02,2021-04-29,Delta,61.4560919600002,Infection naive,AZD1222,2 +315,2021-04-19,2021-03-17,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +315,2021-06-29,2021-03-17,Ancestral,2223.160726,Previously infected (Pre-Omicron),BNT162b2,3 +315,2021-11-30,2021-03-17,Ancestral,2286.398127,Previously infected (Pre-Omicron),BNT162b2,3 +315,2021-04-19,2021-03-17,Alpha,2098.20327900001,Previously infected (Pre-Omicron),BNT162b2,3 +315,2021-06-29,2021-03-17,Alpha,1820.46058,Previously infected (Pre-Omicron),BNT162b2,3 +315,2021-11-30,2021-03-17,Alpha,983.060094309901,Previously infected (Pre-Omicron),BNT162b2,3 +315,2021-04-19,2021-03-17,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,3 +315,2021-06-29,2021-03-17,Delta,2560,Previously infected (Pre-Omicron),BNT162b2,3 +315,2021-11-30,2021-03-17,Delta,1148.037806,Previously infected (Pre-Omicron),BNT162b2,3 +316,2021-04-23,2021-03-12,Ancestral,460.5879509,Infection naive,BNT162b2,2 +316,2021-06-29,2021-03-12,Ancestral,191.0442123,Infection naive,BNT162b2,2 +316,2021-04-23,2021-03-12,Alpha,298.199674599999,Infection naive,BNT162b2,2 +316,2021-06-29,2021-03-12,Alpha,210.3807757,Infection naive,BNT162b2,2 +316,2021-04-23,2021-03-12,Delta,389.248195900001,Infection naive,BNT162b2,2 +316,2021-06-29,2021-03-12,Delta,164.5971664,Infection naive,BNT162b2,2 +317,2021-02-15,2020-12-29,Ancestral,109.213246450387,Infection naive,"",1 +317,2021-02-15,2020-12-29,Alpha,5,Infection naive,"",1 +317,2021-02-15,2020-12-29,Delta,5,Infection naive,"",1 +318,2021-04-23,2021-03-23,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +318,2021-06-29,2021-03-23,Ancestral,382.484188999999,Previously infected (Pre-Omicron),BNT162b2,3 +318,2021-04-23,2021-03-23,Alpha,508.541860499999,Previously infected (Pre-Omicron),BNT162b2,3 +318,2021-06-29,2021-03-23,Alpha,357.522164,Previously infected (Pre-Omicron),BNT162b2,3 +318,2021-04-23,2021-03-23,Delta,351.925844300001,Previously infected (Pre-Omicron),BNT162b2,3 +318,2021-06-29,2021-03-23,Delta,218.269778,Previously infected (Pre-Omicron),BNT162b2,3 +319,2021-03-05,2021-03-01,Ancestral,501.89961977487,Previously infected (Pre-Omicron),BNT162b2,3 +319,2021-04-16,2021-03-01,Ancestral,1047.097936,Previously infected (Pre-Omicron),BNT162b2,3 +319,2021-03-05,2021-03-01,Alpha,403.137177574692,Previously infected (Pre-Omicron),BNT162b2,3 +319,2021-04-16,2021-03-01,Alpha,677.331448299999,Previously infected (Pre-Omicron),BNT162b2,3 +319,2021-03-05,2021-03-01,Delta,190.542525447934,Previously infected (Pre-Omicron),BNT162b2,3 +319,2021-04-16,2021-03-01,Delta,374.194229200001,Previously infected (Pre-Omicron),BNT162b2,3 +320,2021-02-19,2021-01-11,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +320,2021-03-12,2021-01-11,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +320,2021-05-14,2021-01-11,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +320,2021-02-19,2021-01-11,Alpha,792.389433300002,Previously infected (Pre-Omicron),BNT162b2,3 +320,2021-03-12,2021-01-11,Alpha,937.615200800003,Previously infected (Pre-Omicron),BNT162b2,3 +320,2021-05-14,2021-01-11,Alpha,1127.099904,Previously infected (Pre-Omicron),BNT162b2,3 +320,2021-02-19,2021-01-11,Delta,557.565115799999,Previously infected (Pre-Omicron),BNT162b2,3 +320,2021-03-12,2021-01-11,Delta,681.4999568,Previously infected (Pre-Omicron),BNT162b2,3 +320,2021-05-14,2021-01-11,Delta,651.706981500002,Previously infected (Pre-Omicron),BNT162b2,3 +321,2021-04-19,2021-03-24,Ancestral,430.528648299999,Infection naive,BNT162b2,2 +321,2021-07-08,2021-03-24,Ancestral,288.937258,Infection naive,BNT162b2,2 +321,2021-09-29,2021-03-24,Ancestral,229.854131600001,Infection naive,BNT162b2,2 +321,2021-04-19,2021-03-24,Alpha,311.2858018,Infection naive,BNT162b2,2 +321,2021-07-08,2021-03-24,Alpha,130.9396338,Infection naive,BNT162b2,2 +321,2021-09-29,2021-03-24,Alpha,145.334658200302,Infection naive,BNT162b2,2 +321,2021-04-19,2021-03-24,Delta,215.230150699999,Infection naive,BNT162b2,2 +321,2021-07-08,2021-03-24,Delta,170.320899100001,Infection naive,BNT162b2,2 +321,2021-09-29,2021-03-24,Delta,70.7082208599999,Infection naive,BNT162b2,2 +322,2021-04-20,2021-03-20,Ancestral,1167.316583,Infection naive,BNT162b2,2 +322,2021-06-29,2021-03-20,Ancestral,174.3996683,Infection naive,BNT162b2,2 +322,2021-12-02,2021-03-20,Ancestral,110.5616476,Infection naive,BNT162b2,2 +322,2021-04-20,2021-03-20,Alpha,1489.398942,Infection naive,BNT162b2,2 +322,2021-06-29,2021-03-20,Alpha,417.887855000001,Infection naive,BNT162b2,2 +322,2021-12-02,2021-03-20,Alpha,128.101649069628,Infection naive,BNT162b2,2 +322,2021-04-20,2021-03-20,Delta,1059.09723,Infection naive,BNT162b2,2 +322,2021-06-29,2021-03-20,Delta,292.761111899999,Infection naive,BNT162b2,2 +322,2021-12-02,2021-03-20,Delta,71.2057652699998,Infection naive,BNT162b2,2 +323,2021-02-02,2020-12-27,Ancestral,114.4063389926,Infection naive,BNT162b2,1 +323,2021-02-23,2020-12-27,Ancestral,138.737678205393,Infection naive,BNT162b2,1 +323,2021-02-02,2020-12-27,Alpha,107.033623347396,Infection naive,BNT162b2,1 +323,2021-02-23,2020-12-27,Alpha,60.0187886685244,Infection naive,BNT162b2,1 +323,2021-02-02,2020-12-27,Delta,5,Infection naive,BNT162b2,1 +323,2021-02-23,2020-12-27,Delta,5,Infection naive,BNT162b2,1 +324,2021-06-09,2021-05-06,Ancestral,461.800650900001,Previously infected (Pre-Omicron),AZD1222,3 +324,2021-07-16,2021-05-06,Ancestral,388.907172100001,Previously infected (Pre-Omicron),AZD1222,3 +324,2021-06-09,2021-05-06,Alpha,817.074464,Previously infected (Pre-Omicron),AZD1222,3 +324,2021-07-16,2021-05-06,Alpha,261.6913767,Previously infected (Pre-Omicron),AZD1222,3 +324,2021-06-09,2021-05-06,Delta,325.5163233,Previously infected (Pre-Omicron),AZD1222,3 +324,2021-07-16,2021-05-06,Delta,229.0496805,Previously infected (Pre-Omicron),AZD1222,3 +325,2021-04-19,2021-03-29,Ancestral,2560,Previously infected (Pre-Omicron),BNT162b2,3 +325,2021-06-28,2021-03-29,Ancestral,303.4731597,Previously infected (Pre-Omicron),BNT162b2,3 +325,2021-04-19,2021-03-29,Alpha,1672.082267,Previously infected (Pre-Omicron),BNT162b2,3 +325,2021-06-28,2021-03-29,Alpha,812.788782800003,Previously infected (Pre-Omicron),BNT162b2,3 +325,2021-04-19,2021-03-29,Delta,1011.023059,Previously infected (Pre-Omicron),BNT162b2,3 +325,2021-06-28,2021-03-29,Delta,651.1360152,Previously infected (Pre-Omicron),BNT162b2,3 +326,2021-05-05,2021-03-18,Ancestral,804.284739699998,Infection naive,BNT162b2,2 +326,2021-07-08,2021-03-18,Ancestral,487.1632965,Infection naive,BNT162b2,2 +326,2021-05-05,2021-03-18,Alpha,553.184101099999,Infection naive,BNT162b2,2 +326,2021-07-08,2021-03-18,Alpha,465.050150400001,Infection naive,BNT162b2,2 +326,2021-05-05,2021-03-18,Delta,380.144660400001,Infection naive,BNT162b2,2 +326,2021-07-08,2021-03-18,Delta,245.686998900001,Infection naive,BNT162b2,2 +327,2021-06-11,2021-05-06,Ancestral,278.250104599999,Infection naive,AZD1222,2 +327,2021-07-08,2021-05-06,Ancestral,220.7710563,Infection naive,AZD1222,2 +327,2021-06-11,2021-05-06,Alpha,206.182101900001,Infection naive,AZD1222,2 +327,2021-07-08,2021-05-06,Alpha,155.6181924,Infection naive,AZD1222,2 +327,2021-06-11,2021-05-06,Delta,41.4256862299999,Infection naive,AZD1222,2 +327,2021-07-08,2021-05-06,Delta,68.9940342600001,Infection naive,AZD1222,2 +328,2021-04-15,2021-03-23,Ancestral,633.1268378,Infection naive,BNT162b2,2 +328,2021-06-28,2021-03-23,Ancestral,128.5515581,Infection naive,BNT162b2,2 +328,2021-04-15,2021-03-23,Alpha,719.559164000002,Infection naive,BNT162b2,2 +328,2021-06-28,2021-03-23,Alpha,280.2080351,Infection naive,BNT162b2,2 +328,2021-09-28,2021-03-23,Alpha,212.605220770371,Infection naive,BNT162b2,2 +328,2021-04-15,2021-03-23,Delta,348.243716,Infection naive,BNT162b2,2 +328,2021-06-28,2021-03-23,Delta,155.8912282,Infection naive,BNT162b2,2 +328,2021-09-28,2021-03-23,Delta,193.7422693,Infection naive,BNT162b2,2 +329,2021-04-06,2021-03-08,Ancestral,494.043349599999,Previously infected (Pre-Omicron),BNT162b2,3 +329,2021-06-29,2021-03-08,Ancestral,388.226020499999,Previously infected (Pre-Omicron),BNT162b2,3 +329,2021-04-06,2021-03-08,Alpha,527.149266099999,Previously infected (Pre-Omicron),BNT162b2,3 +329,2021-06-29,2021-03-08,Alpha,155.0735547,Previously infected (Pre-Omicron),BNT162b2,3 +329,2021-04-06,2021-03-08,Delta,324.3770705,Previously infected (Pre-Omicron),BNT162b2,3 +329,2021-06-29,2021-03-08,Delta,190.3755894,Previously infected (Pre-Omicron),BNT162b2,3 +330,2021-04-19,2021-03-23,Ancestral,604.388165800002,Infection naive,BNT162b2,2 +330,2021-06-29,2021-03-23,Ancestral,320.420993300001,Infection naive,BNT162b2,2 +330,2021-04-19,2021-03-23,Alpha,878.731289700001,Infection naive,BNT162b2,2 +330,2021-06-29,2021-03-23,Alpha,246.982459799999,Infection naive,BNT162b2,2 +330,2021-04-19,2021-03-23,Delta,597.540606,Infection naive,BNT162b2,2 +330,2021-06-29,2021-03-23,Delta,212.6052208,Infection naive,BNT162b2,2 +331,2021-06-09,2021-04-20,Ancestral,183.6556791,Infection naive,AZD1222,2 +331,2021-06-09,2021-04-20,Alpha,45.7387031300002,Infection naive,AZD1222,2 +331,2021-06-09,2021-04-20,Delta,40.3152515,Infection naive,AZD1222,2 +332,2021-02-05,2021-01-16,Ancestral,165.61014864394,Infection naive,BNT162b2,1 +332,2021-02-26,2021-01-16,Ancestral,154.260170083228,Infection naive,BNT162b2,1 +332,2021-02-05,2021-01-16,Alpha,176.243669879066,Infection naive,BNT162b2,1 +332,2021-02-26,2021-01-16,Alpha,155.891228179604,Infection naive,BNT162b2,1 +332,2021-02-05,2021-01-16,Delta,111.047243401498,Infection naive,BNT162b2,1 +332,2021-02-26,2021-01-16,Delta,68.3919488710283,Infection naive,BNT162b2,1 +333,2021-04-23,2021-03-24,Ancestral,438.1422931,Infection naive,BNT162b2,2 +333,2021-06-29,2021-03-24,Ancestral,163.733829,Infection naive,BNT162b2,2 +333,2021-09-22,2021-03-24,Ancestral,103.5273976,Infection naive,BNT162b2,2 +333,2021-04-23,2021-03-24,Alpha,580.5047439,Infection naive,BNT162b2,2 +333,2021-06-29,2021-03-24,Alpha,165.900715500001,Infection naive,BNT162b2,2 +333,2021-09-22,2021-03-24,Alpha,151.181523110332,Infection naive,BNT162b2,2 +333,2021-04-23,2021-03-24,Delta,171.2189689,Infection naive,BNT162b2,2 +333,2021-06-29,2021-03-24,Delta,84.9233322799998,Infection naive,BNT162b2,2 +333,2021-09-22,2021-03-24,Delta,44.4346942700001,Infection naive,BNT162b2,2 +334,2021-04-13,2021-04-13,Ancestral,88.1851052684112,Infection naive,AZD1222,2 +334,2021-07-16,2021-04-13,Ancestral,5,Infection naive,AZD1222,2 +334,2021-04-13,2021-04-13,Alpha,5,Infection naive,AZD1222,2 +334,2021-04-13,2021-04-13,Delta,5,Infection naive,AZD1222,2 +335,2021-06-09,2021-05-05,Ancestral,136.805615775511,Infection naive,AZD1222,1 +335,2021-06-29,2021-05-05,Ancestral,120.689672339818,Infection naive,AZD1222,1 +335,2021-06-09,2021-05-05,Alpha,70.0297688893001,Infection naive,AZD1222,1 +335,2021-06-29,2021-05-05,Alpha,50.9007153836499,Infection naive,AZD1222,1 +335,2021-06-09,2021-05-05,Delta,5,Infection naive,AZD1222,1 +335,2021-06-29,2021-05-05,Delta,5,Infection naive,AZD1222,1 diff --git a/inst/xbb_full.rds b/inst/xbb_full.rds index c6c0fc3..9760592 100644 --- a/inst/xbb_full.rds +++ b/inst/xbb_full.rds @@ -1,1040 +1,1040 @@ -pid,day,last_exp_day,titre_type,value,censored,infection_history,last_vax_type,exp_num -1,2022-12-07,2022-11-16,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,7 -1,2022-12-07,2022-11-16,BQ.1.1,2560,1,Previously infected (Omicron),BNT162b2+BA1,7 -1,2022-12-07,2022-11-16,XBB,2560,1,Previously infected (Omicron),BNT162b2+BA1,7 -2,2023-01-10,2022-12-24,BA.5,2560,1,Infection naive,mRNA1273.214,5 -2,2023-01-10,2022-12-24,BQ.1.1,2560,1,Infection naive,mRNA1273.214,5 -2,2023-01-10,2022-12-24,XBB,526.68742586838,0,Infection naive,mRNA1273.214,5 -3,2022-12-05,2022-11-03,BA.5,2560,1,Previously infected (Pre-Omicron),mRNA1273.214,5 -3,2022-12-05,2022-11-03,BQ.1.1,915.686741374287,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -3,2022-12-05,2022-11-03,XBB,865.734924846528,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -4,2022-11-08,2022-10-22,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,5 -4,2023-01-26,2022-10-22,BA.5,1928.8771992866,0,Previously infected (Omicron),BNT162b2+BA1,5 -4,2022-11-08,2022-10-22,BQ.1.1,1012.79692277529,0,Previously infected (Omicron),BNT162b2+BA1,5 -4,2022-11-08,2022-10-22,XBB,838.109307219395,0,Previously infected (Omicron),BNT162b2+BA1,5 -4,2023-01-26,2022-10-22,XBB,722.719526832112,0,Previously infected (Omicron),BNT162b2+BA1,5 -5,2022-10-31,2022-10-14,BA.5,746.541685980024,0,Previously infected (Pre-Omicron),BNT162b2+BA1,5 -5,2022-10-31,2022-10-14,BQ.1.1,168.391207879496,0,Previously infected (Pre-Omicron),BNT162b2+BA1,5 -5,2022-10-31,2022-10-14,XBB,203.310807706972,0,Previously infected (Pre-Omicron),BNT162b2+BA1,5 -6,2022-10-25,2022-10-06,BA.5,2560,1,Previously infected (Omicron),BNT162b2,6 -6,2022-11-29,2022-10-06,BA.5,2560,1,Previously infected (Omicron),BNT162b2,6 -6,2022-10-25,2022-10-06,BQ.1.1,1715.12851348106,0,Previously infected (Omicron),BNT162b2,6 -6,2022-11-29,2022-10-06,BQ.1.1,788.924412670469,0,Previously infected (Omicron),BNT162b2,6 -6,2022-10-25,2022-10-06,XBB,670.244667599166,0,Previously infected (Omicron),BNT162b2,6 -6,2022-11-29,2022-10-06,XBB,470.791891216853,0,Previously infected (Omicron),BNT162b2,6 -7,2023-01-10,2022-12-15,BA.5,2560,1,Infection naive,BNT162b2,6 -7,2023-01-10,2022-12-15,BQ.1.1,1244.4474093604,0,Infection naive,BNT162b2,6 -7,2023-01-10,2022-12-15,XBB,1033.42142844445,0,Infection naive,BNT162b2,6 -8,2022-11-17,2022-10-20,BA.5,153.720285224454,0,Previously infected (Omicron),BNT162b2+BA1,7 -8,2023-01-19,2022-10-20,BA.5,166.629365047301,0,Previously infected (Omicron),BNT162b2+BA1,7 -8,2022-11-17,2022-10-20,BQ.1.1,84.1084849867384,0,Previously infected (Omicron),BNT162b2+BA1,7 -8,2023-01-19,2022-10-20,BQ.1.1,82.5021709921175,0,Previously infected (Omicron),BNT162b2+BA1,7 -8,2022-11-17,2022-10-20,XBB,232.488161617546,0,Previously infected (Omicron),BNT162b2+BA1,7 -8,2023-01-19,2022-10-20,XBB,202.776908468151,0,Previously infected (Omicron),BNT162b2+BA1,7 -9,2022-12-15,2022-11-26,BA.5,1074.99633949503,0,Infection naive,BNT162b2,5 -9,2022-12-15,2022-11-26,BQ.1.1,60.6533927347565,0,Infection naive,BNT162b2,5 -9,2022-12-15,2022-11-26,XBB,170.320899089179,0,Infection naive,BNT162b2,5 -10,2022-11-29,2022-11-12,BA.5,689.309654812605,0,Previously infected (Omicron),BNT162b2+BA1,5 -10,2022-11-29,2022-11-12,XBB,639.821155970214,0,Previously infected (Omicron),BNT162b2+BA1,5 -11,2022-12-15,2022-12-10,BA.5,841.052851881079,0,Infection naive,BNT162b2,5 -11,2022-12-15,2022-12-10,BQ.1.1,347.633784418704,0,Infection naive,BNT162b2,5 -11,2022-12-15,2022-12-10,XBB,312.652994547998,0,Infection naive,BNT162b2,5 -12,2022-10-11,2022-10-10,BA.5,1713.62587400833,0,Previously infected (Omicron),mRNA1273.214,5 -12,2022-10-27,2022-10-10,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -12,2023-01-09,2022-10-10,BA.5,2452.47359807276,0,Previously infected (Omicron),mRNA1273.214,5 -12,2022-10-11,2022-10-10,BQ.1.1,468.733176704257,0,Previously infected (Omicron),mRNA1273.214,5 -12,2022-10-27,2022-10-10,BQ.1.1,2560,1,Previously infected (Omicron),mRNA1273.214,5 -12,2023-01-09,2022-10-10,BQ.1.1,530.393506734487,0,Previously infected (Omicron),mRNA1273.214,5 -12,2022-10-11,2022-10-10,XBB,485.883993530426,0,Previously infected (Omicron),mRNA1273.214,5 -12,2022-10-27,2022-10-10,XBB,604.388165753405,0,Previously infected (Omicron),mRNA1273.214,5 -12,2023-01-09,2022-10-10,XBB,648.857147733311,0,Previously infected (Omicron),mRNA1273.214,5 -13,2022-10-05,2022-10-05,BA.5,205.280493178553,0,Previously infected (Omicron),mRNA1273.214,5 -13,2022-10-19,2022-10-05,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -13,2022-10-05,2022-10-05,BQ.1.1,83.8141193218092,0,Previously infected (Omicron),mRNA1273.214,5 -13,2022-10-19,2022-10-05,BQ.1.1,1817.27213393727,0,Previously infected (Omicron),mRNA1273.214,5 -13,2022-10-05,2022-10-05,XBB,155.209535185678,0,Previously infected (Omicron),mRNA1273.214,5 -13,2022-10-19,2022-10-05,XBB,954.196371742937,0,Previously infected (Omicron),mRNA1273.214,5 -14,2022-11-16,2022-10-29,BA.5,584.077350753164,0,Infection naive,BNT162b2+BA1,4 -14,2022-11-16,2022-10-29,BQ.1.1,316.235864122116,0,Infection naive,BNT162b2+BA1,4 -14,2022-11-16,2022-10-29,XBB,271.980819890889,0,Infection naive,BNT162b2+BA1,4 -15,2022-10-19,2022-10-19,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,5 -15,2022-11-15,2022-10-19,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,5 -15,2022-10-19,2022-10-19,BQ.1.1,2560,1,Previously infected (Omicron),BNT162b2+BA1,5 -15,2022-11-15,2022-10-19,BQ.1.1,2560,1,Previously infected (Omicron),BNT162b2+BA1,5 -15,2022-10-19,2022-10-19,XBB,282.427179783672,0,Previously infected (Omicron),BNT162b2+BA1,5 -15,2022-11-15,2022-10-19,XBB,679.114820683619,0,Previously infected (Omicron),BNT162b2+BA1,5 -16,2022-10-13,2022-09-16,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -16,2022-10-13,2022-09-16,BQ.1.1,566.928199132255,0,Previously infected (Omicron),mRNA1273.214,5 -16,2022-10-13,2022-09-16,XBB,409.189050588546,0,Previously infected (Omicron),mRNA1273.214,5 -17,2022-10-11,2022-10-11,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,5 -17,2022-10-31,2022-10-11,BA.5,1852.65435025565,0,Previously infected (Omicron),BNT162b2+BA1,5 -17,2022-10-11,2022-10-11,BQ.1.1,2163.56787179813,0,Previously infected (Omicron),BNT162b2+BA1,5 -17,2022-10-31,2022-10-11,BQ.1.1,722.719526832112,0,Previously infected (Omicron),BNT162b2+BA1,5 -17,2022-10-11,2022-10-11,XBB,724.622403289654,0,Previously infected (Omicron),BNT162b2+BA1,5 -17,2022-10-31,2022-10-11,XBB,743.928914630903,0,Previously infected (Omicron),BNT162b2+BA1,5 -18,2022-10-18,2022-09-28,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -18,2022-12-20,2022-09-28,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -18,2022-10-18,2022-09-28,BQ.1.1,2560,1,Previously infected (Omicron),mRNA1273.214,5 -18,2022-12-20,2022-09-28,BQ.1.1,2560,1,Previously infected (Omicron),mRNA1273.214,5 -18,2022-10-18,2022-09-28,XBB,674.369561907129,0,Previously infected (Omicron),mRNA1273.214,5 -18,2022-12-20,2022-09-28,XBB,1072.17337236473,0,Previously infected (Omicron),mRNA1273.214,5 -19,2023-01-09,2022-12-19,BA.5,1277.60390288493,0,Infection naive,BNT162b2,5 -19,2023-01-09,2022-12-19,BQ.1.1,209.828310596494,0,Infection naive,BNT162b2,5 -19,2023-01-09,2022-12-19,XBB,629.805990224052,0,Infection naive,BNT162b2,5 -20,2022-11-02,2022-11-02,BA.5,954.196371742937,0,Infection naive,BNT162b2+BA1,4 -20,2022-11-29,2022-11-02,BA.5,1307.05326853793,0,Infection naive,BNT162b2+BA1,4 -20,2022-11-02,2022-11-02,BQ.1.1,205.64066259314,0,Infection naive,BNT162b2+BA1,4 -20,2022-11-29,2022-11-02,BQ.1.1,263.071225684515,0,Infection naive,BNT162b2+BA1,4 -20,2022-11-02,2022-11-02,XBB,158.23145867532,0,Infection naive,BNT162b2+BA1,4 -20,2022-11-29,2022-11-02,XBB,465.050150429012,0,Infection naive,BNT162b2+BA1,4 -21,2023-01-12,2022-12-14,BA.5,715.784965588677,0,Infection naive,mRNA1273.214,7 -21,2023-01-12,2022-12-14,BQ.1.1,210.934695505106,0,Infection naive,mRNA1273.214,7 -21,2023-01-12,2022-12-14,XBB,517.535122942769,0,Infection naive,mRNA1273.214,7 -22,2022-10-25,2022-10-07,BA.5,2027.69194082687,0,Infection naive,mRNA1273.214,4 -22,2023-01-10,2022-10-07,BA.5,877.192235415596,0,Infection naive,mRNA1273.214,4 -22,2022-10-25,2022-10-07,BQ.1.1,900.56374830924,0,Infection naive,mRNA1273.214,4 -22,2023-01-10,2022-10-07,BQ.1.1,1560.21989763772,0,Infection naive,mRNA1273.214,4 -22,2022-10-25,2022-10-07,XBB,1233.58757758038,0,Infection naive,mRNA1273.214,4 -22,2023-01-10,2022-10-07,XBB,202.067223119486,0,Infection naive,mRNA1273.214,4 -23,2023-01-12,2022-12-07,BA.5,1518.3974797845,0,Infection naive,BNT162b2+BA1,6 -23,2023-01-12,2022-12-07,BQ.1.1,742.625960058114,0,Infection naive,BNT162b2+BA1,6 -23,2023-01-12,2022-12-07,XBB,255.57107407794,0,Infection naive,BNT162b2+BA1,6 -24,2022-10-11,2022-10-11,BA.5,184.94798791806,0,Previously infected (Omicron),mRNA1273.214,6 -24,2022-10-25,2022-10-11,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,6 -24,2022-10-11,2022-10-11,BQ.1.1,78.1384336132144,0,Previously infected (Omicron),mRNA1273.214,6 -24,2022-10-25,2022-10-11,BQ.1.1,2176.88314192367,0,Previously infected (Omicron),mRNA1273.214,6 -24,2022-10-11,2022-10-11,XBB,432.04071874368,0,Previously infected (Omicron),mRNA1273.214,6 -24,2022-10-25,2022-10-11,XBB,613.461207471414,0,Previously infected (Omicron),mRNA1273.214,6 -25,2022-12-01,2022-11-07,BA.5,2560,1,Infection naive,BNT162b2+BA1,5 -25,2022-12-01,2022-11-07,BQ.1.1,1537.14437134832,0,Infection naive,BNT162b2+BA1,5 -25,2022-12-01,2022-11-07,XBB,874.888706783397,0,Infection naive,BNT162b2+BA1,5 -26,2023-01-09,2022-12-03,BA.5,2560,1,Infection naive,BNT162b2,4 -26,2023-01-09,2022-12-03,BQ.1.1,1625.83566866185,0,Infection naive,BNT162b2,4 -26,2023-01-09,2022-12-03,XBB,657.44425406711,0,Infection naive,BNT162b2,4 -27,2022-10-05,2022-09-21,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -27,2022-12-07,2022-09-21,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -27,2022-10-05,2022-09-21,BQ.1.1,2560,1,Previously infected (Omicron),mRNA1273.214,5 -27,2022-12-07,2022-09-21,BQ.1.1,504.546041334375,0,Previously infected (Omicron),mRNA1273.214,5 -27,2022-10-05,2022-09-21,XBB,618.861785134304,0,Previously infected (Omicron),mRNA1273.214,5 -27,2022-12-07,2022-09-21,XBB,1111.40389844914,0,Previously infected (Omicron),mRNA1273.214,5 -28,2022-09-13,2022-08-21,BA.5,628.702916289441,0,Infection naive,mRNA1273,5 -28,2022-09-13,2022-08-21,BQ.1.1,87.8764721126324,0,Infection naive,mRNA1273,5 -28,2023-01-09,2022-08-21,BQ.1.1,168.243678832062,0,Infection naive,mRNA1273,5 -28,2022-09-13,2022-08-21,XBB,1283.21524389287,0,Infection naive,mRNA1273,5 -28,2023-01-09,2022-08-21,XBB,334.775575709082,0,Infection naive,mRNA1273,5 -29,2022-12-15,2022-11-25,BA.5,712.030563393995,0,Infection naive,BNT162b2,6 -29,2022-12-15,2022-11-25,BQ.1.1,409.189050588546,0,Infection naive,BNT162b2,6 -29,2022-12-15,2022-11-25,XBB,477.859393050193,0,Infection naive,BNT162b2,6 -30,2022-10-11,2022-09-24,BA.5,1450.74592374035,0,Infection naive,mRNA1273.214,4 -30,2022-10-11,2022-09-24,BQ.1.1,728.44319986931,0,Infection naive,mRNA1273.214,4 -30,2022-10-11,2022-09-24,XBB,420.459666934083,0,Infection naive,mRNA1273.214,4 -31,2022-11-24,2022-11-07,BA.5,496.648346512341,0,Infection naive,BNT162b2,6 -31,2022-11-24,2022-11-07,BQ.1.1,121.32604610522,0,Infection naive,BNT162b2,6 -31,2022-11-24,2022-11-07,XBB,364.802713224805,0,Infection naive,BNT162b2,6 -32,2022-11-17,2022-10-22,BA.5,1359.63648568647,0,Previously infected (Omicron),BNT162b2+BA1,5 -32,2022-12-15,2022-10-22,BA.5,1345.41088669668,0,Previously infected (Omicron),BNT162b2+BA1,5 -32,2022-11-17,2022-10-22,BQ.1.1,1177.5930015306,0,Previously infected (Omicron),BNT162b2+BA1,5 -32,2022-11-17,2022-10-22,XBB,630.910999527615,0,Previously infected (Omicron),BNT162b2+BA1,5 -32,2022-12-15,2022-10-22,XBB,468.322515364327,0,Previously infected (Omicron),BNT162b2+BA1,5 -33,2022-10-20,2022-10-03,BA.5,1416.81662834194,0,Infection naive,mRNA1273.214,4 -33,2022-10-20,2022-10-03,BQ.1.1,930.247978689868,0,Infection naive,mRNA1273.214,4 -33,2022-10-20,2022-10-03,XBB,198.034467000762,0,Infection naive,mRNA1273.214,4 -34,2022-11-01,2022-10-07,BA.5,2560,1,Infection naive,BNT162b2,5 -34,2022-11-01,2022-10-07,BQ.1.1,179.675127136321,0,Infection naive,BNT162b2,5 -34,2022-11-01,2022-10-07,XBB,127.54147645632,0,Infection naive,BNT162b2,5 -35,2022-11-22,2022-11-08,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,6 -35,2022-11-22,2022-11-08,BQ.1.1,2560,1,Previously infected (Omicron),BNT162b2+BA1,6 -35,2022-11-22,2022-11-08,XBB,677.925384779656,0,Previously infected (Omicron),BNT162b2+BA1,6 -36,2022-11-03,2022-10-15,BA.5,2560,1,Infection naive,mRNA1273.214,4 -36,2022-11-03,2022-10-15,BQ.1.1,562.473614824264,0,Infection naive,mRNA1273.214,4 -36,2022-11-03,2022-10-15,XBB,896.625694802478,0,Infection naive,mRNA1273.214,4 -37,2023-01-19,2023-01-05,BA.5,1387.32400109694,0,Infection naive,BNT162b2+BA1,8 -37,2023-01-19,2023-01-05,BQ.1.1,514.369532733211,0,Infection naive,BNT162b2+BA1,8 -37,2023-01-19,2023-01-05,XBB,443.551816107547,0,Infection naive,BNT162b2+BA1,8 -38,2022-12-15,2022-12-01,BA.5,2560,1,Infection naive,BNT162b2,6 -38,2023-01-12,2022-12-01,BA.5,2560,1,Infection naive,BNT162b2,6 -38,2022-12-15,2022-12-01,BQ.1.1,2560,1,Infection naive,BNT162b2,6 -38,2023-01-12,2022-12-01,BQ.1.1,898.198845502773,0,Infection naive,BNT162b2,6 -38,2022-12-15,2022-12-01,XBB,536.001581864688,0,Infection naive,BNT162b2,6 -38,2023-01-12,2022-12-01,XBB,935.152999952079,0,Infection naive,BNT162b2,6 -39,2022-11-30,2022-11-03,BA.5,858.179976699107,0,Previously infected (Omicron),BNT162b2+BA1,7 -39,2022-11-30,2022-11-03,BQ.1.1,538.827816606237,0,Previously infected (Omicron),BNT162b2+BA1,7 -39,2022-11-30,2022-11-03,XBB,858.179976699107,0,Previously infected (Omicron),BNT162b2+BA1,7 -40,2022-12-01,2022-11-11,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,5 -40,2022-12-01,2022-11-11,BQ.1.1,2560,1,Previously infected (Omicron),BNT162b2+BA1,5 -40,2022-12-01,2022-11-11,XBB,767.104271700557,0,Previously infected (Omicron),BNT162b2+BA1,5 -41,2022-09-29,2022-09-15,BA.5,2560,1,Previously infected (Pre-Omicron),mRNA1273.214,5 -41,2022-11-14,2022-09-15,BA.5,2537.756373512,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -41,2022-09-29,2022-09-15,BQ.1.1,1145.02303045871,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -41,2022-11-14,2022-09-15,BQ.1.1,337.131252519725,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -41,2022-09-29,2022-09-15,XBB,757.084858024867,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -41,2022-11-14,2022-09-15,XBB,517.535122942769,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -42,2022-10-27,2022-10-07,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,6 -42,2022-10-27,2022-10-07,BQ.1.1,2560,1,Previously infected (Omicron),mRNA1273.214,6 -42,2022-10-27,2022-10-07,XBB,689.309654812605,0,Previously infected (Omicron),mRNA1273.214,6 -43,2023-01-19,2022-12-19,BA.5,311.831960006418,0,Infection naive,BNT162b2,4 -43,2023-01-19,2022-12-19,BQ.1.1,150.784516669687,0,Infection naive,BNT162b2,4 -43,2023-01-19,2022-12-19,XBB,315.405420875903,0,Infection naive,BNT162b2,4 -44,2022-12-08,2022-11-16,BA.5,2343.20467654482,0,Previously infected (Omicron),BNT162b2+BA1,5 -44,2022-12-08,2022-11-16,BQ.1.1,387.546061881477,0,Previously infected (Omicron),BNT162b2+BA1,5 -44,2022-12-08,2022-11-16,XBB,636.465195636225,0,Previously infected (Omicron),BNT162b2+BA1,5 -45,2023-01-12,2022-12-13,BA.5,1750.05523665148,0,Infection naive,mRNA1273.214,6 -45,2023-01-12,2022-12-13,BQ.1.1,178.26334694422,0,Infection naive,mRNA1273.214,6 -45,2023-01-12,2022-12-13,XBB,468.733176704257,0,Infection naive,mRNA1273.214,6 -46,2022-11-24,2022-10-30,BA.5,190.375589432515,0,Previously infected (Pre-Omicron),BNT162b2+BA1,5 -46,2023-01-26,2022-10-30,BA.5,210.934695505106,0,Previously infected (Pre-Omicron),BNT162b2+BA1,5 -46,2022-11-24,2022-10-30,BQ.1.1,102.623952343631,0,Previously infected (Pre-Omicron),BNT162b2+BA1,5 -46,2023-01-26,2022-10-30,BQ.1.1,44.0469291474526,0,Previously infected (Pre-Omicron),BNT162b2+BA1,5 -46,2022-11-24,2022-10-30,XBB,257.143938018089,0,Previously infected (Pre-Omicron),BNT162b2+BA1,5 -46,2023-01-26,2022-10-30,XBB,297.938419217795,0,Previously infected (Pre-Omicron),BNT162b2+BA1,5 -47,2022-10-27,2022-10-25,BA.5,391.64375049163,0,Previously infected (Omicron),BNT162b2+BA1,5 -47,2022-10-27,2022-10-25,BQ.1.1,51.9372529850059,0,Previously infected (Omicron),BNT162b2+BA1,5 -47,2022-10-27,2022-10-25,XBB,78.481624015059,0,Previously infected (Omicron),BNT162b2+BA1,5 -48,2023-01-09,2022-12-02,BA.5,2560,1,Infection naive,BNT162b2+BA1,7 -48,2023-01-09,2022-12-02,BQ.1.1,1186.91910531141,0,Infection naive,BNT162b2+BA1,7 -48,2023-01-09,2022-12-02,XBB,2078.07082340062,0,Infection naive,BNT162b2+BA1,7 -49,2022-10-06,2022-09-04,BA.5,2548.90240740769,0,Infection naive,BNT162b2,4 -49,2022-10-20,2022-09-04,BA.5,2560,1,Infection naive,BNT162b2,4 -49,2023-01-26,2022-09-04,BA.5,2560,1,Infection naive,BNT162b2,4 -49,2022-10-06,2022-09-04,BQ.1.1,628.702916289441,0,Infection naive,BNT162b2,4 -49,2022-10-20,2022-09-04,BQ.1.1,1760.82562130839,0,Infection naive,BNT162b2,4 -49,2023-01-26,2022-09-04,BQ.1.1,278.738300902528,0,Infection naive,BNT162b2,4 -49,2022-10-06,2022-09-04,XBB,1049.85488105074,0,Infection naive,BNT162b2,4 -49,2022-10-20,2022-09-04,XBB,1464.80082422093,0,Infection naive,BNT162b2,4 -49,2023-01-26,2022-09-04,XBB,2560,1,Infection naive,BNT162b2,4 -50,2022-11-23,2022-11-23,BA.5,867.253876970237,0,Infection naive,BNT162b2,4 -50,2022-11-23,2022-11-23,BQ.1.1,170.17167942197,0,Infection naive,BNT162b2,4 -50,2022-11-23,2022-11-23,XBB,708.295853616049,0,Infection naive,BNT162b2,4 -51,2022-11-17,2022-10-31,BA.5,2560,1,Previously infected (Pre-Omicron),BNT162b2+BA1,6 -51,2022-11-17,2022-10-31,BQ.1.1,1341.8778042383,0,Previously infected (Pre-Omicron),BNT162b2+BA1,6 -51,2022-11-17,2022-10-31,XBB,745.234155267889,0,Previously infected (Pre-Omicron),BNT162b2+BA1,6 -52,2022-10-05,2022-09-23,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -52,2022-10-05,2022-09-23,BQ.1.1,2560,1,Previously infected (Omicron),mRNA1273.214,5 -52,2022-10-05,2022-09-23,XBB,2560,1,Previously infected (Omicron),mRNA1273.214,5 -53,2022-12-01,2022-12-01,BA.5,773.179455604743,0,Infection naive,mRNA1273,5 -53,2023-01-12,2022-12-01,BA.5,1834.87795903086,0,Infection naive,mRNA1273,5 -53,2022-12-01,2022-12-01,BQ.1.1,48.8036602557514,0,Infection naive,mRNA1273,5 -53,2023-01-12,2022-12-01,BQ.1.1,1098.81198316033,0,Infection naive,mRNA1273,5 -53,2022-12-01,2022-12-01,XBB,424.905365027001,0,Infection naive,mRNA1273,5 -53,2023-01-12,2022-12-01,XBB,366.404956627397,0,Infection naive,mRNA1273,5 -54,2022-12-08,2022-11-19,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,5 -54,2022-12-08,2022-11-19,BQ.1.1,2560,1,Previously infected (Omicron),BNT162b2+BA1,5 -54,2022-12-08,2022-11-19,XBB,1033.42142844445,0,Previously infected (Omicron),BNT162b2+BA1,5 -55,2022-11-03,2022-10-15,BA.5,1240.09205104923,0,Infection naive,BNT162b2+BA1,4 -55,2023-01-12,2022-10-15,BA.5,1278.7242046288,0,Infection naive,BNT162b2+BA1,4 -55,2022-11-03,2022-10-15,BQ.1.1,133.138477805861,0,Infection naive,BNT162b2+BA1,4 -55,2023-01-12,2022-10-15,BQ.1.1,108.450127901883,0,Infection naive,BNT162b2+BA1,4 -55,2022-11-03,2022-10-15,XBB,374.850761716459,0,Infection naive,BNT162b2+BA1,4 -55,2023-01-12,2022-10-15,XBB,637.581888671047,0,Infection naive,BNT162b2+BA1,4 -56,2022-10-25,2022-10-07,BA.5,2560,1,Previously infected (Omicron),BNT162b2,5 -56,2022-10-25,2022-10-07,BQ.1.1,145.207329202824,0,Previously infected (Omicron),BNT162b2,5 -56,2022-10-25,2022-10-07,XBB,324.946197632002,0,Previously infected (Omicron),BNT162b2,5 -57,2022-11-03,2022-10-10,BA.5,2560,1,Infection naive,BNT162b2+BA1,4 -57,2022-12-08,2022-10-10,BA.5,2560,1,Infection naive,BNT162b2+BA1,4 -57,2022-11-03,2022-10-10,BQ.1.1,2560,1,Infection naive,BNT162b2+BA1,4 -57,2022-12-08,2022-10-10,BQ.1.1,2560,1,Infection naive,BNT162b2+BA1,4 -57,2022-11-03,2022-10-10,XBB,1049.85488105074,0,Infection naive,BNT162b2+BA1,4 -57,2022-12-08,2022-10-10,XBB,743.928914630903,0,Infection naive,BNT162b2+BA1,4 -58,2022-10-26,2022-10-06,BA.5,260.775500501106,0,Infection naive,mRNA1273.214,4 -58,2022-10-26,2022-10-06,BQ.1.1,350.386916228243,0,Infection naive,mRNA1273.214,4 -58,2022-10-26,2022-10-06,XBB,207.814988392767,0,Infection naive,mRNA1273.214,4 -59,2022-12-08,2022-11-14,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,5 -59,2022-12-08,2022-11-14,BQ.1.1,1061.88576889173,0,Previously infected (Omicron),BNT162b2+BA1,5 -59,2022-12-08,2022-11-14,XBB,2292.41807386239,0,Previously infected (Omicron),BNT162b2+BA1,5 -60,2022-10-25,2022-09-26,BA.5,1488.0940657388,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -60,2022-12-08,2022-09-26,BA.5,877.96142529426,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -60,2022-10-25,2022-09-26,BQ.1.1,1172.44353348025,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -60,2022-12-08,2022-09-26,BQ.1.1,192.051552220915,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -60,2022-10-25,2022-09-26,XBB,137.165816622248,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -60,2022-12-08,2022-09-26,XBB,85.0723322456456,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -61,2022-11-17,2022-10-29,BA.5,320.420993316214,0,Previously infected (Pre-Omicron),BNT162b2+BA1,5 -61,2022-11-17,2022-10-29,BQ.1.1,51.0794850593388,0,Previously infected (Pre-Omicron),BNT162b2+BA1,5 -61,2022-11-17,2022-10-29,XBB,257.82098233153,0,Previously infected (Pre-Omicron),BNT162b2+BA1,5 -62,2022-12-01,2022-10-15,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,6 -62,2022-12-01,2022-10-15,BQ.1.1,603.858655860951,0,Previously infected (Omicron),mRNA1273.214,6 -62,2022-12-01,2022-10-15,XBB,390.615284259882,0,Previously infected (Omicron),mRNA1273.214,6 -63,2023-01-12,2022-12-20,BA.5,870.299781004342,0,Infection naive,mRNA1273.214,5 -63,2023-01-12,2022-12-20,BQ.1.1,169.724804358431,0,Infection naive,mRNA1273.214,5 -63,2023-01-12,2022-12-20,XBB,587.157079911253,0,Infection naive,mRNA1273.214,5 -64,2022-11-03,2022-10-16,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,6 -64,2023-01-26,2022-10-16,BA.5,659.175264710604,0,Previously infected (Omicron),BNT162b2+BA1,6 -64,2022-11-03,2022-10-16,BQ.1.1,425.277954857344,0,Previously infected (Omicron),BNT162b2+BA1,6 -64,2023-01-26,2022-10-16,BQ.1.1,157.954324128475,0,Previously infected (Omicron),BNT162b2+BA1,6 -64,2022-11-03,2022-10-16,XBB,537.41284135536,0,Previously infected (Omicron),BNT162b2+BA1,6 -64,2023-01-26,2022-10-16,XBB,568.919321841117,0,Previously infected (Omicron),BNT162b2+BA1,6 -65,2022-10-11,2022-09-16,BA.5,740.026893096432,0,Previously infected (Omicron),mRNA1273.214,5 -65,2022-10-11,2022-09-16,BQ.1.1,122.716390694009,0,Previously infected (Omicron),mRNA1273.214,5 -65,2022-10-11,2022-09-16,XBB,58.7694302642765,0,Previously infected (Omicron),mRNA1273.214,5 -66,2022-10-18,2022-09-23,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,6 -66,2023-02-01,2022-09-23,BA.5,2054.52682485164,0,Previously infected (Omicron),mRNA1273.214,6 -66,2022-10-18,2022-09-23,BQ.1.1,989.977480271314,0,Previously infected (Omicron),mRNA1273.214,6 -66,2023-02-01,2022-09-23,BQ.1.1,666.729131269143,0,Previously infected (Omicron),mRNA1273.214,6 -66,2022-10-18,2022-09-23,XBB,464.235638170972,0,Previously infected (Omicron),mRNA1273.214,6 -66,2023-02-01,2022-09-23,XBB,674.369561907129,0,Previously infected (Omicron),mRNA1273.214,6 -67,2022-11-03,2022-10-07,BA.5,2539.98167423653,0,Previously infected (Omicron),BNT162b2+BA1,5 -67,2023-01-19,2022-10-07,BA.5,1877.17275151083,0,Previously infected (Omicron),BNT162b2+BA1,5 -67,2022-11-03,2022-10-07,BQ.1.1,641.505766070714,0,Previously infected (Omicron),BNT162b2+BA1,5 -67,2023-01-19,2022-10-07,BQ.1.1,510.775418063317,0,Previously infected (Omicron),BNT162b2+BA1,5 -67,2022-11-03,2022-10-07,XBB,509.434109108876,0,Previously infected (Omicron),BNT162b2+BA1,5 -67,2023-01-19,2022-10-07,XBB,415.33177398538,0,Previously infected (Omicron),BNT162b2+BA1,5 -68,2022-12-01,2022-11-07,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,5 -68,2022-12-01,2022-11-07,BQ.1.1,2560,1,Previously infected (Omicron),BNT162b2+BA1,5 -68,2022-12-01,2022-11-07,XBB,1248.81806423443,0,Previously infected (Omicron),BNT162b2+BA1,5 -69,2022-11-01,2022-10-16,BA.5,2560,1,Previously infected (Pre-Omicron),BNT162b2,5 -69,2023-01-10,2022-10-16,BA.5,2560,1,Previously infected (Pre-Omicron),BNT162b2,5 -69,2022-11-01,2022-10-16,BQ.1.1,750.478058782485,0,Previously infected (Pre-Omicron),BNT162b2,5 -69,2023-01-10,2022-10-16,BQ.1.1,622.670453189897,0,Previously infected (Pre-Omicron),BNT162b2,5 -69,2022-11-01,2022-10-16,XBB,639.821155970214,0,Previously infected (Pre-Omicron),BNT162b2,5 -69,2023-01-10,2022-10-16,XBB,557.076628047233,0,Previously infected (Pre-Omicron),BNT162b2,5 -70,2023-01-19,2022-12-26,BA.5,66.2676181593159,0,Infection naive,BNT162b2+BA1,5 -70,2023-01-19,2022-12-26,BQ.1.1,5,-1,Infection naive,BNT162b2+BA1,5 -70,2023-01-19,2022-12-26,XBB,483.335457280892,0,Infection naive,BNT162b2+BA1,5 -71,2023-01-16,2022-12-24,BA.5,2560,1,Infection naive,BNT162b2+BA1,6 -71,2023-01-16,2022-12-24,BQ.1.1,1035.23459045094,0,Infection naive,BNT162b2+BA1,6 -71,2023-01-16,2022-12-24,XBB,699.044556987987,0,Infection naive,BNT162b2+BA1,6 -72,2022-11-16,2022-10-29,BA.5,330.982656054963,0,Infection naive,BNT162b2+BA1,4 -72,2023-01-09,2022-10-29,BA.5,260.547032746362,0,Infection naive,BNT162b2+BA1,4 -72,2022-11-16,2022-10-29,BQ.1.1,44.008339237793,0,Infection naive,BNT162b2+BA1,4 -72,2023-01-09,2022-10-29,BQ.1.1,46.4660393225683,0,Infection naive,BNT162b2+BA1,4 -72,2022-11-16,2022-10-29,XBB,428.645999960817,0,Infection naive,BNT162b2+BA1,4 -72,2023-01-09,2022-10-29,XBB,337.131252519725,0,Infection naive,BNT162b2+BA1,4 -73,2022-10-27,2022-10-13,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,5 -73,2022-10-27,2022-10-13,BQ.1.1,2491.47279775337,0,Previously infected (Omicron),BNT162b2+BA1,5 -73,2022-10-27,2022-10-13,XBB,122.823997900112,0,Previously infected (Omicron),BNT162b2+BA1,5 -74,2023-01-16,2022-12-15,BA.5,320.983179424583,0,Infection naive,BNT162b2,5 -74,2023-01-16,2022-12-15,BQ.1.1,94.5905439051817,0,Infection naive,BNT162b2,5 -74,2023-01-16,2022-12-15,XBB,259.407692907387,0,Infection naive,BNT162b2,5 -75,2022-09-29,2022-09-15,BA.5,2560,1,Previously infected (Pre-Omicron),BNT162b2+BA1,5 -75,2022-11-14,2022-09-15,BA.5,299.509392027809,0,Previously infected (Pre-Omicron),BNT162b2+BA1,5 -75,2022-09-29,2022-09-15,BQ.1.1,891.14133365426,0,Previously infected (Pre-Omicron),BNT162b2+BA1,5 -75,2022-11-14,2022-09-15,BQ.1.1,135.849697822965,0,Previously infected (Pre-Omicron),BNT162b2+BA1,5 -75,2022-09-29,2022-09-15,XBB,491.021450730944,0,Previously infected (Pre-Omicron),BNT162b2+BA1,5 -75,2022-11-14,2022-09-15,XBB,178.107168827214,0,Previously infected (Pre-Omicron),BNT162b2+BA1,5 -76,2022-10-27,2022-10-03,BA.5,2332.95813329804,0,Infection naive,BNT162b2,4 -76,2022-10-27,2022-10-03,BQ.1.1,2002.96236978066,0,Infection naive,BNT162b2,4 -76,2022-10-27,2022-10-03,XBB,906.900641715828,0,Infection naive,BNT162b2,4 -77,2022-09-26,2022-09-13,BA.5,2560,1,Infection naive,mRNA1273.214,5 -77,2022-09-26,2022-09-13,BQ.1.1,2560,1,Infection naive,mRNA1273.214,5 -77,2022-09-26,2022-09-13,XBB,994.32554246761,0,Infection naive,mRNA1273.214,5 -78,2022-11-24,2022-11-09,BA.5,917.293335125497,0,Previously infected (Omicron),BNT162b2+BA1,5 -78,2023-01-05,2022-11-09,BA.5,757.748728481735,0,Previously infected (Omicron),BNT162b2+BA1,5 -78,2022-11-24,2022-11-09,BQ.1.1,509.880820268363,0,Previously infected (Omicron),BNT162b2+BA1,5 -78,2023-01-05,2022-11-09,BQ.1.1,405.262843496997,0,Previously infected (Omicron),BNT162b2+BA1,5 -78,2022-11-24,2022-11-09,XBB,504.546041334375,0,Previously infected (Omicron),BNT162b2+BA1,5 -78,2023-01-05,2022-11-09,XBB,368.336940511276,0,Previously infected (Omicron),BNT162b2+BA1,5 -79,2022-10-11,2022-09-20,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -79,2022-10-11,2022-09-20,BQ.1.1,2560,1,Previously infected (Omicron),mRNA1273.214,5 -79,2022-10-11,2022-09-20,XBB,690.519064683942,0,Previously infected (Omicron),mRNA1273.214,5 -80,2022-11-01,2022-10-14,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -80,2023-01-10,2022-10-14,BA.5,1689.7619012731,0,Previously infected (Omicron),mRNA1273.214,5 -80,2022-11-01,2022-10-14,BQ.1.1,2560,1,Previously infected (Omicron),mRNA1273.214,5 -80,2023-01-10,2022-10-14,BQ.1.1,497.519727623373,0,Previously infected (Omicron),mRNA1273.214,5 -80,2022-11-01,2022-10-14,XBB,1076.88244565292,0,Previously infected (Omicron),mRNA1273.214,5 -80,2023-01-10,2022-10-14,XBB,709.538575216146,0,Previously infected (Omicron),mRNA1273.214,5 -81,2023-01-17,2022-12-03,BA.5,2560,1,Infection naive,BNT162b2+BA1,7 -81,2023-01-17,2022-12-03,BQ.1.1,670.244667599166,0,Infection naive,BNT162b2+BA1,7 -81,2023-01-17,2022-12-03,XBB,448.63473018222,0,Infection naive,BNT162b2+BA1,7 -82,2023-01-11,2022-12-24,BA.5,146.357317883225,0,Infection naive,mRNA1273.214,6 -82,2023-01-11,2022-12-24,BQ.1.1,50.5893726377474,0,Infection naive,mRNA1273.214,6 -82,2023-01-11,2022-12-24,XBB,322.110512477855,0,Infection naive,mRNA1273.214,6 -83,2022-11-21,2022-11-04,BA.5,62.1603524897165,0,Infection naive,mRNA1273.214,4 -83,2022-11-21,2022-11-04,BQ.1.1,51.3488175018903,0,Infection naive,mRNA1273.214,4 -83,2022-11-21,2022-11-04,XBB,129.342704377527,0,Infection naive,mRNA1273.214,4 -84,2022-12-15,2022-11-18,BA.5,2308.54886860586,0,Infection naive,BNT162b2,5 -84,2022-12-15,2022-11-18,BQ.1.1,590.253047897426,0,Infection naive,BNT162b2,5 -84,2022-12-15,2022-11-18,XBB,680.306343480621,0,Infection naive,BNT162b2,5 -85,2022-11-24,2022-10-25,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,6 -85,2022-11-24,2022-10-25,BQ.1.1,2560,1,Previously infected (Omicron),BNT162b2+BA1,6 -85,2022-11-24,2022-10-25,XBB,1944.15319780018,0,Previously infected (Omicron),BNT162b2+BA1,6 -86,2023-01-19,2022-12-24,BA.5,560.013987512506,0,Infection naive,BNT162b2,5 -86,2023-01-19,2022-12-24,BQ.1.1,368.014237214278,0,Infection naive,BNT162b2,5 -86,2023-01-19,2022-12-24,XBB,381.479776001745,0,Infection naive,BNT162b2,5 -87,2023-01-26,2022-12-25,BA.5,2314.62713704896,0,Infection naive,mRNA1273.214,6 -87,2023-01-26,2022-12-25,BQ.1.1,719.559164034486,0,Infection naive,mRNA1273.214,6 -87,2023-01-26,2022-12-25,XBB,664.395690545713,0,Infection naive,mRNA1273.214,6 -88,2022-10-13,2022-09-25,BA.5,503.221090878193,0,Infection naive,mRNA1273.214,4 -88,2023-01-12,2022-09-25,BA.5,224.675262047494,0,Infection naive,mRNA1273.214,4 -88,2022-10-13,2022-09-25,BQ.1.1,103.982098422853,0,Infection naive,mRNA1273.214,4 -88,2023-01-12,2022-09-25,BQ.1.1,61.4560919648389,0,Infection naive,mRNA1273.214,4 -88,2022-10-13,2022-09-25,XBB,472.859647772246,0,Infection naive,mRNA1273.214,4 -88,2023-01-12,2022-09-25,XBB,910.883823631199,0,Infection naive,mRNA1273.214,4 -89,2022-11-17,2022-10-29,BA.5,395.091568324212,0,Previously infected (Omicron),BNT162b2+BA1,5 -89,2022-11-17,2022-10-29,BQ.1.1,155.754650476491,0,Previously infected (Omicron),BNT162b2+BA1,5 -89,2022-11-17,2022-10-29,XBB,316.513164143859,0,Previously infected (Omicron),BNT162b2+BA1,5 -90,2022-10-18,2022-10-02,BA.5,2560,1,Infection naive,mRNA1273.214,5 -90,2023-01-16,2022-10-02,BA.5,339.801208136535,0,Infection naive,mRNA1273.214,5 -90,2022-10-18,2022-10-02,BQ.1.1,414.241102414644,0,Infection naive,mRNA1273.214,5 -90,2023-01-16,2022-10-02,BQ.1.1,114.4063389926,0,Infection naive,mRNA1273.214,5 -90,2022-10-18,2022-10-02,XBB,107.786774541131,0,Infection naive,mRNA1273.214,5 -91,2022-10-18,2022-09-29,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -91,2023-01-05,2022-09-29,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -91,2022-10-18,2022-09-29,BQ.1.1,2560,1,Previously infected (Omicron),mRNA1273.214,5 -91,2023-01-05,2022-09-29,BQ.1.1,1116.28527542182,0,Previously infected (Omicron),mRNA1273.214,5 -91,2022-10-18,2022-09-29,XBB,885.690518519031,0,Previously infected (Omicron),mRNA1273.214,5 -91,2023-01-05,2022-09-29,XBB,858.932495161422,0,Previously infected (Omicron),mRNA1273.214,5 -92,2022-11-03,2022-10-07,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,7 -92,2022-12-15,2022-10-07,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,7 -92,2022-11-03,2022-10-07,BQ.1.1,1868.96410803526,0,Previously infected (Omicron),mRNA1273.214,7 -92,2022-12-15,2022-10-07,BQ.1.1,586.642666327646,0,Previously infected (Omicron),mRNA1273.214,7 -92,2022-11-03,2022-10-07,XBB,734.212202293392,0,Previously infected (Omicron),mRNA1273.214,7 -92,2022-12-15,2022-10-07,XBB,679.710320991796,0,Previously infected (Omicron),mRNA1273.214,7 -93,2022-10-18,2022-10-03,BA.5,2560,1,Previously infected (Pre-Omicron),mRNA1273.214,5 -93,2022-10-18,2022-10-03,BQ.1.1,1375.21733820146,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -93,2022-10-18,2022-10-03,XBB,1148.03780629789,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -94,2023-01-09,2023-01-07,BA.5,1954.40434909604,0,Previously infected (Omicron),BNT162b2+BA1,6 -94,2023-01-09,2023-01-07,BQ.1.1,504.988466258638,0,Previously infected (Omicron),BNT162b2+BA1,6 -94,2023-01-09,2023-01-07,XBB,598.589004952263,0,Previously infected (Omicron),BNT162b2+BA1,6 -95,2022-12-08,2022-10-27,BA.5,477.022446039421,0,Previously infected (Omicron),BNT162b2+BA1,5 -95,2022-12-08,2022-10-27,BQ.1.1,63.4817973028585,0,Previously infected (Omicron),BNT162b2+BA1,5 -95,2022-12-08,2022-10-27,XBB,320.701963182361,0,Previously infected (Omicron),BNT162b2+BA1,5 -96,2022-10-27,2022-10-05,BA.5,516.628685860199,0,Infection naive,mRNA1273,5 -96,2023-01-05,2022-10-05,BA.5,246.98245984103,0,Infection naive,mRNA1273,5 -96,2022-10-27,2022-10-05,BQ.1.1,165.030540753816,0,Infection naive,mRNA1273,5 -96,2023-01-05,2022-10-05,BQ.1.1,160.888608995561,0,Infection naive,mRNA1273,5 -96,2022-10-27,2022-10-05,XBB,133.48902330187,0,Infection naive,mRNA1273,5 -97,2022-10-27,2022-10-10,BA.5,2502.4155503926,0,Infection naive,mRNA1273.214,4 -97,2022-10-27,2022-10-10,BQ.1.1,374.522351602284,0,Infection naive,mRNA1273.214,4 -97,2022-10-27,2022-10-10,XBB,283.170793331426,0,Infection naive,mRNA1273.214,4 -98,2022-11-17,2022-10-21,BA.5,463.016543836299,0,Previously infected (Omicron),BNT162b2+BA1,5 -98,2022-11-17,2022-10-21,BQ.1.1,152.51244272971,0,Previously infected (Omicron),BNT162b2+BA1,5 -98,2022-11-17,2022-10-21,XBB,388.226020488708,0,Previously infected (Omicron),BNT162b2+BA1,5 -99,2022-12-01,2022-11-18,BA.5,2560,1,Infection naive,mRNA1273.214,4 -99,2022-12-01,2022-11-18,BQ.1.1,262.380394101418,0,Infection naive,mRNA1273.214,4 -99,2022-12-01,2022-11-18,XBB,255.347165967859,0,Infection naive,mRNA1273.214,4 -100,2022-11-17,2022-10-20,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,5 -100,2022-11-17,2022-10-20,BQ.1.1,601.218056900837,0,Previously infected (Omicron),BNT162b2+BA1,5 -100,2022-11-17,2022-10-20,XBB,993.454404942277,0,Previously infected (Omicron),BNT162b2+BA1,5 -101,2022-11-08,2022-10-26,BA.5,358.777826489057,0,Previously infected (Omicron),BNT162b2+BA1,6 -101,2022-11-08,2022-10-26,BQ.1.1,157.954324128475,0,Previously infected (Omicron),BNT162b2+BA1,6 -101,2022-11-08,2022-10-26,XBB,215.418881133446,0,Previously infected (Omicron),BNT162b2+BA1,6 -101,2023-01-16,2022-10-26,XBB,320.140269610284,0,Previously infected (Omicron),BNT162b2+BA1,6 -102,2023-01-26,2022-12-22,BA.5,2560,1,Infection naive,BNT162b2+BA1,6 -102,2023-01-26,2022-12-22,BQ.1.1,1640.14863855916,0,Infection naive,BNT162b2+BA1,6 -102,2023-01-26,2022-12-22,XBB,323.241804865745,0,Infection naive,BNT162b2+BA1,6 -103,2022-11-08,2022-11-08,BA.5,886.467160348459,0,Previously infected (Omicron),mRNA1273.214,6 -103,2022-11-23,2022-11-08,BA.5,1854.27890063053,0,Previously infected (Omicron),mRNA1273.214,6 -103,2022-11-08,2022-11-08,BQ.1.1,672.598650661207,0,Previously infected (Omicron),mRNA1273.214,6 -103,2022-11-23,2022-11-08,BQ.1.1,1446.93622885427,0,Previously infected (Omicron),mRNA1273.214,6 -103,2022-11-08,2022-11-08,XBB,347.329219342432,0,Previously infected (Omicron),mRNA1273.214,6 -103,2022-11-23,2022-11-08,XBB,1120.20580885949,0,Previously infected (Omicron),mRNA1273.214,6 -104,2022-12-01,2022-12-01,BA.5,1716.63247058409,0,Infection naive,BNT162b2,5 -104,2023-01-05,2022-12-01,BA.5,2560,1,Infection naive,BNT162b2,5 -104,2022-12-01,2022-12-01,BQ.1.1,117.867044698861,0,Infection naive,BNT162b2,5 -104,2023-01-05,2022-12-01,BQ.1.1,1322.03153987791,0,Infection naive,BNT162b2,5 -104,2022-12-01,2022-12-01,XBB,342.492308820563,0,Infection naive,BNT162b2,5 -104,2023-01-05,2022-12-01,XBB,800.767702321239,0,Infection naive,BNT162b2,5 -105,2023-01-05,2022-12-16,BA.5,1154.09119203881,0,Infection naive,"",1 -105,2023-01-05,2022-12-16,BQ.1.1,304.806038696575,0,Infection naive,"",1 -105,2023-01-05,2022-12-16,XBB,1071.23403165745,0,Infection naive,"",1 -106,2022-09-15,2022-09-15,BA.5,494.476564929657,0,Previously infected (Omicron),mRNA1273.214,5 -106,2022-10-05,2022-09-15,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -106,2022-09-15,2022-09-15,BQ.1.1,50.1918714623814,0,Previously infected (Omicron),mRNA1273.214,5 -106,2022-10-05,2022-09-15,BQ.1.1,115.009581932274,0,Previously infected (Omicron),mRNA1273.214,5 -106,2022-09-15,2022-09-15,XBB,55.3205147047548,0,Previously infected (Omicron),mRNA1273.214,5 -106,2022-10-05,2022-09-15,XBB,380.144660431209,0,Previously infected (Omicron),mRNA1273.214,5 -107,2022-10-13,2022-10-13,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -107,2022-11-03,2022-10-13,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -107,2023-01-16,2022-10-13,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -107,2022-10-13,2022-10-13,BQ.1.1,2560,1,Previously infected (Omicron),mRNA1273.214,5 -107,2022-11-03,2022-10-13,BQ.1.1,2560,1,Previously infected (Omicron),mRNA1273.214,5 -107,2023-01-16,2022-10-13,BQ.1.1,1682.37278218696,0,Previously infected (Omicron),mRNA1273.214,5 -107,2022-10-13,2022-10-13,XBB,416.060483272753,0,Previously infected (Omicron),mRNA1273.214,5 -107,2022-11-03,2022-10-13,XBB,1323.19079920408,0,Previously infected (Omicron),mRNA1273.214,5 -107,2023-01-16,2022-10-13,XBB,699.657533227705,0,Previously infected (Omicron),mRNA1273.214,5 -108,2022-09-29,2022-09-16,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -108,2023-01-10,2022-09-16,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -108,2022-09-29,2022-09-16,BQ.1.1,2560,1,Previously infected (Omicron),mRNA1273.214,5 -108,2023-01-10,2022-09-16,BQ.1.1,517.081705780065,0,Previously infected (Omicron),mRNA1273.214,5 -108,2022-09-29,2022-09-16,XBB,855.176489958022,0,Previously infected (Omicron),mRNA1273.214,5 -108,2023-01-10,2022-09-16,XBB,635.907582770214,0,Previously infected (Omicron),mRNA1273.214,5 -109,2022-12-01,2022-11-05,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,6 -109,2022-12-01,2022-11-05,BQ.1.1,2560,1,Previously infected (Omicron),BNT162b2+BA1,6 -109,2022-12-01,2022-11-05,XBB,2560,1,Previously infected (Omicron),BNT162b2+BA1,6 -110,2022-10-05,2022-09-14,BA.5,2560,1,Infection naive,mRNA1273.214,4 -110,2022-12-22,2022-09-14,BA.5,711.406747031582,0,Infection naive,mRNA1273.214,4 -110,2022-10-05,2022-09-14,BQ.1.1,2560,1,Infection naive,mRNA1273.214,4 -110,2022-12-22,2022-09-14,BQ.1.1,84.2560552859443,0,Infection naive,mRNA1273.214,4 -110,2022-10-05,2022-09-14,XBB,155.754650476491,0,Infection naive,mRNA1273.214,4 -111,2023-01-19,2022-12-28,BA.5,247.415796329056,0,Infection naive,others,4 -111,2023-01-19,2022-12-28,BQ.1.1,158.648072460302,0,Infection naive,others,4 -111,2023-01-19,2022-12-28,XBB,335.95134938234,0,Infection naive,others,4 -112,2022-10-12,2022-09-28,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -112,2023-01-09,2022-09-28,BA.5,2065.3599553615,0,Previously infected (Omicron),mRNA1273.214,5 -112,2022-10-12,2022-09-28,BQ.1.1,2560,1,Previously infected (Omicron),mRNA1273.214,5 -112,2023-01-09,2022-09-28,BQ.1.1,462.205593339281,0,Previously infected (Omicron),mRNA1273.214,5 -112,2022-10-12,2022-09-28,XBB,513.918888972479,0,Previously infected (Omicron),mRNA1273.214,5 -112,2023-01-09,2022-09-28,XBB,854.427262165546,0,Previously infected (Omicron),mRNA1273.214,5 -113,2023-01-12,2022-12-13,BA.5,1266.45472666225,0,Infection naive,BNT162b2,6 -113,2023-01-12,2022-12-13,BQ.1.1,2560,1,Infection naive,BNT162b2,6 -113,2023-01-12,2022-12-13,XBB,350.386916228243,0,Infection naive,BNT162b2,6 -114,2023-01-11,2022-12-20,BA.5,2560,1,Infection naive,mRNA1273.214,5 -114,2023-01-11,2022-12-20,BQ.1.1,2560,1,Infection naive,mRNA1273.214,5 -114,2023-01-11,2022-12-20,XBB,652.850416586838,0,Infection naive,mRNA1273.214,5 -115,2022-10-10,2022-10-05,BA.5,2560,1,Infection naive,mRNA1273.214,4 -115,2022-11-25,2022-10-05,BA.5,2560,1,Infection naive,mRNA1273.214,4 -115,2022-10-10,2022-10-05,BQ.1.1,1115.30728788065,0,Infection naive,mRNA1273.214,4 -115,2022-11-25,2022-10-05,BQ.1.1,586.12870342639,0,Infection naive,mRNA1273.214,4 -115,2022-10-10,2022-10-05,XBB,642.068287856074,0,Infection naive,mRNA1273.214,4 -115,2022-11-25,2022-10-05,XBB,864.976446714553,0,Infection naive,mRNA1273.214,4 -116,2022-11-24,2022-11-11,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,5 -116,2023-01-05,2022-11-11,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,5 -116,2022-11-24,2022-11-11,BQ.1.1,1429.28950868425,0,Previously infected (Omicron),BNT162b2+BA1,5 -116,2023-01-05,2022-11-11,BQ.1.1,959.227668342283,0,Previously infected (Omicron),BNT162b2+BA1,5 -116,2022-11-24,2022-11-11,XBB,792.38943332279,0,Previously infected (Omicron),BNT162b2+BA1,5 -116,2023-01-05,2022-11-11,XBB,822.823877924614,0,Previously infected (Omicron),BNT162b2+BA1,5 -117,2022-11-14,2022-10-01,BA.5,2560,1,Previously infected (Pre-Omicron),mRNA1273.214,5 -117,2022-11-14,2022-10-01,BQ.1.1,509.434109108876,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -117,2022-11-14,2022-10-01,XBB,797.266044538379,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -118,2023-01-09,2022-11-24,BA.5,1397.08602442051,0,Infection naive,BNT162b2+BA1,6 -118,2023-01-09,2022-11-24,BQ.1.1,445.890580758201,0,Infection naive,BNT162b2+BA1,6 -118,2023-01-09,2022-11-24,XBB,434.318787559875,0,Infection naive,BNT162b2+BA1,6 -119,2022-11-24,2022-11-04,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,5 -119,2023-01-09,2022-11-04,BA.5,241.417669985243,0,Previously infected (Omicron),BNT162b2+BA1,5 -119,2022-11-24,2022-11-04,BQ.1.1,2560,1,Previously infected (Omicron),BNT162b2+BA1,5 -119,2023-01-09,2022-11-04,BQ.1.1,158.92642420478,0,Previously infected (Omicron),BNT162b2+BA1,5 -119,2022-11-24,2022-11-04,XBB,607.042688091307,0,Previously infected (Omicron),BNT162b2+BA1,5 -119,2023-01-09,2022-11-04,XBB,407.042791106401,0,Previously infected (Omicron),BNT162b2+BA1,5 -120,2022-10-25,2022-10-08,BA.5,1381.25740541419,0,Infection naive,mRNA1273.214,4 -120,2022-12-08,2022-10-08,BA.5,496.21322844179,0,Infection naive,mRNA1273.214,4 -120,2022-10-25,2022-10-08,BQ.1.1,471.617906573823,0,Infection naive,mRNA1273.214,4 -120,2022-12-08,2022-10-08,BQ.1.1,175.472978183429,0,Infection naive,mRNA1273.214,4 -120,2022-10-25,2022-10-08,XBB,950.856843638419,0,Infection naive,mRNA1273.214,4 -120,2022-12-08,2022-10-08,XBB,705.198563751346,0,Infection naive,mRNA1273.214,4 -121,2022-11-24,2022-11-12,BA.5,953.360391743973,0,Previously infected (Omicron),BNT162b2+BA1,5 -121,2022-11-24,2022-11-12,BQ.1.1,975.335793284432,0,Previously infected (Omicron),BNT162b2+BA1,5 -121,2023-01-26,2022-11-12,BQ.1.1,873.356382634193,0,Previously infected (Omicron),BNT162b2+BA1,5 -121,2022-11-24,2022-11-12,XBB,1191.08771358982,0,Previously infected (Omicron),BNT162b2+BA1,5 -121,2023-01-26,2022-11-12,XBB,668.484588428308,0,Previously infected (Omicron),BNT162b2+BA1,5 -122,2022-09-27,2022-09-12,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -122,2022-12-15,2022-09-12,BA.5,2079.8930363432,0,Previously infected (Omicron),mRNA1273.214,5 -122,2022-09-27,2022-09-12,BQ.1.1,385.175571522737,0,Previously infected (Omicron),mRNA1273.214,5 -122,2022-12-15,2022-09-12,BQ.1.1,223.888936114786,0,Previously infected (Omicron),mRNA1273.214,5 -122,2022-09-27,2022-09-12,XBB,1378.83820162041,0,Previously infected (Omicron),mRNA1273.214,5 -122,2022-12-15,2022-09-12,XBB,639.821155970214,0,Previously infected (Omicron),mRNA1273.214,5 -123,2022-09-27,2022-09-18,BA.5,2560,1,Infection naive,BNT162b2,4 -123,2022-09-27,2022-09-18,BQ.1.1,547.876248046087,0,Infection naive,BNT162b2,4 -123,2022-09-27,2022-09-18,XBB,369.630585893332,0,Infection naive,BNT162b2,4 -124,2022-10-18,2022-09-12,BA.5,2560,1,Infection naive,BNT162b2,4 -124,2022-10-18,2022-09-12,BQ.1.1,2560,1,Infection naive,BNT162b2,4 -124,2022-10-18,2022-09-12,XBB,2560,1,Infection naive,BNT162b2,4 -125,2022-11-24,2022-11-10,BA.5,2513.40636449789,0,Previously infected (Pre-Omicron),BNT162b2+BA1,6 -125,2023-01-09,2022-11-10,BA.5,1648.79683143852,0,Previously infected (Pre-Omicron),BNT162b2+BA1,6 -125,2022-11-24,2022-11-10,BQ.1.1,774.536016998299,0,Previously infected (Pre-Omicron),BNT162b2+BA1,6 -125,2023-01-09,2022-11-10,BQ.1.1,293.274768097831,0,Previously infected (Pre-Omicron),BNT162b2+BA1,6 -125,2022-11-24,2022-11-10,XBB,644.888304377159,0,Previously infected (Pre-Omicron),BNT162b2+BA1,6 -125,2023-01-09,2022-11-10,XBB,469.144198143753,0,Previously infected (Pre-Omicron),BNT162b2+BA1,6 -126,2022-12-21,2022-11-23,BA.5,2560,1,Infection naive,mRNA1273,5 -126,2023-01-17,2022-11-23,BA.5,2560,1,Infection naive,mRNA1273,5 -126,2022-12-21,2022-11-23,BQ.1.1,572.420628432274,0,Infection naive,mRNA1273,5 -126,2023-01-17,2022-11-23,BQ.1.1,426.397685787757,0,Infection naive,mRNA1273,5 -126,2022-12-21,2022-11-23,XBB,235.358576257812,0,Infection naive,mRNA1273,5 -127,2022-12-08,2022-11-11,BA.5,2560,1,Previously infected (Omicron),BNT162b2,5 -127,2022-12-08,2022-11-11,BQ.1.1,159.764413114952,0,Previously infected (Omicron),BNT162b2,5 -127,2022-12-08,2022-11-11,XBB,413.878182069713,0,Previously infected (Omicron),BNT162b2,5 -128,2022-10-11,2022-09-24,BA.5,2560,1,Infection naive,mRNA1273.214,4 -128,2023-01-05,2022-09-24,BA.5,2560,1,Infection naive,mRNA1273.214,4 -128,2022-10-11,2022-09-24,BQ.1.1,2560,1,Infection naive,mRNA1273.214,4 -128,2023-01-05,2022-09-24,BQ.1.1,1072.17337236473,0,Infection naive,mRNA1273.214,4 -128,2022-10-11,2022-09-24,XBB,2560,1,Infection naive,mRNA1273.214,4 -128,2023-01-05,2022-09-24,XBB,2560,1,Infection naive,mRNA1273.214,4 -129,2022-12-08,2022-12-04,BA.5,2560,1,Infection naive,BNT162b2+BA1,8 -129,2022-12-08,2022-12-04,BQ.1.1,1331.33412724507,0,Infection naive,BNT162b2+BA1,8 -129,2022-12-08,2022-12-04,XBB,1003.95861902222,0,Infection naive,BNT162b2+BA1,8 -130,2022-12-08,2022-11-15,BA.5,2114.82027833324,0,Previously infected (Omicron),BNT162b2+BA1,5 -130,2022-12-08,2022-11-15,BQ.1.1,2463.24506303203,0,Previously infected (Omicron),BNT162b2+BA1,5 -130,2022-12-08,2022-11-15,XBB,560.013987512506,0,Previously infected (Omicron),BNT162b2+BA1,5 -131,2022-10-04,2022-09-25,BA.5,383.491246550738,0,Infection naive,BNT162b2,4 -131,2022-12-08,2022-09-25,BA.5,575.943483154026,0,Infection naive,BNT162b2,4 -131,2022-10-04,2022-09-25,BQ.1.1,948.359869912472,0,Infection naive,BNT162b2,4 -131,2022-12-08,2022-09-25,BQ.1.1,143.940158604447,0,Infection naive,BNT162b2,4 -131,2022-10-04,2022-09-25,XBB,354.712967615556,0,Infection naive,BNT162b2,4 -131,2022-12-08,2022-09-25,XBB,140.327552649885,0,Infection naive,BNT162b2,4 -132,2022-11-24,2022-10-28,BA.5,2159.77849004854,0,Previously infected (Omicron),BNT162b2+BA1,5 -132,2023-01-26,2022-10-28,BA.5,778.619998601871,0,Previously infected (Omicron),BNT162b2+BA1,5 -132,2022-11-24,2022-10-28,BQ.1.1,2560,1,Previously infected (Omicron),BNT162b2+BA1,5 -132,2023-01-26,2022-10-28,BQ.1.1,374.850761716459,0,Previously infected (Omicron),BNT162b2+BA1,5 -132,2022-11-24,2022-10-28,XBB,1750.05523665148,0,Previously infected (Omicron),BNT162b2+BA1,5 -132,2023-01-26,2022-10-28,XBB,1017.24520983253,0,Previously infected (Omicron),BNT162b2+BA1,5 -133,2022-10-18,2022-09-30,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -133,2022-10-18,2022-09-30,BQ.1.1,2560,1,Previously infected (Omicron),mRNA1273.214,5 -133,2022-10-18,2022-09-30,XBB,653.422886237674,0,Previously infected (Omicron),mRNA1273.214,5 -134,2022-10-28,2022-10-24,BA.5,637.581888671047,0,Infection naive,BNT162b2,5 -134,2023-01-26,2022-10-24,BA.5,868.775494130885,0,Infection naive,BNT162b2,5 -134,2022-10-28,2022-10-24,BQ.1.1,168.243678832062,0,Infection naive,BNT162b2,5 -134,2023-01-26,2022-10-24,BQ.1.1,299.509392027809,0,Infection naive,BNT162b2,5 -134,2022-10-28,2022-10-24,XBB,452.981126323444,0,Infection naive,BNT162b2,5 -135,2022-11-03,2022-10-17,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -135,2022-11-03,2022-10-17,BQ.1.1,2173.07043913927,0,Previously infected (Omicron),mRNA1273.214,5 -135,2022-11-03,2022-10-17,XBB,443.551816107547,0,Previously infected (Omicron),mRNA1273.214,5 -136,2023-01-12,2022-12-17,BA.5,2180.70253418402,0,Infection naive,BNT162b2,6 -136,2023-01-12,2022-12-17,BQ.1.1,856.676917061379,0,Infection naive,BNT162b2,6 -136,2023-01-12,2022-12-17,XBB,1220.68080258415,0,Infection naive,BNT162b2,6 -137,2023-01-26,2022-12-24,BA.5,1268.67675102726,0,Infection naive,BNT162b2,4 -137,2023-01-26,2022-12-24,BQ.1.1,2560,1,Infection naive,BNT162b2,4 -137,2023-01-26,2022-12-24,XBB,284.165324557694,0,Infection naive,BNT162b2,4 -138,2022-11-28,2022-11-08,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -138,2022-11-28,2022-11-08,BQ.1.1,2560,1,Previously infected (Omicron),mRNA1273.214,5 -138,2022-11-28,2022-11-08,XBB,2560,1,Previously infected (Omicron),mRNA1273.214,5 -139,2022-10-12,2022-10-12,BA.5,1282.09100750922,0,Previously infected (Pre-Omicron),BNT162b2+BA1,5 -139,2022-11-09,2022-10-12,BA.5,2560,1,Previously infected (Pre-Omicron),BNT162b2+BA1,5 -139,2023-01-05,2022-10-12,BA.5,2560,1,Previously infected (Pre-Omicron),BNT162b2+BA1,5 -139,2022-10-12,2022-10-12,BQ.1.1,751.136135887677,0,Previously infected (Pre-Omicron),BNT162b2+BA1,5 -139,2022-11-09,2022-10-12,BQ.1.1,298.984816192322,0,Previously infected (Pre-Omicron),BNT162b2+BA1,5 -139,2022-10-12,2022-10-12,XBB,162.304984501255,0,Previously infected (Pre-Omicron),BNT162b2+BA1,5 -139,2022-11-09,2022-10-12,XBB,511.223305386056,0,Previously infected (Pre-Omicron),BNT162b2+BA1,5 -139,2023-01-05,2022-10-12,XBB,747.851510785299,0,Previously infected (Pre-Omicron),BNT162b2+BA1,5 -140,2023-01-12,2022-12-10,BA.5,2560,1,Infection naive,BNT162b2,5 -140,2023-01-12,2022-12-10,BQ.1.1,1603.19426329011,0,Infection naive,BNT162b2,5 -140,2023-01-12,2022-12-10,XBB,368.014237214278,0,Infection naive,BNT162b2,5 -141,2022-11-17,2022-10-30,BA.5,5,-1,Infection naive,BNT162b2,4 -141,2022-12-06,2022-10-30,BA.5,5,-1,Infection naive,BNT162b2,4 -141,2022-11-17,2022-10-30,BQ.1.1,5,-1,Infection naive,BNT162b2,4 -141,2022-12-06,2022-10-30,BQ.1.1,41.2807032377651,0,Infection naive,BNT162b2,4 -141,2022-11-17,2022-10-30,XBB,5,-1,Infection naive,BNT162b2,4 -141,2022-12-06,2022-10-30,XBB,269.843756512819,0,Infection naive,BNT162b2,4 -142,2022-11-17,2022-10-23,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,7 -142,2023-01-26,2022-10-23,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,7 -142,2022-11-17,2022-10-23,BQ.1.1,765.089836799748,0,Previously infected (Omicron),BNT162b2+BA1,7 -142,2023-01-26,2022-10-23,BQ.1.1,1294.51197056188,0,Previously infected (Omicron),BNT162b2+BA1,7 -142,2022-11-17,2022-10-23,XBB,386.189715322451,0,Previously infected (Omicron),BNT162b2+BA1,7 -142,2023-01-26,2022-10-23,XBB,447.456604220034,0,Previously infected (Omicron),BNT162b2+BA1,7 -143,2023-01-12,2022-12-20,BA.5,558.543376849775,0,Infection naive,BNT162b2,5 -143,2023-01-12,2022-12-20,BQ.1.1,381.814286922808,0,Infection naive,BNT162b2,5 -143,2023-01-12,2022-12-20,XBB,332.14510852023,0,Infection naive,BNT162b2,5 -144,2022-11-01,2022-10-07,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -144,2023-01-12,2022-10-07,BA.5,1199.46890358673,0,Previously infected (Omicron),mRNA1273.214,5 -144,2022-11-01,2022-10-07,BQ.1.1,776.575323115736,0,Previously infected (Omicron),mRNA1273.214,5 -144,2023-01-12,2022-10-07,BQ.1.1,108.070570547871,0,Previously infected (Omicron),mRNA1273.214,5 -144,2022-11-01,2022-10-07,XBB,677.331448270097,0,Previously infected (Omicron),mRNA1273.214,5 -144,2023-01-12,2022-10-07,XBB,446.28157204593,0,Previously infected (Omicron),mRNA1273.214,5 -145,2022-10-10,2022-09-30,BA.5,2560,1,Infection naive,mRNA1273.214,4 -145,2022-10-10,2022-09-30,BQ.1.1,1796.68291628275,0,Infection naive,mRNA1273.214,4 -145,2022-10-10,2022-09-30,XBB,528.074161754099,0,Infection naive,mRNA1273.214,4 -146,2022-10-03,2022-09-15,BA.5,2560,1,Previously infected (Pre-Omicron),mRNA1273.214,5 -146,2022-10-03,2022-09-15,BQ.1.1,2560,1,Previously infected (Pre-Omicron),mRNA1273.214,5 -146,2022-10-03,2022-09-15,XBB,754.435187332595,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -147,2022-12-22,2022-12-12,BA.5,644.323311950038,0,Infection naive,mRNA1273.214,7 -147,2022-12-22,2022-12-12,BQ.1.1,154.801951085118,0,Infection naive,mRNA1273.214,7 -147,2022-12-22,2022-12-12,XBB,350.694162529222,0,Infection naive,mRNA1273.214,7 -148,2022-10-13,2022-09-22,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -148,2022-10-13,2022-09-22,BQ.1.1,2560,1,Previously infected (Omicron),mRNA1273.214,5 -148,2022-10-13,2022-09-22,XBB,1382.468598552,0,Previously infected (Omicron),mRNA1273.214,5 -149,2022-12-08,2022-11-06,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,5 -149,2022-12-08,2022-11-06,BQ.1.1,846.228952921684,0,Previously infected (Omicron),BNT162b2+BA1,5 -149,2022-12-08,2022-11-06,XBB,810.654379217832,0,Previously infected (Omicron),BNT162b2+BA1,5 -150,2022-11-01,2022-10-14,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,6 -150,2023-01-12,2022-10-14,BA.5,902.934877760633,0,Previously infected (Omicron),BNT162b2+BA1,6 -150,2022-11-01,2022-10-14,BQ.1.1,2560,1,Previously infected (Omicron),BNT162b2+BA1,6 -150,2023-01-12,2022-10-14,BQ.1.1,265.852789145418,0,Previously infected (Omicron),BNT162b2+BA1,6 -150,2022-11-01,2022-10-14,XBB,2560,1,Previously infected (Omicron),BNT162b2+BA1,6 -150,2023-01-12,2022-10-14,XBB,848.457022169049,0,Previously infected (Omicron),BNT162b2+BA1,6 -151,2022-11-17,2022-10-22,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,7 -151,2023-01-26,2022-10-22,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,7 -151,2022-11-17,2022-10-22,BQ.1.1,1826.85426543381,0,Previously infected (Omicron),mRNA1273.214,7 -151,2023-01-26,2022-10-22,BQ.1.1,832.982871350873,0,Previously infected (Omicron),mRNA1273.214,7 -151,2022-11-17,2022-10-22,XBB,1258.70824433507,0,Previously infected (Omicron),mRNA1273.214,7 -151,2023-01-26,2022-10-22,XBB,1971.60985833353,0,Previously infected (Omicron),mRNA1273.214,7 -152,2022-10-06,2022-09-22,BA.5,2560,1,Previously infected (Pre-Omicron),mRNA1273.214,5 -152,2022-12-19,2022-09-22,BA.5,2560,1,Previously infected (Pre-Omicron),mRNA1273.214,5 -152,2022-10-06,2022-09-22,BQ.1.1,2560,1,Previously infected (Pre-Omicron),mRNA1273.214,5 -152,2022-12-19,2022-09-22,BQ.1.1,2013.52361069303,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -152,2022-10-06,2022-09-22,XBB,799.365197432719,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -152,2022-12-19,2022-09-22,XBB,684.493160473804,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -153,2022-10-03,2022-09-12,BA.5,1586.42036899382,0,Previously infected (Omicron),mRNA1273.214,5 -153,2022-10-03,2022-09-12,BQ.1.1,390.957805899921,0,Previously infected (Omicron),mRNA1273.214,5 -153,2022-10-03,2022-09-12,XBB,501.020567500109,0,Previously infected (Omicron),mRNA1273.214,5 -154,2022-09-12,2022-09-12,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -154,2022-09-26,2022-09-12,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -154,2022-10-12,2022-09-12,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -154,2022-09-12,2022-09-12,BQ.1.1,2560,1,Previously infected (Omicron),mRNA1273.214,5 -154,2022-09-26,2022-09-12,BQ.1.1,857.42811752496,0,Previously infected (Omicron),mRNA1273.214,5 -154,2022-10-12,2022-09-12,BQ.1.1,2236.84274906954,0,Previously infected (Omicron),mRNA1273.214,5 -154,2022-09-12,2022-09-12,XBB,971.922280731385,0,Previously infected (Omicron),mRNA1273.214,5 -154,2022-09-26,2022-09-12,XBB,1650.24262380136,0,Previously infected (Omicron),mRNA1273.214,5 -154,2022-10-12,2022-09-12,XBB,906.900641715828,0,Previously infected (Omicron),mRNA1273.214,5 -155,2022-10-26,2022-10-25,BA.5,1421.79266546146,0,Infection naive,BNT162b2,4 -155,2022-10-26,2022-10-25,BQ.1.1,227.848279692018,0,Infection naive,BNT162b2,4 -155,2022-10-26,2022-10-25,XBB,323.241804865745,0,Infection naive,BNT162b2,4 -156,2022-10-17,2022-10-04,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,6 -156,2022-10-17,2022-10-04,BQ.1.1,2560,1,Previously infected (Omicron),mRNA1273.214,6 -156,2022-10-17,2022-10-04,XBB,1552.03630439465,0,Previously infected (Omicron),mRNA1273.214,6 -157,2023-01-05,2022-12-26,BA.5,1140.01598684976,0,Infection naive,BNT162b2,6 -157,2023-01-05,2022-12-26,BQ.1.1,220.577636829959,0,Infection naive,BNT162b2,6 -157,2023-01-05,2022-12-26,XBB,786.163308849002,0,Infection naive,BNT162b2,6 -158,2023-01-12,2022-12-13,BA.5,685.093376925567,0,Infection naive,BNT162b2,6 -158,2023-01-12,2022-12-13,BQ.1.1,150.784516669687,0,Infection naive,BNT162b2,6 -158,2023-01-12,2022-12-13,XBB,321.828308569038,0,Infection naive,BNT162b2,6 -159,2023-01-18,2022-12-21,BA.5,2560,1,Infection naive,mRNA1273.214,6 -159,2023-01-18,2022-12-21,BQ.1.1,715.784965588677,0,Infection naive,mRNA1273.214,6 -159,2023-01-18,2022-12-21,XBB,403.844491158156,0,Infection naive,mRNA1273.214,6 -160,2022-09-20,2022-09-20,BA.5,62.9278151621782,0,Previously infected (Pre-Omicron),mRNA1273,5 -160,2022-10-03,2022-09-20,BA.5,1374.01249795787,0,Previously infected (Pre-Omicron),mRNA1273,5 -160,2022-09-20,2022-09-20,BQ.1.1,46.7930015601292,0,Previously infected (Pre-Omicron),mRNA1273,5 -160,2022-10-03,2022-09-20,BQ.1.1,430.906169068342,0,Previously infected (Pre-Omicron),mRNA1273,5 -160,2022-09-20,2022-09-20,XBB,5,-1,Previously infected (Pre-Omicron),mRNA1273,5 -160,2022-10-03,2022-09-20,XBB,688.705744441976,0,Previously infected (Pre-Omicron),mRNA1273,5 -161,2022-10-11,2022-10-11,BA.5,5,-1,Infection naive,BNT162b2+BA1,4 -161,2022-10-27,2022-10-11,BA.5,866.494068070684,0,Infection naive,BNT162b2+BA1,4 -161,2022-10-11,2022-10-11,BQ.1.1,5,-1,Infection naive,BNT162b2+BA1,4 -161,2022-10-27,2022-10-11,BQ.1.1,155.073554719911,0,Infection naive,BNT162b2+BA1,4 -161,2022-10-11,2022-10-11,XBB,85.2963225104831,0,Infection naive,BNT162b2+BA1,4 -161,2022-10-27,2022-10-11,XBB,128.890026491534,0,Infection naive,BNT162b2+BA1,4 -162,2022-10-25,2022-10-10,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,5 -162,2023-01-09,2022-10-10,BA.5,1272.01709957483,0,Previously infected (Omicron),BNT162b2+BA1,5 -162,2022-10-25,2022-10-10,BQ.1.1,539.300302437901,0,Previously infected (Omicron),BNT162b2+BA1,5 -162,2023-01-09,2022-10-10,BQ.1.1,436.991720566659,0,Previously infected (Omicron),BNT162b2+BA1,5 -162,2022-10-25,2022-10-10,XBB,888.801174343073,0,Previously infected (Omicron),BNT162b2+BA1,5 -162,2023-01-09,2022-10-10,XBB,401.022661096968,0,Previously infected (Omicron),BNT162b2+BA1,5 -163,2022-12-08,2022-11-19,BA.5,2376.29701486302,0,Infection naive,mRNA1273.214,5 -163,2022-12-08,2022-11-19,BQ.1.1,422.306360237007,0,Infection naive,mRNA1273.214,5 -163,2022-12-08,2022-11-19,XBB,322.675662887011,0,Infection naive,mRNA1273.214,5 -164,2022-10-31,2022-10-14,BA.5,1242.26782148482,0,Infection naive,mRNA1273.214,4 -164,2022-10-31,2022-10-14,BQ.1.1,1027.1003332932,0,Infection naive,mRNA1273.214,4 -164,2022-10-31,2022-10-14,XBB,560.505051014568,0,Infection naive,mRNA1273.214,4 -165,2022-11-23,2022-11-04,BA.5,1615.89097264624,0,Infection naive,BNT162b2+BA1,4 -165,2023-01-19,2022-11-04,BA.5,1510.43325155316,0,Infection naive,BNT162b2+BA1,4 -165,2022-11-23,2022-11-04,BQ.1.1,1898.68434824599,0,Infection naive,BNT162b2+BA1,4 -165,2023-01-19,2022-11-04,BQ.1.1,483.335457280892,0,Infection naive,BNT162b2+BA1,4 -165,2022-11-23,2022-11-04,XBB,331.854113211825,0,Infection naive,BNT162b2+BA1,4 -165,2023-01-19,2022-11-04,XBB,421.936373847362,0,Infection naive,BNT162b2+BA1,4 -166,2022-10-18,2022-10-02,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -166,2023-01-26,2022-10-02,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -166,2022-10-18,2022-10-02,BQ.1.1,996.070109830024,0,Previously infected (Omicron),mRNA1273.214,5 -166,2023-01-26,2022-10-02,BQ.1.1,251.129988579974,0,Previously infected (Omicron),mRNA1273.214,5 -166,2022-10-18,2022-10-02,XBB,1859.16110394001,0,Previously infected (Omicron),mRNA1273.214,5 -166,2023-01-26,2022-10-02,XBB,871.826742274675,0,Previously infected (Omicron),mRNA1273.214,5 -167,2022-12-08,2022-12-08,BA.5,40.0335520056376,0,Infection naive,BNT162b2+BA1,4 -167,2022-12-08,2022-12-08,BQ.1.1,5,-1,Infection naive,BNT162b2+BA1,4 -167,2022-12-08,2022-12-08,XBB,140.820400557588,0,Infection naive,BNT162b2+BA1,4 -168,2022-09-29,2022-09-15,BA.5,2560,1,Previously infected (Pre-Omicron),mRNA1273.214,5 -168,2022-11-14,2022-09-15,BA.5,846.228952921684,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -168,2022-09-29,2022-09-15,BQ.1.1,2560,1,Previously infected (Pre-Omicron),mRNA1273.214,5 -168,2022-11-14,2022-09-15,BQ.1.1,540.246517400693,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -168,2022-09-29,2022-09-15,XBB,2560,1,Previously infected (Pre-Omicron),mRNA1273.214,5 -168,2022-11-14,2022-09-15,XBB,491.452016249953,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -169,2022-10-17,2022-10-03,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -169,2022-10-17,2022-10-03,BQ.1.1,1713.62587400833,0,Previously infected (Omicron),mRNA1273.214,5 -169,2022-10-17,2022-10-03,XBB,627.051926790965,0,Previously infected (Omicron),mRNA1273.214,5 -170,2023-01-16,2022-12-31,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,6 -170,2023-01-16,2022-12-31,BQ.1.1,634.237673638323,0,Previously infected (Omicron),BNT162b2+BA1,6 -170,2023-01-16,2022-12-31,XBB,667.898923085107,0,Previously infected (Omicron),BNT162b2+BA1,6 -171,2022-11-03,2022-10-25,BA.5,77.3208871337152,0,Infection naive,BNT162b2+BA1,5 -171,2022-11-03,2022-10-25,BQ.1.1,52.6707463773258,0,Infection naive,BNT162b2+BA1,5 -171,2022-11-03,2022-10-25,XBB,149.20688905334,0,Infection naive,BNT162b2+BA1,5 -172,2023-01-05,2022-12-17,BA.5,2553.37451614877,0,Infection naive,BNT162b2,5 -172,2023-01-05,2022-12-17,BQ.1.1,2560,1,Infection naive,BNT162b2,5 -172,2023-01-05,2022-12-17,XBB,454.173798015556,0,Infection naive,BNT162b2,5 -173,2023-01-05,2022-12-24,BA.5,2560,1,Infection naive,BNT162b2,5 -173,2023-01-05,2022-12-24,BQ.1.1,2059.93626873857,0,Infection naive,BNT162b2,5 -173,2023-01-05,2022-12-24,XBB,657.44425406711,0,Infection naive,BNT162b2,5 -174,2022-10-27,2022-09-30,BA.5,2560,1,Infection naive,BNT162b2,4 -174,2022-10-27,2022-09-30,BQ.1.1,1190.04419096171,0,Infection naive,BNT162b2,4 -174,2022-10-27,2022-09-30,XBB,721.453719449431,0,Infection naive,BNT162b2,4 -175,2022-11-21,2022-10-16,BA.5,1170.39005681973,0,Previously infected (Pre-Omicron),BNT162b2+BA1,6 -175,2022-11-21,2022-10-16,BQ.1.1,182.052983999958,0,Previously infected (Pre-Omicron),BNT162b2+BA1,6 -175,2022-11-21,2022-10-16,XBB,683.29430467463,0,Previously infected (Pre-Omicron),BNT162b2+BA1,6 -176,2022-11-24,2022-11-03,BA.5,866.494068070684,0,Infection naive,BNT162b2,4 -176,2022-11-24,2022-11-03,BQ.1.1,1890.38163722759,0,Infection naive,BNT162b2,4 -176,2022-11-24,2022-11-03,XBB,347.024921098357,0,Infection naive,BNT162b2,4 -177,2022-10-11,2022-09-09,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -177,2022-10-11,2022-09-09,BQ.1.1,221.740700898255,0,Previously infected (Omicron),mRNA1273.214,5 -177,2022-10-11,2022-09-09,XBB,995.197443873579,0,Previously infected (Omicron),mRNA1273.214,5 -178,2022-11-03,2022-10-14,BA.5,193.912157451256,0,Infection naive,BNT162b2+BA1,4 -178,2022-11-03,2022-10-14,BQ.1.1,96.4322180406207,0,Infection naive,BNT162b2+BA1,4 -178,2022-11-03,2022-10-14,XBB,175.012181777462,0,Infection naive,BNT162b2+BA1,4 -179,2022-10-04,2022-09-09,BA.5,269.371138565631,0,Infection naive,mRNA1273.214,4 -179,2022-12-06,2022-09-09,BA.5,325.231135546677,0,Infection naive,mRNA1273.214,4 -179,2022-10-04,2022-09-09,BQ.1.1,146.100980304665,0,Infection naive,mRNA1273.214,4 -179,2022-12-06,2022-09-09,BQ.1.1,258.953353207664,0,Infection naive,mRNA1273.214,4 -179,2022-10-04,2022-09-09,XBB,291.992313933846,0,Infection naive,mRNA1273.214,4 -179,2022-12-06,2022-09-09,XBB,453.775892277874,0,Infection naive,mRNA1273.214,4 -180,2022-09-27,2022-09-25,BA.5,5,-1,Infection naive,mRNA1273.214,7 -180,2022-10-18,2022-09-25,BA.5,2560,1,Infection naive,mRNA1273.214,7 -180,2023-01-26,2022-09-25,BA.5,2056.3283925985,0,Infection naive,mRNA1273.214,7 -180,2022-09-27,2022-09-25,BQ.1.1,5,-1,Infection naive,mRNA1273.214,7 -180,2022-10-18,2022-09-25,BQ.1.1,420.828358433089,0,Infection naive,mRNA1273.214,7 -180,2023-01-26,2022-09-25,BQ.1.1,157.125829413333,0,Infection naive,mRNA1273.214,7 -180,2022-09-27,2022-09-25,XBB,42.2692751858847,0,Infection naive,mRNA1273.214,7 -180,2022-10-18,2022-09-25,XBB,333.311643663877,0,Infection naive,mRNA1273.214,7 -180,2023-01-26,2022-09-25,XBB,293.531934057791,0,Infection naive,mRNA1273.214,7 -181,2022-11-17,2022-10-27,BA.5,1041.60574635264,0,Previously infected (Omicron),BNT162b2+BA1,5 -181,2022-11-17,2022-10-27,BQ.1.1,405.618209247891,0,Previously infected (Omicron),BNT162b2+BA1,5 -181,2022-11-17,2022-10-27,XBB,769.798437800932,0,Previously infected (Omicron),BNT162b2+BA1,5 -182,2022-09-29,2022-09-14,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -182,2023-02-01,2022-09-14,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -182,2022-09-29,2022-09-14,BQ.1.1,2560,1,Previously infected (Omicron),mRNA1273.214,5 -182,2023-02-01,2022-09-14,BQ.1.1,2560,1,Previously infected (Omicron),mRNA1273.214,5 -182,2022-09-29,2022-09-14,XBB,2560,1,Previously infected (Omicron),mRNA1273.214,5 -182,2023-02-01,2022-09-14,XBB,2560,1,Previously infected (Omicron),mRNA1273.214,5 -183,2022-11-07,2022-10-18,BA.5,2176.88314192367,0,Previously infected (Omicron),BNT162b2+BA1,5 -183,2022-11-07,2022-10-18,BQ.1.1,383.155266430306,0,Previously infected (Omicron),BNT162b2+BA1,5 -183,2022-11-07,2022-10-18,XBB,612.923748605741,0,Previously infected (Omicron),BNT162b2+BA1,5 -184,2022-10-25,2022-10-08,BA.5,1709.12584983316,0,Infection naive,BNT162b2,4 -184,2023-01-12,2022-10-08,BA.5,1798.25838658286,0,Infection naive,BNT162b2,4 -184,2022-10-25,2022-10-08,BQ.1.1,2560,1,Infection naive,BNT162b2,4 -184,2023-01-12,2022-10-08,BQ.1.1,999.568432577663,0,Infection naive,BNT162b2,4 -184,2022-10-25,2022-10-08,XBB,153.855079039045,0,Infection naive,BNT162b2,4 -185,2022-12-01,2022-10-28,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,5 -185,2022-12-01,2022-10-28,BQ.1.1,76.8479409848372,0,Previously infected (Omicron),BNT162b2+BA1,5 -185,2022-12-01,2022-10-28,XBB,529.928824226419,0,Previously infected (Omicron),BNT162b2+BA1,5 -186,2023-01-09,2022-12-28,BA.5,445.10962553555,0,Infection naive,BNT162b2,6 -186,2023-01-09,2022-12-28,BQ.1.1,77.1178405605832,0,Infection naive,BNT162b2,6 -186,2023-01-09,2022-12-28,XBB,432.419565403068,0,Infection naive,BNT162b2,6 -187,2022-10-03,2022-10-01,BA.5,2560,1,Infection naive,BNT162b2,4 -187,2022-12-05,2022-10-01,BA.5,2560,1,Infection naive,BNT162b2,4 -187,2022-10-03,2022-10-01,BQ.1.1,1757.74162262244,0,Infection naive,BNT162b2,4 -187,2022-12-05,2022-10-01,BQ.1.1,2018.82509561663,0,Infection naive,BNT162b2,4 -187,2022-10-03,2022-10-01,XBB,1880.46629489882,0,Infection naive,BNT162b2,4 -187,2022-12-05,2022-10-01,XBB,873.356382634193,0,Infection naive,BNT162b2,4 -188,2022-09-27,2022-09-27,BA.5,2560,1,Previously infected (Pre-Omicron),mRNA1273.214,5 -188,2022-10-12,2022-09-27,BA.5,2560,1,Previously infected (Pre-Omicron),mRNA1273.214,5 -188,2022-09-27,2022-09-27,BQ.1.1,604.91813996101,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -188,2022-10-12,2022-09-27,BQ.1.1,2560,1,Previously infected (Pre-Omicron),mRNA1273.214,5 -188,2022-09-27,2022-09-27,XBB,172.423765742206,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -188,2022-10-12,2022-09-27,XBB,750.478058782485,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -189,2022-09-13,2022-09-13,BA.5,189.709306631459,0,Infection naive,mRNA1273.214,5 -189,2022-09-27,2022-09-13,BA.5,641.505766070714,0,Infection naive,mRNA1273.214,5 -189,2022-09-13,2022-09-13,BQ.1.1,189.377040196164,0,Infection naive,mRNA1273.214,5 -189,2022-09-27,2022-09-13,BQ.1.1,125.435069563216,0,Infection naive,mRNA1273.214,5 -189,2022-09-13,2022-09-13,XBB,41.353131194697,0,Infection naive,mRNA1273.214,5 -189,2022-09-27,2022-09-13,XBB,161.736944134201,0,Infection naive,mRNA1273.214,5 -190,2022-11-27,2022-10-15,BA.5,456.968924936853,0,Infection naive,BNT162b2,6 -190,2022-12-15,2022-10-15,BA.5,205.280493178553,0,Infection naive,BNT162b2,6 -190,2022-11-27,2022-10-15,BQ.1.1,139.469215684706,0,Infection naive,BNT162b2,6 -190,2022-11-27,2022-10-15,XBB,297.416594863215,0,Infection naive,BNT162b2,6 -191,2022-10-31,2022-10-14,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -191,2022-10-31,2022-10-14,BQ.1.1,345.50742418597,0,Previously infected (Omicron),mRNA1273.214,5 -191,2022-10-31,2022-10-14,XBB,404.907789085225,0,Previously infected (Omicron),mRNA1273.214,5 -192,2022-09-12,2022-09-12,BA.5,1160.17649613532,0,Infection naive,BNT162b2,5 -192,2022-09-28,2022-09-12,BA.5,2560,1,Infection naive,BNT162b2,5 -192,2022-10-20,2022-09-12,BA.5,2560,1,Infection naive,BNT162b2,5 -192,2022-12-01,2022-09-12,BA.5,2560,1,Infection naive,BNT162b2,5 -192,2022-09-12,2022-09-12,BQ.1.1,142.309354279994,0,Infection naive,BNT162b2,5 -192,2022-09-28,2022-09-12,BQ.1.1,271.028932398112,0,Infection naive,BNT162b2,5 -192,2022-10-20,2022-09-12,BQ.1.1,389.931140975734,0,Infection naive,BNT162b2,5 -192,2022-09-12,2022-09-12,XBB,362.253684365631,0,Infection naive,BNT162b2,5 -192,2022-09-28,2022-09-12,XBB,947.529003325105,0,Infection naive,BNT162b2,5 -192,2022-10-20,2022-09-12,XBB,511.671585450977,0,Infection naive,BNT162b2,5 -192,2022-12-01,2022-09-12,XBB,617.777879431748,0,Infection naive,BNT162b2,5 -193,2022-10-11,2022-09-24,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -193,2023-01-12,2022-09-24,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -193,2022-10-11,2022-09-24,BQ.1.1,2560,1,Previously infected (Omicron),mRNA1273.214,5 -193,2022-10-11,2022-09-24,XBB,1114.33015716315,0,Previously infected (Omicron),mRNA1273.214,5 -193,2023-01-12,2022-09-24,XBB,615.6157599228,0,Previously infected (Omicron),mRNA1273.214,5 -194,2023-01-10,2022-12-22,BA.5,1823.65462085467,0,Infection naive,BNT162b2,4 -194,2023-01-10,2022-12-22,BQ.1.1,314.853003934808,0,Infection naive,BNT162b2,4 -194,2023-01-10,2022-12-22,XBB,247.84989311606,0,Infection naive,BNT162b2,4 -195,2022-12-01,2022-11-29,BA.5,533.657713467748,0,Previously infected (Omicron),BNT162b2+BA1,5 -195,2022-12-01,2022-11-29,BQ.1.1,562.473614824264,0,Previously infected (Omicron),BNT162b2+BA1,5 -195,2022-12-01,2022-11-29,XBB,343.695184625199,0,Previously infected (Omicron),BNT162b2+BA1,5 -196,2022-09-28,2022-09-12,BA.5,2560,1,Previously infected (Pre-Omicron),mRNA1273.214,5 -196,2022-09-28,2022-09-12,BQ.1.1,2560,1,Previously infected (Pre-Omicron),mRNA1273.214,5 -196,2022-09-28,2022-09-12,XBB,846.228952921684,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -197,2022-10-11,2022-09-24,BA.5,2351.43430430037,0,Previously infected (Omicron),mRNA1273.214,5 -197,2023-01-26,2022-09-24,BA.5,497.083846128015,0,Previously infected (Omicron),mRNA1273.214,5 -197,2022-10-11,2022-09-24,BQ.1.1,1710.62454333725,0,Previously infected (Omicron),mRNA1273.214,5 -197,2023-01-26,2022-09-24,BQ.1.1,170.02259048745,0,Previously infected (Omicron),mRNA1273.214,5 -197,2022-10-11,2022-09-24,XBB,447.064583476076,0,Previously infected (Omicron),mRNA1273.214,5 -197,2023-01-26,2022-09-24,XBB,200.303857279495,0,Previously infected (Omicron),mRNA1273.214,5 -198,2022-10-06,2022-09-21,BA.5,85.8212626289535,0,Previously infected (Omicron),mRNA1273.214,6 -198,2022-10-06,2022-09-21,BQ.1.1,54.4545787806903,0,Previously infected (Omicron),mRNA1273.214,6 -198,2022-10-06,2022-09-21,XBB,402.783985477898,0,Previously infected (Omicron),mRNA1273.214,6 -199,2022-10-17,2022-09-30,BA.5,2560,1,Infection naive,mRNA1273.214,6 -199,2022-12-15,2022-09-30,BA.5,2560,1,Infection naive,mRNA1273.214,6 -199,2022-10-17,2022-09-30,BQ.1.1,712.654926766754,0,Infection naive,mRNA1273.214,6 -199,2022-10-17,2022-09-30,XBB,188.218683830027,0,Infection naive,mRNA1273.214,6 -200,2023-01-05,2022-12-12,BA.5,931.063691940587,0,Infection naive,BNT162b2,5 -200,2023-01-05,2022-12-12,BQ.1.1,127.429736224945,0,Infection naive,BNT162b2,5 -200,2023-01-05,2022-12-12,XBB,478.278417060802,0,Infection naive,BNT162b2,5 -201,2022-10-10,2022-10-10,BA.5,1902.01563423231,0,Previously infected (Omicron),mRNA1273.214,5 -201,2022-11-01,2022-10-10,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -201,2022-10-10,2022-10-10,BQ.1.1,212.41895542971,0,Previously infected (Omicron),mRNA1273.214,5 -201,2022-11-01,2022-10-10,BQ.1.1,2560,1,Previously infected (Omicron),mRNA1273.214,5 -201,2022-10-10,2022-10-10,XBB,195.790788319935,0,Previously infected (Omicron),mRNA1273.214,5 -201,2022-11-01,2022-10-10,XBB,990.845568960641,0,Previously infected (Omicron),mRNA1273.214,5 -202,2023-01-05,2022-12-17,BA.5,2560,1,Infection naive,mRNA1273.214,6 -202,2023-01-05,2022-12-17,BQ.1.1,791.695213833735,0,Infection naive,mRNA1273.214,6 -202,2023-01-05,2022-12-17,XBB,948.359869912472,0,Infection naive,mRNA1273.214,6 -203,2022-12-08,2022-10-20,BA.5,1607.41537605546,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -203,2022-12-08,2022-10-20,BQ.1.1,161.878767574277,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -203,2022-12-08,2022-10-20,XBB,650.565549049298,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -204,2022-10-12,2022-09-21,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,7 -204,2023-01-23,2022-09-21,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,7 -204,2022-10-12,2022-09-21,BQ.1.1,2560,1,Previously infected (Omicron),mRNA1273.214,7 -204,2023-01-23,2022-09-21,BQ.1.1,653.422886237674,0,Previously infected (Omicron),mRNA1273.214,7 -204,2022-10-12,2022-09-21,XBB,2359.6928355374,0,Previously infected (Omicron),mRNA1273.214,7 -204,2023-01-23,2022-09-21,XBB,950.023789429977,0,Previously infected (Omicron),mRNA1273.214,7 -205,2022-10-27,2022-10-03,BA.5,551.248049011141,0,Infection naive,BNT162b2,4 -205,2022-10-27,2022-10-03,BQ.1.1,266.786497376005,0,Infection naive,BNT162b2,4 -205,2022-10-27,2022-10-03,XBB,170.919087379141,0,Infection naive,BNT162b2,4 -205,2022-12-15,2022-10-03,XBB,341.293642880555,0,Infection naive,BNT162b2,4 -206,2023-01-10,2022-12-16,BA.5,2560,1,Infection naive,mRNA1273.214,8 -206,2023-01-10,2022-12-16,BQ.1.1,2560,1,Infection naive,mRNA1273.214,8 -206,2023-01-10,2022-12-16,XBB,2560,1,Infection naive,mRNA1273.214,8 -207,2022-10-25,2022-10-17,BA.5,2560,1,Infection naive,mRNA1273.214,6 -207,2022-10-25,2022-10-17,BQ.1.1,979.619547991975,0,Infection naive,mRNA1273.214,6 -207,2022-10-25,2022-10-17,XBB,365.122600409615,0,Infection naive,mRNA1273.214,6 -208,2022-12-08,2022-11-19,BA.5,2560,1,Infection naive,BNT162b2,8 -208,2022-12-08,2022-11-19,BQ.1.1,2560,1,Infection naive,BNT162b2,8 -208,2022-12-08,2022-11-19,XBB,594.406413669098,0,Infection naive,BNT162b2,8 -209,2022-10-03,2022-10-03,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,5 -209,2022-10-17,2022-10-03,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,5 -209,2022-10-03,2022-10-03,BQ.1.1,1154.09119203881,0,Previously infected (Omicron),BNT162b2+BA1,5 -209,2022-10-17,2022-10-03,BQ.1.1,1368.00411182632,0,Previously infected (Omicron),BNT162b2+BA1,5 -209,2022-10-03,2022-10-03,XBB,270.791481519725,0,Previously infected (Omicron),BNT162b2+BA1,5 -209,2022-10-17,2022-10-03,XBB,388.566447037804,0,Previously infected (Omicron),BNT162b2+BA1,5 -210,2022-10-26,2022-10-03,BA.5,2560,1,Infection naive,BNT162b2,6 -210,2022-10-26,2022-10-03,BQ.1.1,1356.06604645124,0,Infection naive,BNT162b2,6 -210,2022-10-26,2022-10-03,XBB,119.741364738671,0,Infection naive,BNT162b2,6 -211,2023-01-05,2022-12-10,BA.5,619.404450928868,0,Infection naive,BNT162b2,7 -211,2023-01-05,2022-12-10,BQ.1.1,90.6935144891519,0,Infection naive,BNT162b2,7 -211,2023-01-05,2022-12-10,XBB,376.827278729662,0,Infection naive,BNT162b2,7 -212,2023-01-23,2023-01-03,BA.5,522.09121971089,0,Infection naive,mRNA1273.214,6 -212,2023-01-23,2023-01-03,BQ.1.1,213.351916884174,0,Infection naive,mRNA1273.214,6 -212,2023-01-23,2023-01-03,XBB,447.848968718045,0,Infection naive,mRNA1273.214,6 -213,2023-01-10,2023-01-06,BA.5,2560,1,Infection naive,BNT162b2+BA1,7 -213,2023-01-10,2023-01-06,BQ.1.1,417.155945162376,0,Infection naive,BNT162b2+BA1,7 -213,2023-01-10,2023-01-06,XBB,1200.52069053053,0,Infection naive,BNT162b2+BA1,7 -214,2023-01-12,2022-12-22,BA.5,1338.35399974235,0,Infection naive,BNT162b2+BA1,6 -214,2023-01-12,2022-12-22,BQ.1.1,2560,1,Infection naive,BNT162b2+BA1,6 -214,2023-01-12,2022-12-22,XBB,813.501498740145,0,Infection naive,BNT162b2+BA1,6 -215,2022-11-29,2022-11-08,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,6 -215,2022-11-29,2022-11-08,BQ.1.1,2478.40463987136,0,Previously infected (Omicron),BNT162b2+BA1,6 -215,2022-11-29,2022-11-08,XBB,899.774756332674,0,Previously infected (Omicron),BNT162b2+BA1,6 -216,2022-12-15,2022-12-02,BA.5,425.277954857344,0,Infection naive,BNT162b2,5 -216,2022-12-15,2022-12-02,BQ.1.1,241.841242919635,0,Infection naive,BNT162b2,5 -216,2022-12-15,2022-12-02,XBB,485.883993530426,0,Infection naive,BNT162b2,5 -217,2022-11-01,2022-10-05,BA.5,2555.61351206663,0,Infection naive,mRNA1273,5 -217,2023-01-09,2022-10-05,BA.5,1750.05523665148,0,Infection naive,mRNA1273,5 -217,2022-11-01,2022-10-05,BQ.1.1,640.943737115739,0,Infection naive,mRNA1273,5 -217,2023-01-09,2022-10-05,BQ.1.1,319.299573298128,0,Infection naive,mRNA1273,5 -217,2022-11-01,2022-10-05,XBB,688.102363162634,0,Infection naive,mRNA1273,5 -217,2023-01-09,2022-10-05,XBB,1027.1003332932,0,Infection naive,mRNA1273,5 -218,2023-01-05,2022-12-04,BA.5,2560,1,Infection naive,mRNA1273.214,7 -218,2023-01-05,2022-12-04,BQ.1.1,2560,1,Infection naive,mRNA1273.214,7 -218,2023-01-05,2022-12-04,XBB,2560,1,Infection naive,mRNA1273.214,7 -219,2022-11-24,2022-11-10,BA.5,674.369561907129,0,Infection naive,BNT162b2+BA1,6 -219,2022-11-24,2022-11-10,BQ.1.1,162.589752383224,0,Infection naive,BNT162b2+BA1,6 -219,2022-11-24,2022-11-10,XBB,378.150743240943,0,Infection naive,BNT162b2+BA1,6 -220,2023-01-26,2022-12-28,BA.5,2560,1,Infection naive,BNT162b2,5 -220,2023-01-26,2022-12-28,BQ.1.1,1343.05446630136,0,Infection naive,BNT162b2,5 -220,2023-01-26,2022-12-28,XBB,359.092430588002,0,Infection naive,BNT162b2,5 -221,2022-10-18,2022-09-17,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -221,2023-01-26,2022-09-17,BA.5,610.243509120078,0,Previously infected (Omicron),mRNA1273.214,5 -221,2022-10-18,2022-09-17,BQ.1.1,643.19481164692,0,Previously infected (Omicron),mRNA1273.214,5 -221,2023-01-26,2022-09-17,BQ.1.1,171.218968905583,0,Previously infected (Omicron),mRNA1273.214,5 -221,2022-10-18,2022-09-17,XBB,213.726247799964,0,Previously infected (Omicron),mRNA1273.214,5 -221,2023-01-26,2022-09-17,XBB,300.297981999079,0,Previously infected (Omicron),mRNA1273.214,5 -222,2023-01-12,2022-11-23,BA.5,2560,1,Infection naive,BNT162b2+BA1,4 -222,2023-01-12,2022-11-23,BQ.1.1,2560,1,Infection naive,BNT162b2+BA1,4 -222,2023-01-12,2022-11-23,XBB,1015.46355533338,0,Infection naive,BNT162b2+BA1,4 -223,2022-12-01,2022-12-01,BA.5,1147.03200007966,0,Infection naive,BNT162b2+BA1,4 -223,2022-12-01,2022-12-01,BQ.1.1,234.534860507757,0,Infection naive,BNT162b2+BA1,4 -223,2022-12-01,2022-12-01,XBB,5,-1,Infection naive,BNT162b2+BA1,4 -224,2022-10-18,2022-10-01,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,6 -224,2023-01-19,2022-10-01,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,6 -224,2022-10-18,2022-10-01,BQ.1.1,2560,1,Previously infected (Omicron),mRNA1273.214,6 -224,2023-01-19,2022-10-01,BQ.1.1,788.233228917089,0,Previously infected (Omicron),mRNA1273.214,6 -224,2022-10-18,2022-10-01,XBB,743.277151836897,0,Previously infected (Omicron),mRNA1273.214,6 -224,2023-01-19,2022-10-01,XBB,544.525071266037,0,Previously infected (Omicron),mRNA1273.214,6 -225,2022-10-12,2022-09-29,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -225,2022-10-12,2022-09-29,BQ.1.1,1348.95327154579,0,Previously infected (Omicron),mRNA1273.214,5 -225,2022-10-12,2022-09-29,XBB,817.790937942998,0,Previously infected (Omicron),mRNA1273.214,5 -226,2022-11-17,2022-10-20,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,5 -226,2023-01-26,2022-10-20,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,5 -226,2022-11-17,2022-10-20,BQ.1.1,265.852789145418,0,Previously infected (Omicron),BNT162b2+BA1,5 -226,2023-01-26,2022-10-20,BQ.1.1,497.955991333283,0,Previously infected (Omicron),BNT162b2+BA1,5 -226,2022-11-17,2022-10-20,XBB,690.519064683942,0,Previously infected (Omicron),BNT162b2+BA1,5 -226,2023-01-26,2022-10-20,XBB,830.067570274662,0,Previously infected (Omicron),BNT162b2+BA1,5 -227,2023-01-17,2022-12-22,BA.5,2560,1,Infection naive,mRNA1273.214,9 -227,2023-01-17,2022-12-22,BQ.1.1,2090.85991807806,0,Infection naive,mRNA1273.214,9 -227,2023-01-17,2022-12-22,XBB,687.499510511047,0,Infection naive,mRNA1273.214,9 -228,2023-01-25,2023-01-03,BA.5,973.627541048402,0,Infection naive,mRNA1273.214,6 -228,2023-01-25,2023-01-03,BQ.1.1,358.777826489057,0,Infection naive,mRNA1273.214,6 -228,2023-01-25,2023-01-03,XBB,337.426875231315,0,Infection naive,mRNA1273.214,6 -229,2022-10-27,2022-10-12,BA.5,1590.59731711801,0,Infection naive,BNT162b2,5 -229,2022-10-27,2022-10-12,BQ.1.1,898.986455599049,0,Infection naive,BNT162b2,5 -229,2022-10-27,2022-10-12,XBB,540.246517400693,0,Infection naive,BNT162b2,5 -230,2023-01-05,2022-12-15,BA.5,2446.03334139381,0,Infection naive,mRNA1273.214,6 -230,2023-01-05,2022-12-15,BQ.1.1,703.34669477964,0,Infection naive,mRNA1273.214,6 -230,2023-01-05,2022-12-15,XBB,465.050150429012,0,Infection naive,mRNA1273.214,6 -231,2022-10-13,2022-09-23,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -231,2022-10-13,2022-09-23,BQ.1.1,2560,1,Previously infected (Omicron),mRNA1273.214,5 -231,2022-10-13,2022-09-23,XBB,947.529003325105,0,Previously infected (Omicron),mRNA1273.214,5 -232,2023-01-11,2022-12-06,BA.5,2560,1,Infection naive,mRNA1273.214,6 -232,2023-01-11,2022-12-06,BQ.1.1,747.851510785299,0,Infection naive,mRNA1273.214,6 -232,2023-01-11,2022-12-06,XBB,1368.00411182632,0,Infection naive,mRNA1273.214,6 -233,2022-09-29,2022-09-14,BA.5,2560,1,Infection naive,mRNA1273.214,4 -233,2022-09-29,2022-09-14,BQ.1.1,194.082194602566,0,Infection naive,mRNA1273.214,4 -233,2022-09-29,2022-09-14,XBB,374.194229211154,0,Infection naive,mRNA1273.214,4 -234,2022-09-20,2022-09-20,BA.5,134.192885618766,0,Previously infected (Pre-Omicron),mRNA1273,5 -234,2022-10-03,2022-09-20,BA.5,834.444359232601,0,Previously infected (Pre-Omicron),mRNA1273,5 -234,2022-09-20,2022-09-20,BQ.1.1,56.8940966465029,0,Previously infected (Pre-Omicron),mRNA1273,5 -234,2022-10-03,2022-09-20,BQ.1.1,276.305854954489,0,Previously infected (Pre-Omicron),mRNA1273,5 -234,2022-09-20,2022-09-20,XBB,131.745477091835,0,Previously infected (Pre-Omicron),mRNA1273,5 -234,2022-10-03,2022-09-20,XBB,376.497136971203,0,Previously infected (Pre-Omicron),mRNA1273,5 -235,2023-01-12,2022-11-29,BA.5,1603.19426329011,0,Previously infected (Omicron),BNT162b2+BA1,5 -235,2023-01-12,2022-11-29,BQ.1.1,551.731425861521,0,Previously infected (Omicron),BNT162b2+BA1,5 -235,2023-01-12,2022-11-29,XBB,849.201014794138,0,Previously infected (Omicron),BNT162b2+BA1,5 -236,2022-09-29,2022-09-15,BA.5,2560,1,Previously infected (Pre-Omicron),mRNA1273.214,5 -236,2022-11-25,2022-09-15,BA.5,2560,1,Previously infected (Pre-Omicron),mRNA1273.214,5 -236,2022-09-29,2022-09-15,BQ.1.1,2560,1,Previously infected (Pre-Omicron),mRNA1273.214,5 -236,2022-11-25,2022-09-15,BQ.1.1,1598.9842352719,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -236,2022-09-29,2022-09-15,XBB,508.096322465117,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -236,2022-11-25,2022-09-15,XBB,391.64375049163,0,Previously infected (Pre-Omicron),mRNA1273.214,5 -237,2022-10-11,2022-10-11,BA.5,952.52514415459,0,Previously infected (Omicron),mRNA1273.214,6 -237,2022-11-03,2022-10-11,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,6 -237,2023-01-12,2022-10-11,BA.5,649.426115777702,0,Previously infected (Omicron),mRNA1273.214,6 -237,2022-10-11,2022-10-11,BQ.1.1,106.472215536784,0,Previously infected (Omicron),mRNA1273.214,6 -237,2022-11-03,2022-10-11,BQ.1.1,1718.13774647284,0,Previously infected (Omicron),mRNA1273.214,6 -237,2023-01-12,2022-10-11,BQ.1.1,205.64066259314,0,Previously infected (Omicron),mRNA1273.214,6 -237,2022-10-11,2022-10-11,XBB,166.483379566172,0,Previously infected (Omicron),mRNA1273.214,6 -237,2022-11-03,2022-10-11,XBB,375.837720921348,0,Previously infected (Omicron),mRNA1273.214,6 -237,2023-01-12,2022-10-11,XBB,374.850761716459,0,Previously infected (Omicron),mRNA1273.214,6 -238,2022-10-10,2022-09-23,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,6 -238,2022-10-10,2022-09-23,BQ.1.1,2560,1,Previously infected (Omicron),mRNA1273.214,6 -238,2022-10-10,2022-09-23,XBB,660.331803091456,0,Previously infected (Omicron),mRNA1273.214,6 -239,2022-10-25,2022-09-30,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -239,2022-10-25,2022-09-30,BQ.1.1,2560,1,Previously infected (Omicron),mRNA1273.214,5 -239,2022-10-25,2022-09-30,XBB,592.845487639699,0,Previously infected (Omicron),mRNA1273.214,5 -240,2022-09-27,2022-09-27,BA.5,559.033150806869,0,Previously infected (Omicron),mRNA1273.214,5 -240,2022-10-11,2022-09-27,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -240,2023-01-12,2022-09-27,BA.5,707.05530858116,0,Previously infected (Omicron),mRNA1273.214,5 -240,2022-09-27,2022-09-27,BQ.1.1,179.832680160232,0,Previously infected (Omicron),mRNA1273.214,5 -240,2022-10-11,2022-09-27,BQ.1.1,2560,1,Previously infected (Omicron),mRNA1273.214,5 -240,2023-01-12,2022-09-27,BQ.1.1,624.857349663528,0,Previously infected (Omicron),mRNA1273.214,5 -240,2022-09-27,2022-09-27,XBB,111.534971991955,0,Previously infected (Omicron),mRNA1273.214,5 -240,2022-10-11,2022-09-27,XBB,1557.48724992072,0,Previously infected (Omicron),mRNA1273.214,5 -240,2023-01-12,2022-09-27,XBB,634.793822199081,0,Previously infected (Omicron),mRNA1273.214,5 -241,2022-11-08,2022-10-12,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -241,2023-01-05,2022-10-12,BA.5,2560,1,Previously infected (Omicron),mRNA1273.214,5 -241,2022-11-08,2022-10-12,BQ.1.1,2560,1,Previously infected (Omicron),mRNA1273.214,5 -241,2023-01-05,2022-10-12,BQ.1.1,1801.41347287645,0,Previously infected (Omicron),mRNA1273.214,5 -241,2022-11-08,2022-10-12,XBB,2467.56688396395,0,Previously infected (Omicron),mRNA1273.214,5 -241,2023-01-05,2022-10-12,XBB,707.05530858116,0,Previously infected (Omicron),mRNA1273.214,5 -242,2022-10-06,2022-09-22,BA.5,2196.04723303132,0,Infection naive,mRNA1273.214,4 -242,2022-10-06,2022-09-22,BQ.1.1,554.640601088857,0,Infection naive,mRNA1273.214,4 -242,2022-10-06,2022-09-22,XBB,202.244411262014,0,Infection naive,mRNA1273.214,4 -243,2022-10-18,2022-09-25,BA.5,639.821155970214,0,Infection naive,mRNA1273.214,4 -243,2022-10-18,2022-09-25,BQ.1.1,86.6527033972014,0,Infection naive,mRNA1273.214,4 -243,2022-10-18,2022-09-25,XBB,130.710299558242,0,Infection naive,mRNA1273.214,4 -244,2022-10-25,2022-10-08,BA.5,2090.85991807806,0,Infection naive,BNT162b2,5 -244,2023-01-12,2022-10-08,BA.5,1337.18145580019,0,Infection naive,BNT162b2,5 -244,2022-10-25,2022-10-08,BQ.1.1,153.048085494646,0,Infection naive,BNT162b2,5 -244,2022-10-25,2022-10-08,XBB,1221.75118975873,0,Infection naive,BNT162b2,5 -244,2023-01-12,2022-10-08,XBB,687.499510511047,0,Infection naive,BNT162b2,5 -245,2022-09-13,2022-09-01,BA.5,166.337521984234,0,Infection naive,BNT162b2,4 -245,2022-09-13,2022-09-01,BQ.1.1,103.618178426579,0,Infection naive,BNT162b2,4 -245,2022-09-13,2022-09-01,XBB,49.8411599018156,0,Infection naive,BNT162b2,4 -246,2022-11-17,2022-10-26,BA.5,2560,1,Previously infected (Omicron),BNT162b2+BA1,5 -246,2023-01-26,2022-10-26,BA.5,1507.78780267586,0,Previously infected (Omicron),BNT162b2+BA1,5 -246,2022-11-17,2022-10-26,BQ.1.1,565.935252528117,0,Previously infected (Omicron),BNT162b2+BA1,5 -246,2023-01-26,2022-10-26,BQ.1.1,374.522351602284,0,Previously infected (Omicron),BNT162b2+BA1,5 -246,2022-11-17,2022-10-26,XBB,686.295389238984,0,Previously infected (Omicron),BNT162b2+BA1,5 -246,2023-01-26,2022-10-26,XBB,468.733176704257,0,Previously infected (Omicron),BNT162b2+BA1,5 -247,2023-01-09,2022-12-12,BA.5,556.100935980917,0,Infection naive,mRNA1273.214,5 -247,2023-01-09,2022-12-12,BQ.1.1,185.760294632681,0,Infection naive,mRNA1273.214,5 -247,2023-01-09,2022-12-12,XBB,412.429677483237,0,Infection naive,mRNA1273.214,5 -248,2022-10-17,2022-10-02,BA.5,486.310054130306,0,Infection naive,BNT162b2,4 -248,2022-10-17,2022-10-02,BQ.1.1,194.25238085558,0,Infection naive,BNT162b2,4 -248,2022-10-17,2022-10-02,XBB,5,-1,Infection naive,BNT162b2,4 +pid,day,last_exp_day,titre_type,value,infection_history,last_vax_type,exp_num +1,2022-12-07,2022-11-16,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,7 +1,2022-12-07,2022-11-16,BQ.1.1,2560,Previously infected (Omicron),BNT162b2+BA1,7 +1,2022-12-07,2022-11-16,XBB,2560,Previously infected (Omicron),BNT162b2+BA1,7 +2,2023-01-10,2022-12-24,BA.5,2560,Infection naive,mRNA1273.214,5 +2,2023-01-10,2022-12-24,BQ.1.1,2560,Infection naive,mRNA1273.214,5 +2,2023-01-10,2022-12-24,XBB,526.68742586838,Infection naive,mRNA1273.214,5 +3,2022-12-05,2022-11-03,BA.5,2560,Previously infected (Pre-Omicron),mRNA1273.214,5 +3,2022-12-05,2022-11-03,BQ.1.1,915.686741374287,Previously infected (Pre-Omicron),mRNA1273.214,5 +3,2022-12-05,2022-11-03,XBB,865.734924846528,Previously infected (Pre-Omicron),mRNA1273.214,5 +4,2022-11-08,2022-10-22,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,5 +4,2023-01-26,2022-10-22,BA.5,1928.8771992866,Previously infected (Omicron),BNT162b2+BA1,5 +4,2022-11-08,2022-10-22,BQ.1.1,1012.79692277529,Previously infected (Omicron),BNT162b2+BA1,5 +4,2022-11-08,2022-10-22,XBB,838.109307219395,Previously infected (Omicron),BNT162b2+BA1,5 +4,2023-01-26,2022-10-22,XBB,722.719526832112,Previously infected (Omicron),BNT162b2+BA1,5 +5,2022-10-31,2022-10-14,BA.5,746.541685980024,Previously infected (Pre-Omicron),BNT162b2+BA1,5 +5,2022-10-31,2022-10-14,BQ.1.1,168.391207879496,Previously infected (Pre-Omicron),BNT162b2+BA1,5 +5,2022-10-31,2022-10-14,XBB,203.310807706972,Previously infected (Pre-Omicron),BNT162b2+BA1,5 +6,2022-10-25,2022-10-06,BA.5,2560,Previously infected (Omicron),BNT162b2,6 +6,2022-11-29,2022-10-06,BA.5,2560,Previously infected (Omicron),BNT162b2,6 +6,2022-10-25,2022-10-06,BQ.1.1,1715.12851348106,Previously infected (Omicron),BNT162b2,6 +6,2022-11-29,2022-10-06,BQ.1.1,788.924412670469,Previously infected (Omicron),BNT162b2,6 +6,2022-10-25,2022-10-06,XBB,670.244667599166,Previously infected (Omicron),BNT162b2,6 +6,2022-11-29,2022-10-06,XBB,470.791891216853,Previously infected (Omicron),BNT162b2,6 +7,2023-01-10,2022-12-15,BA.5,2560,Infection naive,BNT162b2,6 +7,2023-01-10,2022-12-15,BQ.1.1,1244.4474093604,Infection naive,BNT162b2,6 +7,2023-01-10,2022-12-15,XBB,1033.42142844445,Infection naive,BNT162b2,6 +8,2022-11-17,2022-10-20,BA.5,153.720285224454,Previously infected (Omicron),BNT162b2+BA1,7 +8,2023-01-19,2022-10-20,BA.5,166.629365047301,Previously infected (Omicron),BNT162b2+BA1,7 +8,2022-11-17,2022-10-20,BQ.1.1,84.1084849867384,Previously infected (Omicron),BNT162b2+BA1,7 +8,2023-01-19,2022-10-20,BQ.1.1,82.5021709921175,Previously infected (Omicron),BNT162b2+BA1,7 +8,2022-11-17,2022-10-20,XBB,232.488161617546,Previously infected (Omicron),BNT162b2+BA1,7 +8,2023-01-19,2022-10-20,XBB,202.776908468151,Previously infected (Omicron),BNT162b2+BA1,7 +9,2022-12-15,2022-11-26,BA.5,1074.99633949503,Infection naive,BNT162b2,5 +9,2022-12-15,2022-11-26,BQ.1.1,60.6533927347565,Infection naive,BNT162b2,5 +9,2022-12-15,2022-11-26,XBB,170.320899089179,Infection naive,BNT162b2,5 +10,2022-11-29,2022-11-12,BA.5,689.309654812605,Previously infected (Omicron),BNT162b2+BA1,5 +10,2022-11-29,2022-11-12,XBB,639.821155970214,Previously infected (Omicron),BNT162b2+BA1,5 +11,2022-12-15,2022-12-10,BA.5,841.052851881079,Infection naive,BNT162b2,5 +11,2022-12-15,2022-12-10,BQ.1.1,347.633784418704,Infection naive,BNT162b2,5 +11,2022-12-15,2022-12-10,XBB,312.652994547998,Infection naive,BNT162b2,5 +12,2022-10-11,2022-10-10,BA.5,1713.62587400833,Previously infected (Omicron),mRNA1273.214,5 +12,2022-10-27,2022-10-10,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +12,2023-01-09,2022-10-10,BA.5,2452.47359807276,Previously infected (Omicron),mRNA1273.214,5 +12,2022-10-11,2022-10-10,BQ.1.1,468.733176704257,Previously infected (Omicron),mRNA1273.214,5 +12,2022-10-27,2022-10-10,BQ.1.1,2560,Previously infected (Omicron),mRNA1273.214,5 +12,2023-01-09,2022-10-10,BQ.1.1,530.393506734487,Previously infected (Omicron),mRNA1273.214,5 +12,2022-10-11,2022-10-10,XBB,485.883993530426,Previously infected (Omicron),mRNA1273.214,5 +12,2022-10-27,2022-10-10,XBB,604.388165753405,Previously infected (Omicron),mRNA1273.214,5 +12,2023-01-09,2022-10-10,XBB,648.857147733311,Previously infected (Omicron),mRNA1273.214,5 +13,2022-10-05,2022-10-05,BA.5,205.280493178553,Previously infected (Omicron),mRNA1273.214,5 +13,2022-10-19,2022-10-05,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +13,2022-10-05,2022-10-05,BQ.1.1,83.8141193218092,Previously infected (Omicron),mRNA1273.214,5 +13,2022-10-19,2022-10-05,BQ.1.1,1817.27213393727,Previously infected (Omicron),mRNA1273.214,5 +13,2022-10-05,2022-10-05,XBB,155.209535185678,Previously infected (Omicron),mRNA1273.214,5 +13,2022-10-19,2022-10-05,XBB,954.196371742937,Previously infected (Omicron),mRNA1273.214,5 +14,2022-11-16,2022-10-29,BA.5,584.077350753164,Infection naive,BNT162b2+BA1,4 +14,2022-11-16,2022-10-29,BQ.1.1,316.235864122116,Infection naive,BNT162b2+BA1,4 +14,2022-11-16,2022-10-29,XBB,271.980819890889,Infection naive,BNT162b2+BA1,4 +15,2022-10-19,2022-10-19,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,5 +15,2022-11-15,2022-10-19,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,5 +15,2022-10-19,2022-10-19,BQ.1.1,2560,Previously infected (Omicron),BNT162b2+BA1,5 +15,2022-11-15,2022-10-19,BQ.1.1,2560,Previously infected (Omicron),BNT162b2+BA1,5 +15,2022-10-19,2022-10-19,XBB,282.427179783672,Previously infected (Omicron),BNT162b2+BA1,5 +15,2022-11-15,2022-10-19,XBB,679.114820683619,Previously infected (Omicron),BNT162b2+BA1,5 +16,2022-10-13,2022-09-16,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +16,2022-10-13,2022-09-16,BQ.1.1,566.928199132255,Previously infected (Omicron),mRNA1273.214,5 +16,2022-10-13,2022-09-16,XBB,409.189050588546,Previously infected (Omicron),mRNA1273.214,5 +17,2022-10-11,2022-10-11,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,5 +17,2022-10-31,2022-10-11,BA.5,1852.65435025565,Previously infected (Omicron),BNT162b2+BA1,5 +17,2022-10-11,2022-10-11,BQ.1.1,2163.56787179813,Previously infected (Omicron),BNT162b2+BA1,5 +17,2022-10-31,2022-10-11,BQ.1.1,722.719526832112,Previously infected (Omicron),BNT162b2+BA1,5 +17,2022-10-11,2022-10-11,XBB,724.622403289654,Previously infected (Omicron),BNT162b2+BA1,5 +17,2022-10-31,2022-10-11,XBB,743.928914630903,Previously infected (Omicron),BNT162b2+BA1,5 +18,2022-10-18,2022-09-28,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +18,2022-12-20,2022-09-28,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +18,2022-10-18,2022-09-28,BQ.1.1,2560,Previously infected (Omicron),mRNA1273.214,5 +18,2022-12-20,2022-09-28,BQ.1.1,2560,Previously infected (Omicron),mRNA1273.214,5 +18,2022-10-18,2022-09-28,XBB,674.369561907129,Previously infected (Omicron),mRNA1273.214,5 +18,2022-12-20,2022-09-28,XBB,1072.17337236473,Previously infected (Omicron),mRNA1273.214,5 +19,2023-01-09,2022-12-19,BA.5,1277.60390288493,Infection naive,BNT162b2,5 +19,2023-01-09,2022-12-19,BQ.1.1,209.828310596494,Infection naive,BNT162b2,5 +19,2023-01-09,2022-12-19,XBB,629.805990224052,Infection naive,BNT162b2,5 +20,2022-11-02,2022-11-02,BA.5,954.196371742937,Infection naive,BNT162b2+BA1,4 +20,2022-11-29,2022-11-02,BA.5,1307.05326853793,Infection naive,BNT162b2+BA1,4 +20,2022-11-02,2022-11-02,BQ.1.1,205.64066259314,Infection naive,BNT162b2+BA1,4 +20,2022-11-29,2022-11-02,BQ.1.1,263.071225684515,Infection naive,BNT162b2+BA1,4 +20,2022-11-02,2022-11-02,XBB,158.23145867532,Infection naive,BNT162b2+BA1,4 +20,2022-11-29,2022-11-02,XBB,465.050150429012,Infection naive,BNT162b2+BA1,4 +21,2023-01-12,2022-12-14,BA.5,715.784965588677,Infection naive,mRNA1273.214,7 +21,2023-01-12,2022-12-14,BQ.1.1,210.934695505106,Infection naive,mRNA1273.214,7 +21,2023-01-12,2022-12-14,XBB,517.535122942769,Infection naive,mRNA1273.214,7 +22,2022-10-25,2022-10-07,BA.5,2027.69194082687,Infection naive,mRNA1273.214,4 +22,2023-01-10,2022-10-07,BA.5,877.192235415596,Infection naive,mRNA1273.214,4 +22,2022-10-25,2022-10-07,BQ.1.1,900.56374830924,Infection naive,mRNA1273.214,4 +22,2023-01-10,2022-10-07,BQ.1.1,1560.21989763772,Infection naive,mRNA1273.214,4 +22,2022-10-25,2022-10-07,XBB,1233.58757758038,Infection naive,mRNA1273.214,4 +22,2023-01-10,2022-10-07,XBB,202.067223119486,Infection naive,mRNA1273.214,4 +23,2023-01-12,2022-12-07,BA.5,1518.3974797845,Infection naive,BNT162b2+BA1,6 +23,2023-01-12,2022-12-07,BQ.1.1,742.625960058114,Infection naive,BNT162b2+BA1,6 +23,2023-01-12,2022-12-07,XBB,255.57107407794,Infection naive,BNT162b2+BA1,6 +24,2022-10-11,2022-10-11,BA.5,184.94798791806,Previously infected (Omicron),mRNA1273.214,6 +24,2022-10-25,2022-10-11,BA.5,2560,Previously infected (Omicron),mRNA1273.214,6 +24,2022-10-11,2022-10-11,BQ.1.1,78.1384336132144,Previously infected (Omicron),mRNA1273.214,6 +24,2022-10-25,2022-10-11,BQ.1.1,2176.88314192367,Previously infected (Omicron),mRNA1273.214,6 +24,2022-10-11,2022-10-11,XBB,432.04071874368,Previously infected (Omicron),mRNA1273.214,6 +24,2022-10-25,2022-10-11,XBB,613.461207471414,Previously infected (Omicron),mRNA1273.214,6 +25,2022-12-01,2022-11-07,BA.5,2560,Infection naive,BNT162b2+BA1,5 +25,2022-12-01,2022-11-07,BQ.1.1,1537.14437134832,Infection naive,BNT162b2+BA1,5 +25,2022-12-01,2022-11-07,XBB,874.888706783397,Infection naive,BNT162b2+BA1,5 +26,2023-01-09,2022-12-03,BA.5,2560,Infection naive,BNT162b2,4 +26,2023-01-09,2022-12-03,BQ.1.1,1625.83566866185,Infection naive,BNT162b2,4 +26,2023-01-09,2022-12-03,XBB,657.44425406711,Infection naive,BNT162b2,4 +27,2022-10-05,2022-09-21,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +27,2022-12-07,2022-09-21,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +27,2022-10-05,2022-09-21,BQ.1.1,2560,Previously infected (Omicron),mRNA1273.214,5 +27,2022-12-07,2022-09-21,BQ.1.1,504.546041334375,Previously infected (Omicron),mRNA1273.214,5 +27,2022-10-05,2022-09-21,XBB,618.861785134304,Previously infected (Omicron),mRNA1273.214,5 +27,2022-12-07,2022-09-21,XBB,1111.40389844914,Previously infected (Omicron),mRNA1273.214,5 +28,2022-09-13,2022-08-21,BA.5,628.702916289441,Infection naive,mRNA1273,5 +28,2022-09-13,2022-08-21,BQ.1.1,87.8764721126324,Infection naive,mRNA1273,5 +28,2023-01-09,2022-08-21,BQ.1.1,168.243678832062,Infection naive,mRNA1273,5 +28,2022-09-13,2022-08-21,XBB,1283.21524389287,Infection naive,mRNA1273,5 +28,2023-01-09,2022-08-21,XBB,334.775575709082,Infection naive,mRNA1273,5 +29,2022-12-15,2022-11-25,BA.5,712.030563393995,Infection naive,BNT162b2,6 +29,2022-12-15,2022-11-25,BQ.1.1,409.189050588546,Infection naive,BNT162b2,6 +29,2022-12-15,2022-11-25,XBB,477.859393050193,Infection naive,BNT162b2,6 +30,2022-10-11,2022-09-24,BA.5,1450.74592374035,Infection naive,mRNA1273.214,4 +30,2022-10-11,2022-09-24,BQ.1.1,728.44319986931,Infection naive,mRNA1273.214,4 +30,2022-10-11,2022-09-24,XBB,420.459666934083,Infection naive,mRNA1273.214,4 +31,2022-11-24,2022-11-07,BA.5,496.648346512341,Infection naive,BNT162b2,6 +31,2022-11-24,2022-11-07,BQ.1.1,121.32604610522,Infection naive,BNT162b2,6 +31,2022-11-24,2022-11-07,XBB,364.802713224805,Infection naive,BNT162b2,6 +32,2022-11-17,2022-10-22,BA.5,1359.63648568647,Previously infected (Omicron),BNT162b2+BA1,5 +32,2022-12-15,2022-10-22,BA.5,1345.41088669668,Previously infected (Omicron),BNT162b2+BA1,5 +32,2022-11-17,2022-10-22,BQ.1.1,1177.5930015306,Previously infected (Omicron),BNT162b2+BA1,5 +32,2022-11-17,2022-10-22,XBB,630.910999527615,Previously infected (Omicron),BNT162b2+BA1,5 +32,2022-12-15,2022-10-22,XBB,468.322515364327,Previously infected (Omicron),BNT162b2+BA1,5 +33,2022-10-20,2022-10-03,BA.5,1416.81662834194,Infection naive,mRNA1273.214,4 +33,2022-10-20,2022-10-03,BQ.1.1,930.247978689868,Infection naive,mRNA1273.214,4 +33,2022-10-20,2022-10-03,XBB,198.034467000762,Infection naive,mRNA1273.214,4 +34,2022-11-01,2022-10-07,BA.5,2560,Infection naive,BNT162b2,5 +34,2022-11-01,2022-10-07,BQ.1.1,179.675127136321,Infection naive,BNT162b2,5 +34,2022-11-01,2022-10-07,XBB,127.54147645632,Infection naive,BNT162b2,5 +35,2022-11-22,2022-11-08,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,6 +35,2022-11-22,2022-11-08,BQ.1.1,2560,Previously infected (Omicron),BNT162b2+BA1,6 +35,2022-11-22,2022-11-08,XBB,677.925384779656,Previously infected (Omicron),BNT162b2+BA1,6 +36,2022-11-03,2022-10-15,BA.5,2560,Infection naive,mRNA1273.214,4 +36,2022-11-03,2022-10-15,BQ.1.1,562.473614824264,Infection naive,mRNA1273.214,4 +36,2022-11-03,2022-10-15,XBB,896.625694802478,Infection naive,mRNA1273.214,4 +37,2023-01-19,2023-01-05,BA.5,1387.32400109694,Infection naive,BNT162b2+BA1,8 +37,2023-01-19,2023-01-05,BQ.1.1,514.369532733211,Infection naive,BNT162b2+BA1,8 +37,2023-01-19,2023-01-05,XBB,443.551816107547,Infection naive,BNT162b2+BA1,8 +38,2022-12-15,2022-12-01,BA.5,2560,Infection naive,BNT162b2,6 +38,2023-01-12,2022-12-01,BA.5,2560,Infection naive,BNT162b2,6 +38,2022-12-15,2022-12-01,BQ.1.1,2560,Infection naive,BNT162b2,6 +38,2023-01-12,2022-12-01,BQ.1.1,898.198845502773,Infection naive,BNT162b2,6 +38,2022-12-15,2022-12-01,XBB,536.001581864688,Infection naive,BNT162b2,6 +38,2023-01-12,2022-12-01,XBB,935.152999952079,Infection naive,BNT162b2,6 +39,2022-11-30,2022-11-03,BA.5,858.179976699107,Previously infected (Omicron),BNT162b2+BA1,7 +39,2022-11-30,2022-11-03,BQ.1.1,538.827816606237,Previously infected (Omicron),BNT162b2+BA1,7 +39,2022-11-30,2022-11-03,XBB,858.179976699107,Previously infected (Omicron),BNT162b2+BA1,7 +40,2022-12-01,2022-11-11,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,5 +40,2022-12-01,2022-11-11,BQ.1.1,2560,Previously infected (Omicron),BNT162b2+BA1,5 +40,2022-12-01,2022-11-11,XBB,767.104271700557,Previously infected (Omicron),BNT162b2+BA1,5 +41,2022-09-29,2022-09-15,BA.5,2560,Previously infected (Pre-Omicron),mRNA1273.214,5 +41,2022-11-14,2022-09-15,BA.5,2537.756373512,Previously infected (Pre-Omicron),mRNA1273.214,5 +41,2022-09-29,2022-09-15,BQ.1.1,1145.02303045871,Previously infected (Pre-Omicron),mRNA1273.214,5 +41,2022-11-14,2022-09-15,BQ.1.1,337.131252519725,Previously infected (Pre-Omicron),mRNA1273.214,5 +41,2022-09-29,2022-09-15,XBB,757.084858024867,Previously infected (Pre-Omicron),mRNA1273.214,5 +41,2022-11-14,2022-09-15,XBB,517.535122942769,Previously infected (Pre-Omicron),mRNA1273.214,5 +42,2022-10-27,2022-10-07,BA.5,2560,Previously infected (Omicron),mRNA1273.214,6 +42,2022-10-27,2022-10-07,BQ.1.1,2560,Previously infected (Omicron),mRNA1273.214,6 +42,2022-10-27,2022-10-07,XBB,689.309654812605,Previously infected (Omicron),mRNA1273.214,6 +43,2023-01-19,2022-12-19,BA.5,311.831960006418,Infection naive,BNT162b2,4 +43,2023-01-19,2022-12-19,BQ.1.1,150.784516669687,Infection naive,BNT162b2,4 +43,2023-01-19,2022-12-19,XBB,315.405420875903,Infection naive,BNT162b2,4 +44,2022-12-08,2022-11-16,BA.5,2343.20467654482,Previously infected (Omicron),BNT162b2+BA1,5 +44,2022-12-08,2022-11-16,BQ.1.1,387.546061881477,Previously infected (Omicron),BNT162b2+BA1,5 +44,2022-12-08,2022-11-16,XBB,636.465195636225,Previously infected (Omicron),BNT162b2+BA1,5 +45,2023-01-12,2022-12-13,BA.5,1750.05523665148,Infection naive,mRNA1273.214,6 +45,2023-01-12,2022-12-13,BQ.1.1,178.26334694422,Infection naive,mRNA1273.214,6 +45,2023-01-12,2022-12-13,XBB,468.733176704257,Infection naive,mRNA1273.214,6 +46,2022-11-24,2022-10-30,BA.5,190.375589432515,Previously infected (Pre-Omicron),BNT162b2+BA1,5 +46,2023-01-26,2022-10-30,BA.5,210.934695505106,Previously infected (Pre-Omicron),BNT162b2+BA1,5 +46,2022-11-24,2022-10-30,BQ.1.1,102.623952343631,Previously infected (Pre-Omicron),BNT162b2+BA1,5 +46,2023-01-26,2022-10-30,BQ.1.1,44.0469291474526,Previously infected (Pre-Omicron),BNT162b2+BA1,5 +46,2022-11-24,2022-10-30,XBB,257.143938018089,Previously infected (Pre-Omicron),BNT162b2+BA1,5 +46,2023-01-26,2022-10-30,XBB,297.938419217795,Previously infected (Pre-Omicron),BNT162b2+BA1,5 +47,2022-10-27,2022-10-25,BA.5,391.64375049163,Previously infected (Omicron),BNT162b2+BA1,5 +47,2022-10-27,2022-10-25,BQ.1.1,51.9372529850059,Previously infected (Omicron),BNT162b2+BA1,5 +47,2022-10-27,2022-10-25,XBB,78.481624015059,Previously infected (Omicron),BNT162b2+BA1,5 +48,2023-01-09,2022-12-02,BA.5,2560,Infection naive,BNT162b2+BA1,7 +48,2023-01-09,2022-12-02,BQ.1.1,1186.91910531141,Infection naive,BNT162b2+BA1,7 +48,2023-01-09,2022-12-02,XBB,2078.07082340062,Infection naive,BNT162b2+BA1,7 +49,2022-10-06,2022-09-04,BA.5,2548.90240740769,Infection naive,BNT162b2,4 +49,2022-10-20,2022-09-04,BA.5,2560,Infection naive,BNT162b2,4 +49,2023-01-26,2022-09-04,BA.5,2560,Infection naive,BNT162b2,4 +49,2022-10-06,2022-09-04,BQ.1.1,628.702916289441,Infection naive,BNT162b2,4 +49,2022-10-20,2022-09-04,BQ.1.1,1760.82562130839,Infection naive,BNT162b2,4 +49,2023-01-26,2022-09-04,BQ.1.1,278.738300902528,Infection naive,BNT162b2,4 +49,2022-10-06,2022-09-04,XBB,1049.85488105074,Infection naive,BNT162b2,4 +49,2022-10-20,2022-09-04,XBB,1464.80082422093,Infection naive,BNT162b2,4 +49,2023-01-26,2022-09-04,XBB,2560,Infection naive,BNT162b2,4 +50,2022-11-23,2022-11-23,BA.5,867.253876970237,Infection naive,BNT162b2,4 +50,2022-11-23,2022-11-23,BQ.1.1,170.17167942197,Infection naive,BNT162b2,4 +50,2022-11-23,2022-11-23,XBB,708.295853616049,Infection naive,BNT162b2,4 +51,2022-11-17,2022-10-31,BA.5,2560,Previously infected (Pre-Omicron),BNT162b2+BA1,6 +51,2022-11-17,2022-10-31,BQ.1.1,1341.8778042383,Previously infected (Pre-Omicron),BNT162b2+BA1,6 +51,2022-11-17,2022-10-31,XBB,745.234155267889,Previously infected (Pre-Omicron),BNT162b2+BA1,6 +52,2022-10-05,2022-09-23,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +52,2022-10-05,2022-09-23,BQ.1.1,2560,Previously infected (Omicron),mRNA1273.214,5 +52,2022-10-05,2022-09-23,XBB,2560,Previously infected (Omicron),mRNA1273.214,5 +53,2022-12-01,2022-12-01,BA.5,773.179455604743,Infection naive,mRNA1273,5 +53,2023-01-12,2022-12-01,BA.5,1834.87795903086,Infection naive,mRNA1273,5 +53,2022-12-01,2022-12-01,BQ.1.1,48.8036602557514,Infection naive,mRNA1273,5 +53,2023-01-12,2022-12-01,BQ.1.1,1098.81198316033,Infection naive,mRNA1273,5 +53,2022-12-01,2022-12-01,XBB,424.905365027001,Infection naive,mRNA1273,5 +53,2023-01-12,2022-12-01,XBB,366.404956627397,Infection naive,mRNA1273,5 +54,2022-12-08,2022-11-19,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,5 +54,2022-12-08,2022-11-19,BQ.1.1,2560,Previously infected (Omicron),BNT162b2+BA1,5 +54,2022-12-08,2022-11-19,XBB,1033.42142844445,Previously infected (Omicron),BNT162b2+BA1,5 +55,2022-11-03,2022-10-15,BA.5,1240.09205104923,Infection naive,BNT162b2+BA1,4 +55,2023-01-12,2022-10-15,BA.5,1278.7242046288,Infection naive,BNT162b2+BA1,4 +55,2022-11-03,2022-10-15,BQ.1.1,133.138477805861,Infection naive,BNT162b2+BA1,4 +55,2023-01-12,2022-10-15,BQ.1.1,108.450127901883,Infection naive,BNT162b2+BA1,4 +55,2022-11-03,2022-10-15,XBB,374.850761716459,Infection naive,BNT162b2+BA1,4 +55,2023-01-12,2022-10-15,XBB,637.581888671047,Infection naive,BNT162b2+BA1,4 +56,2022-10-25,2022-10-07,BA.5,2560,Previously infected (Omicron),BNT162b2,5 +56,2022-10-25,2022-10-07,BQ.1.1,145.207329202824,Previously infected (Omicron),BNT162b2,5 +56,2022-10-25,2022-10-07,XBB,324.946197632002,Previously infected (Omicron),BNT162b2,5 +57,2022-11-03,2022-10-10,BA.5,2560,Infection naive,BNT162b2+BA1,4 +57,2022-12-08,2022-10-10,BA.5,2560,Infection naive,BNT162b2+BA1,4 +57,2022-11-03,2022-10-10,BQ.1.1,2560,Infection naive,BNT162b2+BA1,4 +57,2022-12-08,2022-10-10,BQ.1.1,2560,Infection naive,BNT162b2+BA1,4 +57,2022-11-03,2022-10-10,XBB,1049.85488105074,Infection naive,BNT162b2+BA1,4 +57,2022-12-08,2022-10-10,XBB,743.928914630903,Infection naive,BNT162b2+BA1,4 +58,2022-10-26,2022-10-06,BA.5,260.775500501106,Infection naive,mRNA1273.214,4 +58,2022-10-26,2022-10-06,BQ.1.1,350.386916228243,Infection naive,mRNA1273.214,4 +58,2022-10-26,2022-10-06,XBB,207.814988392767,Infection naive,mRNA1273.214,4 +59,2022-12-08,2022-11-14,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,5 +59,2022-12-08,2022-11-14,BQ.1.1,1061.88576889173,Previously infected (Omicron),BNT162b2+BA1,5 +59,2022-12-08,2022-11-14,XBB,2292.41807386239,Previously infected (Omicron),BNT162b2+BA1,5 +60,2022-10-25,2022-09-26,BA.5,1488.0940657388,Previously infected (Pre-Omicron),mRNA1273.214,5 +60,2022-12-08,2022-09-26,BA.5,877.96142529426,Previously infected (Pre-Omicron),mRNA1273.214,5 +60,2022-10-25,2022-09-26,BQ.1.1,1172.44353348025,Previously infected (Pre-Omicron),mRNA1273.214,5 +60,2022-12-08,2022-09-26,BQ.1.1,192.051552220915,Previously infected (Pre-Omicron),mRNA1273.214,5 +60,2022-10-25,2022-09-26,XBB,137.165816622248,Previously infected (Pre-Omicron),mRNA1273.214,5 +60,2022-12-08,2022-09-26,XBB,85.0723322456456,Previously infected (Pre-Omicron),mRNA1273.214,5 +61,2022-11-17,2022-10-29,BA.5,320.420993316214,Previously infected (Pre-Omicron),BNT162b2+BA1,5 +61,2022-11-17,2022-10-29,BQ.1.1,51.0794850593388,Previously infected (Pre-Omicron),BNT162b2+BA1,5 +61,2022-11-17,2022-10-29,XBB,257.82098233153,Previously infected (Pre-Omicron),BNT162b2+BA1,5 +62,2022-12-01,2022-10-15,BA.5,2560,Previously infected (Omicron),mRNA1273.214,6 +62,2022-12-01,2022-10-15,BQ.1.1,603.858655860951,Previously infected (Omicron),mRNA1273.214,6 +62,2022-12-01,2022-10-15,XBB,390.615284259882,Previously infected (Omicron),mRNA1273.214,6 +63,2023-01-12,2022-12-20,BA.5,870.299781004342,Infection naive,mRNA1273.214,5 +63,2023-01-12,2022-12-20,BQ.1.1,169.724804358431,Infection naive,mRNA1273.214,5 +63,2023-01-12,2022-12-20,XBB,587.157079911253,Infection naive,mRNA1273.214,5 +64,2022-11-03,2022-10-16,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,6 +64,2023-01-26,2022-10-16,BA.5,659.175264710604,Previously infected (Omicron),BNT162b2+BA1,6 +64,2022-11-03,2022-10-16,BQ.1.1,425.277954857344,Previously infected (Omicron),BNT162b2+BA1,6 +64,2023-01-26,2022-10-16,BQ.1.1,157.954324128475,Previously infected (Omicron),BNT162b2+BA1,6 +64,2022-11-03,2022-10-16,XBB,537.41284135536,Previously infected (Omicron),BNT162b2+BA1,6 +64,2023-01-26,2022-10-16,XBB,568.919321841117,Previously infected (Omicron),BNT162b2+BA1,6 +65,2022-10-11,2022-09-16,BA.5,740.026893096432,Previously infected (Omicron),mRNA1273.214,5 +65,2022-10-11,2022-09-16,BQ.1.1,122.716390694009,Previously infected (Omicron),mRNA1273.214,5 +65,2022-10-11,2022-09-16,XBB,58.7694302642765,Previously infected (Omicron),mRNA1273.214,5 +66,2022-10-18,2022-09-23,BA.5,2560,Previously infected (Omicron),mRNA1273.214,6 +66,2023-02-01,2022-09-23,BA.5,2054.52682485164,Previously infected (Omicron),mRNA1273.214,6 +66,2022-10-18,2022-09-23,BQ.1.1,989.977480271314,Previously infected (Omicron),mRNA1273.214,6 +66,2023-02-01,2022-09-23,BQ.1.1,666.729131269143,Previously infected (Omicron),mRNA1273.214,6 +66,2022-10-18,2022-09-23,XBB,464.235638170972,Previously infected (Omicron),mRNA1273.214,6 +66,2023-02-01,2022-09-23,XBB,674.369561907129,Previously infected (Omicron),mRNA1273.214,6 +67,2022-11-03,2022-10-07,BA.5,2539.98167423653,Previously infected (Omicron),BNT162b2+BA1,5 +67,2023-01-19,2022-10-07,BA.5,1877.17275151083,Previously infected (Omicron),BNT162b2+BA1,5 +67,2022-11-03,2022-10-07,BQ.1.1,641.505766070714,Previously infected (Omicron),BNT162b2+BA1,5 +67,2023-01-19,2022-10-07,BQ.1.1,510.775418063317,Previously infected (Omicron),BNT162b2+BA1,5 +67,2022-11-03,2022-10-07,XBB,509.434109108876,Previously infected (Omicron),BNT162b2+BA1,5 +67,2023-01-19,2022-10-07,XBB,415.33177398538,Previously infected (Omicron),BNT162b2+BA1,5 +68,2022-12-01,2022-11-07,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,5 +68,2022-12-01,2022-11-07,BQ.1.1,2560,Previously infected (Omicron),BNT162b2+BA1,5 +68,2022-12-01,2022-11-07,XBB,1248.81806423443,Previously infected (Omicron),BNT162b2+BA1,5 +69,2022-11-01,2022-10-16,BA.5,2560,Previously infected (Pre-Omicron),BNT162b2,5 +69,2023-01-10,2022-10-16,BA.5,2560,Previously infected (Pre-Omicron),BNT162b2,5 +69,2022-11-01,2022-10-16,BQ.1.1,750.478058782485,Previously infected (Pre-Omicron),BNT162b2,5 +69,2023-01-10,2022-10-16,BQ.1.1,622.670453189897,Previously infected (Pre-Omicron),BNT162b2,5 +69,2022-11-01,2022-10-16,XBB,639.821155970214,Previously infected (Pre-Omicron),BNT162b2,5 +69,2023-01-10,2022-10-16,XBB,557.076628047233,Previously infected (Pre-Omicron),BNT162b2,5 +70,2023-01-19,2022-12-26,BA.5,66.2676181593159,Infection naive,BNT162b2+BA1,5 +70,2023-01-19,2022-12-26,BQ.1.1,5,Infection naive,BNT162b2+BA1,5 +70,2023-01-19,2022-12-26,XBB,483.335457280892,Infection naive,BNT162b2+BA1,5 +71,2023-01-16,2022-12-24,BA.5,2560,Infection naive,BNT162b2+BA1,6 +71,2023-01-16,2022-12-24,BQ.1.1,1035.23459045094,Infection naive,BNT162b2+BA1,6 +71,2023-01-16,2022-12-24,XBB,699.044556987987,Infection naive,BNT162b2+BA1,6 +72,2022-11-16,2022-10-29,BA.5,330.982656054963,Infection naive,BNT162b2+BA1,4 +72,2023-01-09,2022-10-29,BA.5,260.547032746362,Infection naive,BNT162b2+BA1,4 +72,2022-11-16,2022-10-29,BQ.1.1,44.008339237793,Infection naive,BNT162b2+BA1,4 +72,2023-01-09,2022-10-29,BQ.1.1,46.4660393225683,Infection naive,BNT162b2+BA1,4 +72,2022-11-16,2022-10-29,XBB,428.645999960817,Infection naive,BNT162b2+BA1,4 +72,2023-01-09,2022-10-29,XBB,337.131252519725,Infection naive,BNT162b2+BA1,4 +73,2022-10-27,2022-10-13,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,5 +73,2022-10-27,2022-10-13,BQ.1.1,2491.47279775337,Previously infected (Omicron),BNT162b2+BA1,5 +73,2022-10-27,2022-10-13,XBB,122.823997900112,Previously infected (Omicron),BNT162b2+BA1,5 +74,2023-01-16,2022-12-15,BA.5,320.983179424583,Infection naive,BNT162b2,5 +74,2023-01-16,2022-12-15,BQ.1.1,94.5905439051817,Infection naive,BNT162b2,5 +74,2023-01-16,2022-12-15,XBB,259.407692907387,Infection naive,BNT162b2,5 +75,2022-09-29,2022-09-15,BA.5,2560,Previously infected (Pre-Omicron),BNT162b2+BA1,5 +75,2022-11-14,2022-09-15,BA.5,299.509392027809,Previously infected (Pre-Omicron),BNT162b2+BA1,5 +75,2022-09-29,2022-09-15,BQ.1.1,891.14133365426,Previously infected (Pre-Omicron),BNT162b2+BA1,5 +75,2022-11-14,2022-09-15,BQ.1.1,135.849697822965,Previously infected (Pre-Omicron),BNT162b2+BA1,5 +75,2022-09-29,2022-09-15,XBB,491.021450730944,Previously infected (Pre-Omicron),BNT162b2+BA1,5 +75,2022-11-14,2022-09-15,XBB,178.107168827214,Previously infected (Pre-Omicron),BNT162b2+BA1,5 +76,2022-10-27,2022-10-03,BA.5,2332.95813329804,Infection naive,BNT162b2,4 +76,2022-10-27,2022-10-03,BQ.1.1,2002.96236978066,Infection naive,BNT162b2,4 +76,2022-10-27,2022-10-03,XBB,906.900641715828,Infection naive,BNT162b2,4 +77,2022-09-26,2022-09-13,BA.5,2560,Infection naive,mRNA1273.214,5 +77,2022-09-26,2022-09-13,BQ.1.1,2560,Infection naive,mRNA1273.214,5 +77,2022-09-26,2022-09-13,XBB,994.32554246761,Infection naive,mRNA1273.214,5 +78,2022-11-24,2022-11-09,BA.5,917.293335125497,Previously infected (Omicron),BNT162b2+BA1,5 +78,2023-01-05,2022-11-09,BA.5,757.748728481735,Previously infected (Omicron),BNT162b2+BA1,5 +78,2022-11-24,2022-11-09,BQ.1.1,509.880820268363,Previously infected (Omicron),BNT162b2+BA1,5 +78,2023-01-05,2022-11-09,BQ.1.1,405.262843496997,Previously infected (Omicron),BNT162b2+BA1,5 +78,2022-11-24,2022-11-09,XBB,504.546041334375,Previously infected (Omicron),BNT162b2+BA1,5 +78,2023-01-05,2022-11-09,XBB,368.336940511276,Previously infected (Omicron),BNT162b2+BA1,5 +79,2022-10-11,2022-09-20,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +79,2022-10-11,2022-09-20,BQ.1.1,2560,Previously infected (Omicron),mRNA1273.214,5 +79,2022-10-11,2022-09-20,XBB,690.519064683942,Previously infected (Omicron),mRNA1273.214,5 +80,2022-11-01,2022-10-14,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +80,2023-01-10,2022-10-14,BA.5,1689.7619012731,Previously infected (Omicron),mRNA1273.214,5 +80,2022-11-01,2022-10-14,BQ.1.1,2560,Previously infected (Omicron),mRNA1273.214,5 +80,2023-01-10,2022-10-14,BQ.1.1,497.519727623373,Previously infected (Omicron),mRNA1273.214,5 +80,2022-11-01,2022-10-14,XBB,1076.88244565292,Previously infected (Omicron),mRNA1273.214,5 +80,2023-01-10,2022-10-14,XBB,709.538575216146,Previously infected (Omicron),mRNA1273.214,5 +81,2023-01-17,2022-12-03,BA.5,2560,Infection naive,BNT162b2+BA1,7 +81,2023-01-17,2022-12-03,BQ.1.1,670.244667599166,Infection naive,BNT162b2+BA1,7 +81,2023-01-17,2022-12-03,XBB,448.63473018222,Infection naive,BNT162b2+BA1,7 +82,2023-01-11,2022-12-24,BA.5,146.357317883225,Infection naive,mRNA1273.214,6 +82,2023-01-11,2022-12-24,BQ.1.1,50.5893726377474,Infection naive,mRNA1273.214,6 +82,2023-01-11,2022-12-24,XBB,322.110512477855,Infection naive,mRNA1273.214,6 +83,2022-11-21,2022-11-04,BA.5,62.1603524897165,Infection naive,mRNA1273.214,4 +83,2022-11-21,2022-11-04,BQ.1.1,51.3488175018903,Infection naive,mRNA1273.214,4 +83,2022-11-21,2022-11-04,XBB,129.342704377527,Infection naive,mRNA1273.214,4 +84,2022-12-15,2022-11-18,BA.5,2308.54886860586,Infection naive,BNT162b2,5 +84,2022-12-15,2022-11-18,BQ.1.1,590.253047897426,Infection naive,BNT162b2,5 +84,2022-12-15,2022-11-18,XBB,680.306343480621,Infection naive,BNT162b2,5 +85,2022-11-24,2022-10-25,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,6 +85,2022-11-24,2022-10-25,BQ.1.1,2560,Previously infected (Omicron),BNT162b2+BA1,6 +85,2022-11-24,2022-10-25,XBB,1944.15319780018,Previously infected (Omicron),BNT162b2+BA1,6 +86,2023-01-19,2022-12-24,BA.5,560.013987512506,Infection naive,BNT162b2,5 +86,2023-01-19,2022-12-24,BQ.1.1,368.014237214278,Infection naive,BNT162b2,5 +86,2023-01-19,2022-12-24,XBB,381.479776001745,Infection naive,BNT162b2,5 +87,2023-01-26,2022-12-25,BA.5,2314.62713704896,Infection naive,mRNA1273.214,6 +87,2023-01-26,2022-12-25,BQ.1.1,719.559164034486,Infection naive,mRNA1273.214,6 +87,2023-01-26,2022-12-25,XBB,664.395690545713,Infection naive,mRNA1273.214,6 +88,2022-10-13,2022-09-25,BA.5,503.221090878193,Infection naive,mRNA1273.214,4 +88,2023-01-12,2022-09-25,BA.5,224.675262047494,Infection naive,mRNA1273.214,4 +88,2022-10-13,2022-09-25,BQ.1.1,103.982098422853,Infection naive,mRNA1273.214,4 +88,2023-01-12,2022-09-25,BQ.1.1,61.4560919648389,Infection naive,mRNA1273.214,4 +88,2022-10-13,2022-09-25,XBB,472.859647772246,Infection naive,mRNA1273.214,4 +88,2023-01-12,2022-09-25,XBB,910.883823631199,Infection naive,mRNA1273.214,4 +89,2022-11-17,2022-10-29,BA.5,395.091568324212,Previously infected (Omicron),BNT162b2+BA1,5 +89,2022-11-17,2022-10-29,BQ.1.1,155.754650476491,Previously infected (Omicron),BNT162b2+BA1,5 +89,2022-11-17,2022-10-29,XBB,316.513164143859,Previously infected (Omicron),BNT162b2+BA1,5 +90,2022-10-18,2022-10-02,BA.5,2560,Infection naive,mRNA1273.214,5 +90,2023-01-16,2022-10-02,BA.5,339.801208136535,Infection naive,mRNA1273.214,5 +90,2022-10-18,2022-10-02,BQ.1.1,414.241102414644,Infection naive,mRNA1273.214,5 +90,2023-01-16,2022-10-02,BQ.1.1,114.4063389926,Infection naive,mRNA1273.214,5 +90,2022-10-18,2022-10-02,XBB,107.786774541131,Infection naive,mRNA1273.214,5 +91,2022-10-18,2022-09-29,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +91,2023-01-05,2022-09-29,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +91,2022-10-18,2022-09-29,BQ.1.1,2560,Previously infected (Omicron),mRNA1273.214,5 +91,2023-01-05,2022-09-29,BQ.1.1,1116.28527542182,Previously infected (Omicron),mRNA1273.214,5 +91,2022-10-18,2022-09-29,XBB,885.690518519031,Previously infected (Omicron),mRNA1273.214,5 +91,2023-01-05,2022-09-29,XBB,858.932495161422,Previously infected (Omicron),mRNA1273.214,5 +92,2022-11-03,2022-10-07,BA.5,2560,Previously infected (Omicron),mRNA1273.214,7 +92,2022-12-15,2022-10-07,BA.5,2560,Previously infected (Omicron),mRNA1273.214,7 +92,2022-11-03,2022-10-07,BQ.1.1,1868.96410803526,Previously infected (Omicron),mRNA1273.214,7 +92,2022-12-15,2022-10-07,BQ.1.1,586.642666327646,Previously infected (Omicron),mRNA1273.214,7 +92,2022-11-03,2022-10-07,XBB,734.212202293392,Previously infected (Omicron),mRNA1273.214,7 +92,2022-12-15,2022-10-07,XBB,679.710320991796,Previously infected (Omicron),mRNA1273.214,7 +93,2022-10-18,2022-10-03,BA.5,2560,Previously infected (Pre-Omicron),mRNA1273.214,5 +93,2022-10-18,2022-10-03,BQ.1.1,1375.21733820146,Previously infected (Pre-Omicron),mRNA1273.214,5 +93,2022-10-18,2022-10-03,XBB,1148.03780629789,Previously infected (Pre-Omicron),mRNA1273.214,5 +94,2023-01-09,2023-01-07,BA.5,1954.40434909604,Previously infected (Omicron),BNT162b2+BA1,6 +94,2023-01-09,2023-01-07,BQ.1.1,504.988466258638,Previously infected (Omicron),BNT162b2+BA1,6 +94,2023-01-09,2023-01-07,XBB,598.589004952263,Previously infected (Omicron),BNT162b2+BA1,6 +95,2022-12-08,2022-10-27,BA.5,477.022446039421,Previously infected (Omicron),BNT162b2+BA1,5 +95,2022-12-08,2022-10-27,BQ.1.1,63.4817973028585,Previously infected (Omicron),BNT162b2+BA1,5 +95,2022-12-08,2022-10-27,XBB,320.701963182361,Previously infected (Omicron),BNT162b2+BA1,5 +96,2022-10-27,2022-10-05,BA.5,516.628685860199,Infection naive,mRNA1273,5 +96,2023-01-05,2022-10-05,BA.5,246.98245984103,Infection naive,mRNA1273,5 +96,2022-10-27,2022-10-05,BQ.1.1,165.030540753816,Infection naive,mRNA1273,5 +96,2023-01-05,2022-10-05,BQ.1.1,160.888608995561,Infection naive,mRNA1273,5 +96,2022-10-27,2022-10-05,XBB,133.48902330187,Infection naive,mRNA1273,5 +97,2022-10-27,2022-10-10,BA.5,2502.4155503926,Infection naive,mRNA1273.214,4 +97,2022-10-27,2022-10-10,BQ.1.1,374.522351602284,Infection naive,mRNA1273.214,4 +97,2022-10-27,2022-10-10,XBB,283.170793331426,Infection naive,mRNA1273.214,4 +98,2022-11-17,2022-10-21,BA.5,463.016543836299,Previously infected (Omicron),BNT162b2+BA1,5 +98,2022-11-17,2022-10-21,BQ.1.1,152.51244272971,Previously infected (Omicron),BNT162b2+BA1,5 +98,2022-11-17,2022-10-21,XBB,388.226020488708,Previously infected (Omicron),BNT162b2+BA1,5 +99,2022-12-01,2022-11-18,BA.5,2560,Infection naive,mRNA1273.214,4 +99,2022-12-01,2022-11-18,BQ.1.1,262.380394101418,Infection naive,mRNA1273.214,4 +99,2022-12-01,2022-11-18,XBB,255.347165967859,Infection naive,mRNA1273.214,4 +100,2022-11-17,2022-10-20,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,5 +100,2022-11-17,2022-10-20,BQ.1.1,601.218056900837,Previously infected (Omicron),BNT162b2+BA1,5 +100,2022-11-17,2022-10-20,XBB,993.454404942277,Previously infected (Omicron),BNT162b2+BA1,5 +101,2022-11-08,2022-10-26,BA.5,358.777826489057,Previously infected (Omicron),BNT162b2+BA1,6 +101,2022-11-08,2022-10-26,BQ.1.1,157.954324128475,Previously infected (Omicron),BNT162b2+BA1,6 +101,2022-11-08,2022-10-26,XBB,215.418881133446,Previously infected (Omicron),BNT162b2+BA1,6 +101,2023-01-16,2022-10-26,XBB,320.140269610284,Previously infected (Omicron),BNT162b2+BA1,6 +102,2023-01-26,2022-12-22,BA.5,2560,Infection naive,BNT162b2+BA1,6 +102,2023-01-26,2022-12-22,BQ.1.1,1640.14863855916,Infection naive,BNT162b2+BA1,6 +102,2023-01-26,2022-12-22,XBB,323.241804865745,Infection naive,BNT162b2+BA1,6 +103,2022-11-08,2022-11-08,BA.5,886.467160348459,Previously infected (Omicron),mRNA1273.214,6 +103,2022-11-23,2022-11-08,BA.5,1854.27890063053,Previously infected (Omicron),mRNA1273.214,6 +103,2022-11-08,2022-11-08,BQ.1.1,672.598650661207,Previously infected (Omicron),mRNA1273.214,6 +103,2022-11-23,2022-11-08,BQ.1.1,1446.93622885427,Previously infected (Omicron),mRNA1273.214,6 +103,2022-11-08,2022-11-08,XBB,347.329219342432,Previously infected (Omicron),mRNA1273.214,6 +103,2022-11-23,2022-11-08,XBB,1120.20580885949,Previously infected (Omicron),mRNA1273.214,6 +104,2022-12-01,2022-12-01,BA.5,1716.63247058409,Infection naive,BNT162b2,5 +104,2023-01-05,2022-12-01,BA.5,2560,Infection naive,BNT162b2,5 +104,2022-12-01,2022-12-01,BQ.1.1,117.867044698861,Infection naive,BNT162b2,5 +104,2023-01-05,2022-12-01,BQ.1.1,1322.03153987791,Infection naive,BNT162b2,5 +104,2022-12-01,2022-12-01,XBB,342.492308820563,Infection naive,BNT162b2,5 +104,2023-01-05,2022-12-01,XBB,800.767702321239,Infection naive,BNT162b2,5 +105,2023-01-05,2022-12-16,BA.5,1154.09119203881,Infection naive,"",1 +105,2023-01-05,2022-12-16,BQ.1.1,304.806038696575,Infection naive,"",1 +105,2023-01-05,2022-12-16,XBB,1071.23403165745,Infection naive,"",1 +106,2022-09-15,2022-09-15,BA.5,494.476564929657,Previously infected (Omicron),mRNA1273.214,5 +106,2022-10-05,2022-09-15,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +106,2022-09-15,2022-09-15,BQ.1.1,50.1918714623814,Previously infected (Omicron),mRNA1273.214,5 +106,2022-10-05,2022-09-15,BQ.1.1,115.009581932274,Previously infected (Omicron),mRNA1273.214,5 +106,2022-09-15,2022-09-15,XBB,55.3205147047548,Previously infected (Omicron),mRNA1273.214,5 +106,2022-10-05,2022-09-15,XBB,380.144660431209,Previously infected (Omicron),mRNA1273.214,5 +107,2022-10-13,2022-10-13,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +107,2022-11-03,2022-10-13,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +107,2023-01-16,2022-10-13,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +107,2022-10-13,2022-10-13,BQ.1.1,2560,Previously infected (Omicron),mRNA1273.214,5 +107,2022-11-03,2022-10-13,BQ.1.1,2560,Previously infected (Omicron),mRNA1273.214,5 +107,2023-01-16,2022-10-13,BQ.1.1,1682.37278218696,Previously infected (Omicron),mRNA1273.214,5 +107,2022-10-13,2022-10-13,XBB,416.060483272753,Previously infected (Omicron),mRNA1273.214,5 +107,2022-11-03,2022-10-13,XBB,1323.19079920408,Previously infected (Omicron),mRNA1273.214,5 +107,2023-01-16,2022-10-13,XBB,699.657533227705,Previously infected (Omicron),mRNA1273.214,5 +108,2022-09-29,2022-09-16,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +108,2023-01-10,2022-09-16,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +108,2022-09-29,2022-09-16,BQ.1.1,2560,Previously infected (Omicron),mRNA1273.214,5 +108,2023-01-10,2022-09-16,BQ.1.1,517.081705780065,Previously infected (Omicron),mRNA1273.214,5 +108,2022-09-29,2022-09-16,XBB,855.176489958022,Previously infected (Omicron),mRNA1273.214,5 +108,2023-01-10,2022-09-16,XBB,635.907582770214,Previously infected (Omicron),mRNA1273.214,5 +109,2022-12-01,2022-11-05,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,6 +109,2022-12-01,2022-11-05,BQ.1.1,2560,Previously infected (Omicron),BNT162b2+BA1,6 +109,2022-12-01,2022-11-05,XBB,2560,Previously infected (Omicron),BNT162b2+BA1,6 +110,2022-10-05,2022-09-14,BA.5,2560,Infection naive,mRNA1273.214,4 +110,2022-12-22,2022-09-14,BA.5,711.406747031582,Infection naive,mRNA1273.214,4 +110,2022-10-05,2022-09-14,BQ.1.1,2560,Infection naive,mRNA1273.214,4 +110,2022-12-22,2022-09-14,BQ.1.1,84.2560552859443,Infection naive,mRNA1273.214,4 +110,2022-10-05,2022-09-14,XBB,155.754650476491,Infection naive,mRNA1273.214,4 +111,2023-01-19,2022-12-28,BA.5,247.415796329056,Infection naive,others,4 +111,2023-01-19,2022-12-28,BQ.1.1,158.648072460302,Infection naive,others,4 +111,2023-01-19,2022-12-28,XBB,335.95134938234,Infection naive,others,4 +112,2022-10-12,2022-09-28,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +112,2023-01-09,2022-09-28,BA.5,2065.3599553615,Previously infected (Omicron),mRNA1273.214,5 +112,2022-10-12,2022-09-28,BQ.1.1,2560,Previously infected (Omicron),mRNA1273.214,5 +112,2023-01-09,2022-09-28,BQ.1.1,462.205593339281,Previously infected (Omicron),mRNA1273.214,5 +112,2022-10-12,2022-09-28,XBB,513.918888972479,Previously infected (Omicron),mRNA1273.214,5 +112,2023-01-09,2022-09-28,XBB,854.427262165546,Previously infected (Omicron),mRNA1273.214,5 +113,2023-01-12,2022-12-13,BA.5,1266.45472666225,Infection naive,BNT162b2,6 +113,2023-01-12,2022-12-13,BQ.1.1,2560,Infection naive,BNT162b2,6 +113,2023-01-12,2022-12-13,XBB,350.386916228243,Infection naive,BNT162b2,6 +114,2023-01-11,2022-12-20,BA.5,2560,Infection naive,mRNA1273.214,5 +114,2023-01-11,2022-12-20,BQ.1.1,2560,Infection naive,mRNA1273.214,5 +114,2023-01-11,2022-12-20,XBB,652.850416586838,Infection naive,mRNA1273.214,5 +115,2022-10-10,2022-10-05,BA.5,2560,Infection naive,mRNA1273.214,4 +115,2022-11-25,2022-10-05,BA.5,2560,Infection naive,mRNA1273.214,4 +115,2022-10-10,2022-10-05,BQ.1.1,1115.30728788065,Infection naive,mRNA1273.214,4 +115,2022-11-25,2022-10-05,BQ.1.1,586.12870342639,Infection naive,mRNA1273.214,4 +115,2022-10-10,2022-10-05,XBB,642.068287856074,Infection naive,mRNA1273.214,4 +115,2022-11-25,2022-10-05,XBB,864.976446714553,Infection naive,mRNA1273.214,4 +116,2022-11-24,2022-11-11,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,5 +116,2023-01-05,2022-11-11,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,5 +116,2022-11-24,2022-11-11,BQ.1.1,1429.28950868425,Previously infected (Omicron),BNT162b2+BA1,5 +116,2023-01-05,2022-11-11,BQ.1.1,959.227668342283,Previously infected (Omicron),BNT162b2+BA1,5 +116,2022-11-24,2022-11-11,XBB,792.38943332279,Previously infected (Omicron),BNT162b2+BA1,5 +116,2023-01-05,2022-11-11,XBB,822.823877924614,Previously infected (Omicron),BNT162b2+BA1,5 +117,2022-11-14,2022-10-01,BA.5,2560,Previously infected (Pre-Omicron),mRNA1273.214,5 +117,2022-11-14,2022-10-01,BQ.1.1,509.434109108876,Previously infected (Pre-Omicron),mRNA1273.214,5 +117,2022-11-14,2022-10-01,XBB,797.266044538379,Previously infected (Pre-Omicron),mRNA1273.214,5 +118,2023-01-09,2022-11-24,BA.5,1397.08602442051,Infection naive,BNT162b2+BA1,6 +118,2023-01-09,2022-11-24,BQ.1.1,445.890580758201,Infection naive,BNT162b2+BA1,6 +118,2023-01-09,2022-11-24,XBB,434.318787559875,Infection naive,BNT162b2+BA1,6 +119,2022-11-24,2022-11-04,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,5 +119,2023-01-09,2022-11-04,BA.5,241.417669985243,Previously infected (Omicron),BNT162b2+BA1,5 +119,2022-11-24,2022-11-04,BQ.1.1,2560,Previously infected (Omicron),BNT162b2+BA1,5 +119,2023-01-09,2022-11-04,BQ.1.1,158.92642420478,Previously infected (Omicron),BNT162b2+BA1,5 +119,2022-11-24,2022-11-04,XBB,607.042688091307,Previously infected (Omicron),BNT162b2+BA1,5 +119,2023-01-09,2022-11-04,XBB,407.042791106401,Previously infected (Omicron),BNT162b2+BA1,5 +120,2022-10-25,2022-10-08,BA.5,1381.25740541419,Infection naive,mRNA1273.214,4 +120,2022-12-08,2022-10-08,BA.5,496.21322844179,Infection naive,mRNA1273.214,4 +120,2022-10-25,2022-10-08,BQ.1.1,471.617906573823,Infection naive,mRNA1273.214,4 +120,2022-12-08,2022-10-08,BQ.1.1,175.472978183429,Infection naive,mRNA1273.214,4 +120,2022-10-25,2022-10-08,XBB,950.856843638419,Infection naive,mRNA1273.214,4 +120,2022-12-08,2022-10-08,XBB,705.198563751346,Infection naive,mRNA1273.214,4 +121,2022-11-24,2022-11-12,BA.5,953.360391743973,Previously infected (Omicron),BNT162b2+BA1,5 +121,2022-11-24,2022-11-12,BQ.1.1,975.335793284432,Previously infected (Omicron),BNT162b2+BA1,5 +121,2023-01-26,2022-11-12,BQ.1.1,873.356382634193,Previously infected (Omicron),BNT162b2+BA1,5 +121,2022-11-24,2022-11-12,XBB,1191.08771358982,Previously infected (Omicron),BNT162b2+BA1,5 +121,2023-01-26,2022-11-12,XBB,668.484588428308,Previously infected (Omicron),BNT162b2+BA1,5 +122,2022-09-27,2022-09-12,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +122,2022-12-15,2022-09-12,BA.5,2079.8930363432,Previously infected (Omicron),mRNA1273.214,5 +122,2022-09-27,2022-09-12,BQ.1.1,385.175571522737,Previously infected (Omicron),mRNA1273.214,5 +122,2022-12-15,2022-09-12,BQ.1.1,223.888936114786,Previously infected (Omicron),mRNA1273.214,5 +122,2022-09-27,2022-09-12,XBB,1378.83820162041,Previously infected (Omicron),mRNA1273.214,5 +122,2022-12-15,2022-09-12,XBB,639.821155970214,Previously infected (Omicron),mRNA1273.214,5 +123,2022-09-27,2022-09-18,BA.5,2560,Infection naive,BNT162b2,4 +123,2022-09-27,2022-09-18,BQ.1.1,547.876248046087,Infection naive,BNT162b2,4 +123,2022-09-27,2022-09-18,XBB,369.630585893332,Infection naive,BNT162b2,4 +124,2022-10-18,2022-09-12,BA.5,2560,Infection naive,BNT162b2,4 +124,2022-10-18,2022-09-12,BQ.1.1,2560,Infection naive,BNT162b2,4 +124,2022-10-18,2022-09-12,XBB,2560,Infection naive,BNT162b2,4 +125,2022-11-24,2022-11-10,BA.5,2513.40636449789,Previously infected (Pre-Omicron),BNT162b2+BA1,6 +125,2023-01-09,2022-11-10,BA.5,1648.79683143852,Previously infected (Pre-Omicron),BNT162b2+BA1,6 +125,2022-11-24,2022-11-10,BQ.1.1,774.536016998299,Previously infected (Pre-Omicron),BNT162b2+BA1,6 +125,2023-01-09,2022-11-10,BQ.1.1,293.274768097831,Previously infected (Pre-Omicron),BNT162b2+BA1,6 +125,2022-11-24,2022-11-10,XBB,644.888304377159,Previously infected (Pre-Omicron),BNT162b2+BA1,6 +125,2023-01-09,2022-11-10,XBB,469.144198143753,Previously infected (Pre-Omicron),BNT162b2+BA1,6 +126,2022-12-21,2022-11-23,BA.5,2560,Infection naive,mRNA1273,5 +126,2023-01-17,2022-11-23,BA.5,2560,Infection naive,mRNA1273,5 +126,2022-12-21,2022-11-23,BQ.1.1,572.420628432274,Infection naive,mRNA1273,5 +126,2023-01-17,2022-11-23,BQ.1.1,426.397685787757,Infection naive,mRNA1273,5 +126,2022-12-21,2022-11-23,XBB,235.358576257812,Infection naive,mRNA1273,5 +127,2022-12-08,2022-11-11,BA.5,2560,Previously infected (Omicron),BNT162b2,5 +127,2022-12-08,2022-11-11,BQ.1.1,159.764413114952,Previously infected (Omicron),BNT162b2,5 +127,2022-12-08,2022-11-11,XBB,413.878182069713,Previously infected (Omicron),BNT162b2,5 +128,2022-10-11,2022-09-24,BA.5,2560,Infection naive,mRNA1273.214,4 +128,2023-01-05,2022-09-24,BA.5,2560,Infection naive,mRNA1273.214,4 +128,2022-10-11,2022-09-24,BQ.1.1,2560,Infection naive,mRNA1273.214,4 +128,2023-01-05,2022-09-24,BQ.1.1,1072.17337236473,Infection naive,mRNA1273.214,4 +128,2022-10-11,2022-09-24,XBB,2560,Infection naive,mRNA1273.214,4 +128,2023-01-05,2022-09-24,XBB,2560,Infection naive,mRNA1273.214,4 +129,2022-12-08,2022-12-04,BA.5,2560,Infection naive,BNT162b2+BA1,8 +129,2022-12-08,2022-12-04,BQ.1.1,1331.33412724507,Infection naive,BNT162b2+BA1,8 +129,2022-12-08,2022-12-04,XBB,1003.95861902222,Infection naive,BNT162b2+BA1,8 +130,2022-12-08,2022-11-15,BA.5,2114.82027833324,Previously infected (Omicron),BNT162b2+BA1,5 +130,2022-12-08,2022-11-15,BQ.1.1,2463.24506303203,Previously infected (Omicron),BNT162b2+BA1,5 +130,2022-12-08,2022-11-15,XBB,560.013987512506,Previously infected (Omicron),BNT162b2+BA1,5 +131,2022-10-04,2022-09-25,BA.5,383.491246550738,Infection naive,BNT162b2,4 +131,2022-12-08,2022-09-25,BA.5,575.943483154026,Infection naive,BNT162b2,4 +131,2022-10-04,2022-09-25,BQ.1.1,948.359869912472,Infection naive,BNT162b2,4 +131,2022-12-08,2022-09-25,BQ.1.1,143.940158604447,Infection naive,BNT162b2,4 +131,2022-10-04,2022-09-25,XBB,354.712967615556,Infection naive,BNT162b2,4 +131,2022-12-08,2022-09-25,XBB,140.327552649885,Infection naive,BNT162b2,4 +132,2022-11-24,2022-10-28,BA.5,2159.77849004854,Previously infected (Omicron),BNT162b2+BA1,5 +132,2023-01-26,2022-10-28,BA.5,778.619998601871,Previously infected (Omicron),BNT162b2+BA1,5 +132,2022-11-24,2022-10-28,BQ.1.1,2560,Previously infected (Omicron),BNT162b2+BA1,5 +132,2023-01-26,2022-10-28,BQ.1.1,374.850761716459,Previously infected (Omicron),BNT162b2+BA1,5 +132,2022-11-24,2022-10-28,XBB,1750.05523665148,Previously infected (Omicron),BNT162b2+BA1,5 +132,2023-01-26,2022-10-28,XBB,1017.24520983253,Previously infected (Omicron),BNT162b2+BA1,5 +133,2022-10-18,2022-09-30,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +133,2022-10-18,2022-09-30,BQ.1.1,2560,Previously infected (Omicron),mRNA1273.214,5 +133,2022-10-18,2022-09-30,XBB,653.422886237674,Previously infected (Omicron),mRNA1273.214,5 +134,2022-10-28,2022-10-24,BA.5,637.581888671047,Infection naive,BNT162b2,5 +134,2023-01-26,2022-10-24,BA.5,868.775494130885,Infection naive,BNT162b2,5 +134,2022-10-28,2022-10-24,BQ.1.1,168.243678832062,Infection naive,BNT162b2,5 +134,2023-01-26,2022-10-24,BQ.1.1,299.509392027809,Infection naive,BNT162b2,5 +134,2022-10-28,2022-10-24,XBB,452.981126323444,Infection naive,BNT162b2,5 +135,2022-11-03,2022-10-17,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +135,2022-11-03,2022-10-17,BQ.1.1,2173.07043913927,Previously infected (Omicron),mRNA1273.214,5 +135,2022-11-03,2022-10-17,XBB,443.551816107547,Previously infected (Omicron),mRNA1273.214,5 +136,2023-01-12,2022-12-17,BA.5,2180.70253418402,Infection naive,BNT162b2,6 +136,2023-01-12,2022-12-17,BQ.1.1,856.676917061379,Infection naive,BNT162b2,6 +136,2023-01-12,2022-12-17,XBB,1220.68080258415,Infection naive,BNT162b2,6 +137,2023-01-26,2022-12-24,BA.5,1268.67675102726,Infection naive,BNT162b2,4 +137,2023-01-26,2022-12-24,BQ.1.1,2560,Infection naive,BNT162b2,4 +137,2023-01-26,2022-12-24,XBB,284.165324557694,Infection naive,BNT162b2,4 +138,2022-11-28,2022-11-08,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +138,2022-11-28,2022-11-08,BQ.1.1,2560,Previously infected (Omicron),mRNA1273.214,5 +138,2022-11-28,2022-11-08,XBB,2560,Previously infected (Omicron),mRNA1273.214,5 +139,2022-10-12,2022-10-12,BA.5,1282.09100750922,Previously infected (Pre-Omicron),BNT162b2+BA1,5 +139,2022-11-09,2022-10-12,BA.5,2560,Previously infected (Pre-Omicron),BNT162b2+BA1,5 +139,2023-01-05,2022-10-12,BA.5,2560,Previously infected (Pre-Omicron),BNT162b2+BA1,5 +139,2022-10-12,2022-10-12,BQ.1.1,751.136135887677,Previously infected (Pre-Omicron),BNT162b2+BA1,5 +139,2022-11-09,2022-10-12,BQ.1.1,298.984816192322,Previously infected (Pre-Omicron),BNT162b2+BA1,5 +139,2022-10-12,2022-10-12,XBB,162.304984501255,Previously infected (Pre-Omicron),BNT162b2+BA1,5 +139,2022-11-09,2022-10-12,XBB,511.223305386056,Previously infected (Pre-Omicron),BNT162b2+BA1,5 +139,2023-01-05,2022-10-12,XBB,747.851510785299,Previously infected (Pre-Omicron),BNT162b2+BA1,5 +140,2023-01-12,2022-12-10,BA.5,2560,Infection naive,BNT162b2,5 +140,2023-01-12,2022-12-10,BQ.1.1,1603.19426329011,Infection naive,BNT162b2,5 +140,2023-01-12,2022-12-10,XBB,368.014237214278,Infection naive,BNT162b2,5 +141,2022-11-17,2022-10-30,BA.5,5,Infection naive,BNT162b2,4 +141,2022-12-06,2022-10-30,BA.5,5,Infection naive,BNT162b2,4 +141,2022-11-17,2022-10-30,BQ.1.1,5,Infection naive,BNT162b2,4 +141,2022-12-06,2022-10-30,BQ.1.1,41.2807032377651,Infection naive,BNT162b2,4 +141,2022-11-17,2022-10-30,XBB,5,Infection naive,BNT162b2,4 +141,2022-12-06,2022-10-30,XBB,269.843756512819,Infection naive,BNT162b2,4 +142,2022-11-17,2022-10-23,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,7 +142,2023-01-26,2022-10-23,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,7 +142,2022-11-17,2022-10-23,BQ.1.1,765.089836799748,Previously infected (Omicron),BNT162b2+BA1,7 +142,2023-01-26,2022-10-23,BQ.1.1,1294.51197056188,Previously infected (Omicron),BNT162b2+BA1,7 +142,2022-11-17,2022-10-23,XBB,386.189715322451,Previously infected (Omicron),BNT162b2+BA1,7 +142,2023-01-26,2022-10-23,XBB,447.456604220034,Previously infected (Omicron),BNT162b2+BA1,7 +143,2023-01-12,2022-12-20,BA.5,558.543376849775,Infection naive,BNT162b2,5 +143,2023-01-12,2022-12-20,BQ.1.1,381.814286922808,Infection naive,BNT162b2,5 +143,2023-01-12,2022-12-20,XBB,332.14510852023,Infection naive,BNT162b2,5 +144,2022-11-01,2022-10-07,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +144,2023-01-12,2022-10-07,BA.5,1199.46890358673,Previously infected (Omicron),mRNA1273.214,5 +144,2022-11-01,2022-10-07,BQ.1.1,776.575323115736,Previously infected (Omicron),mRNA1273.214,5 +144,2023-01-12,2022-10-07,BQ.1.1,108.070570547871,Previously infected (Omicron),mRNA1273.214,5 +144,2022-11-01,2022-10-07,XBB,677.331448270097,Previously infected (Omicron),mRNA1273.214,5 +144,2023-01-12,2022-10-07,XBB,446.28157204593,Previously infected (Omicron),mRNA1273.214,5 +145,2022-10-10,2022-09-30,BA.5,2560,Infection naive,mRNA1273.214,4 +145,2022-10-10,2022-09-30,BQ.1.1,1796.68291628275,Infection naive,mRNA1273.214,4 +145,2022-10-10,2022-09-30,XBB,528.074161754099,Infection naive,mRNA1273.214,4 +146,2022-10-03,2022-09-15,BA.5,2560,Previously infected (Pre-Omicron),mRNA1273.214,5 +146,2022-10-03,2022-09-15,BQ.1.1,2560,Previously infected (Pre-Omicron),mRNA1273.214,5 +146,2022-10-03,2022-09-15,XBB,754.435187332595,Previously infected (Pre-Omicron),mRNA1273.214,5 +147,2022-12-22,2022-12-12,BA.5,644.323311950038,Infection naive,mRNA1273.214,7 +147,2022-12-22,2022-12-12,BQ.1.1,154.801951085118,Infection naive,mRNA1273.214,7 +147,2022-12-22,2022-12-12,XBB,350.694162529222,Infection naive,mRNA1273.214,7 +148,2022-10-13,2022-09-22,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +148,2022-10-13,2022-09-22,BQ.1.1,2560,Previously infected (Omicron),mRNA1273.214,5 +148,2022-10-13,2022-09-22,XBB,1382.468598552,Previously infected (Omicron),mRNA1273.214,5 +149,2022-12-08,2022-11-06,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,5 +149,2022-12-08,2022-11-06,BQ.1.1,846.228952921684,Previously infected (Omicron),BNT162b2+BA1,5 +149,2022-12-08,2022-11-06,XBB,810.654379217832,Previously infected (Omicron),BNT162b2+BA1,5 +150,2022-11-01,2022-10-14,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,6 +150,2023-01-12,2022-10-14,BA.5,902.934877760633,Previously infected (Omicron),BNT162b2+BA1,6 +150,2022-11-01,2022-10-14,BQ.1.1,2560,Previously infected (Omicron),BNT162b2+BA1,6 +150,2023-01-12,2022-10-14,BQ.1.1,265.852789145418,Previously infected (Omicron),BNT162b2+BA1,6 +150,2022-11-01,2022-10-14,XBB,2560,Previously infected (Omicron),BNT162b2+BA1,6 +150,2023-01-12,2022-10-14,XBB,848.457022169049,Previously infected (Omicron),BNT162b2+BA1,6 +151,2022-11-17,2022-10-22,BA.5,2560,Previously infected (Omicron),mRNA1273.214,7 +151,2023-01-26,2022-10-22,BA.5,2560,Previously infected (Omicron),mRNA1273.214,7 +151,2022-11-17,2022-10-22,BQ.1.1,1826.85426543381,Previously infected (Omicron),mRNA1273.214,7 +151,2023-01-26,2022-10-22,BQ.1.1,832.982871350873,Previously infected (Omicron),mRNA1273.214,7 +151,2022-11-17,2022-10-22,XBB,1258.70824433507,Previously infected (Omicron),mRNA1273.214,7 +151,2023-01-26,2022-10-22,XBB,1971.60985833353,Previously infected (Omicron),mRNA1273.214,7 +152,2022-10-06,2022-09-22,BA.5,2560,Previously infected (Pre-Omicron),mRNA1273.214,5 +152,2022-12-19,2022-09-22,BA.5,2560,Previously infected (Pre-Omicron),mRNA1273.214,5 +152,2022-10-06,2022-09-22,BQ.1.1,2560,Previously infected (Pre-Omicron),mRNA1273.214,5 +152,2022-12-19,2022-09-22,BQ.1.1,2013.52361069303,Previously infected (Pre-Omicron),mRNA1273.214,5 +152,2022-10-06,2022-09-22,XBB,799.365197432719,Previously infected (Pre-Omicron),mRNA1273.214,5 +152,2022-12-19,2022-09-22,XBB,684.493160473804,Previously infected (Pre-Omicron),mRNA1273.214,5 +153,2022-10-03,2022-09-12,BA.5,1586.42036899382,Previously infected (Omicron),mRNA1273.214,5 +153,2022-10-03,2022-09-12,BQ.1.1,390.957805899921,Previously infected (Omicron),mRNA1273.214,5 +153,2022-10-03,2022-09-12,XBB,501.020567500109,Previously infected (Omicron),mRNA1273.214,5 +154,2022-09-12,2022-09-12,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +154,2022-09-26,2022-09-12,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +154,2022-10-12,2022-09-12,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +154,2022-09-12,2022-09-12,BQ.1.1,2560,Previously infected (Omicron),mRNA1273.214,5 +154,2022-09-26,2022-09-12,BQ.1.1,857.42811752496,Previously infected (Omicron),mRNA1273.214,5 +154,2022-10-12,2022-09-12,BQ.1.1,2236.84274906954,Previously infected (Omicron),mRNA1273.214,5 +154,2022-09-12,2022-09-12,XBB,971.922280731385,Previously infected (Omicron),mRNA1273.214,5 +154,2022-09-26,2022-09-12,XBB,1650.24262380136,Previously infected (Omicron),mRNA1273.214,5 +154,2022-10-12,2022-09-12,XBB,906.900641715828,Previously infected (Omicron),mRNA1273.214,5 +155,2022-10-26,2022-10-25,BA.5,1421.79266546146,Infection naive,BNT162b2,4 +155,2022-10-26,2022-10-25,BQ.1.1,227.848279692018,Infection naive,BNT162b2,4 +155,2022-10-26,2022-10-25,XBB,323.241804865745,Infection naive,BNT162b2,4 +156,2022-10-17,2022-10-04,BA.5,2560,Previously infected (Omicron),mRNA1273.214,6 +156,2022-10-17,2022-10-04,BQ.1.1,2560,Previously infected (Omicron),mRNA1273.214,6 +156,2022-10-17,2022-10-04,XBB,1552.03630439465,Previously infected (Omicron),mRNA1273.214,6 +157,2023-01-05,2022-12-26,BA.5,1140.01598684976,Infection naive,BNT162b2,6 +157,2023-01-05,2022-12-26,BQ.1.1,220.577636829959,Infection naive,BNT162b2,6 +157,2023-01-05,2022-12-26,XBB,786.163308849002,Infection naive,BNT162b2,6 +158,2023-01-12,2022-12-13,BA.5,685.093376925567,Infection naive,BNT162b2,6 +158,2023-01-12,2022-12-13,BQ.1.1,150.784516669687,Infection naive,BNT162b2,6 +158,2023-01-12,2022-12-13,XBB,321.828308569038,Infection naive,BNT162b2,6 +159,2023-01-18,2022-12-21,BA.5,2560,Infection naive,mRNA1273.214,6 +159,2023-01-18,2022-12-21,BQ.1.1,715.784965588677,Infection naive,mRNA1273.214,6 +159,2023-01-18,2022-12-21,XBB,403.844491158156,Infection naive,mRNA1273.214,6 +160,2022-09-20,2022-09-20,BA.5,62.9278151621782,Previously infected (Pre-Omicron),mRNA1273,5 +160,2022-10-03,2022-09-20,BA.5,1374.01249795787,Previously infected (Pre-Omicron),mRNA1273,5 +160,2022-09-20,2022-09-20,BQ.1.1,46.7930015601292,Previously infected (Pre-Omicron),mRNA1273,5 +160,2022-10-03,2022-09-20,BQ.1.1,430.906169068342,Previously infected (Pre-Omicron),mRNA1273,5 +160,2022-09-20,2022-09-20,XBB,5,Previously infected (Pre-Omicron),mRNA1273,5 +160,2022-10-03,2022-09-20,XBB,688.705744441976,Previously infected (Pre-Omicron),mRNA1273,5 +161,2022-10-11,2022-10-11,BA.5,5,Infection naive,BNT162b2+BA1,4 +161,2022-10-27,2022-10-11,BA.5,866.494068070684,Infection naive,BNT162b2+BA1,4 +161,2022-10-11,2022-10-11,BQ.1.1,5,Infection naive,BNT162b2+BA1,4 +161,2022-10-27,2022-10-11,BQ.1.1,155.073554719911,Infection naive,BNT162b2+BA1,4 +161,2022-10-11,2022-10-11,XBB,85.2963225104831,Infection naive,BNT162b2+BA1,4 +161,2022-10-27,2022-10-11,XBB,128.890026491534,Infection naive,BNT162b2+BA1,4 +162,2022-10-25,2022-10-10,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,5 +162,2023-01-09,2022-10-10,BA.5,1272.01709957483,Previously infected (Omicron),BNT162b2+BA1,5 +162,2022-10-25,2022-10-10,BQ.1.1,539.300302437901,Previously infected (Omicron),BNT162b2+BA1,5 +162,2023-01-09,2022-10-10,BQ.1.1,436.991720566659,Previously infected (Omicron),BNT162b2+BA1,5 +162,2022-10-25,2022-10-10,XBB,888.801174343073,Previously infected (Omicron),BNT162b2+BA1,5 +162,2023-01-09,2022-10-10,XBB,401.022661096968,Previously infected (Omicron),BNT162b2+BA1,5 +163,2022-12-08,2022-11-19,BA.5,2376.29701486302,Infection naive,mRNA1273.214,5 +163,2022-12-08,2022-11-19,BQ.1.1,422.306360237007,Infection naive,mRNA1273.214,5 +163,2022-12-08,2022-11-19,XBB,322.675662887011,Infection naive,mRNA1273.214,5 +164,2022-10-31,2022-10-14,BA.5,1242.26782148482,Infection naive,mRNA1273.214,4 +164,2022-10-31,2022-10-14,BQ.1.1,1027.1003332932,Infection naive,mRNA1273.214,4 +164,2022-10-31,2022-10-14,XBB,560.505051014568,Infection naive,mRNA1273.214,4 +165,2022-11-23,2022-11-04,BA.5,1615.89097264624,Infection naive,BNT162b2+BA1,4 +165,2023-01-19,2022-11-04,BA.5,1510.43325155316,Infection naive,BNT162b2+BA1,4 +165,2022-11-23,2022-11-04,BQ.1.1,1898.68434824599,Infection naive,BNT162b2+BA1,4 +165,2023-01-19,2022-11-04,BQ.1.1,483.335457280892,Infection naive,BNT162b2+BA1,4 +165,2022-11-23,2022-11-04,XBB,331.854113211825,Infection naive,BNT162b2+BA1,4 +165,2023-01-19,2022-11-04,XBB,421.936373847362,Infection naive,BNT162b2+BA1,4 +166,2022-10-18,2022-10-02,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +166,2023-01-26,2022-10-02,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +166,2022-10-18,2022-10-02,BQ.1.1,996.070109830024,Previously infected (Omicron),mRNA1273.214,5 +166,2023-01-26,2022-10-02,BQ.1.1,251.129988579974,Previously infected (Omicron),mRNA1273.214,5 +166,2022-10-18,2022-10-02,XBB,1859.16110394001,Previously infected (Omicron),mRNA1273.214,5 +166,2023-01-26,2022-10-02,XBB,871.826742274675,Previously infected (Omicron),mRNA1273.214,5 +167,2022-12-08,2022-12-08,BA.5,40.0335520056376,Infection naive,BNT162b2+BA1,4 +167,2022-12-08,2022-12-08,BQ.1.1,5,Infection naive,BNT162b2+BA1,4 +167,2022-12-08,2022-12-08,XBB,140.820400557588,Infection naive,BNT162b2+BA1,4 +168,2022-09-29,2022-09-15,BA.5,2560,Previously infected (Pre-Omicron),mRNA1273.214,5 +168,2022-11-14,2022-09-15,BA.5,846.228952921684,Previously infected (Pre-Omicron),mRNA1273.214,5 +168,2022-09-29,2022-09-15,BQ.1.1,2560,Previously infected (Pre-Omicron),mRNA1273.214,5 +168,2022-11-14,2022-09-15,BQ.1.1,540.246517400693,Previously infected (Pre-Omicron),mRNA1273.214,5 +168,2022-09-29,2022-09-15,XBB,2560,Previously infected (Pre-Omicron),mRNA1273.214,5 +168,2022-11-14,2022-09-15,XBB,491.452016249953,Previously infected (Pre-Omicron),mRNA1273.214,5 +169,2022-10-17,2022-10-03,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +169,2022-10-17,2022-10-03,BQ.1.1,1713.62587400833,Previously infected (Omicron),mRNA1273.214,5 +169,2022-10-17,2022-10-03,XBB,627.051926790965,Previously infected (Omicron),mRNA1273.214,5 +170,2023-01-16,2022-12-31,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,6 +170,2023-01-16,2022-12-31,BQ.1.1,634.237673638323,Previously infected (Omicron),BNT162b2+BA1,6 +170,2023-01-16,2022-12-31,XBB,667.898923085107,Previously infected (Omicron),BNT162b2+BA1,6 +171,2022-11-03,2022-10-25,BA.5,77.3208871337152,Infection naive,BNT162b2+BA1,5 +171,2022-11-03,2022-10-25,BQ.1.1,52.6707463773258,Infection naive,BNT162b2+BA1,5 +171,2022-11-03,2022-10-25,XBB,149.20688905334,Infection naive,BNT162b2+BA1,5 +172,2023-01-05,2022-12-17,BA.5,2553.37451614877,Infection naive,BNT162b2,5 +172,2023-01-05,2022-12-17,BQ.1.1,2560,Infection naive,BNT162b2,5 +172,2023-01-05,2022-12-17,XBB,454.173798015556,Infection naive,BNT162b2,5 +173,2023-01-05,2022-12-24,BA.5,2560,Infection naive,BNT162b2,5 +173,2023-01-05,2022-12-24,BQ.1.1,2059.93626873857,Infection naive,BNT162b2,5 +173,2023-01-05,2022-12-24,XBB,657.44425406711,Infection naive,BNT162b2,5 +174,2022-10-27,2022-09-30,BA.5,2560,Infection naive,BNT162b2,4 +174,2022-10-27,2022-09-30,BQ.1.1,1190.04419096171,Infection naive,BNT162b2,4 +174,2022-10-27,2022-09-30,XBB,721.453719449431,Infection naive,BNT162b2,4 +175,2022-11-21,2022-10-16,BA.5,1170.39005681973,Previously infected (Pre-Omicron),BNT162b2+BA1,6 +175,2022-11-21,2022-10-16,BQ.1.1,182.052983999958,Previously infected (Pre-Omicron),BNT162b2+BA1,6 +175,2022-11-21,2022-10-16,XBB,683.29430467463,Previously infected (Pre-Omicron),BNT162b2+BA1,6 +176,2022-11-24,2022-11-03,BA.5,866.494068070684,Infection naive,BNT162b2,4 +176,2022-11-24,2022-11-03,BQ.1.1,1890.38163722759,Infection naive,BNT162b2,4 +176,2022-11-24,2022-11-03,XBB,347.024921098357,Infection naive,BNT162b2,4 +177,2022-10-11,2022-09-09,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +177,2022-10-11,2022-09-09,BQ.1.1,221.740700898255,Previously infected (Omicron),mRNA1273.214,5 +177,2022-10-11,2022-09-09,XBB,995.197443873579,Previously infected (Omicron),mRNA1273.214,5 +178,2022-11-03,2022-10-14,BA.5,193.912157451256,Infection naive,BNT162b2+BA1,4 +178,2022-11-03,2022-10-14,BQ.1.1,96.4322180406207,Infection naive,BNT162b2+BA1,4 +178,2022-11-03,2022-10-14,XBB,175.012181777462,Infection naive,BNT162b2+BA1,4 +179,2022-10-04,2022-09-09,BA.5,269.371138565631,Infection naive,mRNA1273.214,4 +179,2022-12-06,2022-09-09,BA.5,325.231135546677,Infection naive,mRNA1273.214,4 +179,2022-10-04,2022-09-09,BQ.1.1,146.100980304665,Infection naive,mRNA1273.214,4 +179,2022-12-06,2022-09-09,BQ.1.1,258.953353207664,Infection naive,mRNA1273.214,4 +179,2022-10-04,2022-09-09,XBB,291.992313933846,Infection naive,mRNA1273.214,4 +179,2022-12-06,2022-09-09,XBB,453.775892277874,Infection naive,mRNA1273.214,4 +180,2022-09-27,2022-09-25,BA.5,5,Infection naive,mRNA1273.214,7 +180,2022-10-18,2022-09-25,BA.5,2560,Infection naive,mRNA1273.214,7 +180,2023-01-26,2022-09-25,BA.5,2056.3283925985,Infection naive,mRNA1273.214,7 +180,2022-09-27,2022-09-25,BQ.1.1,5,Infection naive,mRNA1273.214,7 +180,2022-10-18,2022-09-25,BQ.1.1,420.828358433089,Infection naive,mRNA1273.214,7 +180,2023-01-26,2022-09-25,BQ.1.1,157.125829413333,Infection naive,mRNA1273.214,7 +180,2022-09-27,2022-09-25,XBB,42.2692751858847,Infection naive,mRNA1273.214,7 +180,2022-10-18,2022-09-25,XBB,333.311643663877,Infection naive,mRNA1273.214,7 +180,2023-01-26,2022-09-25,XBB,293.531934057791,Infection naive,mRNA1273.214,7 +181,2022-11-17,2022-10-27,BA.5,1041.60574635264,Previously infected (Omicron),BNT162b2+BA1,5 +181,2022-11-17,2022-10-27,BQ.1.1,405.618209247891,Previously infected (Omicron),BNT162b2+BA1,5 +181,2022-11-17,2022-10-27,XBB,769.798437800932,Previously infected (Omicron),BNT162b2+BA1,5 +182,2022-09-29,2022-09-14,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +182,2023-02-01,2022-09-14,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +182,2022-09-29,2022-09-14,BQ.1.1,2560,Previously infected (Omicron),mRNA1273.214,5 +182,2023-02-01,2022-09-14,BQ.1.1,2560,Previously infected (Omicron),mRNA1273.214,5 +182,2022-09-29,2022-09-14,XBB,2560,Previously infected (Omicron),mRNA1273.214,5 +182,2023-02-01,2022-09-14,XBB,2560,Previously infected (Omicron),mRNA1273.214,5 +183,2022-11-07,2022-10-18,BA.5,2176.88314192367,Previously infected (Omicron),BNT162b2+BA1,5 +183,2022-11-07,2022-10-18,BQ.1.1,383.155266430306,Previously infected (Omicron),BNT162b2+BA1,5 +183,2022-11-07,2022-10-18,XBB,612.923748605741,Previously infected (Omicron),BNT162b2+BA1,5 +184,2022-10-25,2022-10-08,BA.5,1709.12584983316,Infection naive,BNT162b2,4 +184,2023-01-12,2022-10-08,BA.5,1798.25838658286,Infection naive,BNT162b2,4 +184,2022-10-25,2022-10-08,BQ.1.1,2560,Infection naive,BNT162b2,4 +184,2023-01-12,2022-10-08,BQ.1.1,999.568432577663,Infection naive,BNT162b2,4 +184,2022-10-25,2022-10-08,XBB,153.855079039045,Infection naive,BNT162b2,4 +185,2022-12-01,2022-10-28,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,5 +185,2022-12-01,2022-10-28,BQ.1.1,76.8479409848372,Previously infected (Omicron),BNT162b2+BA1,5 +185,2022-12-01,2022-10-28,XBB,529.928824226419,Previously infected (Omicron),BNT162b2+BA1,5 +186,2023-01-09,2022-12-28,BA.5,445.10962553555,Infection naive,BNT162b2,6 +186,2023-01-09,2022-12-28,BQ.1.1,77.1178405605832,Infection naive,BNT162b2,6 +186,2023-01-09,2022-12-28,XBB,432.419565403068,Infection naive,BNT162b2,6 +187,2022-10-03,2022-10-01,BA.5,2560,Infection naive,BNT162b2,4 +187,2022-12-05,2022-10-01,BA.5,2560,Infection naive,BNT162b2,4 +187,2022-10-03,2022-10-01,BQ.1.1,1757.74162262244,Infection naive,BNT162b2,4 +187,2022-12-05,2022-10-01,BQ.1.1,2018.82509561663,Infection naive,BNT162b2,4 +187,2022-10-03,2022-10-01,XBB,1880.46629489882,Infection naive,BNT162b2,4 +187,2022-12-05,2022-10-01,XBB,873.356382634193,Infection naive,BNT162b2,4 +188,2022-09-27,2022-09-27,BA.5,2560,Previously infected (Pre-Omicron),mRNA1273.214,5 +188,2022-10-12,2022-09-27,BA.5,2560,Previously infected (Pre-Omicron),mRNA1273.214,5 +188,2022-09-27,2022-09-27,BQ.1.1,604.91813996101,Previously infected (Pre-Omicron),mRNA1273.214,5 +188,2022-10-12,2022-09-27,BQ.1.1,2560,Previously infected (Pre-Omicron),mRNA1273.214,5 +188,2022-09-27,2022-09-27,XBB,172.423765742206,Previously infected (Pre-Omicron),mRNA1273.214,5 +188,2022-10-12,2022-09-27,XBB,750.478058782485,Previously infected (Pre-Omicron),mRNA1273.214,5 +189,2022-09-13,2022-09-13,BA.5,189.709306631459,Infection naive,mRNA1273.214,5 +189,2022-09-27,2022-09-13,BA.5,641.505766070714,Infection naive,mRNA1273.214,5 +189,2022-09-13,2022-09-13,BQ.1.1,189.377040196164,Infection naive,mRNA1273.214,5 +189,2022-09-27,2022-09-13,BQ.1.1,125.435069563216,Infection naive,mRNA1273.214,5 +189,2022-09-13,2022-09-13,XBB,41.353131194697,Infection naive,mRNA1273.214,5 +189,2022-09-27,2022-09-13,XBB,161.736944134201,Infection naive,mRNA1273.214,5 +190,2022-11-27,2022-10-15,BA.5,456.968924936853,Infection naive,BNT162b2,6 +190,2022-12-15,2022-10-15,BA.5,205.280493178553,Infection naive,BNT162b2,6 +190,2022-11-27,2022-10-15,BQ.1.1,139.469215684706,Infection naive,BNT162b2,6 +190,2022-11-27,2022-10-15,XBB,297.416594863215,Infection naive,BNT162b2,6 +191,2022-10-31,2022-10-14,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +191,2022-10-31,2022-10-14,BQ.1.1,345.50742418597,Previously infected (Omicron),mRNA1273.214,5 +191,2022-10-31,2022-10-14,XBB,404.907789085225,Previously infected (Omicron),mRNA1273.214,5 +192,2022-09-12,2022-09-12,BA.5,1160.17649613532,Infection naive,BNT162b2,5 +192,2022-09-28,2022-09-12,BA.5,2560,Infection naive,BNT162b2,5 +192,2022-10-20,2022-09-12,BA.5,2560,Infection naive,BNT162b2,5 +192,2022-12-01,2022-09-12,BA.5,2560,Infection naive,BNT162b2,5 +192,2022-09-12,2022-09-12,BQ.1.1,142.309354279994,Infection naive,BNT162b2,5 +192,2022-09-28,2022-09-12,BQ.1.1,271.028932398112,Infection naive,BNT162b2,5 +192,2022-10-20,2022-09-12,BQ.1.1,389.931140975734,Infection naive,BNT162b2,5 +192,2022-09-12,2022-09-12,XBB,362.253684365631,Infection naive,BNT162b2,5 +192,2022-09-28,2022-09-12,XBB,947.529003325105,Infection naive,BNT162b2,5 +192,2022-10-20,2022-09-12,XBB,511.671585450977,Infection naive,BNT162b2,5 +192,2022-12-01,2022-09-12,XBB,617.777879431748,Infection naive,BNT162b2,5 +193,2022-10-11,2022-09-24,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +193,2023-01-12,2022-09-24,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +193,2022-10-11,2022-09-24,BQ.1.1,2560,Previously infected (Omicron),mRNA1273.214,5 +193,2022-10-11,2022-09-24,XBB,1114.33015716315,Previously infected (Omicron),mRNA1273.214,5 +193,2023-01-12,2022-09-24,XBB,615.6157599228,Previously infected (Omicron),mRNA1273.214,5 +194,2023-01-10,2022-12-22,BA.5,1823.65462085467,Infection naive,BNT162b2,4 +194,2023-01-10,2022-12-22,BQ.1.1,314.853003934808,Infection naive,BNT162b2,4 +194,2023-01-10,2022-12-22,XBB,247.84989311606,Infection naive,BNT162b2,4 +195,2022-12-01,2022-11-29,BA.5,533.657713467748,Previously infected (Omicron),BNT162b2+BA1,5 +195,2022-12-01,2022-11-29,BQ.1.1,562.473614824264,Previously infected (Omicron),BNT162b2+BA1,5 +195,2022-12-01,2022-11-29,XBB,343.695184625199,Previously infected (Omicron),BNT162b2+BA1,5 +196,2022-09-28,2022-09-12,BA.5,2560,Previously infected (Pre-Omicron),mRNA1273.214,5 +196,2022-09-28,2022-09-12,BQ.1.1,2560,Previously infected (Pre-Omicron),mRNA1273.214,5 +196,2022-09-28,2022-09-12,XBB,846.228952921684,Previously infected (Pre-Omicron),mRNA1273.214,5 +197,2022-10-11,2022-09-24,BA.5,2351.43430430037,Previously infected (Omicron),mRNA1273.214,5 +197,2023-01-26,2022-09-24,BA.5,497.083846128015,Previously infected (Omicron),mRNA1273.214,5 +197,2022-10-11,2022-09-24,BQ.1.1,1710.62454333725,Previously infected (Omicron),mRNA1273.214,5 +197,2023-01-26,2022-09-24,BQ.1.1,170.02259048745,Previously infected (Omicron),mRNA1273.214,5 +197,2022-10-11,2022-09-24,XBB,447.064583476076,Previously infected (Omicron),mRNA1273.214,5 +197,2023-01-26,2022-09-24,XBB,200.303857279495,Previously infected (Omicron),mRNA1273.214,5 +198,2022-10-06,2022-09-21,BA.5,85.8212626289535,Previously infected (Omicron),mRNA1273.214,6 +198,2022-10-06,2022-09-21,BQ.1.1,54.4545787806903,Previously infected (Omicron),mRNA1273.214,6 +198,2022-10-06,2022-09-21,XBB,402.783985477898,Previously infected (Omicron),mRNA1273.214,6 +199,2022-10-17,2022-09-30,BA.5,2560,Infection naive,mRNA1273.214,6 +199,2022-12-15,2022-09-30,BA.5,2560,Infection naive,mRNA1273.214,6 +199,2022-10-17,2022-09-30,BQ.1.1,712.654926766754,Infection naive,mRNA1273.214,6 +199,2022-10-17,2022-09-30,XBB,188.218683830027,Infection naive,mRNA1273.214,6 +200,2023-01-05,2022-12-12,BA.5,931.063691940587,Infection naive,BNT162b2,5 +200,2023-01-05,2022-12-12,BQ.1.1,127.429736224945,Infection naive,BNT162b2,5 +200,2023-01-05,2022-12-12,XBB,478.278417060802,Infection naive,BNT162b2,5 +201,2022-10-10,2022-10-10,BA.5,1902.01563423231,Previously infected (Omicron),mRNA1273.214,5 +201,2022-11-01,2022-10-10,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +201,2022-10-10,2022-10-10,BQ.1.1,212.41895542971,Previously infected (Omicron),mRNA1273.214,5 +201,2022-11-01,2022-10-10,BQ.1.1,2560,Previously infected (Omicron),mRNA1273.214,5 +201,2022-10-10,2022-10-10,XBB,195.790788319935,Previously infected (Omicron),mRNA1273.214,5 +201,2022-11-01,2022-10-10,XBB,990.845568960641,Previously infected (Omicron),mRNA1273.214,5 +202,2023-01-05,2022-12-17,BA.5,2560,Infection naive,mRNA1273.214,6 +202,2023-01-05,2022-12-17,BQ.1.1,791.695213833735,Infection naive,mRNA1273.214,6 +202,2023-01-05,2022-12-17,XBB,948.359869912472,Infection naive,mRNA1273.214,6 +203,2022-12-08,2022-10-20,BA.5,1607.41537605546,Previously infected (Pre-Omicron),mRNA1273.214,5 +203,2022-12-08,2022-10-20,BQ.1.1,161.878767574277,Previously infected (Pre-Omicron),mRNA1273.214,5 +203,2022-12-08,2022-10-20,XBB,650.565549049298,Previously infected (Pre-Omicron),mRNA1273.214,5 +204,2022-10-12,2022-09-21,BA.5,2560,Previously infected (Omicron),mRNA1273.214,7 +204,2023-01-23,2022-09-21,BA.5,2560,Previously infected (Omicron),mRNA1273.214,7 +204,2022-10-12,2022-09-21,BQ.1.1,2560,Previously infected (Omicron),mRNA1273.214,7 +204,2023-01-23,2022-09-21,BQ.1.1,653.422886237674,Previously infected (Omicron),mRNA1273.214,7 +204,2022-10-12,2022-09-21,XBB,2359.6928355374,Previously infected (Omicron),mRNA1273.214,7 +204,2023-01-23,2022-09-21,XBB,950.023789429977,Previously infected (Omicron),mRNA1273.214,7 +205,2022-10-27,2022-10-03,BA.5,551.248049011141,Infection naive,BNT162b2,4 +205,2022-10-27,2022-10-03,BQ.1.1,266.786497376005,Infection naive,BNT162b2,4 +205,2022-10-27,2022-10-03,XBB,170.919087379141,Infection naive,BNT162b2,4 +205,2022-12-15,2022-10-03,XBB,341.293642880555,Infection naive,BNT162b2,4 +206,2023-01-10,2022-12-16,BA.5,2560,Infection naive,mRNA1273.214,8 +206,2023-01-10,2022-12-16,BQ.1.1,2560,Infection naive,mRNA1273.214,8 +206,2023-01-10,2022-12-16,XBB,2560,Infection naive,mRNA1273.214,8 +207,2022-10-25,2022-10-17,BA.5,2560,Infection naive,mRNA1273.214,6 +207,2022-10-25,2022-10-17,BQ.1.1,979.619547991975,Infection naive,mRNA1273.214,6 +207,2022-10-25,2022-10-17,XBB,365.122600409615,Infection naive,mRNA1273.214,6 +208,2022-12-08,2022-11-19,BA.5,2560,Infection naive,BNT162b2,8 +208,2022-12-08,2022-11-19,BQ.1.1,2560,Infection naive,BNT162b2,8 +208,2022-12-08,2022-11-19,XBB,594.406413669098,Infection naive,BNT162b2,8 +209,2022-10-03,2022-10-03,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,5 +209,2022-10-17,2022-10-03,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,5 +209,2022-10-03,2022-10-03,BQ.1.1,1154.09119203881,Previously infected (Omicron),BNT162b2+BA1,5 +209,2022-10-17,2022-10-03,BQ.1.1,1368.00411182632,Previously infected (Omicron),BNT162b2+BA1,5 +209,2022-10-03,2022-10-03,XBB,270.791481519725,Previously infected (Omicron),BNT162b2+BA1,5 +209,2022-10-17,2022-10-03,XBB,388.566447037804,Previously infected (Omicron),BNT162b2+BA1,5 +210,2022-10-26,2022-10-03,BA.5,2560,Infection naive,BNT162b2,6 +210,2022-10-26,2022-10-03,BQ.1.1,1356.06604645124,Infection naive,BNT162b2,6 +210,2022-10-26,2022-10-03,XBB,119.741364738671,Infection naive,BNT162b2,6 +211,2023-01-05,2022-12-10,BA.5,619.404450928868,Infection naive,BNT162b2,7 +211,2023-01-05,2022-12-10,BQ.1.1,90.6935144891519,Infection naive,BNT162b2,7 +211,2023-01-05,2022-12-10,XBB,376.827278729662,Infection naive,BNT162b2,7 +212,2023-01-23,2023-01-03,BA.5,522.09121971089,Infection naive,mRNA1273.214,6 +212,2023-01-23,2023-01-03,BQ.1.1,213.351916884174,Infection naive,mRNA1273.214,6 +212,2023-01-23,2023-01-03,XBB,447.848968718045,Infection naive,mRNA1273.214,6 +213,2023-01-10,2023-01-06,BA.5,2560,Infection naive,BNT162b2+BA1,7 +213,2023-01-10,2023-01-06,BQ.1.1,417.155945162376,Infection naive,BNT162b2+BA1,7 +213,2023-01-10,2023-01-06,XBB,1200.52069053053,Infection naive,BNT162b2+BA1,7 +214,2023-01-12,2022-12-22,BA.5,1338.35399974235,Infection naive,BNT162b2+BA1,6 +214,2023-01-12,2022-12-22,BQ.1.1,2560,Infection naive,BNT162b2+BA1,6 +214,2023-01-12,2022-12-22,XBB,813.501498740145,Infection naive,BNT162b2+BA1,6 +215,2022-11-29,2022-11-08,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,6 +215,2022-11-29,2022-11-08,BQ.1.1,2478.40463987136,Previously infected (Omicron),BNT162b2+BA1,6 +215,2022-11-29,2022-11-08,XBB,899.774756332674,Previously infected (Omicron),BNT162b2+BA1,6 +216,2022-12-15,2022-12-02,BA.5,425.277954857344,Infection naive,BNT162b2,5 +216,2022-12-15,2022-12-02,BQ.1.1,241.841242919635,Infection naive,BNT162b2,5 +216,2022-12-15,2022-12-02,XBB,485.883993530426,Infection naive,BNT162b2,5 +217,2022-11-01,2022-10-05,BA.5,2555.61351206663,Infection naive,mRNA1273,5 +217,2023-01-09,2022-10-05,BA.5,1750.05523665148,Infection naive,mRNA1273,5 +217,2022-11-01,2022-10-05,BQ.1.1,640.943737115739,Infection naive,mRNA1273,5 +217,2023-01-09,2022-10-05,BQ.1.1,319.299573298128,Infection naive,mRNA1273,5 +217,2022-11-01,2022-10-05,XBB,688.102363162634,Infection naive,mRNA1273,5 +217,2023-01-09,2022-10-05,XBB,1027.1003332932,Infection naive,mRNA1273,5 +218,2023-01-05,2022-12-04,BA.5,2560,Infection naive,mRNA1273.214,7 +218,2023-01-05,2022-12-04,BQ.1.1,2560,Infection naive,mRNA1273.214,7 +218,2023-01-05,2022-12-04,XBB,2560,Infection naive,mRNA1273.214,7 +219,2022-11-24,2022-11-10,BA.5,674.369561907129,Infection naive,BNT162b2+BA1,6 +219,2022-11-24,2022-11-10,BQ.1.1,162.589752383224,Infection naive,BNT162b2+BA1,6 +219,2022-11-24,2022-11-10,XBB,378.150743240943,Infection naive,BNT162b2+BA1,6 +220,2023-01-26,2022-12-28,BA.5,2560,Infection naive,BNT162b2,5 +220,2023-01-26,2022-12-28,BQ.1.1,1343.05446630136,Infection naive,BNT162b2,5 +220,2023-01-26,2022-12-28,XBB,359.092430588002,Infection naive,BNT162b2,5 +221,2022-10-18,2022-09-17,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +221,2023-01-26,2022-09-17,BA.5,610.243509120078,Previously infected (Omicron),mRNA1273.214,5 +221,2022-10-18,2022-09-17,BQ.1.1,643.19481164692,Previously infected (Omicron),mRNA1273.214,5 +221,2023-01-26,2022-09-17,BQ.1.1,171.218968905583,Previously infected (Omicron),mRNA1273.214,5 +221,2022-10-18,2022-09-17,XBB,213.726247799964,Previously infected (Omicron),mRNA1273.214,5 +221,2023-01-26,2022-09-17,XBB,300.297981999079,Previously infected (Omicron),mRNA1273.214,5 +222,2023-01-12,2022-11-23,BA.5,2560,Infection naive,BNT162b2+BA1,4 +222,2023-01-12,2022-11-23,BQ.1.1,2560,Infection naive,BNT162b2+BA1,4 +222,2023-01-12,2022-11-23,XBB,1015.46355533338,Infection naive,BNT162b2+BA1,4 +223,2022-12-01,2022-12-01,BA.5,1147.03200007966,Infection naive,BNT162b2+BA1,4 +223,2022-12-01,2022-12-01,BQ.1.1,234.534860507757,Infection naive,BNT162b2+BA1,4 +223,2022-12-01,2022-12-01,XBB,5,Infection naive,BNT162b2+BA1,4 +224,2022-10-18,2022-10-01,BA.5,2560,Previously infected (Omicron),mRNA1273.214,6 +224,2023-01-19,2022-10-01,BA.5,2560,Previously infected (Omicron),mRNA1273.214,6 +224,2022-10-18,2022-10-01,BQ.1.1,2560,Previously infected (Omicron),mRNA1273.214,6 +224,2023-01-19,2022-10-01,BQ.1.1,788.233228917089,Previously infected (Omicron),mRNA1273.214,6 +224,2022-10-18,2022-10-01,XBB,743.277151836897,Previously infected (Omicron),mRNA1273.214,6 +224,2023-01-19,2022-10-01,XBB,544.525071266037,Previously infected (Omicron),mRNA1273.214,6 +225,2022-10-12,2022-09-29,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +225,2022-10-12,2022-09-29,BQ.1.1,1348.95327154579,Previously infected (Omicron),mRNA1273.214,5 +225,2022-10-12,2022-09-29,XBB,817.790937942998,Previously infected (Omicron),mRNA1273.214,5 +226,2022-11-17,2022-10-20,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,5 +226,2023-01-26,2022-10-20,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,5 +226,2022-11-17,2022-10-20,BQ.1.1,265.852789145418,Previously infected (Omicron),BNT162b2+BA1,5 +226,2023-01-26,2022-10-20,BQ.1.1,497.955991333283,Previously infected (Omicron),BNT162b2+BA1,5 +226,2022-11-17,2022-10-20,XBB,690.519064683942,Previously infected (Omicron),BNT162b2+BA1,5 +226,2023-01-26,2022-10-20,XBB,830.067570274662,Previously infected (Omicron),BNT162b2+BA1,5 +227,2023-01-17,2022-12-22,BA.5,2560,Infection naive,mRNA1273.214,9 +227,2023-01-17,2022-12-22,BQ.1.1,2090.85991807806,Infection naive,mRNA1273.214,9 +227,2023-01-17,2022-12-22,XBB,687.499510511047,Infection naive,mRNA1273.214,9 +228,2023-01-25,2023-01-03,BA.5,973.627541048402,Infection naive,mRNA1273.214,6 +228,2023-01-25,2023-01-03,BQ.1.1,358.777826489057,Infection naive,mRNA1273.214,6 +228,2023-01-25,2023-01-03,XBB,337.426875231315,Infection naive,mRNA1273.214,6 +229,2022-10-27,2022-10-12,BA.5,1590.59731711801,Infection naive,BNT162b2,5 +229,2022-10-27,2022-10-12,BQ.1.1,898.986455599049,Infection naive,BNT162b2,5 +229,2022-10-27,2022-10-12,XBB,540.246517400693,Infection naive,BNT162b2,5 +230,2023-01-05,2022-12-15,BA.5,2446.03334139381,Infection naive,mRNA1273.214,6 +230,2023-01-05,2022-12-15,BQ.1.1,703.34669477964,Infection naive,mRNA1273.214,6 +230,2023-01-05,2022-12-15,XBB,465.050150429012,Infection naive,mRNA1273.214,6 +231,2022-10-13,2022-09-23,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +231,2022-10-13,2022-09-23,BQ.1.1,2560,Previously infected (Omicron),mRNA1273.214,5 +231,2022-10-13,2022-09-23,XBB,947.529003325105,Previously infected (Omicron),mRNA1273.214,5 +232,2023-01-11,2022-12-06,BA.5,2560,Infection naive,mRNA1273.214,6 +232,2023-01-11,2022-12-06,BQ.1.1,747.851510785299,Infection naive,mRNA1273.214,6 +232,2023-01-11,2022-12-06,XBB,1368.00411182632,Infection naive,mRNA1273.214,6 +233,2022-09-29,2022-09-14,BA.5,2560,Infection naive,mRNA1273.214,4 +233,2022-09-29,2022-09-14,BQ.1.1,194.082194602566,Infection naive,mRNA1273.214,4 +233,2022-09-29,2022-09-14,XBB,374.194229211154,Infection naive,mRNA1273.214,4 +234,2022-09-20,2022-09-20,BA.5,134.192885618766,Previously infected (Pre-Omicron),mRNA1273,5 +234,2022-10-03,2022-09-20,BA.5,834.444359232601,Previously infected (Pre-Omicron),mRNA1273,5 +234,2022-09-20,2022-09-20,BQ.1.1,56.8940966465029,Previously infected (Pre-Omicron),mRNA1273,5 +234,2022-10-03,2022-09-20,BQ.1.1,276.305854954489,Previously infected (Pre-Omicron),mRNA1273,5 +234,2022-09-20,2022-09-20,XBB,131.745477091835,Previously infected (Pre-Omicron),mRNA1273,5 +234,2022-10-03,2022-09-20,XBB,376.497136971203,Previously infected (Pre-Omicron),mRNA1273,5 +235,2023-01-12,2022-11-29,BA.5,1603.19426329011,Previously infected (Omicron),BNT162b2+BA1,5 +235,2023-01-12,2022-11-29,BQ.1.1,551.731425861521,Previously infected (Omicron),BNT162b2+BA1,5 +235,2023-01-12,2022-11-29,XBB,849.201014794138,Previously infected (Omicron),BNT162b2+BA1,5 +236,2022-09-29,2022-09-15,BA.5,2560,Previously infected (Pre-Omicron),mRNA1273.214,5 +236,2022-11-25,2022-09-15,BA.5,2560,Previously infected (Pre-Omicron),mRNA1273.214,5 +236,2022-09-29,2022-09-15,BQ.1.1,2560,Previously infected (Pre-Omicron),mRNA1273.214,5 +236,2022-11-25,2022-09-15,BQ.1.1,1598.9842352719,Previously infected (Pre-Omicron),mRNA1273.214,5 +236,2022-09-29,2022-09-15,XBB,508.096322465117,Previously infected (Pre-Omicron),mRNA1273.214,5 +236,2022-11-25,2022-09-15,XBB,391.64375049163,Previously infected (Pre-Omicron),mRNA1273.214,5 +237,2022-10-11,2022-10-11,BA.5,952.52514415459,Previously infected (Omicron),mRNA1273.214,6 +237,2022-11-03,2022-10-11,BA.5,2560,Previously infected (Omicron),mRNA1273.214,6 +237,2023-01-12,2022-10-11,BA.5,649.426115777702,Previously infected (Omicron),mRNA1273.214,6 +237,2022-10-11,2022-10-11,BQ.1.1,106.472215536784,Previously infected (Omicron),mRNA1273.214,6 +237,2022-11-03,2022-10-11,BQ.1.1,1718.13774647284,Previously infected (Omicron),mRNA1273.214,6 +237,2023-01-12,2022-10-11,BQ.1.1,205.64066259314,Previously infected (Omicron),mRNA1273.214,6 +237,2022-10-11,2022-10-11,XBB,166.483379566172,Previously infected (Omicron),mRNA1273.214,6 +237,2022-11-03,2022-10-11,XBB,375.837720921348,Previously infected (Omicron),mRNA1273.214,6 +237,2023-01-12,2022-10-11,XBB,374.850761716459,Previously infected (Omicron),mRNA1273.214,6 +238,2022-10-10,2022-09-23,BA.5,2560,Previously infected (Omicron),mRNA1273.214,6 +238,2022-10-10,2022-09-23,BQ.1.1,2560,Previously infected (Omicron),mRNA1273.214,6 +238,2022-10-10,2022-09-23,XBB,660.331803091456,Previously infected (Omicron),mRNA1273.214,6 +239,2022-10-25,2022-09-30,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +239,2022-10-25,2022-09-30,BQ.1.1,2560,Previously infected (Omicron),mRNA1273.214,5 +239,2022-10-25,2022-09-30,XBB,592.845487639699,Previously infected (Omicron),mRNA1273.214,5 +240,2022-09-27,2022-09-27,BA.5,559.033150806869,Previously infected (Omicron),mRNA1273.214,5 +240,2022-10-11,2022-09-27,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +240,2023-01-12,2022-09-27,BA.5,707.05530858116,Previously infected (Omicron),mRNA1273.214,5 +240,2022-09-27,2022-09-27,BQ.1.1,179.832680160232,Previously infected (Omicron),mRNA1273.214,5 +240,2022-10-11,2022-09-27,BQ.1.1,2560,Previously infected (Omicron),mRNA1273.214,5 +240,2023-01-12,2022-09-27,BQ.1.1,624.857349663528,Previously infected (Omicron),mRNA1273.214,5 +240,2022-09-27,2022-09-27,XBB,111.534971991955,Previously infected (Omicron),mRNA1273.214,5 +240,2022-10-11,2022-09-27,XBB,1557.48724992072,Previously infected (Omicron),mRNA1273.214,5 +240,2023-01-12,2022-09-27,XBB,634.793822199081,Previously infected (Omicron),mRNA1273.214,5 +241,2022-11-08,2022-10-12,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +241,2023-01-05,2022-10-12,BA.5,2560,Previously infected (Omicron),mRNA1273.214,5 +241,2022-11-08,2022-10-12,BQ.1.1,2560,Previously infected (Omicron),mRNA1273.214,5 +241,2023-01-05,2022-10-12,BQ.1.1,1801.41347287645,Previously infected (Omicron),mRNA1273.214,5 +241,2022-11-08,2022-10-12,XBB,2467.56688396395,Previously infected (Omicron),mRNA1273.214,5 +241,2023-01-05,2022-10-12,XBB,707.05530858116,Previously infected (Omicron),mRNA1273.214,5 +242,2022-10-06,2022-09-22,BA.5,2196.04723303132,Infection naive,mRNA1273.214,4 +242,2022-10-06,2022-09-22,BQ.1.1,554.640601088857,Infection naive,mRNA1273.214,4 +242,2022-10-06,2022-09-22,XBB,202.244411262014,Infection naive,mRNA1273.214,4 +243,2022-10-18,2022-09-25,BA.5,639.821155970214,Infection naive,mRNA1273.214,4 +243,2022-10-18,2022-09-25,BQ.1.1,86.6527033972014,Infection naive,mRNA1273.214,4 +243,2022-10-18,2022-09-25,XBB,130.710299558242,Infection naive,mRNA1273.214,4 +244,2022-10-25,2022-10-08,BA.5,2090.85991807806,Infection naive,BNT162b2,5 +244,2023-01-12,2022-10-08,BA.5,1337.18145580019,Infection naive,BNT162b2,5 +244,2022-10-25,2022-10-08,BQ.1.1,153.048085494646,Infection naive,BNT162b2,5 +244,2022-10-25,2022-10-08,XBB,1221.75118975873,Infection naive,BNT162b2,5 +244,2023-01-12,2022-10-08,XBB,687.499510511047,Infection naive,BNT162b2,5 +245,2022-09-13,2022-09-01,BA.5,166.337521984234,Infection naive,BNT162b2,4 +245,2022-09-13,2022-09-01,BQ.1.1,103.618178426579,Infection naive,BNT162b2,4 +245,2022-09-13,2022-09-01,XBB,49.8411599018156,Infection naive,BNT162b2,4 +246,2022-11-17,2022-10-26,BA.5,2560,Previously infected (Omicron),BNT162b2+BA1,5 +246,2023-01-26,2022-10-26,BA.5,1507.78780267586,Previously infected (Omicron),BNT162b2+BA1,5 +246,2022-11-17,2022-10-26,BQ.1.1,565.935252528117,Previously infected (Omicron),BNT162b2+BA1,5 +246,2023-01-26,2022-10-26,BQ.1.1,374.522351602284,Previously infected (Omicron),BNT162b2+BA1,5 +246,2022-11-17,2022-10-26,XBB,686.295389238984,Previously infected (Omicron),BNT162b2+BA1,5 +246,2023-01-26,2022-10-26,XBB,468.733176704257,Previously infected (Omicron),BNT162b2+BA1,5 +247,2023-01-09,2022-12-12,BA.5,556.100935980917,Infection naive,mRNA1273.214,5 +247,2023-01-09,2022-12-12,BQ.1.1,185.760294632681,Infection naive,mRNA1273.214,5 +247,2023-01-09,2022-12-12,XBB,412.429677483237,Infection naive,mRNA1273.214,5 +248,2022-10-17,2022-10-02,BA.5,486.310054130306,Infection naive,BNT162b2,4 +248,2022-10-17,2022-10-02,BQ.1.1,194.25238085558,Infection naive,BNT162b2,4 +248,2022-10-17,2022-10-02,XBB,5,Infection naive,BNT162b2,4 diff --git a/man/convert_log2_scale.Rd b/man/convert_log2_scale.Rd new file mode 100644 index 0000000..166654f --- /dev/null +++ b/man/convert_log2_scale.Rd @@ -0,0 +1,23 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/utils.R +\name{convert_log2_scale} +\alias{convert_log2_scale} +\title{Base 2 log scale conversion} +\usage{ +convert_log2_scale(dt_in, smallest_value, vars_to_transform = "value") +} +\arguments{ +\item{dt_in}{data.table containing data to be transformed to base 2 log scale.} + +\item{smallest_value}{The lowest value in the original dataset. Used to get the data onto +a scale that starts at zero.} + +\item{vars_to_transform}{Names of columns to apply the transformation to.} +} +\value{ +A data.table, identical to the input data but with specified columns transformed. +} +\description{ +Natural scale data is converted to a base 2 log scale before model fitting. +This function does not modify the provided data.table in-place, but returns a transformed copy. +} diff --git a/man/convert_log2_scale_inverse.Rd b/man/convert_log2_scale_inverse.Rd index b3be326..154cf18 100644 --- a/man/convert_log2_scale_inverse.Rd +++ b/man/convert_log2_scale_inverse.Rd @@ -4,14 +4,14 @@ \alias{convert_log2_scale_inverse} \title{Invert base 2 log scale conversion} \usage{ -convert_log2_scale_inverse(dt_in, vars_to_transform, lower_limit) +convert_log2_scale_inverse(dt_in, vars_to_transform, smallest_value) } \arguments{ \item{dt_in}{data.table containing data to be transformed from base 2 log to natural scale.} \item{vars_to_transform}{Names of columns to apply the transformation to.} -\item{lower_limit}{The lowest value in the original dataset.} +\item{smallest_value}{The lowest value in the original dataset.} } \value{ A data.table, identical to the input data but with specified columns transformed. diff --git a/src/convert_log_scale_inverse.cpp b/src/convert_log_scale_inverse.cpp index aaa3086..efe0ab3 100644 --- a/src/convert_log_scale_inverse.cpp +++ b/src/convert_log_scale_inverse.cpp @@ -5,7 +5,7 @@ using namespace cpp11; [[cpp11::register]] cpp11::data_frame convert_log2_scale_inverse_cpp(cpp11::writable::list dt, cpp11::strings vars_to_transform, - double lower_limit) { + double smallest_value) { for (int i = 0; i < vars_to_transform.size(); i++) { std::string var = vars_to_transform[i]; @@ -14,7 +14,7 @@ cpp11::data_frame convert_log2_scale_inverse_cpp(cpp11::writable::list dt, // Apply the inverse transformation for (int j = 0; j < col.size(); j++) { - col[j] = lower_limit * pow(2, col[j]); + col[j] = smallest_value * pow(2, col[j]); } // Replace the column diff --git a/src/cpp11.cpp b/src/cpp11.cpp index 77022f4..e397452 100644 --- a/src/cpp11.cpp +++ b/src/cpp11.cpp @@ -6,10 +6,10 @@ #include // convert_log_scale_inverse.cpp -cpp11::data_frame convert_log2_scale_inverse_cpp(cpp11::writable::list dt, cpp11::strings vars_to_transform, double lower_limit); -extern "C" SEXP _epikinetics_convert_log2_scale_inverse_cpp(SEXP dt, SEXP vars_to_transform, SEXP lower_limit) { +cpp11::data_frame convert_log2_scale_inverse_cpp(cpp11::writable::list dt, cpp11::strings vars_to_transform, double smallest_value); +extern "C" SEXP _epikinetics_convert_log2_scale_inverse_cpp(SEXP dt, SEXP vars_to_transform, SEXP smallest_value) { BEGIN_CPP11 - return cpp11::as_sexp(convert_log2_scale_inverse_cpp(cpp11::as_cpp>(dt), cpp11::as_cpp>(vars_to_transform), cpp11::as_cpp>(lower_limit))); + return cpp11::as_sexp(convert_log2_scale_inverse_cpp(cpp11::as_cpp>(dt), cpp11::as_cpp>(vars_to_transform), cpp11::as_cpp>(smallest_value))); END_CPP11 } // simulate_trajectories.cpp diff --git a/src/stan/antibody_kinetics_main.stan b/src/stan/antibody_kinetics_main.stan index 63fe543..48b1e4e 100644 --- a/src/stan/antibody_kinetics_main.stan +++ b/src/stan/antibody_kinetics_main.stan @@ -29,12 +29,11 @@ data { int N; // Number of observations int N_events; // Number of exposure events int K; // Number of titre types - real upper_limit; // Upper detection limit - real lower_limit; // Lower detection limit + real upper_detection_limit; // Upper detection limit + real lower_detection_limit; // Lower detection limit array[N] int titre_type; // Titre type for each observation vector[N] t; // Time for each observation vector[N] value; // Observed titre values - array[N] int censored; // Censoring indicator: -1 for lo, 1 for upper, 0 for none // Indices for different censoring scenarios int N_uncens; // number of uncensored observations @@ -149,10 +148,10 @@ model { value[uncens_idx] ~ normal(mu[uncens_idx], sigma); // Likelihood for observations at lower limit - target += normal_lcdf(lower_limit | mu[cens_lo_idx], sigma); + target += normal_lcdf(lower_detection_limit | mu[cens_lo_idx], sigma); // Censoring at upper limit - target += normal_lccdf(upper_limit | mu[cens_hi_idx], sigma); + target += normal_lccdf(upper_detection_limit | mu[cens_hi_idx], sigma); // Covariate-level mean priors, parameterised from previous studies t0_pop ~ normal(mu_t0, sigma_t0); diff --git a/tests/testthat/_snaps/plots/inputdata-covariates.svg b/tests/testthat/_snaps/plots/inputdata-covariates.svg index 5aa0996..b13ff7f 100644 --- a/tests/testthat/_snaps/plots/inputdata-covariates.svg +++ b/tests/testthat/_snaps/plots/inputdata-covariates.svg @@ -27,483 +27,483 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - -Lower detection limit + +Lower detection limit Upper detection limit @@ -517,187 +517,187 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - -Lower detection limit + +Lower detection limit Upper detection limit @@ -711,190 +711,190 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - -Lower detection limit + +Lower detection limit Upper detection limit @@ -908,488 +908,488 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - -Lower detection limit + +Lower detection limit Upper detection limit @@ -1403,476 +1403,476 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - -Lower detection limit + +Lower detection limit Upper detection limit @@ -1886,193 +1886,193 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - -Lower detection limit + +Lower detection limit Upper detection limit @@ -2198,31 +2198,23 @@ time_since_last_exp value - -Titre type - - - - - - - - - - - - -Alpha -Ancestral -Delta - -Censored - - - - -FALSE -TRUE + +Titre type + + + + + + + + + + + + +Alpha +Ancestral +Delta inputdata_covariates diff --git a/tests/testthat/_snaps/plots/inputdata.svg b/tests/testthat/_snaps/plots/inputdata.svg index 9a8df08..5ed93b5 100644 --- a/tests/testthat/_snaps/plots/inputdata.svg +++ b/tests/testthat/_snaps/plots/inputdata.svg @@ -27,661 +27,661 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - -Lower detection limit + +Lower detection limit Upper detection limit @@ -695,651 +695,651 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - -Lower detection limit + +Lower detection limit Upper detection limit @@ -1353,669 +1353,669 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - -Lower detection limit + +Lower detection limit Upper detection limit @@ -2088,31 +2088,23 @@ time_since_last_exp value - -Titre type - - - - - - - - - - - - -Alpha -Ancestral -Delta - -Censored - - - - -FALSE -TRUE + +Titre type + + + + + + + + + + + + +Alpha +Ancestral +Delta inputdata diff --git a/tests/testthat/_snaps/plots/inputdatanolimits.svg b/tests/testthat/_snaps/plots/inputdatanolimits.svg index ca2a85b..3961dd0 100644 --- a/tests/testthat/_snaps/plots/inputdatanolimits.svg +++ b/tests/testthat/_snaps/plots/inputdatanolimits.svg @@ -27,655 +27,655 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -691,645 +691,645 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1345,663 +1345,663 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2074,31 +2074,23 @@ time_since_last_exp value - -Titre type - - - - - - - - - - - - -Alpha -Ancestral -Delta - -Censored - - - - -FALSE -TRUE + +Titre type + + + + + + + + + + + + +Alpha +Ancestral +Delta inputdatanolimits diff --git a/tests/testthat/_snaps/plots/populationtrajectories-data.svg b/tests/testthat/_snaps/plots/populationtrajectories-data.svg index 25a0e04..162ae5c 100644 --- a/tests/testthat/_snaps/plots/populationtrajectories-data.svg +++ b/tests/testthat/_snaps/plots/populationtrajectories-data.svg @@ -31,555 +31,559 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Lower detection limit + +Upper detection limit @@ -595,205 +599,209 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Lower detection limit + +Upper detection limit @@ -809,211 +817,215 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Lower detection limit + +Upper detection limit @@ -1029,562 +1041,566 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Lower detection limit + +Upper detection limit @@ -1600,541 +1616,545 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Lower detection limit + +Upper detection limit @@ -2150,217 +2170,221 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Lower detection limit + +Upper detection limit @@ -2484,25 +2508,17 @@ time_since_last_exp me - -Titre type - - - - - - -Alpha -Ancestral -Delta - -Censored - - - - -FALSE -TRUE + +Titre type + + + + + + +Alpha +Ancestral +Delta populationtrajectories_data diff --git a/tests/testthat/_snaps/plots/populationtrajectories-logscale.svg b/tests/testthat/_snaps/plots/populationtrajectories-logscale.svg index dceb8df..44e8c27 100644 --- a/tests/testthat/_snaps/plots/populationtrajectories-logscale.svg +++ b/tests/testthat/_snaps/plots/populationtrajectories-logscale.svg @@ -31,555 +31,559 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Lower detection limit + +Upper detection limit @@ -595,205 +599,209 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Lower detection limit + +Upper detection limit @@ -809,211 +817,215 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Lower detection limit + +Upper detection limit @@ -1029,562 +1041,566 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Lower detection limit + +Upper detection limit @@ -1600,541 +1616,545 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Lower detection limit + +Upper detection limit @@ -2150,217 +2170,221 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Lower detection limit + +Upper detection limit @@ -2488,25 +2512,17 @@ time_since_last_exp me - -Titre type - - - - - - -Alpha -Ancestral -Delta - -Censored - - - - -FALSE -TRUE + +Titre type + + + + + + +Alpha +Ancestral +Delta populationtrajectories_logscale diff --git a/tests/testthat/_snaps/plots/priorpredictive.svg b/tests/testthat/_snaps/plots/priorpredictive.svg index bd09980..bef47bb 100644 --- a/tests/testthat/_snaps/plots/priorpredictive.svg +++ b/tests/testthat/_snaps/plots/priorpredictive.svg @@ -21,2267 +21,2271 @@ - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Lower detection limit + +Upper detection limit + 0 @@ -2290,26 +2294,18 @@ - - - - - -0 -100 -200 -300 -400 -t + + + + + +0 +100 +200 +300 +400 +t me - -Censored - - - - -FALSE -TRUE priorpredictive diff --git a/tests/testthat/test-convert-log-scale.R b/tests/testthat/test-convert-log-scale.R index 1058bd4..80a88d4 100644 --- a/tests/testthat/test-convert-log-scale.R +++ b/tests/testthat/test-convert-log-scale.R @@ -1,7 +1,7 @@ test_that("Can convert to and from log scale in R", { inputs <- data.table::fread(test_path("testdata", "testdata.csv")) - log_inputs <- convert_log2_scale(inputs, "me", lower_limit = 2) - unlog_inputs <- convert_log2_scale_inverse(log_inputs, "me", lower_limit = 2) + log_inputs <- convert_log2_scale(inputs, "me", lower_detection_limit = 2) + unlog_inputs <- convert_log2_scale_inverse(log_inputs, "me", lower_detection_limit = 2) expect_equal(inputs, unlog_inputs) }) @@ -11,7 +11,7 @@ test_that("Can convert from log scale in R", { res <- convert_log2_scale_inverse( inputs, vars_to_transform = c("me", "lo"), - lower_limit = 5) + lower_detection_limit = 5) expect_equal(res$me, 5 * 2^inputs$me) expect_equal(res$lo, 5 * 2^inputs$lo) @@ -22,7 +22,7 @@ test_that("Can convert from log scale in R", { res <- convert_log2_scale_inverse( inputs, vars_to_transform = "me", - lower_limit = 10) + lower_detection_limit = 10) expect_equal(res$me, 10 * 2^inputs$me) }) @@ -32,7 +32,7 @@ test_that("Can convert from log scale in Cpp", { rescpp <- convert_log2_scale_inverse_cpp( inputs, vars_to_transform = c("me", "lo"), - lower_limit = 5) + lower_detection_limit = 5) expect_equal(rescpp$me, 5 * 2^(inputs$me)) expect_equal(rescpp$lo, 5 * 2^(inputs$lo)) @@ -43,7 +43,7 @@ test_that("Can convert from log scale in Cpp", { res <- convert_log2_scale_inverse_cpp( inputs, vars_to_transform = "me", - lower_limit = 10) + lower_detection_limit = 10) expect_equal(res$me, 10 * 2^inputs$me) }) diff --git a/tests/testthat/test-data.R b/tests/testthat/test-data.R index 3c7a2be..2a7f005 100644 --- a/tests/testthat/test-data.R +++ b/tests/testthat/test-data.R @@ -16,10 +16,10 @@ test_that("Can construct stan data", { mod <- biokinetics$new(data = dat, priors = priors) stan_data <- mod$get_stan_data() expect_true(is.list(stan_data)) - expect_equal(names(stan_data), c("N", "N_events", "id", "value", "censored", + expect_equal(names(stan_data), c("N", "N_events", "id", "value", "titre_type", "preds_sd", "K", "N_uncens", "N_lo", "N_hi", "uncens_idx", "cens_lo_idx", - "cens_hi_idx", "t", "X", "P", "upper_limit", "lower_limit", "mu_t0", + "cens_hi_idx", "t", "X", "P", "upper_detection_limit", "lower_detection_limit", "mu_t0", "mu_tp", "mu_ts", "mu_m1", "mu_m2", "mu_m3", "sigma_t0", "sigma_tp", "sigma_ts", "sigma_m1", "sigma_m2", "sigma_m3")) @@ -29,14 +29,18 @@ test_that("Can construct stan data", { expect_equal(stan_data$id, dat$pid, ignore_attr = TRUE) }) -test_that("All data is assumed uncensored if no censored column provided", { +test_that("Data above/below limits is censored", { dat <- data.table::fread(system.file("delta_full.rds", package = "epikinetics")) - dat$censored <- NULL - mod <- biokinetics$new(data = dat) + suppressWarnings({ mod <- biokinetics$new(data = dat, + lower_detection_limit = 10, + upper_detection_limit = 2500) }) stan_data <- mod$get_stan_data() - expect_equal(stan_data$uncens_idx, 1:nrow(dat)) - expect_equal(stan_data$cens_lo_idx, integer()) - expect_equal(stan_data$cens_hi_idx, integer()) + expect_equal(stan_data$N_uncens, dat[value > 10 & value < 2500, .N]) + expect_equal(stan_data$N_lo, dat[value <= 10, .N]) + expect_equal(stan_data$N_hi, dat[value >= 2500, .N]) + expect_equal(stan_data$uncens_idx, dat[value > 10 & value < 2500, which = TRUE]) + expect_equal(stan_data$cens_lo_idx, dat[value <= 10, which = TRUE]) + expect_equal(stan_data$cens_hi_idx, dat[value >= 2500, which = TRUE]) }) test_that("Can handle non-numeric pids", { @@ -54,7 +58,7 @@ test_that("Natural scale data is converted to log scale for stan", { stan_data <- mod$get_stan_data() expect_equal(stan_data$value, convert_log2_scale(dat, - lower_limit = 5, + smallest_value = 5, vars_to_transform = "value")$value, ignore_attr = TRUE) }) @@ -70,47 +74,45 @@ test_that("Highest value is used as default upper limit", { dat <- data.table::fread(system.file("delta_full.rds", package = "epikinetics")) mod <- biokinetics$new(data = dat, lower_detection_limit = 2) stan_data <- mod$get_stan_data() - expect_equal(stan_data$upper_limit, log2(max(dat$value) / 2)) - expect_equal(stan_data$lower_limit, 0) + expect_equal(stan_data$upper_detection_limit, log2(max(dat$value) / min(dat$value))) + expect_equal(stan_data$lower_detection_limit, log2(2 / min(dat$value))) }) test_that("Warns if data contains values above the upper limit", { dat <- data.table::fread(system.file("delta_full.rds", package = "epikinetics")) expect_warning({ mod <- biokinetics$new(data = dat, upper_detection_limit = 10) }, - "Data contains a value of 2560 which is greater than the upper detection limit 10") + "Data contains values >= the upper detection limit 10. These will be censored.") stan_data <- mod$get_stan_data() - expect_equal(stan_data$upper_limit, log2(10 / 5)) - expect_equal(stan_data$lower_limit, 0) + expect_equal(stan_data$upper_detection_limit, log2(10 / min(dat$value))) + expect_equal(stan_data$lower_detection_limit, 0) }) test_that("Smallest value is used as default lower limit", { dat <- data.table::fread(system.file("delta_full.rds", package = "epikinetics")) mod <- biokinetics$new(data = dat, upper_detection_limit = 3000) stan_data <- mod$get_stan_data() - expect_equal(stan_data$upper_limit, log2(3000 / min(dat$value))) - expect_equal(stan_data$lower_limit, 0) + expect_equal(stan_data$upper_detection_limit, log2(3000 / min(dat$value))) + expect_equal(stan_data$lower_detection_limit, 0) }) test_that("Warns if data contains values below the lower limit", { dat <- data.table::fread(system.file("delta_full.rds", package = "epikinetics")) expect_warning({ mod <- biokinetics$new(data = dat, - upper_detection_limit = 2560, lower_detection_limit = 10) }, - "Data contains a value of 5 which is smaller than the lower detection limit 10") + "Data contains values <= the lower detection limit 10. These will be censored.") stan_data <- mod$get_stan_data() - expect_equal(stan_data$upper_limit, log2(2560 / 10)) - expect_equal(stan_data$lower_limit, 0) + expect_equal(stan_data$lower_detection_limit, log2(10/min(dat$value))) }) test_that("Detection limits are passed to stan without transformation if using log data", { dat <- data.table::fread(system.file("delta_full.rds", package = "epikinetics")) mod <- biokinetics$new(data = convert_log2_scale(dat, - lower_limit = 2, + smallest_value = 2, vars_to_transform = "value"), scale = "log", lower_detection_limit = 1, upper_detection_limit = 15) stan_data <- mod$get_stan_data() - expect_equal(stan_data$upper_limit, 15) - expect_equal(stan_data$lower_limit, 1) + expect_equal(stan_data$upper_detection_limit, 15) + expect_equal(stan_data$lower_detection_limit, 1) }) diff --git a/tests/testthat/test-plots.R b/tests/testthat/test-plots.R index deda876..9fd647d 100644 --- a/tests/testthat/test-plots.R +++ b/tests/testthat/test-plots.R @@ -41,12 +41,14 @@ test_that("Prior predictions from model are the same", { test_that("Can plot input data", { data <- data.table::fread(system.file("delta_full.rds", package = "epikinetics")) - mod <- biokinetics$new(data = data) - plot <- mod$plot_model_inputs() + mod <- biokinetics$new(data = data, lower_detection_limit = 40) + suppressWarnings({plot <- mod$plot_model_inputs()}) vdiffr::expect_doppelganger("inputdata", plot) - mod <- biokinetics$new(data = data, covariate_formula = ~0 + infection_history) - plot <- mod$plot_model_inputs() + mod <- biokinetics$new(data = data, + lower_detection_limit = 40, + covariate_formula = ~0 + infection_history) + suppressWarnings({plot <- mod$plot_model_inputs()}) vdiffr::expect_doppelganger("inputdata_covariates", plot) }) @@ -103,7 +105,8 @@ test_that("Can plot population trajectories with data", { # note that this is using a pre-fitted model with very few iterations, so the # fits won't look very good data <- data.table::fread(system.file("delta_full.rds", package = "epikinetics")) - mod <- biokinetics$new(data = data, covariate_formula = ~0 + infection_history) + mod <- biokinetics$new(data = data, + covariate_formula = ~0 + infection_history) fit <- mod$fit() trajectories <- mod$simulate_population_trajectories() plot <- plot(trajectories, data = data) @@ -118,7 +121,7 @@ test_that("Can plot population trajectories with log scale input data", { # note that this is using a pre-fitted model with very few iterations, so the # fits won't look very good data <- data.table::fread(system.file("delta_full.rds", package = "epikinetics")) - data <- convert_log2_scale(data, lower_limit = min(data$value)) + data <- convert_log2_scale(data, smallest_value = min(data$value)) mod <- biokinetics$new(data = data, covariate_formula = ~0 + infection_history, scale = "log") diff --git a/vignettes/biokinetics.Rmd b/vignettes/biokinetics.Rmd index b5679eb..c97a926 100644 --- a/vignettes/biokinetics.Rmd +++ b/vignettes/biokinetics.Rmd @@ -27,7 +27,9 @@ The `fit` method then has the same function signature as the underlying [cmdstan ```{r, warning=FALSE, message=FALSE, results="hide"} dat <- data.table::fread(system.file("delta_full.rds", package = "epikinetics")) -mod <- epikinetics::biokinetics$new(data = dat, covariate_formula = ~0 + infection_history) +mod <- epikinetics::biokinetics$new(data = dat, + lower_detection_limit = 40, + covariate_formula = ~0 + infection_history) delta <- mod$fit(parallel_chains = 4, iter_warmup = 50, iter_sampling = 200, diff --git a/vignettes/data.Rmd b/vignettes/data.Rmd index 06c19fe..8f6412c 100644 --- a/vignettes/data.Rmd +++ b/vignettes/data.Rmd @@ -19,14 +19,13 @@ knitr::opts_chunk$set( The model requires time series data about individual titre readings, along with last exposure times. Times can be relative (e.g. day of study) or absolute (i.e. precise calendar dates). This is provided via the `data` argument when initialising an object of class [biokinetics](../reference/biokinetics.html), which must be a [data.table](https://rdatatable.gitlab.io/data.table/reference/data.table.html) containing the following columns: -| name | type | description | required | -|--------------|----------------------|--------------------------------------------------------------------------------------------| -------- | -| pid | numeric or character | Unique identifier to identify a person across observations | T| -| day | integer or date | The day of the observation. Can be a date or an integer representing a relative day of study | T| -| last_exp_day | integer or date | The most recent day on which the person was exposed. Must be of the same type as the 'day' column | T| -| titre_type | character | Name of the titre or biomarker | T| -| value | numeric | Titre value | T| -| censored | -1, 0 or 1 | Optional column. Whether this observation should be treated as censored: -1 for lower, 1 for upper, 0 for none. | F| +| name | type | description | +|--------------|----------------------|--------------------------------------------------------------------------------------------| +| pid | numeric or character | Unique identifier to identify a person across observations | +| day | integer or date | The day of the observation. Can be a date or an integer representing a relative day of study | +| last_exp_day | integer or date | The most recent day on which the person was exposed. Must be of the same type as the 'day' column | +| titre_type | character | Name of the titre or biomarker | +| value | numeric | Titre value | It can also contain further columns for any covariates to be included in the model. The data files installed with this package have additional columns infection_history, last_vax_type, and exp_num.