From 9b8b02960e6b1f184d3181bedd572e3d8e08dea8 Mon Sep 17 00:00:00 2001 From: "Matthijs S. Berends" Date: Fri, 14 Feb 2020 19:54:13 +0100 Subject: [PATCH] (v0.9.0.9023) EUCAST 2020 guidelines --- DESCRIPTION | 4 +- NEWS.md | 8 +- R/ab.R | 39 +- R/ab_property.R | 15 +- R/atc_online.R | 4 +- R/catalogue_of_life.R | 11 +- R/deprecated.R | 2 +- R/eucast_rules.R | 10 +- R/filter_ab_class.R | 11 +- R/freq.R | 6 +- R/ggplot_rsi.R | 2 +- R/guess_ab_col.R | 4 +- R/join_microorganisms.R | 14 +- R/like.R | 6 +- R/mdro.R | 4 +- R/misc.R | 24 +- R/mo.R | 30 +- R/mo_property.R | 44 +- R/mo_source.R | 5 +- R/rsi.R | 26 +- R/rsi_calc.R | 4 +- data-raw/internals.R | 3 +- data-raw/read_EUCAST.R | 206 + data-raw/reproduction_of_rsi_translation.R | 12 +- data-raw/rsi_translation.txt | 29728 ++++++++++--------- data/rsi_translation.rda | Bin 18090 -> 25970 bytes docs/404.html | 2 +- docs/LICENSE-text.html | 2 +- docs/articles/index.html | 2 +- docs/authors.html | 2 +- docs/index.html | 16 +- docs/news/index.html | 847 +- docs/pkgdown.yml | 2 +- docs/reference/as.rsi.html | 15 +- docs/reference/filter_ab_class.html | 4 +- docs/reference/index.html | 2 +- docs/reference/like.html | 8 +- man/as.rsi.Rd | 13 +- man/filter_ab_class.Rd | 2 +- man/like.Rd | 6 +- tests/testthat/test-data.R | 3 + tests/testthat/test-mo.R | 2 +- tests/testthat/test-mo_property.R | 2 +- 43 files changed, 16588 insertions(+), 14564 deletions(-) create mode 100644 data-raw/read_EUCAST.R diff --git a/DESCRIPTION b/DESCRIPTION index 8d0fed2d..8ee636f4 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: AMR -Version: 0.9.0.9022 -Date: 2020-02-10 +Version: 0.9.0.9023 +Date: 2020-02-14 Title: Antimicrobial Resistance Analysis Authors@R: c( person(role = c("aut", "cre"), diff --git a/NEWS.md b/NEWS.md index 0d0e12f3..088feacd 100755 --- a/NEWS.md +++ b/NEWS.md @@ -1,7 +1,9 @@ -# AMR 0.9.0.9022 -## Last updated: 10-Feb-2020 +# AMR 0.9.0.9023 +## Last updated: 14-Feb-2020 ### New +* Support for the newest EUCAST Clinical Breakpoint Tables v.10.0, valid from 2020-01-01 (use `as.rsi()` to transform MICs or disk zones) +* The repository of this package now contains a clean version of the EUCAST and CLSI guidelines from 2011-2020 to translate MIC and disk diffusion values to R/SI: https://gitlab.com/msberends/AMR/blob/master/data-raw/rsi_translation.txt. This **allows for machine reading these guidelines**, which is almost impossible with the Excel and PDF files distributed by EUCAST and CLSI. This file is updated automatically. * Support for LOINC and SNOMED codes * Support for LOINC codes in the `antibiotics` data set. Use `ab_loinc()` to retrieve LOINC codes, or use a LOINC code for input in any `ab_*` function: ```r @@ -21,7 +23,6 @@ mo_gramstain(115329001) #> [1] "Gram-positive" ``` -* The repository of this package now contains a clean version of the EUCAST and CLSI guidelines from 2011-2019 to translate MIC and disk diffusion values to R/SI: https://gitlab.com/msberends/AMR/blob/master/data-raw/rsi_translation.txt. This **allows for machine reading these guidelines**, which is almost impossible with the Excel and PDF files distributed by EUCAST and CLSI. This file is updated automatically. ### Changes * The `as.mo()` function previously wrote to the package folder to improve calculation speed for previously calculated results. This is no longer the case, to comply with CRAN policies. Consequently, the function `clear_mo_history()` was removed. @@ -42,6 +43,7 @@ ### Other * Add a `CITATION` file * Full support for the upcoming R 4.0 +* Removed unnecessary `AMR::` calls # AMR 0.9.0 diff --git a/R/ab.R b/R/ab.R index 1aa415af..2850fb41 100755 --- a/R/ab.R +++ b/R/ab.R @@ -66,11 +66,14 @@ #' ab_name("J01FA01") # "Erythromycin" #' ab_name("eryt") # "Erythromycin" as.ab <- function(x, ...) { + + check_dataset_integrity() + if (is.ab(x)) { return(x) } - if (all(toupper(x) %in% AMR::antibiotics$ab)) { + if (all(toupper(x) %in% antibiotics$ab)) { # valid AB code, but not yet right class return(structure(.Data = toupper(x), class = "ab")) @@ -117,67 +120,67 @@ as.ab <- function(x, ...) { } # exact AB code - found <- AMR::antibiotics[which(AMR::antibiotics$ab == toupper(x[i])), ]$ab + found <- antibiotics[which(antibiotics$ab == toupper(x[i])), ]$ab if (length(found) > 0) { x_new[i] <- found[1L] next } # exact ATC code - found <- AMR::antibiotics[which(AMR::antibiotics$atc == toupper(x[i])), ]$ab + found <- antibiotics[which(antibiotics$atc == toupper(x[i])), ]$ab if (length(found) > 0) { x_new[i] <- found[1L] next } # exact CID code - found <- AMR::antibiotics[which(AMR::antibiotics$cid == x[i]), ]$ab + found <- antibiotics[which(antibiotics$cid == x[i]), ]$ab if (length(found) > 0) { x_new[i] <- found[1L] next } # exact name - found <- AMR::antibiotics[which(toupper(AMR::antibiotics$name) == toupper(x[i])), ]$ab + found <- antibiotics[which(toupper(antibiotics$name) == toupper(x[i])), ]$ab if (length(found) > 0) { x_new[i] <- found[1L] next } # exact LOINC code - loinc_found <- unlist(lapply(AMR::antibiotics$loinc, + loinc_found <- unlist(lapply(antibiotics$loinc, function(s) if (x[i] %in% s) { TRUE } else { FALSE })) - found <- AMR::antibiotics$ab[loinc_found == TRUE] + found <- antibiotics$ab[loinc_found == TRUE] if (length(found) > 0) { x_new[i] <- found[1L] next } # exact synonym - synonym_found <- unlist(lapply(AMR::antibiotics$synonyms, + synonym_found <- unlist(lapply(antibiotics$synonyms, function(s) if (toupper(x[i]) %in% toupper(s)) { TRUE } else { FALSE })) - found <- AMR::antibiotics$ab[synonym_found == TRUE] + found <- antibiotics$ab[synonym_found == TRUE] if (length(found) > 0) { x_new[i] <- found[1L] next } # exact abbreviation - abbr_found <- unlist(lapply(AMR::antibiotics$abbreviations, + abbr_found <- unlist(lapply(antibiotics$abbreviations, function(a) if (toupper(x[i]) %in% toupper(a)) { TRUE } else { FALSE })) - found <- AMR::antibiotics$ab[abbr_found == TRUE] + found <- antibiotics$ab[abbr_found == TRUE] if (length(found) > 0) { x_new[i] <- found[1L] next @@ -185,7 +188,7 @@ as.ab <- function(x, ...) { # first >=4 characters of name if (nchar(x[i]) >= 4) { - found <- AMR::antibiotics[which(toupper(AMR::antibiotics$name) %like% paste0("^", x[i])), ]$ab + found <- antibiotics[which(toupper(antibiotics$name) %like% paste0("^", x[i])), ]$ab if (length(found) > 0) { x_new[i] <- found[1L] next @@ -215,19 +218,19 @@ as.ab <- function(x, ...) { x_spelling <- gsub("(.)\\1+", "\\1+", x_spelling) # try if name starts with it - found <- AMR::antibiotics[which(AMR::antibiotics$name %like% paste0("^", x_spelling)), ]$ab + found <- antibiotics[which(antibiotics$name %like% paste0("^", x_spelling)), ]$ab if (length(found) > 0) { x_new[i] <- found[1L] next } # and try if any synonym starts with it - synonym_found <- unlist(lapply(AMR::antibiotics$synonyms, + synonym_found <- unlist(lapply(antibiotics$synonyms, function(s) if (any(s %like% paste0("^", x_spelling))) { TRUE } else { FALSE })) - found <- AMR::antibiotics$ab[synonym_found == TRUE] + found <- antibiotics$ab[synonym_found == TRUE] if (length(found) > 0) { x_new[i] <- found[1L] next @@ -374,7 +377,7 @@ as.data.frame.ab <- function(x, ...) { "[<-.ab" <- function(i, j, ..., value) { y <- NextMethod() attributes(y) <- attributes(i) - class_integrity_check(y, "antimicrobial code", AMR::antibiotics$ab) + class_integrity_check(y, "antimicrobial code", antibiotics$ab) } #' @exportMethod [[<-.ab #' @export @@ -382,7 +385,7 @@ as.data.frame.ab <- function(x, ...) { "[[<-.ab" <- function(i, j, ..., value) { y <- NextMethod() attributes(y) <- attributes(i) - class_integrity_check(y, "antimicrobial code", AMR::antibiotics$ab) + class_integrity_check(y, "antimicrobial code", antibiotics$ab) } #' @exportMethod c.ab #' @export @@ -390,7 +393,7 @@ as.data.frame.ab <- function(x, ...) { c.ab <- function(x, ...) { y <- NextMethod() attributes(y) <- attributes(x) - class_integrity_check(y, "antimicrobial code", AMR::antibiotics$ab) + class_integrity_check(y, "antimicrobial code", antibiotics$ab) } #' @importFrom pillar type_sum diff --git a/R/ab_property.R b/R/ab_property.R index d0b93d83..074224c1 100644 --- a/R/ab_property.R +++ b/R/ab_property.R @@ -168,7 +168,7 @@ ab_ddd <- function(x, administration = "oral", units = FALSE, ...) { #' @rdname ab_property #' @export ab_info <- function(x, language = get_locale(), ...) { - x <- AMR::as.ab(x, ...) + x <- as.ab(x, ...) base::list(ab = as.character(x), atc = ab_atc(x), cid = ab_cid(x), @@ -189,7 +189,7 @@ ab_property <- function(x, property = "name", language = get_locale(), ...) { if (length(property) != 1L) { stop("'property' must be of length 1.") } - if (!property %in% colnames(AMR::antibiotics)) { + if (!property %in% colnames(antibiotics)) { stop("invalid property: '", property, "' - use a column name of the `antibiotics` data set") } @@ -197,14 +197,17 @@ ab_property <- function(x, property = "name", language = get_locale(), ...) { } ab_validate <- function(x, property, ...) { + + check_dataset_integrity() + # try to catch an error when inputting an invalid parameter # so the 'call.' can be set to FALSE - tryCatch(x[1L] %in% AMR::antibiotics[1, property], + tryCatch(x[1L] %in% antibiotics[1, property], error = function(e) stop(e$message, call. = FALSE)) x_bak <- x - if (!all(x %in% AMR::antibiotics[, property])) { - x <- data.frame(ab = AMR::as.ab(x, ...), stringsAsFactors = FALSE) %>% - left_join(AMR::antibiotics, by = "ab") %>% + if (!all(x %in% antibiotics[, property])) { + x <- data.frame(ab = as.ab(x, ...), stringsAsFactors = FALSE) %>% + left_join(antibiotics, by = "ab") %>% pull(property) } if (property == "ab") { diff --git a/R/atc_online.R b/R/atc_online.R index 719e32aa..33895bac 100644 --- a/R/atc_online.R +++ b/R/atc_online.R @@ -76,12 +76,14 @@ atc_online_property <- function(atc_code, property, administration = "O", url = "https://www.whocc.no/atc_ddd_index/?code=%s&showdescription=no") { + + check_dataset_integrity() if (!all(c("curl", "rvest", "xml2") %in% rownames(utils::installed.packages()))) { stop("Packages 'xml2', 'rvest' and 'curl' are required for this function") } - if (!all(atc_code %in% AMR::antibiotics)) { + if (!all(atc_code %in% antibiotics)) { atc_code <- as.character(ab_atc(atc_code)) } diff --git a/R/catalogue_of_life.R b/R/catalogue_of_life.R index 3d876f97..cc3b18d3 100755 --- a/R/catalogue_of_life.R +++ b/R/catalogue_of_life.R @@ -91,20 +91,23 @@ NULL #' microorganisms %>% freq(kingdom) #' microorganisms %>% group_by(kingdom) %>% freq(phylum, nmax = NULL) catalogue_of_life_version <- function() { + + check_dataset_integrity() + # see the `catalogue_of_life` list in R/data.R lst <- list(catalogue_of_life = list(version = gsub("{year}", catalogue_of_life$year, catalogue_of_life$version, fixed = TRUE), url = gsub("{year}", catalogue_of_life$year, catalogue_of_life$url_CoL, fixed = TRUE), - n = nrow(filter(AMR::microorganisms, source == "CoL"))), + n = nrow(filter(microorganisms, source == "CoL"))), deutsche_sammlung_von_mikroorganismen_und_zellkulturen = list(version = "Prokaryotic Nomenclature Up-to-Date from DSMZ", url = catalogue_of_life$url_DSMZ, yearmonth = catalogue_of_life$yearmonth_DSMZ, - n = nrow(filter(AMR::microorganisms, source == "DSMZ"))), + n = nrow(filter(microorganisms, source == "DSMZ"))), total_included = list( - n_total_species = nrow(AMR::microorganisms), - n_total_synonyms = nrow(AMR::microorganisms.old))) + n_total_species = nrow(microorganisms), + n_total_synonyms = nrow(microorganisms.old))) structure(.Data = lst, class = c("catalogue_of_life_version", "list")) diff --git a/R/deprecated.R b/R/deprecated.R index fde87822..58b69ad7 100755 --- a/R/deprecated.R +++ b/R/deprecated.R @@ -30,7 +30,7 @@ #' @rdname AMR-deprecated p.symbol <- function(...) { .Deprecated("p_symbol()", package = "AMR") - AMR::p_symbol(...) + p_symbol(...) } #' @rdname AMR-deprecated diff --git a/R/eucast_rules.R b/R/eucast_rules.R index b62dc2ed..ba5d6667 100755 --- a/R/eucast_rules.R +++ b/R/eucast_rules.R @@ -202,6 +202,8 @@ eucast_rules <- function(x, verbose = FALSE, ...) { + check_dataset_integrity() + if (verbose == TRUE & interactive()) { txt <- paste0("WARNING: In Verbose mode, the eucast_rules() function does not apply rules to the data, but instead returns a data set in logbook form with extensive info about which rows and columns would be effected and in which way.", "\n\nThis may overwrite your existing data if you use e.g.:", @@ -564,7 +566,7 @@ eucast_rules <- function(x, strsplit(",") %>% unlist() %>% trimws() %>% - sapply(function(x) if (x %in% AMR::antibiotics$ab) ab_name(x, language = NULL, tolower = TRUE) else x) %>% + sapply(function(x) if (x %in% antibiotics$ab) ab_name(x, language = NULL, tolower = TRUE) else x) %>% sort() %>% paste(collapse = ", ") x <- gsub("_", " ", x, fixed = TRUE) @@ -664,8 +666,8 @@ eucast_rules <- function(x, # Print rule ------------------------------------------------------------- if (rule_current != rule_previous) { # is new rule within group, print its name - if (rule_current %in% c(AMR::microorganisms$family, - AMR::microorganisms$fullname)) { + if (rule_current %in% c(microorganisms$family, + microorganisms$fullname)) { cat(italic(rule_current)) } else { cat(rule_current) @@ -681,7 +683,7 @@ eucast_rules <- function(x, # be sure to comprise all coagulase-negative/-positive Staphylococci when they are mentioned if (eucast_rules_df[i, 3] %like% "coagulase-") { suppressWarnings( - all_staph <- AMR::microorganisms %>% + all_staph <- microorganisms %>% filter(genus == "Staphylococcus") %>% mutate(CNS_CPS = mo_name(mo, Becker = "all")) ) diff --git a/R/filter_ab_class.R b/R/filter_ab_class.R index 075f3024..27b15781 100644 --- a/R/filter_ab_class.R +++ b/R/filter_ab_class.R @@ -24,7 +24,7 @@ #' Filter isolates on results in specific antibiotic variables based on their class (ATC groups). This makes it easy to get a list of isolates that were tested for e.g. any aminoglycoside. #' @inheritSection lifecycle Stable lifecycle #' @param x a data set -#' @param ab_class an antimicrobial class, like `"carbapenems"`, as can be found in [`AMR::antibiotics$group`][antibiotics] +#' @param ab_class an antimicrobial class, like `"carbapenems"`, as can be found in [`antibiotics$group`][antibiotics] #' @param result an antibiotic result: S, I or R (or a combination of more of them) #' @param scope the scope to check which variables to check, can be `"any"` (default) or `"all"` #' @param ... parameters passed on to `filter_at` from the `dplyr` package @@ -67,6 +67,9 @@ filter_ab_class <- function(x, result = NULL, scope = "any", ...) { + + check_dataset_integrity() + scope <- scope[1L] if (is.null(result)) { result <- c("S", "I", "R") @@ -276,7 +279,7 @@ filter_tetracyclines <- function(x, #' @importFrom dplyr %>% filter_at vars any_vars select ab_class_vars <- function(ab_class) { ab_class <- gsub("[^a-z0-9]+", ".*", ab_class) - ab_vars <- AMR::antibiotics %>% + ab_vars <- antibiotics %>% filter(group %like% ab_class) %>% select(ab:name, abbreviations, synonyms) %>% unlist() %>% @@ -289,7 +292,7 @@ ab_class_vars <- function(ab_class) { ab_vars <- ab_vars[!ab_vars %in% c(NA, "", "NA") & nchar(ab_vars) > 2] if (length(ab_vars) == 0) { # try again, searching atc_group1 and atc_group2 columns - ab_vars <- AMR::antibiotics %>% + ab_vars <- antibiotics %>% filter_at(vars(c("atc_group1", "atc_group2")), any_vars(. %like% ab_class)) %>% select(ab:name, abbreviations, synonyms) %>% unlist() %>% @@ -314,7 +317,7 @@ find_ab_group <- function(ab_class) { "macrolide", "tetracycline"), paste0(ab_class, "s"), - AMR::antibiotics %>% + antibiotics %>% filter(ab %in% ab_class_vars(ab_class)) %>% pull(group) %>% unique() %>% diff --git a/R/freq.R b/R/freq.R index 0f699255..97815ab1 100755 --- a/R/freq.R +++ b/R/freq.R @@ -58,14 +58,14 @@ freq.mo <- function(x, ...) { freq.rsi <- function(x, ...) { x_name <- deparse(substitute(x)) x_name <- gsub(".*[$]", "", x_name) - ab <- suppressMessages(suppressWarnings(AMR::as.ab(x_name))) + ab <- suppressMessages(suppressWarnings(as.ab(x_name))) if (!is.na(ab)) { freq.default(x = x, ..., .add_header = list(Drug = paste0(ab_name(ab), " (", ab, ", ", ab_atc(ab), ")"), group = ab_group(ab), - `%SI` = AMR::susceptibility(x, minimum = 0, as_percent = TRUE))) + `%SI` = susceptibility(x, minimum = 0, as_percent = TRUE))) } else { freq.default(x = x, ..., - .add_header = list(`%SI` = AMR::susceptibility(x, minimum = 0, as_percent = TRUE))) + .add_header = list(`%SI` = susceptibility(x, minimum = 0, as_percent = TRUE))) } } diff --git a/R/ggplot_rsi.R b/R/ggplot_rsi.R index 924d9d9f..3f8e86f5 100755 --- a/R/ggplot_rsi.R +++ b/R/ggplot_rsi.R @@ -303,7 +303,7 @@ geom_rsi <- function(position = NULL, ggplot2::layer(geom = "bar", stat = "identity", position = position, mapping = ggplot2::aes_string(x = x, y = y, fill = fill), params = list(...), data = function(x) { - AMR::rsi_df(data = x, + rsi_df(data = x, translate_ab = translate_ab, language = language, combine_SI = combine_SI, diff --git a/R/guess_ab_col.R b/R/guess_ab_col.R index 65fbaaa5..cc7514ef 100755 --- a/R/guess_ab_col.R +++ b/R/guess_ab_col.R @@ -126,7 +126,7 @@ get_column_abx <- function(x, # only check columns that are a valid AB code, ATC code, name, abbreviation or synonym, # or already have the rsi class (as.rsi) # and that have no more than 50% invalid values - vectr_antibiotics <- unique(toupper(unlist(AMR::antibiotics[, c("ab", "atc", "name", "abbreviations", "synonyms")]))) + vectr_antibiotics <- unique(toupper(unlist(antibiotics[, c("ab", "atc", "name", "abbreviations", "synonyms")]))) vectr_antibiotics <- vectr_antibiotics[!is.na(vectr_antibiotics) & nchar(vectr_antibiotics) >= 3] x_columns <- sapply(colnames(x), function(col, df = x_bak) { if (toupper(col) %in% vectr_antibiotics | @@ -205,7 +205,7 @@ get_column_abx <- function(x, # missing a soft dependency may lower the reliability missing <- soft_dependencies[!soft_dependencies %in% names(x)] missing_txt <- data.frame(missing = missing, - missing_names = AMR::ab_name(missing, tolower = TRUE), + missing_names = ab_name(missing, tolower = TRUE), stringsAsFactors = FALSE) %>% mutate(txt = paste0(bold(missing), " (", missing_names, ")")) %>% arrange(missing_names) %>% diff --git a/R/join_microorganisms.R b/R/join_microorganisms.R index 1e5b48be..1febc8b6 100755 --- a/R/join_microorganisms.R +++ b/R/join_microorganisms.R @@ -54,7 +54,7 @@ inner_join_microorganisms <- function(x, by = NULL, suffix = c("2", ""), ...) { x <- checked$x by <- checked$by join <- suppressWarnings( - dplyr::inner_join(x = x, y = AMR::microorganisms, by = by, suffix = suffix, ...) + dplyr::inner_join(x = x, y = microorganisms, by = by, suffix = suffix, ...) ) if (nrow(join) > nrow(x)) { warning("The newly joined tbl contains ", nrow(join) - nrow(x), " rows more that its original.") @@ -69,7 +69,7 @@ left_join_microorganisms <- function(x, by = NULL, suffix = c("2", ""), ...) { x <- checked$x by <- checked$by join <- suppressWarnings( - dplyr::left_join(x = x, y = AMR::microorganisms, by = by, suffix = suffix, ...) + dplyr::left_join(x = x, y = microorganisms, by = by, suffix = suffix, ...) ) if (nrow(join) > nrow(x)) { warning("The newly joined tbl contains ", nrow(join) - nrow(x), " rows more that its original.") @@ -84,7 +84,7 @@ right_join_microorganisms <- function(x, by = NULL, suffix = c("2", ""), ...) { x <- checked$x by <- checked$by join <- suppressWarnings( - dplyr::right_join(x = x, y = AMR::microorganisms, by = by, suffix = suffix, ...) + dplyr::right_join(x = x, y = microorganisms, by = by, suffix = suffix, ...) ) if (nrow(join) > nrow(x)) { warning("The newly joined tbl contains ", nrow(join) - nrow(x), " rows more that its original.") @@ -99,7 +99,7 @@ full_join_microorganisms <- function(x, by = NULL, suffix = c("2", ""), ...) { x <- checked$x by <- checked$by join <- suppressWarnings( - dplyr::full_join(x = x, y = AMR::microorganisms, by = by, suffix = suffix, ...) + dplyr::full_join(x = x, y = microorganisms, by = by, suffix = suffix, ...) ) if (nrow(join) > nrow(x)) { warning("The newly joined tbl contains ", nrow(join) - nrow(x), " rows more that its original.") @@ -114,7 +114,7 @@ semi_join_microorganisms <- function(x, by = NULL, ...) { x <- checked$x by <- checked$by suppressWarnings( - dplyr::semi_join(x = x, y = AMR::microorganisms, by = by, ...) + dplyr::semi_join(x = x, y = microorganisms, by = by, ...) ) } @@ -125,7 +125,7 @@ anti_join_microorganisms <- function(x, by = NULL, ...) { x <- checked$x by <- checked$by suppressWarnings( - dplyr::anti_join(x = x, y = AMR::microorganisms, by = by, ...) + dplyr::anti_join(x = x, y = microorganisms, by = by, ...) ) } @@ -149,7 +149,7 @@ joins_check_df <- function(x, by) { message('Joining, by = "', by, '"') # message same as dplyr::join functions } if (is.null(names(by))) { - joinby <- colnames(AMR::microorganisms)[1] + joinby <- colnames(microorganisms)[1] names(joinby) <- by } else { joinby <- by diff --git a/R/like.R b/R/like.R index 2ce4049c..eb4174f6 100755 --- a/R/like.R +++ b/R/like.R @@ -45,15 +45,15 @@ #' #' # also supports multiple patterns, length must be equal to x #' a <- c("Test case", "Something different", "Yet another thing") -#' b <- c("case", "diff", "yet") +#' b <- c( "case", "diff", "yet") #' a %like% b #' #> TRUE TRUE TRUE #' #' # get frequencies of bacteria whose name start with 'Ent' or 'ent' #' library(dplyr) #' example_isolates %>% -#' filter(mo_genus(mo) %like% '^ent') %>% -#' freq(mo_fullname(mo)) +#' filter(mo_name(mo) %like% '^ent') %>% +#' freq(mo_genus(mo)) like <- function(x, pattern, ignore.case = TRUE) { if (length(pattern) > 1) { if (length(x) != length(pattern)) { diff --git a/R/mdro.R b/R/mdro.R index 04f4947b..af1a1b1b 100755 --- a/R/mdro.R +++ b/R/mdro.R @@ -90,6 +90,8 @@ mdro <- function(x, verbose = FALSE, ...) { + check_dataset_integrity() + if (verbose == TRUE & interactive()) { txt <- paste0("WARNING: In Verbose mode, the mdro() function does not return the MDRO results, but instead returns a data set in logbook form with extensive info about which isolates would be MDRO-positive, or why they are not.", "\n\nThis may overwrite your existing data if you use e.g.:", @@ -147,7 +149,7 @@ mdro <- function(x, if (is.null(col_mo) & guideline$code == "tb") { message(blue("NOTE: No column found as input for `col_mo`,", bold("assuming all records contain", italic("Mycobacterium tuberculosis.\n")))) - x$mo <- AMR::as.mo("Mycobacterium tuberculosis") + x$mo <- as.mo("Mycobacterium tuberculosis") col_mo <- "mo" } if (is.null(col_mo)) { diff --git a/R/misc.R b/R/misc.R index b59f2155..0d7c3cb1 100755 --- a/R/misc.R +++ b/R/misc.R @@ -29,12 +29,23 @@ addin_insert_like <- function() { rstudioapi::insertText(" %like% ") } -load_AMR_package <- function() { - if (!"package:AMR" %in% base::search()) { - require(AMR) - # check onLoad() in R/zzz.R: data tables are created there. +check_dataset_integrity <- function() { + if (!all(colnames(microorganisms) %in% c("mo", "fullname", "kingdom", "phylum", + "class", "order", "family", "genus", + "species", "subspecies", "rank", + "col_id", "species_id", "source", + "ref", "prevalence", "snomed"), + na.rm = TRUE) | + NROW(microorganisms) != NROW(microorganismsDT) | + !all(colnames(antibiotics) %in% c("ab", "atc", "cid", "name", "group", + "atc_group1", "atc_group2", "abbreviations", + "synonyms", "oral_ddd", "oral_units", + "iv_ddd", "iv_units", "loinc"), + na.rm = TRUE)) { + stop("Data set `microorganisms` or data set `antibiotics` is overwritten by your global environment and prevents the AMR package from working correctly. Please rename your object before using this function.", call. = FALSE) } - base::invisible() + + invisible(TRUE) } #' @importFrom crayon blue bold red @@ -155,9 +166,6 @@ dataset_UTF8_to_ASCII <- function(df) { col <- df[, i] if (is.list(col)) { col <- lapply(col, function(j) trans(j)) - # for (j in seq_len(length(col))) { - # col[[j]] <- trans(col[[j]]) - # } df[, i] <- list(col) } else { if (is.factor(col)) { diff --git a/R/mo.R b/R/mo.R index 2c75a59c..db621bba 100755 --- a/R/mo.R +++ b/R/mo.R @@ -175,7 +175,7 @@ as.mo <- function(x, reference_df = get_mo_source(), ...) { - load_AMR_package() + check_dataset_integrity() # WHONET: xxx = no growth x[tolower(as.character(paste0(x, ""))) %in% c("", "xxx", "na", "nan")] <- NA_character_ @@ -238,7 +238,7 @@ is.mo <- function(x) { #' @importFrom data.table data.table as.data.table setkey #' @importFrom crayon magenta red blue silver italic #' @importFrom cleaner percentage -# param property a column name of AMR::microorganisms +# param property a column name of microorganisms # param initial_search logical - is FALSE when coming from uncertain tries, which uses exec_as.mo internally too # param dyslexia_mode logical - also check for characters that resemble others # param debug logical - show different lookup texts while searching @@ -254,7 +254,7 @@ exec_as.mo <- function(x, debug = FALSE, reference_data_to_use = microorganismsDT) { - load_AMR_package() + check_dataset_integrity() # WHONET: xxx = no growth x[tolower(as.character(paste0(x, ""))) %in% c("", "xxx", "na", "nan")] <- NA_character_ @@ -365,7 +365,7 @@ exec_as.mo <- function(x, suppressWarnings( x <- data.frame(x = x, stringsAsFactors = FALSE) %>% left_join(reference_df, by = "x") %>% - left_join(AMR::microorganisms, by = "mo") %>% + left_join(microorganisms, by = "mo") %>% pull(property) ) @@ -393,9 +393,9 @@ exec_as.mo <- function(x, on = "fullname_lower", ..property][[1]] - } else if (all(toupper(x) %in% AMR::microorganisms.codes$code)) { + } else if (all(toupper(x) %in% microorganisms.codes$code)) { # commonly used MO codes - y <- as.data.table(AMR::microorganisms.codes)[data.table(code = toupper(x)), + y <- as.data.table(microorganisms.codes)[data.table(code = toupper(x)), on = "code", ] x <- reference_data_to_use[data.table(mo = y[["mo"]]), @@ -412,7 +412,7 @@ exec_as.mo <- function(x, ..property][[1]] x <- y - } else if (!all(x %in% AMR::microorganisms[, property])) { + } else if (!all(x %in% microorganisms[, property])) { strip_whitespace <- function(x, dyslexia_mode) { # all whitespaces (tab, new lines, etc.) should be one space @@ -632,8 +632,8 @@ exec_as.mo <- function(x, } # WHONET and other common LIS codes - if (any(toupper(c(x_backup[i], x_backup_without_spp[i])) %in% AMR::microorganisms.codes$code)) { - mo_found <- AMR::microorganisms.codes[which(AMR::microorganisms.codes$code %in% toupper(c(x_backup[i], x_backup_without_spp[i]))), "mo"][1L] + if (any(toupper(c(x_backup[i], x_backup_without_spp[i])) %in% microorganisms.codes$code)) { + mo_found <- microorganisms.codes[which(microorganisms.codes$code %in% toupper(c(x_backup[i], x_backup_without_spp[i]))), "mo"][1L] if (length(mo_found) > 0) { x[i] <- microorganismsDT[mo == mo_found, ..property][[1]][1L] @@ -1476,8 +1476,7 @@ exec_as.mo <- function(x, msg <- paste0(msg, ": ", paste('"', unique(failures), '"', sep = "", collapse = ", ")) } msg <- paste0(msg, ". Use mo_failures() to review ", plural[2], ". Edit the `allow_uncertain` parameter if needed (see ?as.mo).") - cat("\n") - warning(red(msg), + warning(red(paste0("\n", msg)), call. = FALSE, immediate. = TRUE) # thus will always be shown, even if >= warnings } @@ -1491,8 +1490,7 @@ exec_as.mo <- function(x, } msg <- paste0("Result", plural[1], " of ", nr2char(NROW(uncertainties)), " value", plural[1], " ", plural[3], " guessed with uncertainty. Use mo_uncertainties() to review ", plural[2], ".") - cat("\n") - warning(red(msg), + warning(red(paste0("\n", msg)), call. = FALSE, immediate. = TRUE) # thus will always be shown, even if >= warnings } @@ -1753,7 +1751,7 @@ as.data.frame.mo <- function(x, ...) { "[<-.mo" <- function(i, j, ..., value) { y <- NextMethod() attributes(y) <- attributes(i) - class_integrity_check(y, "microorganism code", c(as.character(AMR::microorganisms$mo), + class_integrity_check(y, "microorganism code", c(as.character(microorganisms$mo), as.character(microorganisms.translation$mo_old))) } #' @exportMethod [[<-.mo @@ -1762,7 +1760,7 @@ as.data.frame.mo <- function(x, ...) { "[[<-.mo" <- function(i, j, ..., value) { y <- NextMethod() attributes(y) <- attributes(i) - class_integrity_check(y, "microorganism code", c(as.character(AMR::microorganisms$mo), + class_integrity_check(y, "microorganism code", c(as.character(microorganisms$mo), as.character(microorganisms.translation$mo_old))) } #' @exportMethod c.mo @@ -1771,7 +1769,7 @@ as.data.frame.mo <- function(x, ...) { c.mo <- function(x, ...) { y <- NextMethod() attributes(y) <- attributes(x) - class_integrity_check(y, "microorganism code", c(as.character(AMR::microorganisms$mo), + class_integrity_check(y, "microorganism code", c(as.character(microorganisms$mo), as.character(microorganisms.translation$mo_old))) } diff --git a/R/mo_property.R b/R/mo_property.R index dcbfd56d..c18724c7 100755 --- a/R/mo_property.R +++ b/R/mo_property.R @@ -145,7 +145,7 @@ mo_fullname <- mo_name #' @rdname mo_property #' @export mo_shortname <- function(x, language = get_locale(), ...) { - x.mo <- AMR::as.mo(x, ...) + x.mo <- as.mo(x, ...) metadata <- get_mo_failures_uncertainties_renamed() replace_empty <- function(x) { @@ -223,7 +223,7 @@ mo_type <- function(x, language = get_locale(), ...) { #' @rdname mo_property #' @export mo_gramstain <- function(x, language = get_locale(), ...) { - x.mo <- AMR::as.mo(x, ...) + x.mo <- as.mo(x, ...) metadata <- get_mo_failures_uncertainties_renamed() x.phylum <- mo_phylum(x.mo) @@ -290,17 +290,17 @@ mo_rank <- function(x, ...) { #' @rdname mo_property #' @export mo_taxonomy <- function(x, language = get_locale(), ...) { - x <- AMR::as.mo(x, ...) + x <- as.mo(x, ...) metadata <- get_mo_failures_uncertainties_renamed() - result <- base::list(kingdom = AMR::mo_kingdom(x, language = language), - phylum = AMR::mo_phylum(x, language = language), - class = AMR::mo_class(x, language = language), - order = AMR::mo_order(x, language = language), - family = AMR::mo_family(x, language = language), - genus = AMR::mo_genus(x, language = language), - species = AMR::mo_species(x, language = language), - subspecies = AMR::mo_subspecies(x, language = language)) + result <- base::list(kingdom = mo_kingdom(x, language = language), + phylum = mo_phylum(x, language = language), + class = mo_class(x, language = language), + order = mo_order(x, language = language), + family = mo_family(x, language = language), + genus = mo_genus(x, language = language), + species = mo_species(x, language = language), + subspecies = mo_subspecies(x, language = language)) load_mo_failures_uncertainties_renamed(metadata) result @@ -309,12 +309,12 @@ mo_taxonomy <- function(x, language = get_locale(), ...) { #' @rdname mo_property #' @export mo_synonyms <- function(x, ...) { - x <- AMR::as.mo(x, ...) + x <- as.mo(x, ...) metadata <- get_mo_failures_uncertainties_renamed() - IDs <- AMR::mo_property(x = x, property = "col_id", language = NULL) + IDs <- mo_property(x = x, property = "col_id", language = NULL) syns <- lapply(IDs, function(col_id) { - res <- sort(AMR::microorganisms.old[which(AMR::microorganisms.old$col_id_new == col_id), "fullname"]) + res <- sort(microorganisms.old[which(microorganisms.old$col_id_new == col_id), "fullname"]) if (length(res) == 0) { NULL } else { @@ -335,7 +335,7 @@ mo_synonyms <- function(x, ...) { #' @rdname mo_property #' @export mo_info <- function(x, language = get_locale(), ...) { - x <- AMR::as.mo(x, ...) + x <- as.mo(x, ...) metadata <- get_mo_failures_uncertainties_renamed() info <- lapply(x, function(y) @@ -360,12 +360,12 @@ mo_info <- function(x, language = get_locale(), ...) { #' @importFrom dplyr %>% left_join select mutate case_when #' @export mo_url <- function(x, open = FALSE, ...) { - mo <- AMR::as.mo(x = x, ... = ...) - mo_names <- AMR::mo_name(mo) + mo <- as.mo(x = x, ... = ...) + mo_names <- mo_name(mo) metadata <- get_mo_failures_uncertainties_renamed() df <- data.frame(mo, stringsAsFactors = FALSE) %>% - left_join(select(AMR::microorganisms, mo, source, species_id), by = "mo") %>% + left_join(select(microorganisms, mo, source, species_id), by = "mo") %>% mutate(url = case_when(source == "CoL" ~ paste0(gsub("{year}", catalogue_of_life$year, catalogue_of_life$url_CoL, fixed = TRUE), "details/species/id/", species_id), source == "DSMZ" ~ @@ -394,7 +394,7 @@ mo_property <- function(x, property = "fullname", language = get_locale(), ...) if (length(property) != 1L) { stop("'property' must be of length 1.") } - if (!property %in% colnames(AMR::microorganisms)) { + if (!property %in% colnames(microorganisms)) { stop("invalid property: '", property, "' - use a column name of the `microorganisms` data set") } @@ -403,7 +403,7 @@ mo_property <- function(x, property = "fullname", language = get_locale(), ...) mo_validate <- function(x, property, ...) { - load_AMR_package() + check_dataset_integrity() dots <- list(...) Becker <- dots$Becker @@ -417,7 +417,7 @@ mo_validate <- function(x, property, ...) { # try to catch an error when inputting an invalid parameter # so the 'call.' can be set to FALSE - tryCatch(x[1L] %in% AMR::microorganisms[1, property], + tryCatch(x[1L] %in% microorganisms[1, property], error = function(e) stop(e$message, call. = FALSE)) if (is.mo(x) @@ -426,7 +426,7 @@ mo_validate <- function(x, property, ...) { # this will not reset mo_uncertainties and mo_failures # because it's already a valid MO x <- exec_as.mo(x, property = property, initial_search = FALSE, ...) - } else if (!all(x %in% pull(AMR::microorganisms, property)) + } else if (!all(x %in% pull(microorganisms, property)) | Becker %in% c(TRUE, "all") | Lancefield %in% c(TRUE, "all")) { x <- exec_as.mo(x, property = property, ...) diff --git a/R/mo_source.R b/R/mo_source.R index c19a01ab..27ed2189 100644 --- a/R/mo_source.R +++ b/R/mo_source.R @@ -202,6 +202,9 @@ get_mo_source <- function() { } mo_source_isvalid <- function(x) { + + check_dataset_integrity() + if (deparse(substitute(x)) == "get_mo_source()") { return(TRUE) } @@ -217,5 +220,5 @@ mo_source_isvalid <- function(x) { if (!"mo" %in% colnames(x)) { return(FALSE) } - all(x$mo %in% c("", AMR::microorganisms$mo, microorganisms.translation$mo_old), na.rm = TRUE) + all(x$mo %in% c("", microorganisms$mo, microorganisms.translation$mo_old), na.rm = TRUE) } diff --git a/R/rsi.R b/R/rsi.R index 99ecfc0c..21c86959 100755 --- a/R/rsi.R +++ b/R/rsi.R @@ -28,10 +28,10 @@ #' @param mo a microorganism code, generated with [as.mo()] #' @param ab an antimicrobial code, generated with [as.ab()] #' @inheritParams first_isolate -#' @param guideline defaults to the latest included EUCAST guideline, run `unique(AMR::rsi_translation$guideline)` for all options +#' @param guideline defaults to the latest included EUCAST guideline, run `unique(rsi_translation$guideline)` for all options #' @param threshold maximum fraction of invalid antimicrobial interpretations of `x`, please see *Examples* #' @param ... parameters passed on to methods -#' @details Run `unique(AMR::rsi_translation$guideline)` for a list of all supported guidelines. The repository of this package contains [this machine readable version](https://gitlab.com/msberends/AMR/blob/master/data-raw/rsi_translation.txt) of these guidelines. +#' @details Run `unique(rsi_translation$guideline)` for a list of all supported guidelines. The repository of this package contains [this machine readable version](https://gitlab.com/msberends/AMR/blob/master/data-raw/rsi_translation.txt) of these guidelines. #' #' These guidelines are machine readable, since [](https://gitlab.com/msberends/AMR/blob/master/data-raw/rsi_translation.txt). #' @@ -66,11 +66,12 @@ #' # interpret MIC values #' as.rsi(x = as.mic(2), #' mo = as.mo("S. pneumoniae"), -#' ab = "AMX", +#' ab = "AMP", #' guideline = "EUCAST") -#' as.rsi(x = as.mic(4), -#' mo = as.mo("S. pneumoniae"), -#' ab = "AMX", +#' +#' as.rsi(x = as.disk(18), +#' mo = "Strep pneu", # `mo` will be coerced with as.mo() +#' ab = "ampicillin", # and `ab` with as.ab() #' guideline = "EUCAST") #' #' plot(rsi_data) # for percentages @@ -188,7 +189,7 @@ as.rsi.disk <- function(x, mo, ab, guideline = "EUCAST", ...) { get_guideline <- function(guideline) { guideline_param <- toupper(guideline) if (guideline_param %in% c("CLSI", "EUCAST")) { - guideline_param <- AMR::rsi_translation %>% + guideline_param <- rsi_translation %>% filter(guideline %like% guideline_param) %>% pull(guideline) %>% sort() %>% @@ -196,9 +197,9 @@ get_guideline <- function(guideline) { .[1] } - if (!guideline_param %in% AMR::rsi_translation$guideline) { + if (!guideline_param %in% rsi_translation$guideline) { stop(paste0("invalid guideline: '", guideline, - "'.\nValid guidelines are: ", paste0("'", rev(sort(unique(AMR::rsi_translation$guideline))), "'", collapse = ", ")), + "'.\nValid guidelines are: ", paste0("'", rev(sort(unique(rsi_translation$guideline))), "'", collapse = ", ")), call. = FALSE) } @@ -222,6 +223,7 @@ exec_as.rsi <- function(method, x, mo, ab, guideline) { mo_order <- as.mo(mo_order(mo)) mo_becker <- as.mo(mo, Becker = TRUE) mo_lancefield <- as.mo(mo, Lancefield = TRUE) + mo_other <- as.mo("other") guideline_coerced <- get_guideline(guideline) if (guideline_coerced != guideline) { @@ -229,7 +231,7 @@ exec_as.rsi <- function(method, x, mo, ab, guideline) { } new_rsi <- rep(NA_character_, length(x)) - trans <- AMR::rsi_translation %>% + trans <- rsi_translation %>% filter(guideline == guideline_coerced & method == method_param) %>% mutate(lookup = paste(mo, ab)) @@ -239,6 +241,7 @@ exec_as.rsi <- function(method, x, mo, ab, guideline) { lookup_order <- paste(mo_order, ab) lookup_becker <- paste(mo_becker, ab) lookup_lancefield <- paste(mo_lancefield, ab) + lookup_other <- paste(mo_other, ab) for (i in seq_len(length(x))) { get_record <- trans %>% @@ -247,7 +250,8 @@ exec_as.rsi <- function(method, x, mo, ab, guideline) { lookup_family[i], lookup_order[i], lookup_becker[i], - lookup_lancefield[i])) %>% + lookup_lancefield[i], + lookup_other[i])) %>% # be as specific as possible (i.e. prefer species over genus): arrange(desc(nchar(mo))) %>% .[1L, ] diff --git a/R/rsi_calc.R b/R/rsi_calc.R index 4d7602b4..896ec5ff 100755 --- a/R/rsi_calc.R +++ b/R/rsi_calc.R @@ -179,6 +179,8 @@ rsi_calc_df <- function(type, # "proportion" or "count" combine_IR = FALSE, combine_SI_missing = FALSE) { + check_dataset_integrity() + if (!"data.frame" %in% class(data)) { stop(paste0("`", type, "_df` must be called on a data.frame"), call. = FALSE) } @@ -252,7 +254,7 @@ rsi_calc_df <- function(type, # "proportion" or "count" arrange(antibiotic, interpretation) if (!translate_ab == FALSE) { - res <- res %>% mutate(antibiotic = AMR::ab_property(antibiotic, property = translate_ab, language = language)) + res <- res %>% mutate(antibiotic = ab_property(antibiotic, property = translate_ab, language = language)) } as.data.frame(res, stringsAsFactors = FALSE) diff --git a/data-raw/internals.R b/data-raw/internals.R index 42df5888..5eb0e43e 100644 --- a/data-raw/internals.R +++ b/data-raw/internals.R @@ -73,7 +73,8 @@ rm(microorganisms.translation) library(dplyr, warn.conflicts = FALSE, quietly = TRUE) usethis::ui_done(paste0("Saving raw data to {usethis::ui_value('/data-raw/')}")) devtools::load_all(quiet = TRUE) -write.table(AMR::rsi_translation, +# give official names to ABs and MOs +write.table(rsi_translation %>% mutate(ab = ab_name(ab), mo = mo_name(mo)), "data-raw/rsi_translation.txt", sep = "\t", na = "", row.names = FALSE) write.table(microorganisms %>% mutate_if(~!is.numeric(.), as.character), "data-raw/microorganisms.txt", sep = "\t", na = "", row.names = FALSE) diff --git a/data-raw/read_EUCAST.R b/data-raw/read_EUCAST.R new file mode 100644 index 00000000..34dcdcb9 --- /dev/null +++ b/data-raw/read_EUCAST.R @@ -0,0 +1,206 @@ +# ==================================================================== # +# TITLE # +# Antimicrobial Resistance (AMR) Analysis # +# # +# SOURCE # +# https://gitlab.com/msberends/AMR # +# # +# LICENCE # +# (c) 2018-2020 Berends MS, Luz CF et al. # +# # +# This R package is free software; you can freely use and distribute # +# it for both personal and commercial purposes under the terms of the # +# GNU General Public License version 2.0 (GNU GPL-2), as published by # +# the Free Software Foundation. # +# # +# We created this package for both routine data analysis and academic # +# research and it was publicly released in the hope that it will be # +# useful, but it comes WITHOUT ANY WARRANTY OR LIABILITY. # +# Visit our website for more info: https://msberends.gitlab.io/AMR. # +# ==================================================================== # + +library(openxlsx) +library(dplyr) +library(cleaner) +library(AMR) + +read_EUCAST <- function(sheet, file = "data-raw/v_10.0_Breakpoint_Tables.xlsx") { + + message("Getting sheet ", sheet) + sheet.bak <- sheet + + raw_data <- read.xlsx(xlsxFile = file, + sheet = sheet, + colNames = FALSE, + skipEmptyRows = FALSE, + skipEmptyCols = FALSE, + fillMergedCells = TRUE, + na.strings = c("", "-", "NA", "IE", "IP")) + + # in the info header in the Excel file, EUCAST mentions which genera are targeted + if (sheet %like% "anaerob.*Gram.*posi") { + sheet <- paste0(c("Actinomyces", "Bifidobacterium", "Clostridioides", + "Clostridium", "Cutibacterium", "Eggerthella", + "Eubacterium", "Lactobacillus", "Propionibacterium", + "Staphylococcus saccharolyticus"), + collapse = "_") + } else if (sheet %like% "anaerob.*Gram.*nega") { + sheet <- paste0(c("Bacteroides", + "Bilophila", + "Fusobacterium", + "Mobiluncus", + "Parabacteroides", + "Porphyromonas", + "Prevotella"), + collapse = "_") + } else if (sheet == "Streptococcus A,B,C,G") { + sheet <- paste0(microorganisms %>% + filter(genus == "Streptococcus") %>% + mutate(lancefield = mo_name(mo, Lancefield = TRUE)) %>% + filter(lancefield %like% "^Streptococcus group") %>% + pull(fullname), + collapse = "_") + } else if (sheet %like% "PK.*PD") { + sheet <- "UNKNOWN" + } + mo_sheet <- paste0(as.mo(unlist(strsplit(sheet, "_"))), collapse = "|") + + set_columns_names <- function(x, cols) { + colnames(x) <- cols[1:length(colnames(x))] + x + } + + get_mo <- function(x) { + for (i in seq_len(length(x))) { + y <- trimws(unlist(strsplit(x[i], "(,|and)"))) + y <- trimws(gsub("[(].*[)]", "", y)) + y <- suppressWarnings(as.mo(y, allow_uncertain = FALSE)) + y <- y[!is.na(y) & y != "UNKNOWN"] + x[i] <- paste(y, collapse = "|") + } + x + } + + MICs_with_trailing_superscript <- c(0.0011:0.0019, 11:19, 21:29, 0.51:0.59, 41:49, + 81:89, 0.031:0.039, 0.061:0.069, 0.251:0.259, + 0.1251:0.1259, 161:169, 321:329) + + has_zone_diameters <- rep(any(unlist(raw_data) %like% "zone diameter"), nrow(raw_data)) + + cleaned <- raw_data %>% + as_tibble() %>% + set_columns_names(LETTERS) %>% + transmute(drug = A, + MIC_S = B, + MIC_R = C, + disk_dose = ifelse(has_zone_diameters, E, NA_character_), + disk_S = ifelse(has_zone_diameters, `F`, NA_character_), + disk_R = ifelse(has_zone_diameters, G, NA_character_)) %>% + filter(!is.na(drug), + !(is.na(MIC_S) & is.na(MIC_R) & is.na(disk_S) & is.na(disk_R)), + !MIC_S %like% "(MIC|S ≤|note)", + drug != MIC_S) %>% + mutate(administration = case_when(drug %like% "[( ]oral" ~ "oral", + drug %like% "[( ]iv" ~ "iv", + TRUE ~ NA_character_), + uti = ifelse(drug %like% "(UTI|urinary|urine)", TRUE, FALSE), + systemic = ifelse(drug %like% "(systemic|septic)", TRUE, FALSE), + mo = ifelse(drug %like% "([.]|spp)", get_mo(drug), mo_sheet)) %>% + # clean disk doses + mutate(disk_dose = clean_character(disk_dose, remove = "[^0-9.-]")) %>% + # clean MIC and disk values + mutate(MIC_S = gsub(".,.", "", MIC_S), # remove superscript notes with comma, like 0.5^2,3 + MIC_R = gsub(".,.", "", MIC_R), + disk_S = gsub(".,.", "", disk_S), + disk_R = gsub(".,.", "", disk_R), + MIC_S = clean_double(MIC_S), # make them valid numeric values + MIC_R = clean_double(MIC_R), + disk_S = clean_integer(disk_S), + disk_R = clean_integer(disk_R), + # invalid MIC values have a superscript text, delete those + MIC_S = ifelse(MIC_S %in% MICs_with_trailing_superscript, + substr(MIC_S, 1, nchar(MIC_S) - 1), + MIC_S), + MIC_R = ifelse(MIC_R %in% MICs_with_trailing_superscript, + substr(MIC_R, 1, nchar(MIC_R) - 1), + MIC_R) + ) %>% + # clean drug names + mutate(drug = gsub(" ?[(, ].*$", "", drug), + drug = gsub("[1-9]+$", "", drug), + ab = as.ab(drug)) %>% + select(ab, mo, everything(), -drug) + + # new row for every different MO mentioned + for (i in 1:nrow(cleaned)) { + mo <- cleaned[i, "mo", drop = TRUE] + if (grepl(pattern = "|", mo, fixed = TRUE)) { + mo_vect <- unlist(strsplit(mo, "|", fixed = TRUE)) + cleaned[i, "mo"] <- mo_vect[1] + for (j in seq_len(length(mo_vect))) { + cleaned <- bind_rows(cleaned, cleaned[i ,]) + cleaned[nrow(cleaned), "mo"] <- mo_vect[j] + } + } + } + + cleaned <- cleaned %>% + distinct(ab, mo, administration, uti, systemic, .keep_all = TRUE) %>% + arrange(ab, mo) %>% + mutate_at(c("MIC_S", "MIC_R", "disk_S", "disk_R"), as.double) %>% + pivot_longer(c("MIC_S", "MIC_R", "disk_S", "disk_R"), "type") %>% + mutate(method = ifelse(type %like% "MIC", "MIC", "DISK"), + type = gsub("^.*_", "breakpoint_", type)) %>% + pivot_wider(names_from = type, values_from = value) %>% + mutate(guideline = "EUCAST 2020", + disk_dose = ifelse(method == "DISK", disk_dose, NA_character_), + mo = ifelse(mo == "", mo_sheet, mo)) %>% + filter(!(is.na(breakpoint_S) & is.na(breakpoint_R))) %>% + # comply with rsi_translation for now + transmute(guideline, + method, + site = case_when(uti ~ "UTI", + systemic ~ "Systemic", + TRUE ~ administration), + mo, ab, + ref_tbl = sheet.bak, + disk_dose = ifelse(!is.na(disk_dose), paste0(disk_dose, "ug"), NA_character_), + breakpoint_S, + breakpoint_R) + + cleaned +} + +sheets_to_analyse <- c("Enterobacterales", + "Pseudomonas", + "S.maltophilia", + "Acinetobacter", + "Staphylococcus", + "Enterococcus", + "Streptococcus A,B,C,G", + "S.pneumoniae", + "Viridans group streptococci", + "H.influenzae", + "M.catarrhalis", + "N.gonorrhoeae", + "N.meningitidis", + "Anaerobes, Grampositive", + "C.difficile", + "Anaerobes, Gramnegative", + "H.pylori", + "L.monocytogenes", + "P.multocida", + "C.jejuni_C.coli", + "Corynebacterium", + "A.sanguinicola_A.urinae", + "K.kingae", + "Aeromonas", + "B.pseudomallei", + "M.tuberculosis", + "PK PD breakpoints") + +new_EUCAST <- read_EUCAST(sheets_to_analyse[1]) # takes the longest time +for (i in 2:length(sheets_to_analyse)) { + new_EUCAST <<- new_EUCAST %>% bind_rows(read_EUCAST(sheets_to_analyse[i])) +} + diff --git a/data-raw/reproduction_of_rsi_translation.R b/data-raw/reproduction_of_rsi_translation.R index 0941609c..c8374efb 100644 --- a/data-raw/reproduction_of_rsi_translation.R +++ b/data-raw/reproduction_of_rsi_translation.R @@ -3,7 +3,7 @@ library(dplyr) # Installed WHONET 2019 software on Windows (http://www.whonet.org/software.html), # opened C:\WHONET\Codes\WHONETCodes.mdb in MS Access # and exported table 'DRGLST1' to MS Excel -DRGLST1 <- readxl::read_excel("data-raw/DRGLST1.xlsx") +DRGLST1 <- readxl::read_excel("data-raw/DRGLST1.xlsx", na = c("", "NA", "-")) rsi_translation <- DRGLST1 %>% # only keep CLSI and EUCAST guidelines: filter(GUIDELINES %like% "^(CLSI|EUCST)") %>% @@ -38,11 +38,17 @@ tbl_disk <- rsi_translation %>% rsi_translation <- bind_rows(tbl_mic, tbl_disk) %>% rename(disk_dose = dose_disk) %>% mutate(disk_dose = gsub("µ", "u", disk_dose)) %>% - select(-ends_with("_mic"), -ends_with("_disk")) %>% + select(-ends_with("_mic"), -ends_with("_disk")) + +# add new EUCAST with read_EUCAST.R +rsi_translation <- rsi_translation %>% + bind_rows(new_EUCAST) %>% + mutate(uti = site %like% "(UTI|urinary)") %>% as.data.frame(stringsAsFactors = FALSE) %>% # force classes again mutate(mo = as.mo(mo), - ab = as.ab(ab)) + ab = as.ab(ab)) %>% + arrange(desc(guideline), ab, mo, method) # save to package usethis::use_data(rsi_translation, overwrite = TRUE) diff --git a/data-raw/rsi_translation.txt b/data-raw/rsi_translation.txt index 31803d90..7e7283ca 100644 --- a/data-raw/rsi_translation.txt +++ b/data-raw/rsi_translation.txt @@ -1,13976 +1,15752 @@ -"guideline" "method" "site" "mo" "ab" "ref_tbl" "disk_dose" "breakpoint_S" "breakpoint_R" -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "AMC" "Enterobacteriaceae" 8 16 -"EUCAST 2019" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "AMC" "Enterobacteriaceae" 32 64 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "AMK" "Enterobacteriaceae" 8 32 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "AMP" "Enterobacteriaceae" 8 16 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "AMX" "Enterobacteriaceae" 8 16 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "ATM" "Enterobacteriaceae" 1 8 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "CAZ" "Enterobacteriaceae" 1 8 -"EUCAST 2019" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CFM" "Enterobacteriaceae" 1 2 -"EUCAST 2019" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CFR" "Enterobacteriaceae" 16 32 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "CHL" "Enterobacteriaceae" 8 16 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "CIP" "Enterobacteriaceae" 0.25 1 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "COL" "Enterobacteriaceae" 2 4 -"EUCAST 2019" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CPD" "Enterobacteriaceae" 1 2 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "CPT" "Enterobacteriaceae" 0.5 1 -"EUCAST 2019" "MIC" "Oral" "B_[FAM]_ENTRBCTR" "CRO" "Enterobacteriaceae" 1 4 -"EUCAST 2019" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CTB" "Enterobacteriaceae" 1 2 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "CTX" "Enterobacteriaceae" 1 4 -"EUCAST 2019" "MIC" "IV" "B_[FAM]_ENTRBCTR" "CXM" "Enterobacteriaceae" 8 16 -"EUCAST 2019" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CXM" "Enterobacteriaceae" 8 16 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "CZA" "Enterobacteriaceae" 8 16 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "CZT" "Enterobacteriaceae" 1 2 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "ERV" "Enterobacteriaceae" 0.5 1 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "ETP" "Enterobacteriaceae" 0.5 1 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "FEP" "Enterobacteriaceae" 1 8 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "FOS" "Enterobacteriaceae" 32 64 -"EUCAST 2019" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "FOS" "Enterobacteriaceae" 32 64 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "GEN" "Enterobacteriaceae" 2 8 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "IPM" "Enterobacteriaceae" 2 8 -"EUCAST 2019" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "LEX" "Enterobacteriaceae" 16 32 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "LVX" "Enterobacteriaceae" 0.5 2 -"EUCAST 2019" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "MEC" "Enterobacteriaceae" 8 16 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "MEM" "Enterobacteriaceae" 2 16 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "MEV" "Enterobacteriaceae" 8 16 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "MFX" "Enterobacteriaceae" 0.25 0.5 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "NET" "Enterobacteriaceae" 2 8 -"EUCAST 2019" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "NIT" "Enterobacteriaceae" 64 128 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "NOR" "Enterobacteriaceae" 0.5 2 -"EUCAST 2019" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "NTR" "Enterobacteriaceae" 16 32 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "OFX" "Enterobacteriaceae" 0.25 1 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "PIP" "Enterobacteriaceae" 8 32 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "SAM" "Enterobacteriaceae" 8 16 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "SXT" "Enterobacteriaceae" 2 8 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "TCC" "Enterobacteriaceae" 8 32 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "TGC" "Enterobacteriaceae" 0.5 1 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "TIC" "Enterobacteriaceae" 8 32 -"EUCAST 2019" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "TMP" "Enterobacteriaceae" 2 8 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "TOB" "Enterobacteriaceae" 2 8 -"EUCAST 2019" "MIC" "B_[FAM]_ENTRBCTR" "TZP" "Enterobacteriaceae" 8 32 -"EUCAST 2019" "MIC" "B_ACNTB" "AMK" "Acinetobacter spp." 8 32 -"EUCAST 2019" "MIC" "B_ACNTB" "CIP" "Acinetobacter spp." 0.064 2 -"EUCAST 2019" "MIC" "B_ACNTB" "COL" "Acinetobacter spp." 2 4 -"EUCAST 2019" "MIC" "B_ACNTB" "GEN" "Acinetobacter spp." 4 8 -"EUCAST 2019" "MIC" "B_ACNTB" "IPM" "Acinetobacter spp." 2 8 -"EUCAST 2019" "MIC" "B_ACNTB" "LVX" "Acinetobacter spp." 0.5 2 -"EUCAST 2019" "MIC" "B_ACNTB" "MEM" "Acinetobacter spp." 2 16 -"EUCAST 2019" "MIC" "B_ACNTB" "NET" "Acinetobacter spp." 4 8 -"EUCAST 2019" "MIC" "B_ACNTB" "SXT" "Acinetobacter spp." 2 8 -"EUCAST 2019" "MIC" "B_ACNTB" "TOB" "Acinetobacter spp." 4 8 -"EUCAST 2019" "MIC" "B_AERCC" "AMP" "Aerococcus" 0.25 0.5 -"EUCAST 2019" "MIC" "B_AERCC" "CIP" "Aerococcus" 2 4 -"EUCAST 2019" "MIC" "B_AERCC" "LVX" "Aerococcus" 2 4 -"EUCAST 2019" "MIC" "B_AERCC" "MEM" "Aerococcus" 0.25 0.5 -"EUCAST 2019" "MIC" "B_AERCC" "NIT" "Aerococcus" 16 32 -"EUCAST 2019" "MIC" "B_AERCC" "PEN" "Aerococcus" 0.125 0.25 -"EUCAST 2019" "MIC" "B_AERCC" "RIF" "Aerococcus" 0.125 0.25 -"EUCAST 2019" "MIC" "B_AERCC" "VAN" "Aerococcus" 1 2 -"EUCAST 2019" "MIC" "B_CMPYL" "CIP" "Campylobacter jejuni and coli" 0.5 1 -"EUCAST 2019" "MIC" "B_CMPYL" "TCY" "Campylobacter jejuni and coli" 2 4 -"EUCAST 2019" "MIC" "B_CMPYL_COLI" "ERY" "Campylobacter jejuni and coli" 8 16 -"EUCAST 2019" "MIC" "B_CMPYL_JEJN" "ERY" "Campylobacter jejuni and coli" 4 8 -"EUCAST 2019" "MIC" "B_CRYNB" "CIP" "Corynebacterium spp." 1 2 -"EUCAST 2019" "MIC" "B_CRYNB" "CLI" "Corynebacterium spp." 0.5 1 -"EUCAST 2019" "MIC" "B_CRYNB" "GEN" "Corynebacterium spp." 1 2 -"EUCAST 2019" "MIC" "B_CRYNB" "LNZ" "Corynebacterium spp." 2 4 -"EUCAST 2019" "MIC" "B_CRYNB" "MFX" "Corynebacterium spp." 0.5 1 -"EUCAST 2019" "MIC" "B_CRYNB" "PEN" "Corynebacterium spp." 0.125 0.25 -"EUCAST 2019" "MIC" "B_CRYNB" "RIF" "Corynebacterium spp." 0.064 1 -"EUCAST 2019" "MIC" "B_CRYNB" "TCY" "Corynebacterium spp." 2 4 -"EUCAST 2019" "MIC" "B_CRYNB" "VAN" "Corynebacterium spp." 2 4 -"EUCAST 2019" "MIC" "B_CTRDM_DFFC" "DAP" "C. difficile" 4 -"EUCAST 2019" "MIC" "B_CTRDM_DFFC" "FUS" "C. difficile" 2 -"EUCAST 2019" "MIC" "B_CTRDM_DFFC" "MFX" "C. difficile" 4 -"EUCAST 2019" "MIC" "B_CTRDM_DFFC" "MTR" "C. difficile" 2 4 -"EUCAST 2019" "MIC" "B_CTRDM_DFFC" "RIF" "C. difficile" 0.004 -"EUCAST 2019" "MIC" "B_CTRDM_DFFC" "TGC" "C. difficile" 0.25 -"EUCAST 2019" "MIC" "B_CTRDM_DFFC" "VAN" "C. difficile" 2 4 -"EUCAST 2019" "MIC" "B_ENTRC" "AMC" "Enterococcus" 4 16 -"EUCAST 2019" "MIC" "B_ENTRC" "AMP" "Enterococcus" 4 16 -"EUCAST 2019" "MIC" "B_ENTRC" "AMX" "Enterococcus" 4 16 -"EUCAST 2019" "MIC" "UTI" "B_ENTRC" "CIP" "Enterococcus" 4 8 -"EUCAST 2019" "MIC" "B_ENTRC" "ERV" "Enterococcus" 0.125 0.25 -"EUCAST 2019" "MIC" "B_ENTRC" "GEH" "Enterococcus" 128 128 -"EUCAST 2019" "MIC" "B_ENTRC" "GEN" "Enterococcus" 128 128 -"EUCAST 2019" "MIC" "B_ENTRC" "IPM" "Enterococcus" 4 16 -"EUCAST 2019" "MIC" "B_ENTRC" "LNZ" "Enterococcus" 4 8 -"EUCAST 2019" "MIC" "UTI" "B_ENTRC" "LVX" "Enterococcus" 4 8 -"EUCAST 2019" "MIC" "B_ENTRC" "QDA" "Enterococcus" 1 8 -"EUCAST 2019" "MIC" "B_ENTRC" "SAM" "Enterococcus" 4 16 -"EUCAST 2019" "MIC" "B_ENTRC" "STH" "Enterococcus" 512 1024 -"EUCAST 2019" "MIC" "B_ENTRC" "STR" "Enterococcus" 512 1024 -"EUCAST 2019" "MIC" "B_ENTRC" "SXT" "Enterococcus" 0.032 2 -"EUCAST 2019" "MIC" "B_ENTRC" "TEC" "Enterococcus" 2 4 -"EUCAST 2019" "MIC" "B_ENTRC" "TGC" "Enterococcus" 0.25 0.5 -"EUCAST 2019" "MIC" "UTI" "B_ENTRC" "TMP" "Enterococcus" 0.032 2 -"EUCAST 2019" "MIC" "B_ENTRC" "VAN" "Enterococcus" 4 8 -"EUCAST 2019" "MIC" "UTI" "B_ENTRC_FCLS" "NIT" "Enterococcus" 64 128 -"EUCAST 2019" "MIC" "B_HLCBCT_PYLR" "AMX" "H. pylori" 0.125 0.25 -"EUCAST 2019" "MIC" "B_HLCBCT_PYLR" "CLR" "H. pylori" 0.25 1 -"EUCAST 2019" "MIC" "B_HLCBCT_PYLR" "LVX" "H. pylori" 1 2 -"EUCAST 2019" "MIC" "B_HLCBCT_PYLR" "MTR" "H. pylori" 8 16 -"EUCAST 2019" "MIC" "B_HLCBCT_PYLR" "RIF" "H. pylori" 1 2 -"EUCAST 2019" "MIC" "B_HLCBCT_PYLR" "TCY" "H. pylori" 1 2 -"EUCAST 2019" "MIC" "B_HMPHL_INFL" "AMC" "H. influenzae" 2 4 -"EUCAST 2019" "MIC" "B_HMPHL_INFL" "AMP" "H. influenzae" 1 2 -"EUCAST 2019" "MIC" "B_HMPHL_INFL" "AMX" "H. influenzae" 2 4 -"EUCAST 2019" "MIC" "B_HMPHL_INFL" "AZM" "H. influenzae" 4 8 -"EUCAST 2019" "MIC" "B_HMPHL_INFL" "CFM" "H. influenzae" 0.125 0.25 -"EUCAST 2019" "MIC" "B_HMPHL_INFL" "CHL" "H. influenzae" 2 4 -"EUCAST 2019" "MIC" "B_HMPHL_INFL" "CIP" "H. influenzae" 0.064 0.12 -"EUCAST 2019" "MIC" "B_HMPHL_INFL" "CLR" "H. influenzae" 32 64 -"EUCAST 2019" "MIC" "B_HMPHL_INFL" "CPD" "H. influenzae" 0.25 0.5 -"EUCAST 2019" "MIC" "B_HMPHL_INFL" "CPT" "H. influenzae" 0.032 0.06 -"EUCAST 2019" "MIC" "B_HMPHL_INFL" "CRO" "H. influenzae" 0.125 0.25 -"EUCAST 2019" "MIC" "B_HMPHL_INFL" "CTB" "H. influenzae" 1 2 -"EUCAST 2019" "MIC" "B_HMPHL_INFL" "CTX" "H. influenzae" 0.125 0.25 -"EUCAST 2019" "MIC" "IV" "B_HMPHL_INFL" "CXM" "H. influenzae" 1 4 -"EUCAST 2019" "MIC" "Oral" "B_HMPHL_INFL" "CXM" "H. influenzae" 0.125 2 -"EUCAST 2019" "MIC" "B_HMPHL_INFL" "DOX" "H. influenzae" 1 4 -"EUCAST 2019" "MIC" "B_HMPHL_INFL" "ERY" "H. influenzae" 16 32 -"EUCAST 2019" "MIC" "B_HMPHL_INFL" "ETP" "H. influenzae" 0.5 1 -"EUCAST 2019" "MIC" "B_HMPHL_INFL" "FEP" "H. influenzae" 0.25 0.5 -"EUCAST 2019" "MIC" "B_HMPHL_INFL" "IPM" "H. influenzae" 2 4 -"EUCAST 2019" "MIC" "B_HMPHL_INFL" "LVX" "H. influenzae" 0.064 0.12 -"EUCAST 2019" "MIC" "Non-meningitis" "B_HMPHL_INFL" "MEM" "H. influenzae" 2 4 -"EUCAST 2019" "MIC" "Meningitis" "B_HMPHL_INFL" "MEM" "H. influenzae" 0.25 0.5 -"EUCAST 2019" "MIC" "B_HMPHL_INFL" "MFX" "H. influenzae" 0.125 0.25 -"EUCAST 2019" "MIC" "B_HMPHL_INFL" "MNO" "H. influenzae" 1 4 -"EUCAST 2019" "MIC" "B_HMPHL_INFL" "OFX" "H. influenzae" 0.064 0.12 -"EUCAST 2019" "MIC" "Prophylaxis" "B_HMPHL_INFL" "RIF" "H. influenzae" 1 2 -"EUCAST 2019" "MIC" "B_HMPHL_INFL" "RXT" "H. influenzae" -"EUCAST 2019" "MIC" "B_HMPHL_INFL" "SAM" "H. influenzae" 1 2 -"EUCAST 2019" "MIC" "B_HMPHL_INFL" "SXT" "H. influenzae" 0.5 2 -"EUCAST 2019" "MIC" "B_HMPHL_INFL" "TCY" "H. influenzae" 1 4 -"EUCAST 2019" "MIC" "B_HMPHL_INFL" "TLT" "H. influenzae" 8 16 -"EUCAST 2019" "MIC" "B_HMPHL_INFL" "TZP" "H. influenzae" 0.25 0.5 -"EUCAST 2019" "MIC" "B_KGLLA_KING" "AMP" "Kingella" 0.064 0.12 -"EUCAST 2019" "MIC" "B_KGLLA_KING" "AMX" "Kingella" 0.125 0.25 -"EUCAST 2019" "MIC" "B_KGLLA_KING" "AZM" "Kingella" 0.25 0.5 -"EUCAST 2019" "MIC" "B_KGLLA_KING" "CIP" "Kingella" 0.064 0.12 -"EUCAST 2019" "MIC" "B_KGLLA_KING" "CLR" "Kingella" 0.5 1 -"EUCAST 2019" "MIC" "B_KGLLA_KING" "CRO" "Kingella" 0.064 0.12 -"EUCAST 2019" "MIC" "B_KGLLA_KING" "CTX" "Kingella" 0.125 0.25 -"EUCAST 2019" "MIC" "B_KGLLA_KING" "CXM" "Kingella" 0.5 1 -"EUCAST 2019" "MIC" "B_KGLLA_KING" "DOX" "Kingella" 0.5 1 -"EUCAST 2019" "MIC" "B_KGLLA_KING" "ERY" "Kingella" 0.5 1 -"EUCAST 2019" "MIC" "B_KGLLA_KING" "LVX" "Kingella" 0.125 0.25 -"EUCAST 2019" "MIC" "B_KGLLA_KING" "MEM" "Kingella" 0.032 0.06 -"EUCAST 2019" "MIC" "B_KGLLA_KING" "PEN" "Kingella" 0.032 0.06 -"EUCAST 2019" "MIC" "B_KGLLA_KING" "RIF" "Kingella" 0.5 1 -"EUCAST 2019" "MIC" "B_KGLLA_KING" "SXT" "Kingella" 0.25 0.5 -"EUCAST 2019" "MIC" "B_KGLLA_KING" "TCY" "Kingella" 0.5 1 -"EUCAST 2019" "MIC" "B_LISTR_MNCY" "AMP" "Listeria monocytogenes" 1 2 -"EUCAST 2019" "MIC" "B_LISTR_MNCY" "ERY" "Listeria monocytogenes" 1 2 -"EUCAST 2019" "MIC" "B_LISTR_MNCY" "MEM" "Listeria monocytogenes" 0.25 0.5 -"EUCAST 2019" "MIC" "B_LISTR_MNCY" "PEN" "Listeria monocytogenes" 1 2 -"EUCAST 2019" "MIC" "B_LISTR_MNCY" "SXT" "Listeria monocytogenes" 0.064 0.12 -"EUCAST 2019" "MIC" "B_MRGNL_MRGN" "IPM" "Enterobacteriaceae" 0.125 8 -"EUCAST 2019" "MIC" "B_MRXLL_CTRR" "AMC" "M. catarrhalis" 1 2 -"EUCAST 2019" "MIC" "B_MRXLL_CTRR" "AZM" "M. catarrhalis" 0.25 1 -"EUCAST 2019" "MIC" "B_MRXLL_CTRR" "CFM" "M. catarrhalis" 0.5 2 -"EUCAST 2019" "MIC" "B_MRXLL_CTRR" "CHL" "M. catarrhalis" 2 4 -"EUCAST 2019" "MIC" "B_MRXLL_CTRR" "CIP" "M. catarrhalis" 0.125 0.25 -"EUCAST 2019" "MIC" "B_MRXLL_CTRR" "CLR" "M. catarrhalis" 0.25 1 -"EUCAST 2019" "MIC" "B_MRXLL_CTRR" "CRO" "M. catarrhalis" 1 4 -"EUCAST 2019" "MIC" "B_MRXLL_CTRR" "CTX" "M. catarrhalis" 1 4 -"EUCAST 2019" "MIC" "IV" "B_MRXLL_CTRR" "CXM" "M. catarrhalis" 4 16 -"EUCAST 2019" "MIC" "Oral" "B_MRXLL_CTRR" "CXM" "M. catarrhalis" 0.125 8 -"EUCAST 2019" "MIC" "B_MRXLL_CTRR" "DOX" "M. catarrhalis" 1 4 -"EUCAST 2019" "MIC" "B_MRXLL_CTRR" "ERY" "M. catarrhalis" 0.25 1 -"EUCAST 2019" "MIC" "B_MRXLL_CTRR" "ETP" "M. catarrhalis" 0.5 1 -"EUCAST 2019" "MIC" "B_MRXLL_CTRR" "FEP" "M. catarrhalis" 4 8 -"EUCAST 2019" "MIC" "B_MRXLL_CTRR" "IPM" "M. catarrhalis" 2 4 -"EUCAST 2019" "MIC" "B_MRXLL_CTRR" "LVX" "M. catarrhalis" 0.125 0.25 -"EUCAST 2019" "MIC" "B_MRXLL_CTRR" "MEM" "M. catarrhalis" 2 4 -"EUCAST 2019" "MIC" "B_MRXLL_CTRR" "MFX" "M. catarrhalis" 0.25 0.5 -"EUCAST 2019" "MIC" "B_MRXLL_CTRR" "MNO" "M. catarrhalis" 1 4 -"EUCAST 2019" "MIC" "B_MRXLL_CTRR" "OFX" "M. catarrhalis" 0.25 0.5 -"EUCAST 2019" "MIC" "B_MRXLL_CTRR" "RXT" "M. catarrhalis" 0.5 2 -"EUCAST 2019" "MIC" "B_MRXLL_CTRR" "SAM" "M. catarrhalis" 1 2 -"EUCAST 2019" "MIC" "B_MRXLL_CTRR" "SXT" "M. catarrhalis" 0.5 2 -"EUCAST 2019" "MIC" "B_MRXLL_CTRR" "TCY" "M. catarrhalis" 1 4 -"EUCAST 2019" "MIC" "B_MRXLL_CTRR" "TLT" "M. catarrhalis" 0.25 1 -"EUCAST 2019" "MIC" "B_NESSR_GNRR" "CFM" "N. gonorrhoeae" 0.125 0.25 -"EUCAST 2019" "MIC" "B_NESSR_GNRR" "CIP" "N. gonorrhoeae" 0.032 0.12 -"EUCAST 2019" "MIC" "B_NESSR_GNRR" "CRO" "N. gonorrhoeae" 0.125 0.25 -"EUCAST 2019" "MIC" "B_NESSR_GNRR" "CTX" "N. gonorrhoeae" 0.125 0.25 -"EUCAST 2019" "MIC" "B_NESSR_GNRR" "OFX" "N. gonorrhoeae" 0.125 0.5 -"EUCAST 2019" "MIC" "B_NESSR_GNRR" "PEN" "N. gonorrhoeae" 0.064 2 -"EUCAST 2019" "MIC" "B_NESSR_GNRR" "SPT" "N. gonorrhoeae" 64 128 -"EUCAST 2019" "MIC" "B_NESSR_GNRR" "TCY" "N. gonorrhoeae" 0.5 2 -"EUCAST 2019" "MIC" "B_NESSR_MNNG" "AMP" "N. meningitidis" 0.125 2 -"EUCAST 2019" "MIC" "B_NESSR_MNNG" "AMX" "N. meningitidis" 0.125 2 -"EUCAST 2019" "MIC" "B_NESSR_MNNG" "CHL" "N. meningitidis" 2 4 -"EUCAST 2019" "MIC" "B_NESSR_MNNG" "CIP" "N. meningitidis" 0.032 0.06 -"EUCAST 2019" "MIC" "B_NESSR_MNNG" "CRO" "N. meningitidis" 0.125 0.25 -"EUCAST 2019" "MIC" "B_NESSR_MNNG" "CTX" "N. meningitidis" 0.125 0.25 -"EUCAST 2019" "MIC" "B_NESSR_MNNG" "MEM" "N. meningitidis" 0.25 0.5 -"EUCAST 2019" "MIC" "B_NESSR_MNNG" "MNO" "N. meningitidis" 1 4 -"EUCAST 2019" "MIC" "B_NESSR_MNNG" "PEN" "N. meningitidis" 0.064 0.5 -"EUCAST 2019" "MIC" "B_NESSR_MNNG" "RIF" "N. meningitidis" 0.25 0.5 -"EUCAST 2019" "MIC" "B_NESSR_MNNG" "TCY" "N. meningitidis" 1 4 -"EUCAST 2019" "MIC" "B_PROTS" "IPM" "Enterobacteriaceae" 0.125 8 -"EUCAST 2019" "MIC" "B_PRVDN" "IPM" "Enterobacteriaceae" 0.125 8 -"EUCAST 2019" "MIC" "B_PSDMN" "AMK" "Pseudo" 8 32 -"EUCAST 2019" "MIC" "B_PSDMN" "ATM" "Pseudo" 16 32 -"EUCAST 2019" "MIC" "B_PSDMN" "CAZ" "Pseudo" 8 16 -"EUCAST 2019" "MIC" "B_PSDMN" "CIP" "Pseudo" 0.5 1 -"EUCAST 2019" "MIC" "B_PSDMN" "COL" "Pseudo" 4 8 -"EUCAST 2019" "MIC" "B_PSDMN" "CZA" "Pseudo" 8 16 -"EUCAST 2019" "MIC" "B_PSDMN" "FEP" "Pseudo" 8 16 -"EUCAST 2019" "MIC" "B_PSDMN" "GEN" "Pseudo" 4 8 -"EUCAST 2019" "MIC" "B_PSDMN" "IPM" "Pseudo" 4 8 -"EUCAST 2019" "MIC" "B_PSDMN" "LVX" "Pseudo" 1 2 -"EUCAST 2019" "MIC" "B_PSDMN" "MEM" "Pseudo" 2 16 -"EUCAST 2019" "MIC" "B_PSDMN" "MEV" "Pseudo" 8 16 -"EUCAST 2019" "MIC" "B_PSDMN" "NET" "Pseudo" 4 8 -"EUCAST 2019" "MIC" "B_PSDMN" "PIP" "Pseudo" 16 32 -"EUCAST 2019" "MIC" "B_PSDMN" "TCC" "Pseudo" 16 32 -"EUCAST 2019" "MIC" "B_PSDMN" "TIC" "Pseudo" 16 32 -"EUCAST 2019" "MIC" "B_PSDMN" "TOB" "Pseudo" 4 8 -"EUCAST 2019" "MIC" "B_PSDMN" "TZP" "Pseudo" 16 32 -"EUCAST 2019" "MIC" "B_PSDMN_AERG" "CZT" "Pseudo" 4 8 -"EUCAST 2019" "MIC" "B_PSTRL_MLTC" "AMC" "Pasteurella multocida" 1 2 -"EUCAST 2019" "MIC" "B_PSTRL_MLTC" "AMP" "Pasteurella multocida" 1 2 -"EUCAST 2019" "MIC" "B_PSTRL_MLTC" "AMX" "Pasteurella multocida" 1 2 -"EUCAST 2019" "MIC" "B_PSTRL_MLTC" "CIP" "Pasteurella multocida" 0.064 0.12 -"EUCAST 2019" "MIC" "B_PSTRL_MLTC" "CTX" "Pasteurella multocida" 0.032 0.06 -"EUCAST 2019" "MIC" "B_PSTRL_MLTC" "DOX" "Pasteurella multocida" 1 2 -"EUCAST 2019" "MIC" "B_PSTRL_MLTC" "LVX" "Pasteurella multocida" 0.064 0.12 -"EUCAST 2019" "MIC" "B_PSTRL_MLTC" "PEN" "Pasteurella multocida" 0.5 1 -"EUCAST 2019" "MIC" "B_PSTRL_MLTC" "SXT" "Pasteurella multocida" 0.25 0.5 -"EUCAST 2019" "MIC" "B_SLMNL" "CIP" "Enterobacteriaceae" 0.064 0.12 -"EUCAST 2019" "MIC" "B_STNTR_MLTP" "SXT" "Stenotrophomonas maltophilia" 4 8 -"EUCAST 2019" "MIC" "B_STPHY" "AZM" "Staphs" 1 4 -"EUCAST 2019" "MIC" "B_STPHY" "CHL" "Staphs" 8 16 -"EUCAST 2019" "MIC" "B_STPHY" "CLI" "Staphs" 0.25 1 -"EUCAST 2019" "MIC" "B_STPHY" "CLR" "Staphs" 1 4 -"EUCAST 2019" "MIC" "B_STPHY" "DAL" "Staphs" 0.125 0.25 -"EUCAST 2019" "MIC" "B_STPHY" "DAP" "Staphs" 1 2 -"EUCAST 2019" "MIC" "B_STPHY" "DOX" "Staphs" 1 4 -"EUCAST 2019" "MIC" "B_STPHY" "ERY" "Staphs" 1 4 -"EUCAST 2019" "MIC" "B_STPHY" "FOS" "Staphs" 32 64 -"EUCAST 2019" "MIC" "B_STPHY" "FOX" "Staphs" 8 16 -"EUCAST 2019" "MIC" "B_STPHY" "FOX" "Staphs" -"EUCAST 2019" "MIC" "B_STPHY" "FUS" "Staphs" 1 2 -"EUCAST 2019" "MIC" "B_STPHY" "KAN" "Staphs" 8 16 -"EUCAST 2019" "MIC" "B_STPHY" "LNZ" "Staphs" 4 8 -"EUCAST 2019" "MIC" "B_STPHY" "MNO" "Staphs" 0.5 2 -"EUCAST 2019" "MIC" "UTI" "B_STPHY" "NIT" "Staphs" 64 128 -"EUCAST 2019" "MIC" "B_STPHY" "ORI" "Staphs" 0.125 0.25 -"EUCAST 2019" "MIC" "B_STPHY" "OXA" "Staphs" 2 4 -"EUCAST 2019" "MIC" "B_STPHY" "QDA" "Staphs" 1 4 -"EUCAST 2019" "MIC" "B_STPHY" "RIF" "Staphs" 0.064 1 -"EUCAST 2019" "MIC" "B_STPHY" "RXT" "Staphs" 1 4 -"EUCAST 2019" "MIC" "B_STPHY" "SXT" "Staphs" 2 8 -"EUCAST 2019" "MIC" "B_STPHY" "TCY" "Staphs" 1 4 -"EUCAST 2019" "MIC" "B_STPHY" "TGC" "Staphs" 0.5 1 -"EUCAST 2019" "MIC" "UTI" "B_STPHY" "TMP" "Staphs" 2 8 -"EUCAST 2019" "MIC" "B_STPHY" "TZD" "Staphs" 0.5 1 -"EUCAST 2019" "MIC" "B_STPHY_AURS" "AMK" "Staphs" 8 32 -"EUCAST 2019" "MIC" "B_STPHY_AURS" "BPR" "Staphs" 2 4 -"EUCAST 2019" "MIC" "B_STPHY_AURS" "CIP" "Staphs" 1 2 -"EUCAST 2019" "MIC" "Pneumonia" "B_STPHY_AURS" "CPT" "Staphs" 1 2 -"EUCAST 2019" "MIC" "Non-pneumonia" "B_STPHY_AURS" "CPT" "Staphs" 1 4 -"EUCAST 2019" "MIC" "B_STPHY_AURS" "ERV" "Staphs" 0.25 0.5 -"EUCAST 2019" "MIC" "B_STPHY_AURS" "FOX" "Staphs" 4 8 -"EUCAST 2019" "MIC" "B_STPHY_AURS" "GEN" "Staphs" 1 2 -"EUCAST 2019" "MIC" "B_STPHY_AURS" "LVX" "Staphs" 1 2 -"EUCAST 2019" "MIC" "B_STPHY_AURS" "MFX" "Staphs" 0.25 0.5 -"EUCAST 2019" "MIC" "B_STPHY_AURS" "NET" "Staphs" 1 2 -"EUCAST 2019" "MIC" "B_STPHY_AURS" "OFX" "Staphs" 1 2 -"EUCAST 2019" "MIC" "B_STPHY_AURS" "OXA" "Staphs" 2 4 -"EUCAST 2019" "MIC" "B_STPHY_AURS" "PEN" "Staphs" 0.125 0.25 -"EUCAST 2019" "MIC" "B_STPHY_AURS" "TEC" "Staphs" 2 4 -"EUCAST 2019" "MIC" "B_STPHY_AURS" "TLV" "Staphs" 0.125 0.25 -"EUCAST 2019" "MIC" "B_STPHY_AURS" "TOB" "Staphs" 1 2 -"EUCAST 2019" "MIC" "B_STPHY_AURS" "VAN" "Staphs" 2 4 -"EUCAST 2019" "MIC" "B_STPHY_CONS" "AMK" "Staphs" 8 32 -"EUCAST 2019" "MIC" "B_STPHY_CONS" "CIP" "Staphs" 1 2 -"EUCAST 2019" "MIC" "B_STPHY_CONS" "GEN" "Staphs" 1 2 -"EUCAST 2019" "MIC" "B_STPHY_CONS" "LVX" "Staphs" 1 2 -"EUCAST 2019" "MIC" "B_STPHY_CONS" "MFX" "Staphs" 0.25 0.5 -"EUCAST 2019" "MIC" "B_STPHY_CONS" "NET" "Staphs" 1 2 -"EUCAST 2019" "MIC" "B_STPHY_CONS" "OFX" "Staphs" 1 2 -"EUCAST 2019" "MIC" "B_STPHY_CONS" "OXA" "Staphs" 0.25 0.5 -"EUCAST 2019" "MIC" "B_STPHY_CONS" "TEC" "Staphs" 4 8 -"EUCAST 2019" "MIC" "B_STPHY_CONS" "TOB" "Staphs" 1 2 -"EUCAST 2019" "MIC" "B_STPHY_CONS" "VAN" "Staphs" 4 8 -"EUCAST 2019" "MIC" "B_STPHY_COPS" "ERV" "Staphs" 0.25 0.5 -"EUCAST 2019" "MIC" "B_STPHY_EPDR" "OXA" "Staphs" 0.25 0.5 -"EUCAST 2019" "MIC" "B_STPHY_LGDN" "FOX" "Staphs" 4 8 -"EUCAST 2019" "MIC" "B_STPHY_LGDN" "OXA" "Staphs" 2 4 -"EUCAST 2019" "MIC" "B_STPHY_LGDN" "PEN" "Staphs" 0.125 0.25 -"EUCAST 2019" "MIC" "B_STRPT" "AZM" "Strep A, B, C, G" 0.25 1 -"EUCAST 2019" "MIC" "B_STRPT" "CHL" "Strep A, B, C, G" 8 16 -"EUCAST 2019" "MIC" "B_STRPT" "CLI" "Strep A, B, C, G" 0.5 1 -"EUCAST 2019" "MIC" "B_STRPT" "CLR" "Strep A, B, C, G" 0.25 1 -"EUCAST 2019" "MIC" "B_STRPT" "DAL" "Strep A, B, C, G" 0.125 0.25 -"EUCAST 2019" "MIC" "B_STRPT" "DAP" "Strep A, B, C, G" 1 2 -"EUCAST 2019" "MIC" "B_STRPT" "DOX" "Strep A, B, C, G" 1 4 -"EUCAST 2019" "MIC" "B_STRPT" "ERY" "Strep A, B, C, G" 0.25 1 -"EUCAST 2019" "MIC" "B_STRPT" "LNZ" "Strep A, B, C, G" 2 8 -"EUCAST 2019" "MIC" "B_STRPT" "LVX" "Strep A, B, C, G" 1 4 -"EUCAST 2019" "MIC" "B_STRPT" "MFX" "Strep A, B, C, G" 0.5 2 -"EUCAST 2019" "MIC" "B_STRPT" "MNO" "Strep A, B, C, G" 0.5 2 -"EUCAST 2019" "MIC" "B_STRPT" "ORI" "Strep A, B, C, G" 0.25 0.5 -"EUCAST 2019" "MIC" "B_STRPT" "PEN" "Strep A, B, C, G" 0.25 0.5 -"EUCAST 2019" "MIC" "B_STRPT" "RIF" "Strep A, B, C, G" 0.064 1 -"EUCAST 2019" "MIC" "B_STRPT" "RXT" "Strep A, B, C, G" 0.5 2 -"EUCAST 2019" "MIC" "B_STRPT" "SXT" "Strep A, B, C, G" 1 4 -"EUCAST 2019" "MIC" "B_STRPT" "TCY" "Strep A, B, C, G" 1 4 -"EUCAST 2019" "MIC" "B_STRPT" "TEC" "Strep A, B, C, G" 2 4 -"EUCAST 2019" "MIC" "B_STRPT" "TGC" "Strep A, B, C, G" 0.125 0.25 -"EUCAST 2019" "MIC" "B_STRPT" "TLT" "Strep A, B, C, G" 0.25 1 -"EUCAST 2019" "MIC" "B_STRPT" "TZD" "Strep A, B, C, G" 0.5 1 -"EUCAST 2019" "MIC" "B_STRPT" "VAN" "Strep A, B, C, G" 2 4 -"EUCAST 2019" "MIC" "UTI" "B_STRPT_GRPB" "NIT" "Strep A, B, C, G" 64 128 -"EUCAST 2019" "MIC" "UTI" "B_STRPT_GRPB" "TMP" "Strep A, B, C, G" 2 4 -"EUCAST 2019" "MIC" "Oral" "B_STRPT_PNMN" "AMC" "Pneumo" 0.5 2 -"EUCAST 2019" "MIC" "B_STRPT_PNMN" "AMP" "Pneumo" 0.5 4 -"EUCAST 2019" "MIC" "Oral" "B_STRPT_PNMN" "AMX" "Pneumo" 0.5 2 -"EUCAST 2019" "MIC" "B_STRPT_PNMN" "AZM" "Pneumo" 0.25 1 -"EUCAST 2019" "MIC" "B_STRPT_PNMN" "CEC" "Pneumo" 0.032 1 -"EUCAST 2019" "MIC" "B_STRPT_PNMN" "CHL" "Pneumo" 8 16 -"EUCAST 2019" "MIC" "B_STRPT_PNMN" "CIP" "Pneumo" -"EUCAST 2019" "MIC" "B_STRPT_PNMN" "CLI" "Pneumo" 0.5 1 -"EUCAST 2019" "MIC" "B_STRPT_PNMN" "CLR" "Pneumo" 0.25 1 -"EUCAST 2019" "MIC" "B_STRPT_PNMN" "CPD" "Pneumo" 0.25 1 -"EUCAST 2019" "MIC" "B_STRPT_PNMN" "CPT" "Pneumo" 0.25 0.5 -"EUCAST 2019" "MIC" "B_STRPT_PNMN" "CRO" "Pneumo" 0.5 4 -"EUCAST 2019" "MIC" "B_STRPT_PNMN" "CTX" "Pneumo" 0.5 4 -"EUCAST 2019" "MIC" "IV" "B_STRPT_PNMN" "CXM" "Pneumo" 0.5 2 -"EUCAST 2019" "MIC" "Oral" "B_STRPT_PNMN" "CXM" "Pneumo" 0.25 1 -"EUCAST 2019" "MIC" "B_STRPT_PNMN" "DOX" "Pneumo" 1 4 -"EUCAST 2019" "MIC" "B_STRPT_PNMN" "ERY" "Pneumo" 0.25 1 -"EUCAST 2019" "MIC" "B_STRPT_PNMN" "ETP" "Pneumo" 0.5 1 -"EUCAST 2019" "MIC" "B_STRPT_PNMN" "FEP" "Pneumo" 1 4 -"EUCAST 2019" "MIC" "B_STRPT_PNMN" "IPM" "Pneumo" 2 4 -"EUCAST 2019" "MIC" "B_STRPT_PNMN" "LNZ" "Pneumo" 2 8 -"EUCAST 2019" "MIC" "B_STRPT_PNMN" "LVX" "Pneumo" 2 4 -"EUCAST 2019" "MIC" "Non-meningitis" "B_STRPT_PNMN" "MEM" "Pneumo" 2 4 -"EUCAST 2019" "MIC" "Meningitis" "B_STRPT_PNMN" "MEM" "Pneumo" 0.25 0.5 -"EUCAST 2019" "MIC" "B_STRPT_PNMN" "MFX" "Pneumo" 0.5 1 -"EUCAST 2019" "MIC" "B_STRPT_PNMN" "MNO" "Pneumo" 0.5 2 -"EUCAST 2019" "MIC" "B_STRPT_PNMN" "OFX" "Pneumo" -"EUCAST 2019" "MIC" "Non-meningitis" "B_STRPT_PNMN" "PEN" "Pneumo" 0.064 4 -"EUCAST 2019" "MIC" "Meningitis" "B_STRPT_PNMN" "PEN" "Pneumo" 0.064 0.12 -"EUCAST 2019" "MIC" "B_STRPT_PNMN" "RIF" "Pneumo" 0.064 1 -"EUCAST 2019" "MIC" "B_STRPT_PNMN" "RXT" "Pneumo" 0.5 2 -"EUCAST 2019" "MIC" "B_STRPT_PNMN" "SXT" "Pneumo" 1 4 -"EUCAST 2019" "MIC" "B_STRPT_PNMN" "TCY" "Pneumo" 1 4 -"EUCAST 2019" "MIC" "B_STRPT_PNMN" "TEC" "Pneumo" 2 4 -"EUCAST 2019" "MIC" "B_STRPT_PNMN" "TLT" "Pneumo" 0.25 1 -"EUCAST 2019" "MIC" "B_STRPT_PNMN" "VAN" "Pneumo" 2 4 -"EUCAST 2019" "MIC" "B_STRPT_VIRI" "AMP" "Viridans strept" 0.5 4 -"EUCAST 2019" "MIC" "B_STRPT_VIRI" "AMX" "Viridans strept" 0.5 4 -"EUCAST 2019" "MIC" "B_STRPT_VIRI" "CLI" "Viridans strept" 0.5 1 -"EUCAST 2019" "MIC" "B_STRPT_VIRI" "CRO" "Viridans strept" 0.5 1 -"EUCAST 2019" "MIC" "B_STRPT_VIRI" "CTX" "Viridans strept" 0.5 1 -"EUCAST 2019" "MIC" "B_STRPT_VIRI" "CXM" "Viridans strept" 0.5 1 -"EUCAST 2019" "MIC" "B_STRPT_VIRI" "CZO" "Viridans strept" 0.5 1 -"EUCAST 2019" "MIC" "B_STRPT_VIRI" "DAL" "Viridans strept" 0.125 0.25 -"EUCAST 2019" "MIC" "B_STRPT_VIRI" "ERV" "Viridans strept" 0.125 0.25 -"EUCAST 2019" "MIC" "B_STRPT_VIRI" "ETP" "Viridans strept" 0.5 1 -"EUCAST 2019" "MIC" "B_STRPT_VIRI" "FEP" "Viridans strept" 0.5 1 -"EUCAST 2019" "MIC" "B_STRPT_VIRI" "GEH" "Viridans strept" 128 128 -"EUCAST 2019" "MIC" "B_STRPT_VIRI" "GEN" "Viridans strept" 128 128 -"EUCAST 2019" "MIC" "B_STRPT_VIRI" "IPM" "Viridans strept" 2 4 -"EUCAST 2019" "MIC" "B_STRPT_VIRI" "MEM" "Viridans strept" 2 4 -"EUCAST 2019" "MIC" "B_STRPT_VIRI" "ORI" "Viridans strept" 0.25 0.5 -"EUCAST 2019" "MIC" "B_STRPT_VIRI" "PEN" "Viridans strept" 0.25 4 -"EUCAST 2019" "MIC" "B_STRPT_VIRI" "TEC" "Viridans strept" 2 4 -"EUCAST 2019" "MIC" "B_STRPT_VIRI" "TZD" "Viridans strept" 0.25 0.5 -"EUCAST 2019" "MIC" "B_STRPT_VIRI" "VAN" "Viridans strept" 2 4 -"EUCAST 2019" "MIC" "F_ASPRG_FLAVS" "ITR" "Aspergillus" 1 4 -"EUCAST 2019" "MIC" "F_ASPRG_MGTS" "AMB" "Aspergillus" 1 4 -"EUCAST 2019" "MIC" "F_ASPRG_MGTS" "ISV" "Aspergillus" 1 2 -"EUCAST 2019" "MIC" "F_ASPRG_MGTS" "ITR" "Aspergillus" 1 4 -"EUCAST 2019" "MIC" "F_ASPRG_MGTS" "POS" "Aspergillus" 0.125 0.5 -"EUCAST 2019" "MIC" "F_ASPRG_MGTS" "VOR" "Aspergillus" 1 4 -"EUCAST 2019" "MIC" "F_ASPRG_NDLN" "AMB" "Aspergillus" 1 4 -"EUCAST 2019" "MIC" "F_ASPRG_NDLN" "ISV" "Aspergillus" 0.25 0.5 -"EUCAST 2019" "MIC" "F_ASPRG_NDLN" "ITR" "Aspergillus" 1 4 -"EUCAST 2019" "MIC" "F_ASPRG_TERRS" "ISV" "Aspergillus" 1 2 -"EUCAST 2019" "MIC" "F_ASPRG_TERRS" "ITR" "Aspergillus" 1 4 -"EUCAST 2019" "MIC" "F_ASPRG_TERRS" "POS" "Aspergillus" 0.125 0.5 -"EUCAST 2019" "MIC" "F_CANDD" "AMB" "Candida" 1 2 -"EUCAST 2019" "MIC" "F_CANDD" "ANI" "Candida" 0.064 0.12 -"EUCAST 2019" "MIC" "F_CANDD" "FLU" "Candida" 2 8 -"EUCAST 2019" "MIC" "F_CANDD_ALBC" "AMB" "Candida" 1 2 -"EUCAST 2019" "MIC" "F_CANDD_ALBC" "ANI" "Candida" 0.032 0.06 -"EUCAST 2019" "MIC" "F_CANDD_ALBC" "FLU" "Candida" 2 8 -"EUCAST 2019" "MIC" "F_CANDD_ALBC" "ITR" "Candida" 0.064 0.12 -"EUCAST 2019" "MIC" "F_CANDD_ALBC" "MIF" "Candida" 0.016 0.03 -"EUCAST 2019" "MIC" "F_CANDD_ALBC" "POS" "Candida" 0.064 0.12 -"EUCAST 2019" "MIC" "F_CANDD_ALBC" "VOR" "Candida" 0.064 0.5 -"EUCAST 2019" "MIC" "F_CANDD_DBLN" "ITR" "Candida" 0.064 0.12 -"EUCAST 2019" "MIC" "F_CANDD_DBLN" "POS" "Candida" 0.064 0.12 -"EUCAST 2019" "MIC" "F_CANDD_DBLN" "VOR" "Candida" 0.064 0.5 -"EUCAST 2019" "MIC" "F_CANDD_GLBR" "AMB" "Candida" 1 2 -"EUCAST 2019" "MIC" "F_CANDD_GLBR" "ANI" "Candida" 0.064 0.12 -"EUCAST 2019" "MIC" "F_CANDD_GLBR" "FLU" "Candida" 0.002 64 -"EUCAST 2019" "MIC" "F_CANDD_GLBR" "MIF" "Candida" 0.032 0.06 -"EUCAST 2019" "MIC" "F_CANDD_PRPS" "AMB" "Candida" 1 2 -"EUCAST 2019" "MIC" "F_CANDD_PRPS" "ANI" "Candida" 0.002 8 -"EUCAST 2019" "MIC" "F_CANDD_PRPS" "FLU" "Candida" 2 8 -"EUCAST 2019" "MIC" "F_CANDD_PRPS" "ITR" "Candida" 0.125 0.25 -"EUCAST 2019" "MIC" "F_CANDD_PRPS" "MIF" "Candida" 0.002 4 -"EUCAST 2019" "MIC" "F_CANDD_PRPS" "POS" "Candida" 0.064 0.12 -"EUCAST 2019" "MIC" "F_CANDD_PRPS" "VOR" "Candida" 0.125 0.5 -"EUCAST 2019" "MIC" "F_CANDD_TRPC" "AMB" "Candida" 1 2 -"EUCAST 2019" "MIC" "F_CANDD_TRPC" "ANI" "Candida" 0.064 0.12 -"EUCAST 2019" "MIC" "F_CANDD_TRPC" "FLU" "Candida" 2 8 -"EUCAST 2019" "MIC" "F_CANDD_TRPC" "ITR" "Candida" 0.125 0.25 -"EUCAST 2019" "MIC" "F_CANDD_TRPC" "POS" "Candida" 0.064 0.12 -"EUCAST 2019" "MIC" "F_CANDD_TRPC" "VOR" "Candida" 0.125 0.5 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "AMC" "Enterobacteriaceae" 8 16 -"EUCAST 2018" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "AMC" "Enterobacteriaceae" 32 64 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "AMK" "Enterobacteriaceae" 8 32 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "AMP" "Enterobacteriaceae" 8 16 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "AMX" "Enterobacteriaceae" 8 16 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "ATM" "Enterobacteriaceae" 1 8 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "CAZ" "Enterobacteriaceae" 1 8 -"EUCAST 2018" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CFM" "Enterobacteriaceae" 1 2 -"EUCAST 2018" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CFR" "Enterobacteriaceae" 16 32 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "CHL" "Enterobacteriaceae" 8 16 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "CIP" "Enterobacteriaceae" 0.25 1 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "COL" "Enterobacteriaceae" 2 4 -"EUCAST 2018" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CPD" "Enterobacteriaceae" 1 2 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "CPT" "Enterobacteriaceae" 0.5 1 -"EUCAST 2018" "MIC" "Oral" "B_[FAM]_ENTRBCTR" "CRO" "Enterobacteriaceae" 1 4 -"EUCAST 2018" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CTB" "Enterobacteriaceae" 1 2 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "CTX" "Enterobacteriaceae" 1 4 -"EUCAST 2018" "MIC" "IV" "B_[FAM]_ENTRBCTR" "CXM" "Enterobacteriaceae" 8 16 -"EUCAST 2018" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CXM" "Enterobacteriaceae" 8 16 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "CZA" "Enterobacteriaceae" 8 16 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "CZT" "Enterobacteriaceae" 1 2 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "DOR" "Enterobacteriaceae" 1 4 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "ETP" "Enterobacteriaceae" 0.5 2 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "FEP" "Enterobacteriaceae" 1 8 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "FOS" "Enterobacteriaceae" 32 64 -"EUCAST 2018" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "FOS" "Enterobacteriaceae" 32 64 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "GEN" "Enterobacteriaceae" 2 8 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "IPM" "Enterobacteriaceae" 2 16 -"EUCAST 2018" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "LEX" "Enterobacteriaceae" 16 32 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "LVX" "Enterobacteriaceae" 0.5 2 -"EUCAST 2018" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "MEC" "Enterobacteriaceae" 8 16 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "MEM" "Enterobacteriaceae" 2 16 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "MFX" "Enterobacteriaceae" 0.25 0.5 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "NET" "Enterobacteriaceae" 2 8 -"EUCAST 2018" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "NIT" "Enterobacteriaceae" 64 128 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "NOR" "Enterobacteriaceae" 0.5 2 -"EUCAST 2018" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "NTR" "Enterobacteriaceae" 16 32 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "OFX" "Enterobacteriaceae" 0.25 1 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "PIP" "Enterobacteriaceae" 8 32 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "SAM" "Enterobacteriaceae" 8 16 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "SXT" "Enterobacteriaceae" 2 8 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "TCC" "Enterobacteriaceae" 8 32 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "TGC" "Enterobacteriaceae" 1 4 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "TIC" "Enterobacteriaceae" 8 32 -"EUCAST 2018" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "TMP" "Enterobacteriaceae" 2 8 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "TOB" "Enterobacteriaceae" 2 8 -"EUCAST 2018" "MIC" "B_[FAM]_ENTRBCTR" "TZP" "Enterobacteriaceae" 8 32 -"EUCAST 2018" "MIC" "B_ACNTB" "AMK" "Acinetobacter spp." 8 32 -"EUCAST 2018" "MIC" "B_ACNTB" "CIP" "Acinetobacter spp." 1 2 -"EUCAST 2018" "MIC" "B_ACNTB" "COL" "Acinetobacter spp." 2 4 -"EUCAST 2018" "MIC" "B_ACNTB" "DOR" "Acinetobacter spp." 1 4 -"EUCAST 2018" "MIC" "B_ACNTB" "GEN" "Acinetobacter spp." 4 8 -"EUCAST 2018" "MIC" "B_ACNTB" "IPM" "Acinetobacter spp." 2 16 -"EUCAST 2018" "MIC" "B_ACNTB" "LVX" "Acinetobacter spp." 0.5 2 -"EUCAST 2018" "MIC" "B_ACNTB" "MEM" "Acinetobacter spp." 2 16 -"EUCAST 2018" "MIC" "B_ACNTB" "NET" "Acinetobacter spp." 4 8 -"EUCAST 2018" "MIC" "B_ACNTB" "SXT" "Acinetobacter spp." 2 8 -"EUCAST 2018" "MIC" "B_ACNTB" "TOB" "Acinetobacter spp." 4 8 -"EUCAST 2018" "MIC" "B_AERCC" "AMP" "Aerococcus" 0.25 0.5 -"EUCAST 2018" "MIC" "B_AERCC" "CIP" "Aerococcus" 2 4 -"EUCAST 2018" "MIC" "B_AERCC" "LVX" "Aerococcus" 2 4 -"EUCAST 2018" "MIC" "B_AERCC" "MEM" "Aerococcus" 0.25 0.5 -"EUCAST 2018" "MIC" "B_AERCC" "NIT" "Aerococcus" 16 32 -"EUCAST 2018" "MIC" "B_AERCC" "PEN" "Aerococcus" 0.125 0.25 -"EUCAST 2018" "MIC" "B_AERCC" "RIF" "Aerococcus" 0.125 0.25 -"EUCAST 2018" "MIC" "B_AERCC" "VAN" "Aerococcus" 1 2 -"EUCAST 2018" "MIC" "B_CMPYL" "CIP" "Campylobacter jejuni and coli" 0.5 1 -"EUCAST 2018" "MIC" "B_CMPYL" "TCY" "Campylobacter jejuni and coli" 2 4 -"EUCAST 2018" "MIC" "B_CMPYL_COLI" "ERY" "Campylobacter jejuni and coli" 8 16 -"EUCAST 2018" "MIC" "B_CMPYL_JEJN" "ERY" "Campylobacter jejuni and coli" 4 8 -"EUCAST 2018" "MIC" "B_CRYNB" "CIP" "Corynebacterium spp." 1 2 -"EUCAST 2018" "MIC" "B_CRYNB" "CLI" "Corynebacterium spp." 0.5 1 -"EUCAST 2018" "MIC" "B_CRYNB" "GEN" "Corynebacterium spp." 1 2 -"EUCAST 2018" "MIC" "B_CRYNB" "LNZ" "Corynebacterium spp." 2 4 -"EUCAST 2018" "MIC" "B_CRYNB" "MFX" "Corynebacterium spp." 0.5 1 -"EUCAST 2018" "MIC" "B_CRYNB" "PEN" "Corynebacterium spp." 0.125 0.25 -"EUCAST 2018" "MIC" "B_CRYNB" "RIF" "Corynebacterium spp." 0.064 1 -"EUCAST 2018" "MIC" "B_CRYNB" "TCY" "Corynebacterium spp." 2 4 -"EUCAST 2018" "MIC" "B_CRYNB" "VAN" "Corynebacterium spp." 2 4 -"EUCAST 2018" "MIC" "B_CTRDM_DFFC" "DAP" "C. difficile" 4 -"EUCAST 2018" "MIC" "B_CTRDM_DFFC" "FUS" "C. difficile" 2 -"EUCAST 2018" "MIC" "B_CTRDM_DFFC" "MFX" "C. difficile" 4 -"EUCAST 2018" "MIC" "B_CTRDM_DFFC" "MTR" "C. difficile" 2 4 -"EUCAST 2018" "MIC" "B_CTRDM_DFFC" "RIF" "C. difficile" 0.004 -"EUCAST 2018" "MIC" "B_CTRDM_DFFC" "TGC" "C. difficile" 0.25 -"EUCAST 2018" "MIC" "B_CTRDM_DFFC" "VAN" "C. difficile" 2 4 -"EUCAST 2018" "MIC" "B_ENTRC" "AMC" "Enterococcus" 4 16 -"EUCAST 2018" "MIC" "B_ENTRC" "AMP" "Enterococcus" 4 16 -"EUCAST 2018" "MIC" "B_ENTRC" "AMX" "Enterococcus" 4 16 -"EUCAST 2018" "MIC" "UTI" "B_ENTRC" "CIP" "Enterococcus" 4 8 -"EUCAST 2018" "MIC" "B_ENTRC" "GEH" "Enterococcus" 128 128 -"EUCAST 2018" "MIC" "B_ENTRC" "GEN" "Enterococcus" 128 128 -"EUCAST 2018" "MIC" "B_ENTRC" "IPM" "Enterococcus" 4 16 -"EUCAST 2018" "MIC" "B_ENTRC" "LNZ" "Enterococcus" 4 8 -"EUCAST 2018" "MIC" "UTI" "B_ENTRC" "LVX" "Enterococcus" 4 8 -"EUCAST 2018" "MIC" "B_ENTRC" "QDA" "Enterococcus" 1 8 -"EUCAST 2018" "MIC" "B_ENTRC" "SAM" "Enterococcus" 4 16 -"EUCAST 2018" "MIC" "B_ENTRC" "STH" "Enterococcus" 512 1024 -"EUCAST 2018" "MIC" "B_ENTRC" "STR" "Enterococcus" 512 1024 -"EUCAST 2018" "MIC" "B_ENTRC" "SXT" "Enterococcus" 0.032 2 -"EUCAST 2018" "MIC" "B_ENTRC" "TEC" "Enterococcus" 2 4 -"EUCAST 2018" "MIC" "B_ENTRC" "TGC" "Enterococcus" 0.25 1 -"EUCAST 2018" "MIC" "UTI" "B_ENTRC" "TMP" "Enterococcus" 0.032 2 -"EUCAST 2018" "MIC" "B_ENTRC" "VAN" "Enterococcus" 4 8 -"EUCAST 2018" "MIC" "UTI" "B_ENTRC_FCLS" "NIT" "Enterococcus" 64 128 -"EUCAST 2018" "MIC" "B_HLCBCT_PYLR" "AMX" "H. pylori" 0.125 0.25 -"EUCAST 2018" "MIC" "B_HLCBCT_PYLR" "CLR" "H. pylori" 0.25 1 -"EUCAST 2018" "MIC" "B_HLCBCT_PYLR" "LVX" "H. pylori" 1 2 -"EUCAST 2018" "MIC" "B_HLCBCT_PYLR" "MTR" "H. pylori" 8 16 -"EUCAST 2018" "MIC" "B_HLCBCT_PYLR" "RIF" "H. pylori" 1 2 -"EUCAST 2018" "MIC" "B_HLCBCT_PYLR" "TCY" "H. pylori" 1 2 -"EUCAST 2018" "MIC" "B_HMPHL_INFL" "AMC" "H. influenzae" 2 4 -"EUCAST 2018" "MIC" "B_HMPHL_INFL" "AMP" "H. influenzae" 1 2 -"EUCAST 2018" "MIC" "B_HMPHL_INFL" "AMX" "H. influenzae" 2 4 -"EUCAST 2018" "MIC" "B_HMPHL_INFL" "AZM" "H. influenzae" 4 8 -"EUCAST 2018" "MIC" "B_HMPHL_INFL" "CFM" "H. influenzae" 0.125 0.25 -"EUCAST 2018" "MIC" "B_HMPHL_INFL" "CHL" "H. influenzae" 2 4 -"EUCAST 2018" "MIC" "B_HMPHL_INFL" "CIP" "H. influenzae" 0.064 0.12 -"EUCAST 2018" "MIC" "B_HMPHL_INFL" "CLR" "H. influenzae" 32 64 -"EUCAST 2018" "MIC" "B_HMPHL_INFL" "CPD" "H. influenzae" 0.25 1 -"EUCAST 2018" "MIC" "B_HMPHL_INFL" "CPT" "H. influenzae" 0.032 0.06 -"EUCAST 2018" "MIC" "B_HMPHL_INFL" "CRO" "H. influenzae" 0.125 0.25 -"EUCAST 2018" "MIC" "B_HMPHL_INFL" "CTB" "H. influenzae" 1 2 -"EUCAST 2018" "MIC" "B_HMPHL_INFL" "CTX" "H. influenzae" 0.125 0.25 -"EUCAST 2018" "MIC" "IV" "B_HMPHL_INFL" "CXM" "H. influenzae" 1 4 -"EUCAST 2018" "MIC" "Oral" "B_HMPHL_INFL" "CXM" "H. influenzae" 0.125 2 -"EUCAST 2018" "MIC" "B_HMPHL_INFL" "DOR" "H. influenzae" 1 2 -"EUCAST 2018" "MIC" "B_HMPHL_INFL" "DOX" "H. influenzae" 1 4 -"EUCAST 2018" "MIC" "B_HMPHL_INFL" "ERY" "H. influenzae" 16 32 -"EUCAST 2018" "MIC" "B_HMPHL_INFL" "ETP" "H. influenzae" 0.5 1 -"EUCAST 2018" "MIC" "B_HMPHL_INFL" "FEP" "H. influenzae" 0.25 0.5 -"EUCAST 2018" "MIC" "B_HMPHL_INFL" "IPM" "H. influenzae" 2 4 -"EUCAST 2018" "MIC" "B_HMPHL_INFL" "LVX" "H. influenzae" 0.064 0.12 -"EUCAST 2018" "MIC" "Non-meningitis" "B_HMPHL_INFL" "MEM" "H. influenzae" 2 4 -"EUCAST 2018" "MIC" "Meningitis" "B_HMPHL_INFL" "MEM" "H. influenzae" 0.25 2 -"EUCAST 2018" "MIC" "B_HMPHL_INFL" "MFX" "H. influenzae" 0.125 0.25 -"EUCAST 2018" "MIC" "B_HMPHL_INFL" "MNO" "H. influenzae" 1 4 -"EUCAST 2018" "MIC" "B_HMPHL_INFL" "OFX" "H. influenzae" 0.064 0.12 -"EUCAST 2018" "MIC" "Prophylaxis" "B_HMPHL_INFL" "RIF" "H. influenzae" 1 2 -"EUCAST 2018" "MIC" "B_HMPHL_INFL" "RXT" "H. influenzae" -"EUCAST 2018" "MIC" "B_HMPHL_INFL" "SAM" "H. influenzae" 1 2 -"EUCAST 2018" "MIC" "B_HMPHL_INFL" "SXT" "H. influenzae" 0.5 2 -"EUCAST 2018" "MIC" "B_HMPHL_INFL" "TCY" "H. influenzae" 1 4 -"EUCAST 2018" "MIC" "B_HMPHL_INFL" "TLT" "H. influenzae" 8 16 -"EUCAST 2018" "MIC" "B_KGLLA_KING" "AMP" "Kingella" 0.064 0.12 -"EUCAST 2018" "MIC" "B_KGLLA_KING" "AMX" "Kingella" 0.125 0.25 -"EUCAST 2018" "MIC" "B_KGLLA_KING" "AZM" "Kingella" 0.25 0.5 -"EUCAST 2018" "MIC" "B_KGLLA_KING" "CIP" "Kingella" 0.064 0.12 -"EUCAST 2018" "MIC" "B_KGLLA_KING" "CLR" "Kingella" 0.5 1 -"EUCAST 2018" "MIC" "B_KGLLA_KING" "CRO" "Kingella" 0.064 0.12 -"EUCAST 2018" "MIC" "B_KGLLA_KING" "CTX" "Kingella" 0.125 0.25 -"EUCAST 2018" "MIC" "B_KGLLA_KING" "CXM" "Kingella" 0.5 1 -"EUCAST 2018" "MIC" "B_KGLLA_KING" "DOX" "Kingella" 0.5 1 -"EUCAST 2018" "MIC" "B_KGLLA_KING" "ERY" "Kingella" 0.5 1 -"EUCAST 2018" "MIC" "B_KGLLA_KING" "LVX" "Kingella" 0.125 0.25 -"EUCAST 2018" "MIC" "B_KGLLA_KING" "MEM" "Kingella" 0.032 0.06 -"EUCAST 2018" "MIC" "B_KGLLA_KING" "PEN" "Kingella" 0.032 0.06 -"EUCAST 2018" "MIC" "B_KGLLA_KING" "RIF" "Kingella" 0.5 1 -"EUCAST 2018" "MIC" "B_KGLLA_KING" "SXT" "Kingella" 0.25 0.5 -"EUCAST 2018" "MIC" "B_KGLLA_KING" "TCY" "Kingella" 0.5 1 -"EUCAST 2018" "MIC" "B_LISTR_MNCY" "AMP" "Listeria monocytogenes" 1 2 -"EUCAST 2018" "MIC" "B_LISTR_MNCY" "ERY" "Listeria monocytogenes" 1 2 -"EUCAST 2018" "MIC" "B_LISTR_MNCY" "MEM" "Listeria monocytogenes" 0.25 0.5 -"EUCAST 2018" "MIC" "B_LISTR_MNCY" "PEN" "Listeria monocytogenes" 1 2 -"EUCAST 2018" "MIC" "B_LISTR_MNCY" "SXT" "Listeria monocytogenes" 0.064 0.12 -"EUCAST 2018" "MIC" "B_MRXLL_CTRR" "AMC" "M. catarrhalis" 1 2 -"EUCAST 2018" "MIC" "B_MRXLL_CTRR" "AZM" "M. catarrhalis" 0.25 1 -"EUCAST 2018" "MIC" "B_MRXLL_CTRR" "CFM" "M. catarrhalis" 0.5 2 -"EUCAST 2018" "MIC" "B_MRXLL_CTRR" "CHL" "M. catarrhalis" 2 4 -"EUCAST 2018" "MIC" "B_MRXLL_CTRR" "CIP" "M. catarrhalis" 0.125 0.25 -"EUCAST 2018" "MIC" "B_MRXLL_CTRR" "CLR" "M. catarrhalis" 0.25 1 -"EUCAST 2018" "MIC" "B_MRXLL_CTRR" "CRO" "M. catarrhalis" 1 4 -"EUCAST 2018" "MIC" "B_MRXLL_CTRR" "CTX" "M. catarrhalis" 1 4 -"EUCAST 2018" "MIC" "IV" "B_MRXLL_CTRR" "CXM" "M. catarrhalis" 4 16 -"EUCAST 2018" "MIC" "Oral" "B_MRXLL_CTRR" "CXM" "M. catarrhalis" 0.125 8 -"EUCAST 2018" "MIC" "B_MRXLL_CTRR" "DOR" "M. catarrhalis" 1 2 -"EUCAST 2018" "MIC" "B_MRXLL_CTRR" "DOX" "M. catarrhalis" 1 4 -"EUCAST 2018" "MIC" "B_MRXLL_CTRR" "ERY" "M. catarrhalis" 0.25 1 -"EUCAST 2018" "MIC" "B_MRXLL_CTRR" "ETP" "M. catarrhalis" 0.5 1 -"EUCAST 2018" "MIC" "B_MRXLL_CTRR" "FEP" "M. catarrhalis" 4 8 -"EUCAST 2018" "MIC" "B_MRXLL_CTRR" "IPM" "M. catarrhalis" 2 4 -"EUCAST 2018" "MIC" "B_MRXLL_CTRR" "LVX" "M. catarrhalis" 0.125 0.25 -"EUCAST 2018" "MIC" "B_MRXLL_CTRR" "MEM" "M. catarrhalis" 2 4 -"EUCAST 2018" "MIC" "B_MRXLL_CTRR" "MFX" "M. catarrhalis" 0.25 0.5 -"EUCAST 2018" "MIC" "B_MRXLL_CTRR" "MNO" "M. catarrhalis" 1 4 -"EUCAST 2018" "MIC" "B_MRXLL_CTRR" "OFX" "M. catarrhalis" 0.25 0.5 -"EUCAST 2018" "MIC" "B_MRXLL_CTRR" "RXT" "M. catarrhalis" 0.5 2 -"EUCAST 2018" "MIC" "B_MRXLL_CTRR" "SAM" "M. catarrhalis" 1 2 -"EUCAST 2018" "MIC" "B_MRXLL_CTRR" "SXT" "M. catarrhalis" 0.5 2 -"EUCAST 2018" "MIC" "B_MRXLL_CTRR" "TCY" "M. catarrhalis" 1 4 -"EUCAST 2018" "MIC" "B_MRXLL_CTRR" "TLT" "M. catarrhalis" 0.25 1 -"EUCAST 2018" "MIC" "B_NESSR_GNRR" "AZM" "N. gonorrhoeae" 0.25 1 -"EUCAST 2018" "MIC" "B_NESSR_GNRR" "CFM" "N. gonorrhoeae" 0.125 0.25 -"EUCAST 2018" "MIC" "B_NESSR_GNRR" "CIP" "N. gonorrhoeae" 0.032 0.12 -"EUCAST 2018" "MIC" "B_NESSR_GNRR" "CRO" "N. gonorrhoeae" 0.125 0.25 -"EUCAST 2018" "MIC" "B_NESSR_GNRR" "CTX" "N. gonorrhoeae" 0.125 0.25 -"EUCAST 2018" "MIC" "B_NESSR_GNRR" "OFX" "N. gonorrhoeae" 0.125 0.5 -"EUCAST 2018" "MIC" "B_NESSR_GNRR" "PEN" "N. gonorrhoeae" 0.064 2 -"EUCAST 2018" "MIC" "B_NESSR_GNRR" "SPT" "N. gonorrhoeae" 64 128 -"EUCAST 2018" "MIC" "B_NESSR_GNRR" "TCY" "N. gonorrhoeae" 0.5 2 -"EUCAST 2018" "MIC" "B_NESSR_MNNG" "AMP" "N. meningitidis" 0.125 2 -"EUCAST 2018" "MIC" "B_NESSR_MNNG" "AMX" "N. meningitidis" 0.125 2 -"EUCAST 2018" "MIC" "B_NESSR_MNNG" "CHL" "N. meningitidis" 2 8 -"EUCAST 2018" "MIC" "B_NESSR_MNNG" "CIP" "N. meningitidis" 0.032 0.06 -"EUCAST 2018" "MIC" "B_NESSR_MNNG" "CRO" "N. meningitidis" 0.125 0.25 -"EUCAST 2018" "MIC" "B_NESSR_MNNG" "CTX" "N. meningitidis" 0.125 0.25 -"EUCAST 2018" "MIC" "B_NESSR_MNNG" "MEM" "N. meningitidis" 0.25 0.5 -"EUCAST 2018" "MIC" "B_NESSR_MNNG" "MNO" "N. meningitidis" 1 4 -"EUCAST 2018" "MIC" "B_NESSR_MNNG" "PEN" "N. meningitidis" 0.064 0.5 -"EUCAST 2018" "MIC" "B_NESSR_MNNG" "RIF" "N. meningitidis" 0.25 0.5 -"EUCAST 2018" "MIC" "B_NESSR_MNNG" "TCY" "N. meningitidis" 1 4 -"EUCAST 2018" "MIC" "B_PSDMN" "AMK" "Pseudo" 8 32 -"EUCAST 2018" "MIC" "B_PSDMN" "ATM" "Pseudo" 1 32 -"EUCAST 2018" "MIC" "B_PSDMN" "CAZ" "Pseudo" 8 16 -"EUCAST 2018" "MIC" "B_PSDMN" "CIP" "Pseudo" 0.5 1 -"EUCAST 2018" "MIC" "B_PSDMN" "COL" "Pseudo" 4 8 -"EUCAST 2018" "MIC" "B_PSDMN" "CZA" "Pseudo" 8 16 -"EUCAST 2018" "MIC" "B_PSDMN" "DOR" "Pseudo" 1 4 -"EUCAST 2018" "MIC" "B_PSDMN" "FEP" "Pseudo" 8 16 -"EUCAST 2018" "MIC" "B_PSDMN" "GEN" "Pseudo" 4 8 -"EUCAST 2018" "MIC" "B_PSDMN" "IPM" "Pseudo" 4 16 -"EUCAST 2018" "MIC" "B_PSDMN" "LVX" "Pseudo" 1 2 -"EUCAST 2018" "MIC" "B_PSDMN" "MEM" "Pseudo" 2 16 -"EUCAST 2018" "MIC" "B_PSDMN" "NET" "Pseudo" 4 8 -"EUCAST 2018" "MIC" "B_PSDMN" "PIP" "Pseudo" 16 32 -"EUCAST 2018" "MIC" "B_PSDMN" "TCC" "Pseudo" 16 32 -"EUCAST 2018" "MIC" "B_PSDMN" "TIC" "Pseudo" 16 32 -"EUCAST 2018" "MIC" "B_PSDMN" "TOB" "Pseudo" 4 8 -"EUCAST 2018" "MIC" "B_PSDMN" "TZP" "Pseudo" 16 32 -"EUCAST 2018" "MIC" "B_PSDMN_AERG" "CZT" "Pseudo" 4 8 -"EUCAST 2018" "MIC" "B_PSTRL_MLTC" "AMC" "Pasteurella multocida" 1 2 -"EUCAST 2018" "MIC" "B_PSTRL_MLTC" "AMP" "Pasteurella multocida" 1 2 -"EUCAST 2018" "MIC" "B_PSTRL_MLTC" "AMX" "Pasteurella multocida" 1 2 -"EUCAST 2018" "MIC" "B_PSTRL_MLTC" "CIP" "Pasteurella multocida" 0.064 0.12 -"EUCAST 2018" "MIC" "B_PSTRL_MLTC" "CTX" "Pasteurella multocida" 0.032 0.06 -"EUCAST 2018" "MIC" "B_PSTRL_MLTC" "DOX" "Pasteurella multocida" 1 2 -"EUCAST 2018" "MIC" "B_PSTRL_MLTC" "LVX" "Pasteurella multocida" 0.064 0.12 -"EUCAST 2018" "MIC" "B_PSTRL_MLTC" "PEN" "Pasteurella multocida" 0.5 1 -"EUCAST 2018" "MIC" "B_PSTRL_MLTC" "SXT" "Pasteurella multocida" 0.25 0.5 -"EUCAST 2018" "MIC" "B_SLMNL" "CIP" "Enterobacteriaceae" 0.064 0.12 -"EUCAST 2018" "MIC" "B_STNTR_MLTP" "SXT" "Stenotrophomonas maltophilia" 4 8 -"EUCAST 2018" "MIC" "B_STPHY" "AZM" "Staphs" 1 4 -"EUCAST 2018" "MIC" "B_STPHY" "CHL" "Staphs" 8 16 -"EUCAST 2018" "MIC" "B_STPHY" "CLI" "Staphs" 0.25 1 -"EUCAST 2018" "MIC" "B_STPHY" "CLR" "Staphs" 1 4 -"EUCAST 2018" "MIC" "B_STPHY" "DAL" "Staphs" 0.125 0.25 -"EUCAST 2018" "MIC" "B_STPHY" "DAP" "Staphs" 1 2 -"EUCAST 2018" "MIC" "B_STPHY" "DOX" "Staphs" 1 4 -"EUCAST 2018" "MIC" "B_STPHY" "ERY" "Staphs" 1 4 -"EUCAST 2018" "MIC" "B_STPHY" "FOS" "Staphs" 32 64 -"EUCAST 2018" "MIC" "B_STPHY" "FOX" "Staphs" 8 16 -"EUCAST 2018" "MIC" "B_STPHY" "FOX" "Staphs" -"EUCAST 2018" "MIC" "B_STPHY" "FUS" "Staphs" 1 2 -"EUCAST 2018" "MIC" "B_STPHY" "KAN" "Staphs" 8 16 -"EUCAST 2018" "MIC" "B_STPHY" "LNZ" "Staphs" 4 8 -"EUCAST 2018" "MIC" "B_STPHY" "MNO" "Staphs" 0.5 2 -"EUCAST 2018" "MIC" "UTI" "B_STPHY" "NIT" "Staphs" 64 128 -"EUCAST 2018" "MIC" "B_STPHY" "ORI" "Staphs" 0.125 0.25 -"EUCAST 2018" "MIC" "B_STPHY" "OXA" "Staphs" 2 4 -"EUCAST 2018" "MIC" "B_STPHY" "QDA" "Staphs" 1 4 -"EUCAST 2018" "MIC" "B_STPHY" "RIF" "Staphs" 0.064 1 -"EUCAST 2018" "MIC" "B_STPHY" "RXT" "Staphs" 1 4 -"EUCAST 2018" "MIC" "B_STPHY" "SXT" "Staphs" 2 8 -"EUCAST 2018" "MIC" "B_STPHY" "TCY" "Staphs" 1 4 -"EUCAST 2018" "MIC" "B_STPHY" "TGC" "Staphs" 0.5 1 -"EUCAST 2018" "MIC" "UTI" "B_STPHY" "TMP" "Staphs" 2 8 -"EUCAST 2018" "MIC" "B_STPHY" "TZD" "Staphs" 0.5 1 -"EUCAST 2018" "MIC" "B_STPHY_AURS" "AMK" "Staphs" 8 32 -"EUCAST 2018" "MIC" "B_STPHY_AURS" "BPR" "Staphs" 2 4 -"EUCAST 2018" "MIC" "B_STPHY_AURS" "CIP" "Staphs" 1 2 -"EUCAST 2018" "MIC" "Pneumonia" "B_STPHY_AURS" "CPT" "Staphs" 1 2 -"EUCAST 2018" "MIC" "Non-pneumonia" "B_STPHY_AURS" "CPT" "Staphs" 1 4 -"EUCAST 2018" "MIC" "B_STPHY_AURS" "FOX" "Staphs" 4 8 -"EUCAST 2018" "MIC" "B_STPHY_AURS" "GEN" "Staphs" 1 2 -"EUCAST 2018" "MIC" "B_STPHY_AURS" "LVX" "Staphs" 1 2 -"EUCAST 2018" "MIC" "B_STPHY_AURS" "MFX" "Staphs" 0.25 0.5 -"EUCAST 2018" "MIC" "B_STPHY_AURS" "NET" "Staphs" 1 2 -"EUCAST 2018" "MIC" "B_STPHY_AURS" "OFX" "Staphs" 1 2 -"EUCAST 2018" "MIC" "B_STPHY_AURS" "OXA" "Staphs" 2 4 -"EUCAST 2018" "MIC" "B_STPHY_AURS" "PEN" "Staphs" 0.125 0.25 -"EUCAST 2018" "MIC" "B_STPHY_AURS" "TEC" "Staphs" 2 4 -"EUCAST 2018" "MIC" "B_STPHY_AURS" "TLV" "Staphs" 0.125 0.25 -"EUCAST 2018" "MIC" "B_STPHY_AURS" "TOB" "Staphs" 1 2 -"EUCAST 2018" "MIC" "B_STPHY_AURS" "VAN" "Staphs" 2 4 -"EUCAST 2018" "MIC" "B_STPHY_CONS" "AMK" "Staphs" 8 32 -"EUCAST 2018" "MIC" "B_STPHY_CONS" "CIP" "Staphs" 1 2 -"EUCAST 2018" "MIC" "B_STPHY_CONS" "GEN" "Staphs" 1 2 -"EUCAST 2018" "MIC" "B_STPHY_CONS" "LVX" "Staphs" 1 2 -"EUCAST 2018" "MIC" "B_STPHY_CONS" "MFX" "Staphs" 0.25 0.5 -"EUCAST 2018" "MIC" "B_STPHY_CONS" "NET" "Staphs" 1 2 -"EUCAST 2018" "MIC" "B_STPHY_CONS" "OFX" "Staphs" 1 2 -"EUCAST 2018" "MIC" "B_STPHY_CONS" "OXA" "Staphs" 0.25 0.5 -"EUCAST 2018" "MIC" "B_STPHY_CONS" "TEC" "Staphs" 4 8 -"EUCAST 2018" "MIC" "B_STPHY_CONS" "TOB" "Staphs" 1 2 -"EUCAST 2018" "MIC" "B_STPHY_CONS" "VAN" "Staphs" 4 8 -"EUCAST 2018" "MIC" "B_STPHY_EPDR" "OXA" "Staphs" 0.25 0.5 -"EUCAST 2018" "MIC" "B_STPHY_LGDN" "FOX" "Staphs" 4 8 -"EUCAST 2018" "MIC" "B_STPHY_LGDN" "OXA" "Staphs" 2 4 -"EUCAST 2018" "MIC" "B_STPHY_LGDN" "PEN" "Staphs" 0.125 0.25 -"EUCAST 2018" "MIC" "B_STRPT" "AZM" "Strep A, B, C, G" 0.25 1 -"EUCAST 2018" "MIC" "B_STRPT" "CHL" "Strep A, B, C, G" 8 16 -"EUCAST 2018" "MIC" "B_STRPT" "CLI" "Strep A, B, C, G" 0.5 1 -"EUCAST 2018" "MIC" "B_STRPT" "CLR" "Strep A, B, C, G" 0.25 1 -"EUCAST 2018" "MIC" "B_STRPT" "DAL" "Strep A, B, C, G" 0.125 0.25 -"EUCAST 2018" "MIC" "B_STRPT" "DAP" "Strep A, B, C, G" 1 2 -"EUCAST 2018" "MIC" "B_STRPT" "DOX" "Strep A, B, C, G" 1 4 -"EUCAST 2018" "MIC" "B_STRPT" "ERY" "Strep A, B, C, G" 0.25 1 -"EUCAST 2018" "MIC" "B_STRPT" "LNZ" "Strep A, B, C, G" 2 8 -"EUCAST 2018" "MIC" "B_STRPT" "LVX" "Strep A, B, C, G" 1 4 -"EUCAST 2018" "MIC" "B_STRPT" "MFX" "Strep A, B, C, G" 0.5 2 -"EUCAST 2018" "MIC" "B_STRPT" "MNO" "Strep A, B, C, G" 0.5 2 -"EUCAST 2018" "MIC" "B_STRPT" "ORI" "Strep A, B, C, G" 0.25 0.5 -"EUCAST 2018" "MIC" "B_STRPT" "PEN" "Strep A, B, C, G" 0.25 0.5 -"EUCAST 2018" "MIC" "B_STRPT" "RIF" "Strep A, B, C, G" 0.064 1 -"EUCAST 2018" "MIC" "B_STRPT" "RXT" "Strep A, B, C, G" 0.5 2 -"EUCAST 2018" "MIC" "B_STRPT" "SXT" "Strep A, B, C, G" 1 4 -"EUCAST 2018" "MIC" "B_STRPT" "TCY" "Strep A, B, C, G" 1 4 -"EUCAST 2018" "MIC" "B_STRPT" "TEC" "Strep A, B, C, G" 2 4 -"EUCAST 2018" "MIC" "B_STRPT" "TGC" "Strep A, B, C, G" 0.25 1 -"EUCAST 2018" "MIC" "B_STRPT" "TLT" "Strep A, B, C, G" 0.25 1 -"EUCAST 2018" "MIC" "B_STRPT" "TZD" "Strep A, B, C, G" 0.5 1 -"EUCAST 2018" "MIC" "B_STRPT" "VAN" "Strep A, B, C, G" 2 4 -"EUCAST 2018" "MIC" "UTI" "B_STRPT_GRPB" "NIT" "Strep A, B, C, G" 64 128 -"EUCAST 2018" "MIC" "UTI" "B_STRPT_GRPB" "TMP" "Strep A, B, C, G" 2 4 -"EUCAST 2018" "MIC" "B_STRPT_PNMN" "AMP" "Pneumo" 0.5 4 -"EUCAST 2018" "MIC" "B_STRPT_PNMN" "AZM" "Pneumo" 0.25 1 -"EUCAST 2018" "MIC" "B_STRPT_PNMN" "CEC" "Pneumo" 0.032 1 -"EUCAST 2018" "MIC" "B_STRPT_PNMN" "CHL" "Pneumo" 8 16 -"EUCAST 2018" "MIC" "B_STRPT_PNMN" "CIP" "Pneumo" -"EUCAST 2018" "MIC" "B_STRPT_PNMN" "CLI" "Pneumo" 0.5 1 -"EUCAST 2018" "MIC" "B_STRPT_PNMN" "CLR" "Pneumo" 0.25 1 -"EUCAST 2018" "MIC" "B_STRPT_PNMN" "CPD" "Pneumo" 0.25 1 -"EUCAST 2018" "MIC" "B_STRPT_PNMN" "CPT" "Pneumo" 0.25 0.5 -"EUCAST 2018" "MIC" "B_STRPT_PNMN" "CRO" "Pneumo" 0.5 4 -"EUCAST 2018" "MIC" "B_STRPT_PNMN" "CTX" "Pneumo" 0.5 4 -"EUCAST 2018" "MIC" "IV" "B_STRPT_PNMN" "CXM" "Pneumo" 0.5 2 -"EUCAST 2018" "MIC" "Oral" "B_STRPT_PNMN" "CXM" "Pneumo" 0.25 1 -"EUCAST 2018" "MIC" "B_STRPT_PNMN" "DOR" "Pneumo" 1 2 -"EUCAST 2018" "MIC" "B_STRPT_PNMN" "DOX" "Pneumo" 1 4 -"EUCAST 2018" "MIC" "B_STRPT_PNMN" "ERY" "Pneumo" 0.25 1 -"EUCAST 2018" "MIC" "B_STRPT_PNMN" "ETP" "Pneumo" 0.5 1 -"EUCAST 2018" "MIC" "B_STRPT_PNMN" "FEP" "Pneumo" 1 4 -"EUCAST 2018" "MIC" "B_STRPT_PNMN" "IPM" "Pneumo" 2 4 -"EUCAST 2018" "MIC" "B_STRPT_PNMN" "LNZ" "Pneumo" 2 8 -"EUCAST 2018" "MIC" "B_STRPT_PNMN" "LVX" "Pneumo" 2 4 -"EUCAST 2018" "MIC" "Non-meningitis" "B_STRPT_PNMN" "MEM" "Pneumo" 2 4 -"EUCAST 2018" "MIC" "Meningitis" "B_STRPT_PNMN" "MEM" "Pneumo" 0.25 2 -"EUCAST 2018" "MIC" "B_STRPT_PNMN" "MFX" "Pneumo" 0.5 1 -"EUCAST 2018" "MIC" "B_STRPT_PNMN" "MNO" "Pneumo" 0.5 2 -"EUCAST 2018" "MIC" "B_STRPT_PNMN" "OFX" "Pneumo" -"EUCAST 2018" "MIC" "Non-meningitis" "B_STRPT_PNMN" "PEN" "Pneumo" 0.064 4 -"EUCAST 2018" "MIC" "Meningitis" "B_STRPT_PNMN" "PEN" "Pneumo" 0.064 0.12 -"EUCAST 2018" "MIC" "B_STRPT_PNMN" "RIF" "Pneumo" 0.064 1 -"EUCAST 2018" "MIC" "B_STRPT_PNMN" "RXT" "Pneumo" 0.5 2 -"EUCAST 2018" "MIC" "B_STRPT_PNMN" "SXT" "Pneumo" 1 4 -"EUCAST 2018" "MIC" "B_STRPT_PNMN" "TCY" "Pneumo" 1 4 -"EUCAST 2018" "MIC" "B_STRPT_PNMN" "TEC" "Pneumo" 2 4 -"EUCAST 2018" "MIC" "B_STRPT_PNMN" "TLT" "Pneumo" 0.25 1 -"EUCAST 2018" "MIC" "B_STRPT_PNMN" "VAN" "Pneumo" 2 4 -"EUCAST 2018" "MIC" "B_STRPT_VIRI" "AMP" "Viridans strept" 0.5 4 -"EUCAST 2018" "MIC" "B_STRPT_VIRI" "AMX" "Viridans strept" 0.5 4 -"EUCAST 2018" "MIC" "B_STRPT_VIRI" "CLI" "Viridans strept" 0.5 1 -"EUCAST 2018" "MIC" "B_STRPT_VIRI" "CRO" "Viridans strept" 0.5 1 -"EUCAST 2018" "MIC" "B_STRPT_VIRI" "CTX" "Viridans strept" 0.5 1 -"EUCAST 2018" "MIC" "B_STRPT_VIRI" "CXM" "Viridans strept" 0.5 1 -"EUCAST 2018" "MIC" "B_STRPT_VIRI" "CZO" "Viridans strept" 0.5 1 -"EUCAST 2018" "MIC" "B_STRPT_VIRI" "DAL" "Viridans strept" 0.125 0.25 -"EUCAST 2018" "MIC" "B_STRPT_VIRI" "DOR" "Viridans strept" 1 2 -"EUCAST 2018" "MIC" "B_STRPT_VIRI" "ETP" "Viridans strept" 0.5 1 -"EUCAST 2018" "MIC" "B_STRPT_VIRI" "FEP" "Viridans strept" 0.5 1 -"EUCAST 2018" "MIC" "B_STRPT_VIRI" "GEH" "Viridans strept" 128 128 -"EUCAST 2018" "MIC" "B_STRPT_VIRI" "GEN" "Viridans strept" 128 128 -"EUCAST 2018" "MIC" "B_STRPT_VIRI" "IPM" "Viridans strept" 2 4 -"EUCAST 2018" "MIC" "B_STRPT_VIRI" "MEM" "Viridans strept" 2 4 -"EUCAST 2018" "MIC" "B_STRPT_VIRI" "ORI" "Viridans strept" 0.25 0.5 -"EUCAST 2018" "MIC" "B_STRPT_VIRI" "PEN" "Viridans strept" 0.25 4 -"EUCAST 2018" "MIC" "B_STRPT_VIRI" "TEC" "Viridans strept" 2 4 -"EUCAST 2018" "MIC" "B_STRPT_VIRI" "TZD" "Viridans strept" 0.25 0.5 -"EUCAST 2018" "MIC" "B_STRPT_VIRI" "VAN" "Viridans strept" 2 4 -"EUCAST 2018" "MIC" "F_ASPRG_MGTS" "AMB" "Aspergillus" 1 4 -"EUCAST 2018" "MIC" "F_ASPRG_MGTS" "POS" "Aspergillus" 0.125 0.25 -"EUCAST 2018" "MIC" "F_ASPRG_MGTS" "VOR" "Aspergillus" 1 4 -"EUCAST 2018" "MIC" "F_ASPRG_NDLN" "AMB" "Aspergillus" 1 4 -"EUCAST 2018" "MIC" "F_ASPRG_TERRS" "POS" "Aspergillus" 0.125 0.5 -"EUCAST 2018" "MIC" "F_CANDD" "AMB" "Candida" 1 2 -"EUCAST 2018" "MIC" "F_CANDD" "ANI" "Candida" 0.064 0.12 -"EUCAST 2018" "MIC" "F_CANDD" "FLU" "Candida" 2 8 -"EUCAST 2018" "MIC" "F_CANDD" "FLU" "Candida" -"EUCAST 2018" "MIC" "F_CANDD_ALBC" "AMB" "Candida" 1 2 -"EUCAST 2018" "MIC" "F_CANDD_ALBC" "ANI" "Candida" 0.032 0.06 -"EUCAST 2018" "MIC" "F_CANDD_ALBC" "FLU" "Candida" 2 8 -"EUCAST 2018" "MIC" "F_CANDD_ALBC" "ITR" "Candida" 0.064 0.12 -"EUCAST 2018" "MIC" "F_CANDD_ALBC" "MIF" "Candida" 0.016 0.03 -"EUCAST 2018" "MIC" "F_CANDD_ALBC" "POS" "Candida" 0.064 0.12 -"EUCAST 2018" "MIC" "F_CANDD_ALBC" "VOR" "Candida" 0.125 0.25 -"EUCAST 2018" "MIC" "F_CANDD_GLBR" "AMB" "Candida" 1 2 -"EUCAST 2018" "MIC" "F_CANDD_GLBR" "ANI" "Candida" 0.064 0.12 -"EUCAST 2018" "MIC" "F_CANDD_GLBR" "FLU" "Candida" 0.002 64 -"EUCAST 2018" "MIC" "F_CANDD_GLBR" "MIF" "Candida" 0.032 0.06 -"EUCAST 2018" "MIC" "F_CANDD_PRPS" "AMB" "Candida" 1 2 -"EUCAST 2018" "MIC" "F_CANDD_PRPS" "ANI" "Candida" 0.002 8 -"EUCAST 2018" "MIC" "F_CANDD_PRPS" "FLU" "Candida" 2 8 -"EUCAST 2018" "MIC" "F_CANDD_PRPS" "ITR" "Candida" 0.125 0.25 -"EUCAST 2018" "MIC" "F_CANDD_PRPS" "MIF" "Candida" 0.002 4 -"EUCAST 2018" "MIC" "F_CANDD_PRPS" "POS" "Candida" 0.064 0.12 -"EUCAST 2018" "MIC" "F_CANDD_PRPS" "VOR" "Candida" 0.125 0.25 -"EUCAST 2018" "MIC" "F_CANDD_TRPC" "AMB" "Candida" 1 2 -"EUCAST 2018" "MIC" "F_CANDD_TRPC" "ANI" "Candida" 0.064 0.12 -"EUCAST 2018" "MIC" "F_CANDD_TRPC" "FLU" "Candida" 2 8 -"EUCAST 2018" "MIC" "F_CANDD_TRPC" "ITR" "Candida" 0.125 0.25 -"EUCAST 2018" "MIC" "F_CANDD_TRPC" "POS" "Candida" 0.064 0.12 -"EUCAST 2018" "MIC" "F_CANDD_TRPC" "VOR" "Candida" 0.125 0.25 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "AMC" "Enterobacteriaceae" 8 16 -"EUCAST 2017" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "AMC" "Enterobacteriaceae" 32 64 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "AMK" "Enterobacteriaceae" 8 32 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "AMP" "Enterobacteriaceae" 8 16 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "AMX" "Enterobacteriaceae" 8 16 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "ATM" "Enterobacteriaceae" 1 8 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "CAZ" "Enterobacteriaceae" 1 8 -"EUCAST 2017" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CFM" "Enterobacteriaceae" 1 2 -"EUCAST 2017" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CFR" "Enterobacteriaceae" 16 32 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "CHL" "Enterobacteriaceae" 8 16 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "CIP" "Enterobacteriaceae" 0.25 1 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "COL" "Enterobacteriaceae" 2 4 -"EUCAST 2017" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CPD" "Enterobacteriaceae" 1 2 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "CPT" "Enterobacteriaceae" 0.5 1 -"EUCAST 2017" "MIC" "Oral" "B_[FAM]_ENTRBCTR" "CRO" "Enterobacteriaceae" 1 4 -"EUCAST 2017" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CTB" "Enterobacteriaceae" 1 2 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "CTX" "Enterobacteriaceae" 1 4 -"EUCAST 2017" "MIC" "IV" "B_[FAM]_ENTRBCTR" "CXM" "Enterobacteriaceae" 8 16 -"EUCAST 2017" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CXM" "Enterobacteriaceae" 8 16 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "CZA" "Enterobacteriaceae" 8 16 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "CZT" "Enterobacteriaceae" 1 2 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "DOR" "Enterobacteriaceae" 1 4 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "ETP" "Enterobacteriaceae" 0.5 2 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "FEP" "Enterobacteriaceae" 1 8 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "FOS" "Enterobacteriaceae" 32 64 -"EUCAST 2017" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "FOS" "Enterobacteriaceae" 32 64 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "GEN" "Enterobacteriaceae" 2 8 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "IPM" "Enterobacteriaceae" 2 16 -"EUCAST 2017" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "LEX" "Enterobacteriaceae" 16 32 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "LVX" "Enterobacteriaceae" 0.5 2 -"EUCAST 2017" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "MEC" "Enterobacteriaceae" 8 16 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "MEM" "Enterobacteriaceae" 2 16 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "MFX" "Enterobacteriaceae" 0.25 0.5 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "NET" "Enterobacteriaceae" 2 8 -"EUCAST 2017" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "NIT" "Enterobacteriaceae" 64 128 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "NOR" "Enterobacteriaceae" 0.5 2 -"EUCAST 2017" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "NTR" "Enterobacteriaceae" 16 32 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "OFX" "Enterobacteriaceae" 0.25 1 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "PIP" "Enterobacteriaceae" 8 32 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "SAM" "Enterobacteriaceae" 8 16 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "SXT" "Enterobacteriaceae" 2 8 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "TCC" "Enterobacteriaceae" 8 32 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "TGC" "Enterobacteriaceae" 1 4 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "TIC" "Enterobacteriaceae" 8 32 -"EUCAST 2017" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "TMP" "Enterobacteriaceae" 2 8 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "TOB" "Enterobacteriaceae" 2 8 -"EUCAST 2017" "MIC" "B_[FAM]_ENTRBCTR" "TZP" "Enterobacteriaceae" 8 32 -"EUCAST 2017" "MIC" "B_ACNTB" "AMK" "Acinetobacter spp." 8 32 -"EUCAST 2017" "MIC" "B_ACNTB" "CIP" "Acinetobacter spp." 1 2 -"EUCAST 2017" "MIC" "B_ACNTB" "COL" "Acinetobacter spp." 2 4 -"EUCAST 2017" "MIC" "B_ACNTB" "DOR" "Acinetobacter spp." 1 4 -"EUCAST 2017" "MIC" "B_ACNTB" "GEN" "Acinetobacter spp." 4 8 -"EUCAST 2017" "MIC" "B_ACNTB" "IPM" "Acinetobacter spp." 2 16 -"EUCAST 2017" "MIC" "B_ACNTB" "LVX" "Acinetobacter spp." 0.5 2 -"EUCAST 2017" "MIC" "B_ACNTB" "MEM" "Acinetobacter spp." 2 16 -"EUCAST 2017" "MIC" "B_ACNTB" "NET" "Acinetobacter spp." 4 8 -"EUCAST 2017" "MIC" "B_ACNTB" "SXT" "Acinetobacter spp." 2 8 -"EUCAST 2017" "MIC" "B_ACNTB" "TOB" "Acinetobacter spp." 4 8 -"EUCAST 2017" "MIC" "B_AERCC" "AMP" "Aerococcus" 0.25 0.5 -"EUCAST 2017" "MIC" "B_AERCC" "CIP" "Aerococcus" 2 4 -"EUCAST 2017" "MIC" "B_AERCC" "LVX" "Aerococcus" 2 4 -"EUCAST 2017" "MIC" "B_AERCC" "MEM" "Aerococcus" 0.25 0.5 -"EUCAST 2017" "MIC" "B_AERCC" "NIT" "Aerococcus" 16 32 -"EUCAST 2017" "MIC" "B_AERCC" "PEN" "Aerococcus" 0.125 0.25 -"EUCAST 2017" "MIC" "B_AERCC" "RIF" "Aerococcus" 0.125 0.25 -"EUCAST 2017" "MIC" "B_AERCC" "VAN" "Aerococcus" 1 2 -"EUCAST 2017" "MIC" "B_CMPYL" "CIP" "Campylobacter jejuni and coli" 0.5 1 -"EUCAST 2017" "MIC" "B_CMPYL" "TCY" "Campylobacter jejuni and coli" 2 4 -"EUCAST 2017" "MIC" "B_CMPYL_COLI" "ERY" "Campylobacter jejuni and coli" 8 16 -"EUCAST 2017" "MIC" "B_CMPYL_JEJN" "ERY" "Campylobacter jejuni and coli" 4 8 -"EUCAST 2017" "MIC" "B_CRYNB" "CIP" "Corynebacterium spp." 1 2 -"EUCAST 2017" "MIC" "B_CRYNB" "CLI" "Corynebacterium spp." 0.5 1 -"EUCAST 2017" "MIC" "B_CRYNB" "GEN" "Corynebacterium spp." 1 2 -"EUCAST 2017" "MIC" "B_CRYNB" "LNZ" "Corynebacterium spp." 2 4 -"EUCAST 2017" "MIC" "B_CRYNB" "MFX" "Corynebacterium spp." 0.5 1 -"EUCAST 2017" "MIC" "B_CRYNB" "PEN" "Corynebacterium spp." 0.125 0.25 -"EUCAST 2017" "MIC" "B_CRYNB" "RIF" "Corynebacterium spp." 0.064 1 -"EUCAST 2017" "MIC" "B_CRYNB" "TCY" "Corynebacterium spp." 2 4 -"EUCAST 2017" "MIC" "B_CRYNB" "VAN" "Corynebacterium spp." 2 4 -"EUCAST 2017" "MIC" "B_CTRDM_DFFC" "DAP" "C. difficile" 4 -"EUCAST 2017" "MIC" "B_CTRDM_DFFC" "FUS" "C. difficile" 2 -"EUCAST 2017" "MIC" "B_CTRDM_DFFC" "MFX" "C. difficile" 4 -"EUCAST 2017" "MIC" "B_CTRDM_DFFC" "MTR" "C. difficile" 2 4 -"EUCAST 2017" "MIC" "B_CTRDM_DFFC" "RIF" "C. difficile" 0.004 -"EUCAST 2017" "MIC" "B_CTRDM_DFFC" "TGC" "C. difficile" 0.25 -"EUCAST 2017" "MIC" "B_CTRDM_DFFC" "VAN" "C. difficile" 2 4 -"EUCAST 2017" "MIC" "B_ENTRC" "AMC" "Enterococcus" 4 16 -"EUCAST 2017" "MIC" "B_ENTRC" "AMP" "Enterococcus" 4 16 -"EUCAST 2017" "MIC" "B_ENTRC" "AMX" "Enterococcus" 4 16 -"EUCAST 2017" "MIC" "UTI" "B_ENTRC" "CIP" "Enterococcus" 4 8 -"EUCAST 2017" "MIC" "B_ENTRC" "GEH" "Enterococcus" 128 128 -"EUCAST 2017" "MIC" "B_ENTRC" "GEN" "Enterococcus" 128 128 -"EUCAST 2017" "MIC" "B_ENTRC" "IPM" "Enterococcus" 4 16 -"EUCAST 2017" "MIC" "B_ENTRC" "LNZ" "Enterococcus" 4 8 -"EUCAST 2017" "MIC" "UTI" "B_ENTRC" "LVX" "Enterococcus" 4 8 -"EUCAST 2017" "MIC" "B_ENTRC" "QDA" "Enterococcus" 1 8 -"EUCAST 2017" "MIC" "B_ENTRC" "SAM" "Enterococcus" 4 16 -"EUCAST 2017" "MIC" "B_ENTRC" "STH" "Enterococcus" 512 1024 -"EUCAST 2017" "MIC" "B_ENTRC" "STR" "Enterococcus" 512 1024 -"EUCAST 2017" "MIC" "B_ENTRC" "SXT" "Enterococcus" 0.032 2 -"EUCAST 2017" "MIC" "B_ENTRC" "TEC" "Enterococcus" 2 4 -"EUCAST 2017" "MIC" "B_ENTRC" "TGC" "Enterococcus" 0.25 1 -"EUCAST 2017" "MIC" "UTI" "B_ENTRC" "TMP" "Enterococcus" 0.032 2 -"EUCAST 2017" "MIC" "B_ENTRC" "VAN" "Enterococcus" 4 8 -"EUCAST 2017" "MIC" "UTI" "B_ENTRC_FCLS" "NIT" "Enterococcus" 64 128 -"EUCAST 2017" "MIC" "B_HLCBCT_PYLR" "AMX" "H. pylori" 0.125 0.25 -"EUCAST 2017" "MIC" "B_HLCBCT_PYLR" "CLR" "H. pylori" 0.25 1 -"EUCAST 2017" "MIC" "B_HLCBCT_PYLR" "LVX" "H. pylori" 1 2 -"EUCAST 2017" "MIC" "B_HLCBCT_PYLR" "MTR" "H. pylori" 8 16 -"EUCAST 2017" "MIC" "B_HLCBCT_PYLR" "RIF" "H. pylori" 1 2 -"EUCAST 2017" "MIC" "B_HLCBCT_PYLR" "TCY" "H. pylori" 1 2 -"EUCAST 2017" "MIC" "B_HMPHL_INFL" "AMC" "H. influenzae" 2 4 -"EUCAST 2017" "MIC" "B_HMPHL_INFL" "AMP" "H. influenzae" 1 2 -"EUCAST 2017" "MIC" "B_HMPHL_INFL" "AMX" "H. influenzae" 2 4 -"EUCAST 2017" "MIC" "B_HMPHL_INFL" "AZM" "H. influenzae" 0.125 8 -"EUCAST 2017" "MIC" "B_HMPHL_INFL" "CFM" "H. influenzae" 0.125 0.25 -"EUCAST 2017" "MIC" "B_HMPHL_INFL" "CHL" "H. influenzae" 2 4 -"EUCAST 2017" "MIC" "B_HMPHL_INFL" "CIP" "H. influenzae" 0.064 0.12 -"EUCAST 2017" "MIC" "B_HMPHL_INFL" "CLR" "H. influenzae" 1 64 -"EUCAST 2017" "MIC" "B_HMPHL_INFL" "CPD" "H. influenzae" 0.25 1 -"EUCAST 2017" "MIC" "B_HMPHL_INFL" "CPT" "H. influenzae" 0.032 0.06 -"EUCAST 2017" "MIC" "B_HMPHL_INFL" "CRO" "H. influenzae" 0.125 0.25 -"EUCAST 2017" "MIC" "B_HMPHL_INFL" "CTB" "H. influenzae" 1 2 -"EUCAST 2017" "MIC" "B_HMPHL_INFL" "CTX" "H. influenzae" 0.125 0.25 -"EUCAST 2017" "MIC" "IV" "B_HMPHL_INFL" "CXM" "H. influenzae" 1 4 -"EUCAST 2017" "MIC" "Oral" "B_HMPHL_INFL" "CXM" "H. influenzae" 0.125 2 -"EUCAST 2017" "MIC" "B_HMPHL_INFL" "DOR" "H. influenzae" 1 2 -"EUCAST 2017" "MIC" "B_HMPHL_INFL" "DOX" "H. influenzae" 1 4 -"EUCAST 2017" "MIC" "B_HMPHL_INFL" "ERY" "H. influenzae" 0.5 32 -"EUCAST 2017" "MIC" "B_HMPHL_INFL" "ETP" "H. influenzae" 0.5 1 -"EUCAST 2017" "MIC" "B_HMPHL_INFL" "FEP" "H. influenzae" 0.25 0.5 -"EUCAST 2017" "MIC" "B_HMPHL_INFL" "IPM" "H. influenzae" 2 4 -"EUCAST 2017" "MIC" "B_HMPHL_INFL" "LVX" "H. influenzae" 0.064 0.12 -"EUCAST 2017" "MIC" "Non-meningitis" "B_HMPHL_INFL" "MEM" "H. influenzae" 2 4 -"EUCAST 2017" "MIC" "Meningitis" "B_HMPHL_INFL" "MEM" "H. influenzae" 0.25 2 -"EUCAST 2017" "MIC" "B_HMPHL_INFL" "MFX" "H. influenzae" 0.125 0.25 -"EUCAST 2017" "MIC" "B_HMPHL_INFL" "MNO" "H. influenzae" 1 4 -"EUCAST 2017" "MIC" "B_HMPHL_INFL" "OFX" "H. influenzae" 0.064 0.12 -"EUCAST 2017" "MIC" "Prophylaxis" "B_HMPHL_INFL" "RIF" "H. influenzae" 1 2 -"EUCAST 2017" "MIC" "B_HMPHL_INFL" "RXT" "H. influenzae" 1 32 -"EUCAST 2017" "MIC" "B_HMPHL_INFL" "SAM" "H. influenzae" 1 2 -"EUCAST 2017" "MIC" "B_HMPHL_INFL" "SXT" "H. influenzae" 0.5 2 -"EUCAST 2017" "MIC" "B_HMPHL_INFL" "TCY" "H. influenzae" 1 4 -"EUCAST 2017" "MIC" "B_HMPHL_INFL" "TLT" "H. influenzae" 0.125 16 -"EUCAST 2017" "MIC" "B_KGLLA_KING" "AMP" "Kingella" 0.064 0.12 -"EUCAST 2017" "MIC" "B_KGLLA_KING" "AMX" "Kingella" 0.125 0.25 -"EUCAST 2017" "MIC" "B_KGLLA_KING" "AZM" "Kingella" 0.25 0.5 -"EUCAST 2017" "MIC" "B_KGLLA_KING" "CIP" "Kingella" 0.064 0.12 -"EUCAST 2017" "MIC" "B_KGLLA_KING" "CLR" "Kingella" 0.5 1 -"EUCAST 2017" "MIC" "B_KGLLA_KING" "CRO" "Kingella" 0.064 0.12 -"EUCAST 2017" "MIC" "B_KGLLA_KING" "CTX" "Kingella" 0.125 0.25 -"EUCAST 2017" "MIC" "B_KGLLA_KING" "CXM" "Kingella" 0.5 1 -"EUCAST 2017" "MIC" "B_KGLLA_KING" "DOX" "Kingella" 0.5 1 -"EUCAST 2017" "MIC" "B_KGLLA_KING" "ERY" "Kingella" 0.5 1 -"EUCAST 2017" "MIC" "B_KGLLA_KING" "LVX" "Kingella" 0.125 0.25 -"EUCAST 2017" "MIC" "B_KGLLA_KING" "MEM" "Kingella" 0.032 0.06 -"EUCAST 2017" "MIC" "B_KGLLA_KING" "PEN" "Kingella" 0.032 0.06 -"EUCAST 2017" "MIC" "B_KGLLA_KING" "RIF" "Kingella" 0.5 1 -"EUCAST 2017" "MIC" "B_KGLLA_KING" "SXT" "Kingella" 0.25 0.5 -"EUCAST 2017" "MIC" "B_KGLLA_KING" "TCY" "Kingella" 0.5 1 -"EUCAST 2017" "MIC" "B_LISTR_MNCY" "AMP" "Listeria monocytogenes" 1 2 -"EUCAST 2017" "MIC" "B_LISTR_MNCY" "ERY" "Listeria monocytogenes" 1 2 -"EUCAST 2017" "MIC" "B_LISTR_MNCY" "MEM" "Listeria monocytogenes" 0.25 0.5 -"EUCAST 2017" "MIC" "B_LISTR_MNCY" "PEN" "Listeria monocytogenes" 1 2 -"EUCAST 2017" "MIC" "B_LISTR_MNCY" "SXT" "Listeria monocytogenes" 0.064 0.12 -"EUCAST 2017" "MIC" "B_MRXLL_CTRR" "AMC" "M. catarrhalis" 1 2 -"EUCAST 2017" "MIC" "B_MRXLL_CTRR" "AZM" "M. catarrhalis" 0.25 1 -"EUCAST 2017" "MIC" "B_MRXLL_CTRR" "CFM" "M. catarrhalis" 0.5 2 -"EUCAST 2017" "MIC" "B_MRXLL_CTRR" "CHL" "M. catarrhalis" 2 4 -"EUCAST 2017" "MIC" "B_MRXLL_CTRR" "CIP" "M. catarrhalis" 0.5 1 -"EUCAST 2017" "MIC" "B_MRXLL_CTRR" "CLR" "M. catarrhalis" 0.25 1 -"EUCAST 2017" "MIC" "B_MRXLL_CTRR" "CRO" "M. catarrhalis" 1 4 -"EUCAST 2017" "MIC" "B_MRXLL_CTRR" "CTX" "M. catarrhalis" 1 4 -"EUCAST 2017" "MIC" "IV" "B_MRXLL_CTRR" "CXM" "M. catarrhalis" 4 16 -"EUCAST 2017" "MIC" "Oral" "B_MRXLL_CTRR" "CXM" "M. catarrhalis" 0.125 8 -"EUCAST 2017" "MIC" "B_MRXLL_CTRR" "DOR" "M. catarrhalis" 1 2 -"EUCAST 2017" "MIC" "B_MRXLL_CTRR" "DOX" "M. catarrhalis" 1 4 -"EUCAST 2017" "MIC" "B_MRXLL_CTRR" "ERY" "M. catarrhalis" 0.25 1 -"EUCAST 2017" "MIC" "B_MRXLL_CTRR" "ETP" "M. catarrhalis" 0.5 1 -"EUCAST 2017" "MIC" "B_MRXLL_CTRR" "FEP" "M. catarrhalis" 4 8 -"EUCAST 2017" "MIC" "B_MRXLL_CTRR" "IPM" "M. catarrhalis" 2 4 -"EUCAST 2017" "MIC" "B_MRXLL_CTRR" "LVX" "M. catarrhalis" 1 2 -"EUCAST 2017" "MIC" "B_MRXLL_CTRR" "MEM" "M. catarrhalis" 2 4 -"EUCAST 2017" "MIC" "B_MRXLL_CTRR" "MFX" "M. catarrhalis" 0.5 1 -"EUCAST 2017" "MIC" "B_MRXLL_CTRR" "MNO" "M. catarrhalis" 1 4 -"EUCAST 2017" "MIC" "B_MRXLL_CTRR" "OFX" "M. catarrhalis" 0.5 1 -"EUCAST 2017" "MIC" "B_MRXLL_CTRR" "RXT" "M. catarrhalis" 0.5 2 -"EUCAST 2017" "MIC" "B_MRXLL_CTRR" "SAM" "M. catarrhalis" 1 2 -"EUCAST 2017" "MIC" "B_MRXLL_CTRR" "SXT" "M. catarrhalis" 0.5 2 -"EUCAST 2017" "MIC" "B_MRXLL_CTRR" "TCY" "M. catarrhalis" 1 4 -"EUCAST 2017" "MIC" "B_MRXLL_CTRR" "TLT" "M. catarrhalis" 0.25 1 -"EUCAST 2017" "MIC" "B_NESSR_GNRR" "AZM" "N. gonorrhoeae" 0.25 1 -"EUCAST 2017" "MIC" "B_NESSR_GNRR" "CFM" "N. gonorrhoeae" 0.125 0.25 -"EUCAST 2017" "MIC" "B_NESSR_GNRR" "CIP" "N. gonorrhoeae" 0.032 0.12 -"EUCAST 2017" "MIC" "B_NESSR_GNRR" "CRO" "N. gonorrhoeae" 0.125 0.25 -"EUCAST 2017" "MIC" "B_NESSR_GNRR" "CTX" "N. gonorrhoeae" 0.125 0.25 -"EUCAST 2017" "MIC" "B_NESSR_GNRR" "OFX" "N. gonorrhoeae" 0.125 0.5 -"EUCAST 2017" "MIC" "B_NESSR_GNRR" "PEN" "N. gonorrhoeae" 0.064 2 -"EUCAST 2017" "MIC" "B_NESSR_GNRR" "SPT" "N. gonorrhoeae" 64 128 -"EUCAST 2017" "MIC" "B_NESSR_GNRR" "TCY" "N. gonorrhoeae" 0.5 2 -"EUCAST 2017" "MIC" "B_NESSR_MNNG" "AMP" "N. meningitidis" 0.125 2 -"EUCAST 2017" "MIC" "B_NESSR_MNNG" "AMX" "N. meningitidis" 0.125 2 -"EUCAST 2017" "MIC" "B_NESSR_MNNG" "CHL" "N. meningitidis" 2 8 -"EUCAST 2017" "MIC" "B_NESSR_MNNG" "CIP" "N. meningitidis" 0.032 0.06 -"EUCAST 2017" "MIC" "B_NESSR_MNNG" "CRO" "N. meningitidis" 0.125 0.25 -"EUCAST 2017" "MIC" "B_NESSR_MNNG" "CTX" "N. meningitidis" 0.125 0.25 -"EUCAST 2017" "MIC" "B_NESSR_MNNG" "MEM" "N. meningitidis" 0.25 0.5 -"EUCAST 2017" "MIC" "B_NESSR_MNNG" "MNO" "N. meningitidis" 1 4 -"EUCAST 2017" "MIC" "B_NESSR_MNNG" "PEN" "N. meningitidis" 0.064 0.5 -"EUCAST 2017" "MIC" "B_NESSR_MNNG" "RIF" "N. meningitidis" 0.25 0.5 -"EUCAST 2017" "MIC" "B_NESSR_MNNG" "TCY" "N. meningitidis" 1 4 -"EUCAST 2017" "MIC" "B_PSDMN" "AMK" "Pseudo" 8 32 -"EUCAST 2017" "MIC" "B_PSDMN" "ATM" "Pseudo" 1 32 -"EUCAST 2017" "MIC" "B_PSDMN" "CAZ" "Pseudo" 8 16 -"EUCAST 2017" "MIC" "B_PSDMN" "CIP" "Pseudo" 0.5 1 -"EUCAST 2017" "MIC" "B_PSDMN" "COL" "Pseudo" 4 8 -"EUCAST 2017" "MIC" "B_PSDMN" "CZA" "Pseudo" 8 16 -"EUCAST 2017" "MIC" "B_PSDMN" "CZT" "Pseudo" 4 8 -"EUCAST 2017" "MIC" "B_PSDMN" "DOR" "Pseudo" 1 4 -"EUCAST 2017" "MIC" "B_PSDMN" "FEP" "Pseudo" 8 16 -"EUCAST 2017" "MIC" "B_PSDMN" "GEN" "Pseudo" 4 8 -"EUCAST 2017" "MIC" "B_PSDMN" "IPM" "Pseudo" 4 16 -"EUCAST 2017" "MIC" "B_PSDMN" "LVX" "Pseudo" 1 2 -"EUCAST 2017" "MIC" "B_PSDMN" "MEM" "Pseudo" 2 16 -"EUCAST 2017" "MIC" "B_PSDMN" "NET" "Pseudo" 4 8 -"EUCAST 2017" "MIC" "B_PSDMN" "PIP" "Pseudo" 16 32 -"EUCAST 2017" "MIC" "B_PSDMN" "TCC" "Pseudo" 16 32 -"EUCAST 2017" "MIC" "B_PSDMN" "TIC" "Pseudo" 16 32 -"EUCAST 2017" "MIC" "B_PSDMN" "TOB" "Pseudo" 4 8 -"EUCAST 2017" "MIC" "B_PSDMN" "TZP" "Pseudo" 16 32 -"EUCAST 2017" "MIC" "B_PSTRL_MLTC" "AMC" "Pasteurella multocida" 1 2 -"EUCAST 2017" "MIC" "B_PSTRL_MLTC" "AMP" "Pasteurella multocida" 1 2 -"EUCAST 2017" "MIC" "B_PSTRL_MLTC" "AMX" "Pasteurella multocida" 1 2 -"EUCAST 2017" "MIC" "B_PSTRL_MLTC" "CIP" "Pasteurella multocida" 0.064 0.12 -"EUCAST 2017" "MIC" "B_PSTRL_MLTC" "CTX" "Pasteurella multocida" 0.032 0.06 -"EUCAST 2017" "MIC" "B_PSTRL_MLTC" "DOX" "Pasteurella multocida" 1 2 -"EUCAST 2017" "MIC" "B_PSTRL_MLTC" "LVX" "Pasteurella multocida" 0.064 0.12 -"EUCAST 2017" "MIC" "B_PSTRL_MLTC" "PEN" "Pasteurella multocida" 0.5 1 -"EUCAST 2017" "MIC" "B_PSTRL_MLTC" "SXT" "Pasteurella multocida" 0.25 0.5 -"EUCAST 2017" "MIC" "B_SLMNL" "CIP" "Enterobacteriaceae" 0.064 0.12 -"EUCAST 2017" "MIC" "B_STNTR_MLTP" "SXT" "Stenotrophomonas maltophilia" 4 8 -"EUCAST 2017" "MIC" "B_STPHY" "AZM" "Staphs" 1 4 -"EUCAST 2017" "MIC" "B_STPHY" "CHL" "Staphs" 8 16 -"EUCAST 2017" "MIC" "B_STPHY" "CLI" "Staphs" 0.25 1 -"EUCAST 2017" "MIC" "B_STPHY" "CLR" "Staphs" 1 4 -"EUCAST 2017" "MIC" "B_STPHY" "DAL" "Staphs" 0.125 0.25 -"EUCAST 2017" "MIC" "B_STPHY" "DAP" "Staphs" 1 2 -"EUCAST 2017" "MIC" "B_STPHY" "DOX" "Staphs" 1 4 -"EUCAST 2017" "MIC" "B_STPHY" "ERY" "Staphs" 1 4 -"EUCAST 2017" "MIC" "B_STPHY" "FOS" "Staphs" 32 64 -"EUCAST 2017" "MIC" "B_STPHY" "FOX" "Staphs" 8 16 -"EUCAST 2017" "MIC" "B_STPHY" "FOX" "Staphs" -"EUCAST 2017" "MIC" "B_STPHY" "FUS" "Staphs" 1 2 -"EUCAST 2017" "MIC" "B_STPHY" "KAN" "Staphs" 8 16 -"EUCAST 2017" "MIC" "B_STPHY" "LNZ" "Staphs" 4 8 -"EUCAST 2017" "MIC" "B_STPHY" "MNO" "Staphs" 0.5 2 -"EUCAST 2017" "MIC" "UTI" "B_STPHY" "NIT" "Staphs" 64 128 -"EUCAST 2017" "MIC" "B_STPHY" "ORI" "Staphs" 0.125 0.25 -"EUCAST 2017" "MIC" "B_STPHY" "OXA" "Staphs" 2 4 -"EUCAST 2017" "MIC" "B_STPHY" "QDA" "Staphs" 1 4 -"EUCAST 2017" "MIC" "B_STPHY" "RIF" "Staphs" 0.064 1 -"EUCAST 2017" "MIC" "B_STPHY" "RXT" "Staphs" 1 4 -"EUCAST 2017" "MIC" "B_STPHY" "SXT" "Staphs" 2 8 -"EUCAST 2017" "MIC" "B_STPHY" "TCY" "Staphs" 1 4 -"EUCAST 2017" "MIC" "B_STPHY" "TGC" "Staphs" 0.5 1 -"EUCAST 2017" "MIC" "UTI" "B_STPHY" "TMP" "Staphs" 2 8 -"EUCAST 2017" "MIC" "B_STPHY" "TZD" "Staphs" 0.5 1 -"EUCAST 2017" "MIC" "B_STPHY_AURS" "AMK" "Staphs" 8 32 -"EUCAST 2017" "MIC" "B_STPHY_AURS" "BPR" "Staphs" 2 4 -"EUCAST 2017" "MIC" "B_STPHY_AURS" "CIP" "Staphs" 1 2 -"EUCAST 2017" "MIC" "B_STPHY_AURS" "CPT" "Staphs" 1 2 -"EUCAST 2017" "MIC" "B_STPHY_AURS" "FOX" "Staphs" 4 8 -"EUCAST 2017" "MIC" "B_STPHY_AURS" "GEN" "Staphs" 1 2 -"EUCAST 2017" "MIC" "B_STPHY_AURS" "LVX" "Staphs" 1 2 -"EUCAST 2017" "MIC" "B_STPHY_AURS" "MFX" "Staphs" 0.25 0.5 -"EUCAST 2017" "MIC" "B_STPHY_AURS" "NET" "Staphs" 1 2 -"EUCAST 2017" "MIC" "B_STPHY_AURS" "OFX" "Staphs" 1 2 -"EUCAST 2017" "MIC" "B_STPHY_AURS" "OXA" "Staphs" 2 4 -"EUCAST 2017" "MIC" "B_STPHY_AURS" "PEN" "Staphs" 0.125 0.25 -"EUCAST 2017" "MIC" "B_STPHY_AURS" "TEC" "Staphs" 2 4 -"EUCAST 2017" "MIC" "B_STPHY_AURS" "TLV" "Staphs" 0.125 0.25 -"EUCAST 2017" "MIC" "B_STPHY_AURS" "TOB" "Staphs" 1 2 -"EUCAST 2017" "MIC" "B_STPHY_AURS" "VAN" "Staphs" 2 4 -"EUCAST 2017" "MIC" "B_STPHY_CONS" "AMK" "Staphs" 8 32 -"EUCAST 2017" "MIC" "B_STPHY_CONS" "CIP" "Staphs" 1 2 -"EUCAST 2017" "MIC" "B_STPHY_CONS" "GEN" "Staphs" 1 2 -"EUCAST 2017" "MIC" "B_STPHY_CONS" "LVX" "Staphs" 1 2 -"EUCAST 2017" "MIC" "B_STPHY_CONS" "MFX" "Staphs" 0.25 0.5 -"EUCAST 2017" "MIC" "B_STPHY_CONS" "NET" "Staphs" 1 2 -"EUCAST 2017" "MIC" "B_STPHY_CONS" "OFX" "Staphs" 1 2 -"EUCAST 2017" "MIC" "B_STPHY_CONS" "OXA" "Staphs" 0.25 0.5 -"EUCAST 2017" "MIC" "B_STPHY_CONS" "TEC" "Staphs" 4 8 -"EUCAST 2017" "MIC" "B_STPHY_CONS" "TOB" "Staphs" 1 2 -"EUCAST 2017" "MIC" "B_STPHY_CONS" "VAN" "Staphs" 4 8 -"EUCAST 2017" "MIC" "B_STPHY_EPDR" "OXA" "Staphs" 0.25 0.5 -"EUCAST 2017" "MIC" "B_STPHY_LGDN" "FOX" "Staphs" 4 8 -"EUCAST 2017" "MIC" "B_STPHY_LGDN" "OXA" "Staphs" 2 4 -"EUCAST 2017" "MIC" "B_STPHY_LGDN" "PEN" "Staphs" 0.125 0.25 -"EUCAST 2017" "MIC" "B_STRPT" "AZM" "Strep A, B, C, G" 0.25 1 -"EUCAST 2017" "MIC" "B_STRPT" "CHL" "Strep A, B, C, G" 8 16 -"EUCAST 2017" "MIC" "B_STRPT" "CLI" "Strep A, B, C, G" 0.5 1 -"EUCAST 2017" "MIC" "B_STRPT" "CLR" "Strep A, B, C, G" 0.25 1 -"EUCAST 2017" "MIC" "B_STRPT" "DAL" "Strep A, B, C, G" 0.125 0.25 -"EUCAST 2017" "MIC" "B_STRPT" "DAP" "Strep A, B, C, G" 1 2 -"EUCAST 2017" "MIC" "B_STRPT" "DOX" "Strep A, B, C, G" 1 4 -"EUCAST 2017" "MIC" "B_STRPT" "ERY" "Strep A, B, C, G" 0.25 1 -"EUCAST 2017" "MIC" "B_STRPT" "LNZ" "Strep A, B, C, G" 2 8 -"EUCAST 2017" "MIC" "B_STRPT" "LVX" "Strep A, B, C, G" 1 4 -"EUCAST 2017" "MIC" "B_STRPT" "MFX" "Strep A, B, C, G" 0.5 2 -"EUCAST 2017" "MIC" "B_STRPT" "MNO" "Strep A, B, C, G" 0.5 2 -"EUCAST 2017" "MIC" "B_STRPT" "ORI" "Strep A, B, C, G" 0.25 0.5 -"EUCAST 2017" "MIC" "B_STRPT" "PEN" "Strep A, B, C, G" 0.25 0.5 -"EUCAST 2017" "MIC" "B_STRPT" "RIF" "Strep A, B, C, G" 0.064 1 -"EUCAST 2017" "MIC" "B_STRPT" "RXT" "Strep A, B, C, G" 0.5 2 -"EUCAST 2017" "MIC" "B_STRPT" "SXT" "Strep A, B, C, G" 1 4 -"EUCAST 2017" "MIC" "B_STRPT" "TCY" "Strep A, B, C, G" 1 4 -"EUCAST 2017" "MIC" "B_STRPT" "TEC" "Strep A, B, C, G" 2 4 -"EUCAST 2017" "MIC" "B_STRPT" "TGC" "Strep A, B, C, G" 0.25 1 -"EUCAST 2017" "MIC" "B_STRPT" "TLT" "Strep A, B, C, G" 0.25 1 -"EUCAST 2017" "MIC" "B_STRPT" "TZD" "Strep A, B, C, G" 0.5 1 -"EUCAST 2017" "MIC" "B_STRPT" "VAN" "Strep A, B, C, G" 2 4 -"EUCAST 2017" "MIC" "UTI" "B_STRPT_GRPB" "NIT" "Strep A, B, C, G" 64 128 -"EUCAST 2017" "MIC" "UTI" "B_STRPT_GRPB" "TMP" "Strep A, B, C, G" 2 4 -"EUCAST 2017" "MIC" "B_STRPT_PNMN" "AMP" "Pneumo" 0.5 4 -"EUCAST 2017" "MIC" "B_STRPT_PNMN" "AZM" "Pneumo" 0.25 1 -"EUCAST 2017" "MIC" "B_STRPT_PNMN" "CEC" "Pneumo" 0.032 1 -"EUCAST 2017" "MIC" "B_STRPT_PNMN" "CHL" "Pneumo" 8 16 -"EUCAST 2017" "MIC" "B_STRPT_PNMN" "CIP" "Pneumo" -"EUCAST 2017" "MIC" "B_STRPT_PNMN" "CLI" "Pneumo" 0.5 1 -"EUCAST 2017" "MIC" "B_STRPT_PNMN" "CLR" "Pneumo" 0.25 1 -"EUCAST 2017" "MIC" "B_STRPT_PNMN" "CPD" "Pneumo" 0.25 1 -"EUCAST 2017" "MIC" "B_STRPT_PNMN" "CPT" "Pneumo" 0.25 0.5 -"EUCAST 2017" "MIC" "B_STRPT_PNMN" "CRO" "Pneumo" 0.5 4 -"EUCAST 2017" "MIC" "B_STRPT_PNMN" "CTX" "Pneumo" 0.5 4 -"EUCAST 2017" "MIC" "IV" "B_STRPT_PNMN" "CXM" "Pneumo" 0.5 2 -"EUCAST 2017" "MIC" "Oral" "B_STRPT_PNMN" "CXM" "Pneumo" 0.25 1 -"EUCAST 2017" "MIC" "B_STRPT_PNMN" "DOR" "Pneumo" 1 2 -"EUCAST 2017" "MIC" "B_STRPT_PNMN" "DOX" "Pneumo" 1 4 -"EUCAST 2017" "MIC" "B_STRPT_PNMN" "ERY" "Pneumo" 0.25 1 -"EUCAST 2017" "MIC" "B_STRPT_PNMN" "ETP" "Pneumo" 0.5 1 -"EUCAST 2017" "MIC" "B_STRPT_PNMN" "FEP" "Pneumo" 1 4 -"EUCAST 2017" "MIC" "B_STRPT_PNMN" "IPM" "Pneumo" 2 4 -"EUCAST 2017" "MIC" "B_STRPT_PNMN" "LNZ" "Pneumo" 2 8 -"EUCAST 2017" "MIC" "B_STRPT_PNMN" "LVX" "Pneumo" 2 4 -"EUCAST 2017" "MIC" "Non-meningitis" "B_STRPT_PNMN" "MEM" "Pneumo" 2 4 -"EUCAST 2017" "MIC" "Meningitis" "B_STRPT_PNMN" "MEM" "Pneumo" 0.25 2 -"EUCAST 2017" "MIC" "B_STRPT_PNMN" "MFX" "Pneumo" 0.5 1 -"EUCAST 2017" "MIC" "B_STRPT_PNMN" "MNO" "Pneumo" 0.5 2 -"EUCAST 2017" "MIC" "B_STRPT_PNMN" "OFX" "Pneumo" -"EUCAST 2017" "MIC" "Non-meningitis" "B_STRPT_PNMN" "PEN" "Pneumo" 0.064 4 -"EUCAST 2017" "MIC" "Meningitis" "B_STRPT_PNMN" "PEN" "Pneumo" 0.064 0.12 -"EUCAST 2017" "MIC" "B_STRPT_PNMN" "RIF" "Pneumo" 0.064 1 -"EUCAST 2017" "MIC" "B_STRPT_PNMN" "RXT" "Pneumo" 0.5 2 -"EUCAST 2017" "MIC" "B_STRPT_PNMN" "SXT" "Pneumo" 1 4 -"EUCAST 2017" "MIC" "B_STRPT_PNMN" "TCY" "Pneumo" 1 4 -"EUCAST 2017" "MIC" "B_STRPT_PNMN" "TEC" "Pneumo" 2 4 -"EUCAST 2017" "MIC" "B_STRPT_PNMN" "TLT" "Pneumo" 0.25 1 -"EUCAST 2017" "MIC" "B_STRPT_PNMN" "VAN" "Pneumo" 2 4 -"EUCAST 2017" "MIC" "B_STRPT_VIRI" "AMP" "Viridans strept" 0.5 4 -"EUCAST 2017" "MIC" "B_STRPT_VIRI" "AMX" "Viridans strept" 0.5 4 -"EUCAST 2017" "MIC" "B_STRPT_VIRI" "CLI" "Viridans strept" 0.5 1 -"EUCAST 2017" "MIC" "B_STRPT_VIRI" "CRO" "Viridans strept" 0.5 1 -"EUCAST 2017" "MIC" "B_STRPT_VIRI" "CTX" "Viridans strept" 0.5 1 -"EUCAST 2017" "MIC" "B_STRPT_VIRI" "CXM" "Viridans strept" 0.5 1 -"EUCAST 2017" "MIC" "B_STRPT_VIRI" "CZO" "Viridans strept" 0.5 1 -"EUCAST 2017" "MIC" "B_STRPT_VIRI" "DAL" "Viridans strept" 0.125 0.25 -"EUCAST 2017" "MIC" "B_STRPT_VIRI" "DOR" "Viridans strept" 1 2 -"EUCAST 2017" "MIC" "B_STRPT_VIRI" "ETP" "Viridans strept" 0.5 1 -"EUCAST 2017" "MIC" "B_STRPT_VIRI" "FEP" "Viridans strept" 0.5 1 -"EUCAST 2017" "MIC" "B_STRPT_VIRI" "GEH" "Viridans strept" 128 128 -"EUCAST 2017" "MIC" "B_STRPT_VIRI" "GEN" "Viridans strept" 128 128 -"EUCAST 2017" "MIC" "B_STRPT_VIRI" "IPM" "Viridans strept" 2 4 -"EUCAST 2017" "MIC" "B_STRPT_VIRI" "MEM" "Viridans strept" 2 4 -"EUCAST 2017" "MIC" "B_STRPT_VIRI" "ORI" "Viridans strept" 0.25 0.5 -"EUCAST 2017" "MIC" "B_STRPT_VIRI" "PEN" "Viridans strept" 0.25 4 -"EUCAST 2017" "MIC" "B_STRPT_VIRI" "TEC" "Viridans strept" 2 4 -"EUCAST 2017" "MIC" "B_STRPT_VIRI" "TZD" "Viridans strept" 0.25 0.5 -"EUCAST 2017" "MIC" "B_STRPT_VIRI" "VAN" "Viridans strept" 2 4 -"EUCAST 2017" "MIC" "F_ASPRG_MGTS" "AMB" "Aspergillus" 1 4 -"EUCAST 2017" "MIC" "F_ASPRG_MGTS" "POS" "Aspergillus" 0.125 0.25 -"EUCAST 2017" "MIC" "F_ASPRG_MGTS" "VOR" "Aspergillus" 1 4 -"EUCAST 2017" "MIC" "F_ASPRG_NDLN" "AMB" "Aspergillus" 1 4 -"EUCAST 2017" "MIC" "F_ASPRG_TERRS" "POS" "Aspergillus" 0.125 0.5 -"EUCAST 2017" "MIC" "F_CANDD" "AMB" "Candida" 1 2 -"EUCAST 2017" "MIC" "F_CANDD" "ANI" "Candida" 0.064 0.12 -"EUCAST 2017" "MIC" "F_CANDD" "FLU" "Candida" 2 8 -"EUCAST 2017" "MIC" "F_CANDD" "FLU" "Candida" -"EUCAST 2017" "MIC" "F_CANDD_ALBC" "AMB" "Candida" 1 2 -"EUCAST 2017" "MIC" "F_CANDD_ALBC" "ANI" "Candida" 0.032 0.06 -"EUCAST 2017" "MIC" "F_CANDD_ALBC" "FLU" "Candida" 2 8 -"EUCAST 2017" "MIC" "F_CANDD_ALBC" "ITR" "Candida" 0.064 0.12 -"EUCAST 2017" "MIC" "F_CANDD_ALBC" "MIF" "Candida" 0.016 0.03 -"EUCAST 2017" "MIC" "F_CANDD_ALBC" "POS" "Candida" 0.064 0.12 -"EUCAST 2017" "MIC" "F_CANDD_ALBC" "VOR" "Candida" 0.125 0.25 -"EUCAST 2017" "MIC" "F_CANDD_GLBR" "AMB" "Candida" 1 2 -"EUCAST 2017" "MIC" "F_CANDD_GLBR" "ANI" "Candida" 0.064 0.12 -"EUCAST 2017" "MIC" "F_CANDD_GLBR" "FLU" "Candida" 0.002 64 -"EUCAST 2017" "MIC" "F_CANDD_GLBR" "MIF" "Candida" 0.032 0.06 -"EUCAST 2017" "MIC" "F_CANDD_PRPS" "AMB" "Candida" 1 2 -"EUCAST 2017" "MIC" "F_CANDD_PRPS" "ANI" "Candida" 0.002 8 -"EUCAST 2017" "MIC" "F_CANDD_PRPS" "FLU" "Candida" 2 8 -"EUCAST 2017" "MIC" "F_CANDD_PRPS" "ITR" "Candida" 0.125 0.25 -"EUCAST 2017" "MIC" "F_CANDD_PRPS" "MIF" "Candida" 0.002 4 -"EUCAST 2017" "MIC" "F_CANDD_PRPS" "POS" "Candida" 0.064 0.12 -"EUCAST 2017" "MIC" "F_CANDD_PRPS" "VOR" "Candida" 0.125 0.25 -"EUCAST 2017" "MIC" "F_CANDD_TRPC" "AMB" "Candida" 1 2 -"EUCAST 2017" "MIC" "F_CANDD_TRPC" "ANI" "Candida" 0.064 0.12 -"EUCAST 2017" "MIC" "F_CANDD_TRPC" "FLU" "Candida" 2 8 -"EUCAST 2017" "MIC" "F_CANDD_TRPC" "ITR" "Candida" 0.125 0.25 -"EUCAST 2017" "MIC" "F_CANDD_TRPC" "POS" "Candida" 0.064 0.12 -"EUCAST 2017" "MIC" "F_CANDD_TRPC" "VOR" "Candida" 0.125 0.25 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "AMC" "Enterobacteriaceae" 8 16 -"EUCAST 2016" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "AMC" "Enterobacteriaceae" 32 64 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "AMK" "Enterobacteriaceae" 8 32 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "AMP" "Enterobacteriaceae" 8 16 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "AMX" "Enterobacteriaceae" 8 16 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "ATM" "Enterobacteriaceae" 1 8 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "CAZ" "Enterobacteriaceae" 1 8 -"EUCAST 2016" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CFM" "Enterobacteriaceae" 1 2 -"EUCAST 2016" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CFR" "Enterobacteriaceae" 16 32 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "CHL" "Enterobacteriaceae" 8 16 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "CIP" "Enterobacteriaceae" 0.5 2 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "COL" "Enterobacteriaceae" 2 4 -"EUCAST 2016" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CPD" "Enterobacteriaceae" 1 2 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "CPT" "Enterobacteriaceae" 0.5 1 -"EUCAST 2016" "MIC" "Oral" "B_[FAM]_ENTRBCTR" "CRO" "Enterobacteriaceae" 1 4 -"EUCAST 2016" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CTB" "Enterobacteriaceae" 1 2 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "CTX" "Enterobacteriaceae" 1 4 -"EUCAST 2016" "MIC" "IV" "B_[FAM]_ENTRBCTR" "CXM" "Enterobacteriaceae" 8 16 -"EUCAST 2016" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CXM" "Enterobacteriaceae" 8 16 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "CZT" "Enterobacteriaceae" 1 2 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "DOR" "Enterobacteriaceae" 1 4 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "ETP" "Enterobacteriaceae" 0.5 2 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "FEP" "Enterobacteriaceae" 1 8 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "FOS" "Enterobacteriaceae" 32 64 -"EUCAST 2016" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "FOS" "Enterobacteriaceae" 32 64 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "GEN" "Enterobacteriaceae" 2 8 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "IPM" "Enterobacteriaceae" 2 16 -"EUCAST 2016" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "LEX" "Enterobacteriaceae" 16 32 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "LVX" "Enterobacteriaceae" 1 4 -"EUCAST 2016" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "MEC" "Enterobacteriaceae" 8 16 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "MEM" "Enterobacteriaceae" 2 16 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "MFX" "Enterobacteriaceae" 0.5 2 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "NET" "Enterobacteriaceae" 2 8 -"EUCAST 2016" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "NIT" "Enterobacteriaceae" 64 128 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "NOR" "Enterobacteriaceae" 0.5 2 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "OFX" "Enterobacteriaceae" 0.5 2 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "PIP" "Enterobacteriaceae" 8 32 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "SAM" "Enterobacteriaceae" 8 16 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "SXT" "Enterobacteriaceae" 2 8 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "TCC" "Enterobacteriaceae" 8 32 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "TGC" "Enterobacteriaceae" 1 4 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "TIC" "Enterobacteriaceae" 8 32 -"EUCAST 2016" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "TMP" "Enterobacteriaceae" 2 8 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "TOB" "Enterobacteriaceae" 2 8 -"EUCAST 2016" "MIC" "B_[FAM]_ENTRBCTR" "TZP" "Enterobacteriaceae" 8 32 -"EUCAST 2016" "MIC" "B_ACNTB" "AMK" "Acinetobacter spp." 8 32 -"EUCAST 2016" "MIC" "B_ACNTB" "CIP" "Acinetobacter spp." 1 2 -"EUCAST 2016" "MIC" "B_ACNTB" "COL" "Acinetobacter spp." 2 4 -"EUCAST 2016" "MIC" "B_ACNTB" "DOR" "Acinetobacter spp." 1 4 -"EUCAST 2016" "MIC" "B_ACNTB" "GEN" "Acinetobacter spp." 4 8 -"EUCAST 2016" "MIC" "B_ACNTB" "IPM" "Acinetobacter spp." 2 16 -"EUCAST 2016" "MIC" "B_ACNTB" "LVX" "Acinetobacter spp." 1 4 -"EUCAST 2016" "MIC" "B_ACNTB" "MEM" "Acinetobacter spp." 2 16 -"EUCAST 2016" "MIC" "B_ACNTB" "NET" "Acinetobacter spp." 4 8 -"EUCAST 2016" "MIC" "B_ACNTB" "SXT" "Acinetobacter spp." 2 8 -"EUCAST 2016" "MIC" "B_ACNTB" "TOB" "Acinetobacter spp." 4 8 -"EUCAST 2016" "MIC" "B_CMPYL" "CIP" "Campylobacter jejuni and coli" 0.5 1 -"EUCAST 2016" "MIC" "B_CMPYL" "TCY" "Campylobacter jejuni and coli" 2 4 -"EUCAST 2016" "MIC" "B_CMPYL_COLI" "ERY" "Campylobacter jejuni and coli" 8 16 -"EUCAST 2016" "MIC" "B_CMPYL_JEJN" "ERY" "Campylobacter jejuni and coli" 4 8 -"EUCAST 2016" "MIC" "B_CRYNB" "CIP" "Corynebacterium spp." 1 2 -"EUCAST 2016" "MIC" "B_CRYNB" "CLI" "Corynebacterium spp." 0.5 1 -"EUCAST 2016" "MIC" "B_CRYNB" "GEN" "Corynebacterium spp." 1 2 -"EUCAST 2016" "MIC" "B_CRYNB" "LNZ" "Corynebacterium spp." 2 4 -"EUCAST 2016" "MIC" "B_CRYNB" "MFX" "Corynebacterium spp." 0.5 1 -"EUCAST 2016" "MIC" "B_CRYNB" "PEN" "Corynebacterium spp." 0.125 0.25 -"EUCAST 2016" "MIC" "B_CRYNB" "RIF" "Corynebacterium spp." 0.064 1 -"EUCAST 2016" "MIC" "B_CRYNB" "TCY" "Corynebacterium spp." 2 4 -"EUCAST 2016" "MIC" "B_CRYNB" "VAN" "Corynebacterium spp." 2 4 -"EUCAST 2016" "MIC" "B_CTRDM_DFFC" "DAP" "C. difficile" 4 -"EUCAST 2016" "MIC" "B_CTRDM_DFFC" "FUS" "C. difficile" 2 -"EUCAST 2016" "MIC" "B_CTRDM_DFFC" "MFX" "C. difficile" 4 -"EUCAST 2016" "MIC" "B_CTRDM_DFFC" "MTR" "C. difficile" 2 4 -"EUCAST 2016" "MIC" "B_CTRDM_DFFC" "RIF" "C. difficile" 0.004 -"EUCAST 2016" "MIC" "B_CTRDM_DFFC" "TGC" "C. difficile" 0.25 -"EUCAST 2016" "MIC" "B_CTRDM_DFFC" "VAN" "C. difficile" 2 4 -"EUCAST 2016" "MIC" "B_ENTRC" "AMC" "Enterococcus" 4 16 -"EUCAST 2016" "MIC" "B_ENTRC" "AMP" "Enterococcus" 4 16 -"EUCAST 2016" "MIC" "B_ENTRC" "AMX" "Enterococcus" 4 16 -"EUCAST 2016" "MIC" "UTI" "B_ENTRC" "CIP" "Enterococcus" 4 8 -"EUCAST 2016" "MIC" "B_ENTRC" "GEH" "Enterococcus" 128 128 -"EUCAST 2016" "MIC" "B_ENTRC" "GEN" "Enterococcus" 128 128 -"EUCAST 2016" "MIC" "B_ENTRC" "IPM" "Enterococcus" 4 16 -"EUCAST 2016" "MIC" "B_ENTRC" "LNZ" "Enterococcus" 4 8 -"EUCAST 2016" "MIC" "UTI" "B_ENTRC" "LVX" "Enterococcus" 4 8 -"EUCAST 2016" "MIC" "B_ENTRC" "QDA" "Enterococcus" 1 8 -"EUCAST 2016" "MIC" "B_ENTRC" "SAM" "Enterococcus" 4 16 -"EUCAST 2016" "MIC" "B_ENTRC" "STH" "Enterococcus" 512 1024 -"EUCAST 2016" "MIC" "B_ENTRC" "STR" "Enterococcus" 512 1024 -"EUCAST 2016" "MIC" "B_ENTRC" "SXT" "Enterococcus" 0.032 2 -"EUCAST 2016" "MIC" "B_ENTRC" "TEC" "Enterococcus" 2 4 -"EUCAST 2016" "MIC" "B_ENTRC" "TGC" "Enterococcus" 0.25 1 -"EUCAST 2016" "MIC" "UTI" "B_ENTRC" "TMP" "Enterococcus" 0.032 2 -"EUCAST 2016" "MIC" "B_ENTRC" "VAN" "Enterococcus" 4 8 -"EUCAST 2016" "MIC" "UTI" "B_ENTRC_FCLS" "NIT" "Enterococcus" 64 128 -"EUCAST 2016" "MIC" "B_HLCBCT_PYLR" "AMX" "H. pylori" 0.125 0.25 -"EUCAST 2016" "MIC" "B_HLCBCT_PYLR" "CLR" "H. pylori" 0.25 1 -"EUCAST 2016" "MIC" "B_HLCBCT_PYLR" "LVX" "H. pylori" 1 2 -"EUCAST 2016" "MIC" "B_HLCBCT_PYLR" "MTR" "H. pylori" 8 16 -"EUCAST 2016" "MIC" "B_HLCBCT_PYLR" "RIF" "H. pylori" 1 2 -"EUCAST 2016" "MIC" "B_HLCBCT_PYLR" "TCY" "H. pylori" 1 2 -"EUCAST 2016" "MIC" "B_HMPHL_INFL" "AMC" "H. influenzae" 2 4 -"EUCAST 2016" "MIC" "B_HMPHL_INFL" "AMP" "H. influenzae" 1 2 -"EUCAST 2016" "MIC" "B_HMPHL_INFL" "AMX" "H. influenzae" 2 4 -"EUCAST 2016" "MIC" "B_HMPHL_INFL" "AZM" "H. influenzae" 0.125 8 -"EUCAST 2016" "MIC" "B_HMPHL_INFL" "CFM" "H. influenzae" 0.125 0.25 -"EUCAST 2016" "MIC" "B_HMPHL_INFL" "CHL" "H. influenzae" 2 4 -"EUCAST 2016" "MIC" "B_HMPHL_INFL" "CIP" "H. influenzae" 0.5 1 -"EUCAST 2016" "MIC" "B_HMPHL_INFL" "CLR" "H. influenzae" 1 64 -"EUCAST 2016" "MIC" "B_HMPHL_INFL" "CPD" "H. influenzae" 0.25 1 -"EUCAST 2016" "MIC" "B_HMPHL_INFL" "CPT" "H. influenzae" 0.032 0.06 -"EUCAST 2016" "MIC" "B_HMPHL_INFL" "CRO" "H. influenzae" 0.125 0.25 -"EUCAST 2016" "MIC" "B_HMPHL_INFL" "CTB" "H. influenzae" 1 2 -"EUCAST 2016" "MIC" "B_HMPHL_INFL" "CTX" "H. influenzae" 0.125 0.25 -"EUCAST 2016" "MIC" "IV" "B_HMPHL_INFL" "CXM" "H. influenzae" 1 4 -"EUCAST 2016" "MIC" "Oral" "B_HMPHL_INFL" "CXM" "H. influenzae" 0.125 2 -"EUCAST 2016" "MIC" "B_HMPHL_INFL" "DOR" "H. influenzae" 1 2 -"EUCAST 2016" "MIC" "B_HMPHL_INFL" "DOX" "H. influenzae" 1 4 -"EUCAST 2016" "MIC" "B_HMPHL_INFL" "ERY" "H. influenzae" 0.5 32 -"EUCAST 2016" "MIC" "B_HMPHL_INFL" "ETP" "H. influenzae" 0.5 1 -"EUCAST 2016" "MIC" "B_HMPHL_INFL" "FEP" "H. influenzae" 0.25 0.5 -"EUCAST 2016" "MIC" "B_HMPHL_INFL" "IPM" "H. influenzae" 2 4 -"EUCAST 2016" "MIC" "B_HMPHL_INFL" "LVX" "H. influenzae" 1 2 -"EUCAST 2016" "MIC" "Non-meningitis" "B_HMPHL_INFL" "MEM" "H. influenzae" 2 4 -"EUCAST 2016" "MIC" "Meningitis" "B_HMPHL_INFL" "MEM" "H. influenzae" 0.25 2 -"EUCAST 2016" "MIC" "B_HMPHL_INFL" "MFX" "H. influenzae" 0.5 1 -"EUCAST 2016" "MIC" "B_HMPHL_INFL" "MNO" "H. influenzae" 1 4 -"EUCAST 2016" "MIC" "B_HMPHL_INFL" "OFX" "H. influenzae" 0.5 1 -"EUCAST 2016" "MIC" "Prophylaxis" "B_HMPHL_INFL" "RIF" "H. influenzae" 1 2 -"EUCAST 2016" "MIC" "B_HMPHL_INFL" "RXT" "H. influenzae" 1 32 -"EUCAST 2016" "MIC" "B_HMPHL_INFL" "SAM" "H. influenzae" 1 2 -"EUCAST 2016" "MIC" "B_HMPHL_INFL" "SXT" "H. influenzae" 0.5 2 -"EUCAST 2016" "MIC" "B_HMPHL_INFL" "TCY" "H. influenzae" 1 4 -"EUCAST 2016" "MIC" "B_HMPHL_INFL" "TLT" "H. influenzae" 0.125 16 -"EUCAST 2016" "MIC" "B_LISTR_MNCY" "AMP" "Listeria monocytogenes" 1 2 -"EUCAST 2016" "MIC" "B_LISTR_MNCY" "ERY" "Listeria monocytogenes" 1 2 -"EUCAST 2016" "MIC" "B_LISTR_MNCY" "MEM" "Listeria monocytogenes" 0.25 0.5 -"EUCAST 2016" "MIC" "B_LISTR_MNCY" "PEN" "Listeria monocytogenes" 1 2 -"EUCAST 2016" "MIC" "B_LISTR_MNCY" "SXT" "Listeria monocytogenes" 0.064 0.12 -"EUCAST 2016" "MIC" "B_MRXLL_CTRR" "AMC" "M. catarrhalis" 1 2 -"EUCAST 2016" "MIC" "B_MRXLL_CTRR" "AZM" "M. catarrhalis" 0.25 1 -"EUCAST 2016" "MIC" "B_MRXLL_CTRR" "CFM" "M. catarrhalis" 0.5 2 -"EUCAST 2016" "MIC" "B_MRXLL_CTRR" "CHL" "M. catarrhalis" 2 4 -"EUCAST 2016" "MIC" "B_MRXLL_CTRR" "CIP" "M. catarrhalis" 0.5 1 -"EUCAST 2016" "MIC" "B_MRXLL_CTRR" "CLR" "M. catarrhalis" 0.25 1 -"EUCAST 2016" "MIC" "B_MRXLL_CTRR" "CRO" "M. catarrhalis" 1 4 -"EUCAST 2016" "MIC" "B_MRXLL_CTRR" "CTX" "M. catarrhalis" 1 4 -"EUCAST 2016" "MIC" "IV" "B_MRXLL_CTRR" "CXM" "M. catarrhalis" 4 16 -"EUCAST 2016" "MIC" "Oral" "B_MRXLL_CTRR" "CXM" "M. catarrhalis" 0.125 8 -"EUCAST 2016" "MIC" "B_MRXLL_CTRR" "DOR" "M. catarrhalis" 1 2 -"EUCAST 2016" "MIC" "B_MRXLL_CTRR" "DOX" "M. catarrhalis" 1 4 -"EUCAST 2016" "MIC" "B_MRXLL_CTRR" "ERY" "M. catarrhalis" 0.25 1 -"EUCAST 2016" "MIC" "B_MRXLL_CTRR" "ETP" "M. catarrhalis" 0.5 1 -"EUCAST 2016" "MIC" "B_MRXLL_CTRR" "FEP" "M. catarrhalis" 4 8 -"EUCAST 2016" "MIC" "B_MRXLL_CTRR" "IPM" "M. catarrhalis" 2 4 -"EUCAST 2016" "MIC" "B_MRXLL_CTRR" "LVX" "M. catarrhalis" 1 2 -"EUCAST 2016" "MIC" "B_MRXLL_CTRR" "MEM" "M. catarrhalis" 2 4 -"EUCAST 2016" "MIC" "B_MRXLL_CTRR" "MFX" "M. catarrhalis" 0.5 1 -"EUCAST 2016" "MIC" "B_MRXLL_CTRR" "MNO" "M. catarrhalis" 1 4 -"EUCAST 2016" "MIC" "B_MRXLL_CTRR" "OFX" "M. catarrhalis" 0.5 1 -"EUCAST 2016" "MIC" "B_MRXLL_CTRR" "RXT" "M. catarrhalis" 0.5 2 -"EUCAST 2016" "MIC" "B_MRXLL_CTRR" "SAM" "M. catarrhalis" 1 2 -"EUCAST 2016" "MIC" "B_MRXLL_CTRR" "SXT" "M. catarrhalis" 0.5 2 -"EUCAST 2016" "MIC" "B_MRXLL_CTRR" "TCY" "M. catarrhalis" 1 4 -"EUCAST 2016" "MIC" "B_MRXLL_CTRR" "TLT" "M. catarrhalis" 0.25 1 -"EUCAST 2016" "MIC" "B_NESSR_GNRR" "AZM" "N. gonorrhoeae" 0.25 1 -"EUCAST 2016" "MIC" "B_NESSR_GNRR" "CFM" "N. gonorrhoeae" 0.125 0.25 -"EUCAST 2016" "MIC" "B_NESSR_GNRR" "CIP" "N. gonorrhoeae" 0.032 0.12 -"EUCAST 2016" "MIC" "B_NESSR_GNRR" "CRO" "N. gonorrhoeae" 0.125 0.25 -"EUCAST 2016" "MIC" "B_NESSR_GNRR" "CTX" "N. gonorrhoeae" 0.125 0.25 -"EUCAST 2016" "MIC" "B_NESSR_GNRR" "OFX" "N. gonorrhoeae" 0.125 0.5 -"EUCAST 2016" "MIC" "B_NESSR_GNRR" "PEN" "N. gonorrhoeae" 0.064 2 -"EUCAST 2016" "MIC" "B_NESSR_GNRR" "SPT" "N. gonorrhoeae" 64 128 -"EUCAST 2016" "MIC" "B_NESSR_GNRR" "TCY" "N. gonorrhoeae" 0.5 2 -"EUCAST 2016" "MIC" "B_NESSR_MNNG" "AMP" "N. meningitidis" 0.125 2 -"EUCAST 2016" "MIC" "B_NESSR_MNNG" "AMX" "N. meningitidis" 0.125 2 -"EUCAST 2016" "MIC" "B_NESSR_MNNG" "CHL" "N. meningitidis" 2 8 -"EUCAST 2016" "MIC" "B_NESSR_MNNG" "CIP" "N. meningitidis" 0.032 0.06 -"EUCAST 2016" "MIC" "B_NESSR_MNNG" "CRO" "N. meningitidis" 0.125 0.25 -"EUCAST 2016" "MIC" "B_NESSR_MNNG" "CTX" "N. meningitidis" 0.125 0.25 -"EUCAST 2016" "MIC" "B_NESSR_MNNG" "MEM" "N. meningitidis" 0.25 0.5 -"EUCAST 2016" "MIC" "B_NESSR_MNNG" "MNO" "N. meningitidis" 1 4 -"EUCAST 2016" "MIC" "B_NESSR_MNNG" "PEN" "N. meningitidis" 0.064 0.5 -"EUCAST 2016" "MIC" "B_NESSR_MNNG" "RIF" "N. meningitidis" 0.25 0.5 -"EUCAST 2016" "MIC" "B_NESSR_MNNG" "TCY" "N. meningitidis" 1 4 -"EUCAST 2016" "MIC" "B_PSDMN" "AMK" "Pseudo" 8 32 -"EUCAST 2016" "MIC" "B_PSDMN" "ATM" "Pseudo" 1 32 -"EUCAST 2016" "MIC" "B_PSDMN" "CAZ" "Pseudo" 8 16 -"EUCAST 2016" "MIC" "B_PSDMN" "CIP" "Pseudo" 0.5 2 -"EUCAST 2016" "MIC" "B_PSDMN" "COL" "Pseudo" 4 8 -"EUCAST 2016" "MIC" "B_PSDMN" "CZT" "Pseudo" 4 8 -"EUCAST 2016" "MIC" "B_PSDMN" "DOR" "Pseudo" 1 4 -"EUCAST 2016" "MIC" "B_PSDMN" "FEP" "Pseudo" 8 16 -"EUCAST 2016" "MIC" "B_PSDMN" "GEN" "Pseudo" 4 8 -"EUCAST 2016" "MIC" "B_PSDMN" "IPM" "Pseudo" 4 16 -"EUCAST 2016" "MIC" "B_PSDMN" "LVX" "Pseudo" 1 4 -"EUCAST 2016" "MIC" "B_PSDMN" "MEM" "Pseudo" 2 16 -"EUCAST 2016" "MIC" "B_PSDMN" "NET" "Pseudo" 4 8 -"EUCAST 2016" "MIC" "B_PSDMN" "PIP" "Pseudo" 16 32 -"EUCAST 2016" "MIC" "B_PSDMN" "TCC" "Pseudo" 16 32 -"EUCAST 2016" "MIC" "B_PSDMN" "TIC" "Pseudo" 16 32 -"EUCAST 2016" "MIC" "B_PSDMN" "TOB" "Pseudo" 4 8 -"EUCAST 2016" "MIC" "B_PSDMN" "TZP" "Pseudo" 16 32 -"EUCAST 2016" "MIC" "B_PSTRL_MLTC" "AMC" "Pasteurella multocida" 1 2 -"EUCAST 2016" "MIC" "B_PSTRL_MLTC" "AMP" "Pasteurella multocida" 1 2 -"EUCAST 2016" "MIC" "B_PSTRL_MLTC" "AMX" "Pasteurella multocida" 1 2 -"EUCAST 2016" "MIC" "B_PSTRL_MLTC" "CIP" "Pasteurella multocida" 0.064 0.12 -"EUCAST 2016" "MIC" "B_PSTRL_MLTC" "CTX" "Pasteurella multocida" 0.032 0.06 -"EUCAST 2016" "MIC" "B_PSTRL_MLTC" "DOX" "Pasteurella multocida" 1 2 -"EUCAST 2016" "MIC" "B_PSTRL_MLTC" "LVX" "Pasteurella multocida" 0.064 0.12 -"EUCAST 2016" "MIC" "B_PSTRL_MLTC" "PEN" "Pasteurella multocida" 0.5 1 -"EUCAST 2016" "MIC" "B_PSTRL_MLTC" "SXT" "Pasteurella multocida" 0.25 0.5 -"EUCAST 2016" "MIC" "B_SLMNL" "CIP" "Enterobacteriaceae" 0.064 0.12 -"EUCAST 2016" "MIC" "B_STNTR_MLTP" "SXT" "Stenotrophomonas maltophilia" 4 8 -"EUCAST 2016" "MIC" "B_STPHY" "AZM" "Staphs" 1 4 -"EUCAST 2016" "MIC" "B_STPHY" "CHL" "Staphs" 8 16 -"EUCAST 2016" "MIC" "B_STPHY" "CIP" "Staphs" 1 2 -"EUCAST 2016" "MIC" "B_STPHY" "CLI" "Staphs" 0.25 1 -"EUCAST 2016" "MIC" "B_STPHY" "CLR" "Staphs" 1 4 -"EUCAST 2016" "MIC" "B_STPHY" "CZT" "PK/PD" 4 8 -"EUCAST 2016" "MIC" "B_STPHY" "DAL" "Staphs" 0.125 0.25 -"EUCAST 2016" "MIC" "B_STPHY" "DAL" "PK/PD" 0.25 0.5 -"EUCAST 2016" "MIC" "B_STPHY" "DAP" "Staphs" 1 2 -"EUCAST 2016" "MIC" "B_STPHY" "DOX" "Staphs" 1 4 -"EUCAST 2016" "MIC" "B_STPHY" "ERY" "Staphs" 1 4 -"EUCAST 2016" "MIC" "B_STPHY" "FOS" "Staphs" 32 64 -"EUCAST 2016" "MIC" "B_STPHY" "FUS" "Staphs" 1 2 -"EUCAST 2016" "MIC" "B_STPHY" "KAN" "Staphs" 8 16 -"EUCAST 2016" "MIC" "B_STPHY" "LNZ" "Staphs" 4 8 -"EUCAST 2016" "MIC" "B_STPHY" "LVX" "Staphs" 1 4 -"EUCAST 2016" "MIC" "B_STPHY" "MFX" "Staphs" 0.5 2 -"EUCAST 2016" "MIC" "B_STPHY" "MNO" "Staphs" 0.5 2 -"EUCAST 2016" "MIC" "B_STPHY" "MUP" "Staphs" 1 512 -"EUCAST 2016" "MIC" "UTI" "B_STPHY" "NIT" "Staphs" 64 128 -"EUCAST 2016" "MIC" "B_STPHY" "OFX" "Staphs" 1 2 -"EUCAST 2016" "MIC" "B_STPHY" "ORI" "Staphs" 0.125 0.25 -"EUCAST 2016" "MIC" "B_STPHY" "ORI" "PK/PD" 0.125 0.25 -"EUCAST 2016" "MIC" "B_STPHY" "QDA" "Staphs" 1 4 -"EUCAST 2016" "MIC" "B_STPHY" "RIF" "Staphs" 0.064 1 -"EUCAST 2016" "MIC" "B_STPHY" "RXT" "Staphs" 1 4 -"EUCAST 2016" "MIC" "B_STPHY" "SXT" "Staphs" 2 8 -"EUCAST 2016" "MIC" "B_STPHY" "TCY" "Staphs" 1 4 -"EUCAST 2016" "MIC" "B_STPHY" "TGC" "Staphs" 0.5 1 -"EUCAST 2016" "MIC" "UTI" "B_STPHY" "TMP" "Staphs" 2 8 -"EUCAST 2016" "MIC" "B_STPHY_AURS" "AMK" "Staphs" 8 32 -"EUCAST 2016" "MIC" "B_STPHY_AURS" "BPR" "Staphs" 2 4 -"EUCAST 2016" "MIC" "B_STPHY_AURS" "CPT" "Staphs" 1 2 -"EUCAST 2016" "MIC" "B_STPHY_AURS" "GEN" "Staphs" 1 2 -"EUCAST 2016" "MIC" "B_STPHY_AURS" "NET" "Staphs" 1 2 -"EUCAST 2016" "MIC" "B_STPHY_AURS" "PEN" "Staphs" 0.125 0.25 -"EUCAST 2016" "MIC" "B_STPHY_AURS" "TEC" "Staphs" 2 4 -"EUCAST 2016" "MIC" "B_STPHY_AURS" "TLV" "Staphs" 0.125 0.25 -"EUCAST 2016" "MIC" "B_STPHY_AURS" "TOB" "Staphs" 1 2 -"EUCAST 2016" "MIC" "B_STPHY_AURS" "VAN" "Staphs" 2 4 -"EUCAST 2016" "MIC" "B_STPHY_CONS" "AMK" "Staphs" 8 32 -"EUCAST 2016" "MIC" "B_STPHY_CONS" "GEN" "Staphs" 1 2 -"EUCAST 2016" "MIC" "B_STPHY_CONS" "NET" "Staphs" 1 2 -"EUCAST 2016" "MIC" "B_STPHY_CONS" "TEC" "Staphs" 4 8 -"EUCAST 2016" "MIC" "B_STPHY_CONS" "TOB" "Staphs" 1 2 -"EUCAST 2016" "MIC" "B_STPHY_CONS" "VAN" "Staphs" 4 8 -"EUCAST 2016" "MIC" "B_STPHY_LGDN" "PEN" "Staphs" 0.125 0.25 -"EUCAST 2016" "MIC" "B_STRPT" "AZM" "Strep A, B, C, G" 0.25 1 -"EUCAST 2016" "MIC" "B_STRPT" "CHL" "Strep A, B, C, G" 8 16 -"EUCAST 2016" "MIC" "B_STRPT" "CLI" "Strep A, B, C, G" 0.5 1 -"EUCAST 2016" "MIC" "B_STRPT" "CLR" "Strep A, B, C, G" 0.25 1 -"EUCAST 2016" "MIC" "B_STRPT" "DAL" "Strep A, B, C, G" 0.125 0.25 -"EUCAST 2016" "MIC" "B_STRPT" "DAP" "Strep A, B, C, G" 1 2 -"EUCAST 2016" "MIC" "B_STRPT" "DOX" "Strep A, B, C, G" 1 4 -"EUCAST 2016" "MIC" "B_STRPT" "ERY" "Strep A, B, C, G" 0.25 1 -"EUCAST 2016" "MIC" "B_STRPT" "LNZ" "Strep A, B, C, G" 2 8 -"EUCAST 2016" "MIC" "B_STRPT" "LVX" "Strep A, B, C, G" 1 4 -"EUCAST 2016" "MIC" "B_STRPT" "MFX" "Strep A, B, C, G" 0.5 2 -"EUCAST 2016" "MIC" "B_STRPT" "MNO" "Strep A, B, C, G" 0.5 2 -"EUCAST 2016" "MIC" "B_STRPT" "ORI" "Strep A, B, C, G" 0.25 0.5 -"EUCAST 2016" "MIC" "B_STRPT" "PEN" "Strep A, B, C, G" 0.25 0.5 -"EUCAST 2016" "MIC" "B_STRPT" "RIF" "Strep A, B, C, G" 0.064 1 -"EUCAST 2016" "MIC" "B_STRPT" "RXT" "Strep A, B, C, G" 0.5 2 -"EUCAST 2016" "MIC" "B_STRPT" "SXT" "Strep A, B, C, G" 1 4 -"EUCAST 2016" "MIC" "B_STRPT" "TCY" "Strep A, B, C, G" 1 4 -"EUCAST 2016" "MIC" "B_STRPT" "TEC" "Strep A, B, C, G" 2 4 -"EUCAST 2016" "MIC" "B_STRPT" "TGC" "Strep A, B, C, G" 0.25 1 -"EUCAST 2016" "MIC" "B_STRPT" "TLT" "Strep A, B, C, G" 0.25 1 -"EUCAST 2016" "MIC" "B_STRPT" "TZD" "Strep A, B, C, G" 0.5 1 -"EUCAST 2016" "MIC" "B_STRPT" "VAN" "Strep A, B, C, G" 2 4 -"EUCAST 2016" "MIC" "UTI" "B_STRPT_GRPB" "NIT" "Strep A, B, C, G" 64 128 -"EUCAST 2016" "MIC" "UTI" "B_STRPT_GRPB" "TMP" "Strep A, B, C, G" 2 4 -"EUCAST 2016" "MIC" "B_STRPT_PNMN" "AMP" "Pneumo" 0.5 4 -"EUCAST 2016" "MIC" "B_STRPT_PNMN" "AZM" "Pneumo" 0.25 1 -"EUCAST 2016" "MIC" "B_STRPT_PNMN" "CEC" "Pneumo" 0.032 1 -"EUCAST 2016" "MIC" "B_STRPT_PNMN" "CHL" "Pneumo" 8 16 -"EUCAST 2016" "MIC" "B_STRPT_PNMN" "CIP" "Pneumo" 0.125 4 -"EUCAST 2016" "MIC" "B_STRPT_PNMN" "CLI" "Pneumo" 0.5 1 -"EUCAST 2016" "MIC" "B_STRPT_PNMN" "CLR" "Pneumo" 0.25 1 -"EUCAST 2016" "MIC" "B_STRPT_PNMN" "CPD" "Pneumo" 0.25 1 -"EUCAST 2016" "MIC" "B_STRPT_PNMN" "CPT" "Pneumo" 0.25 0.5 -"EUCAST 2016" "MIC" "B_STRPT_PNMN" "CRO" "Pneumo" 0.5 4 -"EUCAST 2016" "MIC" "B_STRPT_PNMN" "CTX" "Pneumo" 0.5 4 -"EUCAST 2016" "MIC" "IV" "B_STRPT_PNMN" "CXM" "Pneumo" 0.5 2 -"EUCAST 2016" "MIC" "Oral" "B_STRPT_PNMN" "CXM" "Pneumo" 0.25 1 -"EUCAST 2016" "MIC" "B_STRPT_PNMN" "DOR" "Pneumo" 1 2 -"EUCAST 2016" "MIC" "B_STRPT_PNMN" "DOX" "Pneumo" 1 4 -"EUCAST 2016" "MIC" "B_STRPT_PNMN" "ERY" "Pneumo" 0.25 1 -"EUCAST 2016" "MIC" "B_STRPT_PNMN" "ETP" "Pneumo" 0.5 1 -"EUCAST 2016" "MIC" "B_STRPT_PNMN" "FEP" "Pneumo" 1 4 -"EUCAST 2016" "MIC" "B_STRPT_PNMN" "IPM" "Pneumo" 2 4 -"EUCAST 2016" "MIC" "B_STRPT_PNMN" "LNZ" "Pneumo" 2 8 -"EUCAST 2016" "MIC" "B_STRPT_PNMN" "LVX" "Pneumo" 2 4 -"EUCAST 2016" "MIC" "Non-meningitis" "B_STRPT_PNMN" "MEM" "Pneumo" 2 4 -"EUCAST 2016" "MIC" "Meningitis" "B_STRPT_PNMN" "MEM" "Pneumo" 0.25 2 -"EUCAST 2016" "MIC" "B_STRPT_PNMN" "MFX" "Pneumo" 0.5 1 -"EUCAST 2016" "MIC" "B_STRPT_PNMN" "MNO" "Pneumo" 0.5 2 -"EUCAST 2016" "MIC" "B_STRPT_PNMN" "OFX" "Pneumo" 0.125 8 -"EUCAST 2016" "MIC" "Non-meningitis" "B_STRPT_PNMN" "PEN" "Pneumo" 0.064 4 -"EUCAST 2016" "MIC" "Meningitis" "B_STRPT_PNMN" "PEN" "Pneumo" 0.064 0.12 -"EUCAST 2016" "MIC" "B_STRPT_PNMN" "RIF" "Pneumo" 0.064 1 -"EUCAST 2016" "MIC" "B_STRPT_PNMN" "RXT" "Pneumo" 0.5 2 -"EUCAST 2016" "MIC" "B_STRPT_PNMN" "SXT" "Pneumo" 1 4 -"EUCAST 2016" "MIC" "B_STRPT_PNMN" "TCY" "Pneumo" 1 4 -"EUCAST 2016" "MIC" "B_STRPT_PNMN" "TEC" "Pneumo" 2 4 -"EUCAST 2016" "MIC" "B_STRPT_PNMN" "TLT" "Pneumo" 0.25 1 -"EUCAST 2016" "MIC" "B_STRPT_PNMN" "VAN" "Pneumo" 2 4 -"EUCAST 2016" "MIC" "B_STRPT_VIRI" "AMP" "Viridans strept" 0.5 4 -"EUCAST 2016" "MIC" "B_STRPT_VIRI" "AMX" "Viridans strept" 0.5 4 -"EUCAST 2016" "MIC" "B_STRPT_VIRI" "CLI" "Viridans strept" 0.5 1 -"EUCAST 2016" "MIC" "B_STRPT_VIRI" "CRO" "Viridans strept" 0.5 1 -"EUCAST 2016" "MIC" "B_STRPT_VIRI" "CTX" "Viridans strept" 0.5 1 -"EUCAST 2016" "MIC" "B_STRPT_VIRI" "CXM" "Viridans strept" 0.5 1 -"EUCAST 2016" "MIC" "B_STRPT_VIRI" "CZO" "Viridans strept" 0.5 1 -"EUCAST 2016" "MIC" "B_STRPT_VIRI" "DAL" "Viridans strept" 0.125 0.25 -"EUCAST 2016" "MIC" "B_STRPT_VIRI" "DOR" "Viridans strept" 1 2 -"EUCAST 2016" "MIC" "B_STRPT_VIRI" "ETP" "Viridans strept" 0.5 1 -"EUCAST 2016" "MIC" "B_STRPT_VIRI" "FEP" "Viridans strept" 0.5 1 -"EUCAST 2016" "MIC" "B_STRPT_VIRI" "GEH" "Viridans strept" 128 128 -"EUCAST 2016" "MIC" "B_STRPT_VIRI" "GEN" "Viridans strept" 128 128 -"EUCAST 2016" "MIC" "B_STRPT_VIRI" "IPM" "Viridans strept" 2 4 -"EUCAST 2016" "MIC" "B_STRPT_VIRI" "MEM" "Viridans strept" 2 4 -"EUCAST 2016" "MIC" "B_STRPT_VIRI" "ORI" "Viridans strept" 0.25 0.5 -"EUCAST 2016" "MIC" "B_STRPT_VIRI" "PEN" "Viridans strept" 0.25 4 -"EUCAST 2016" "MIC" "B_STRPT_VIRI" "TEC" "Viridans strept" 2 4 -"EUCAST 2016" "MIC" "B_STRPT_VIRI" "TZD" "Viridans strept" 0.25 0.5 -"EUCAST 2016" "MIC" "B_STRPT_VIRI" "VAN" "Viridans strept" 2 4 -"EUCAST 2016" "MIC" "F_ASPRG_MGTS" "AMB" "Aspergillus" 1 4 -"EUCAST 2016" "MIC" "F_ASPRG_MGTS" "POS" "Aspergillus" 0.125 0.25 -"EUCAST 2016" "MIC" "F_ASPRG_MGTS" "VOR" "Aspergillus" 1 4 -"EUCAST 2016" "MIC" "F_ASPRG_NDLN" "AMB" "Aspergillus" 1 4 -"EUCAST 2016" "MIC" "F_ASPRG_TERRS" "POS" "Aspergillus" 0.125 0.5 -"EUCAST 2016" "MIC" "F_CANDD" "AMB" "Candida" 1 2 -"EUCAST 2016" "MIC" "F_CANDD" "ANI" "Candida" 0.064 0.12 -"EUCAST 2016" "MIC" "F_CANDD" "FLU" "Candida" 2 8 -"EUCAST 2016" "MIC" "F_CANDD" "FLU" "Candida" -"EUCAST 2016" "MIC" "F_CANDD_ALBC" "AMB" "Candida" 1 2 -"EUCAST 2016" "MIC" "F_CANDD_ALBC" "ANI" "Candida" 0.032 0.06 -"EUCAST 2016" "MIC" "F_CANDD_ALBC" "FLU" "Candida" 2 8 -"EUCAST 2016" "MIC" "F_CANDD_ALBC" "ITR" "Candida" 0.064 0.12 -"EUCAST 2016" "MIC" "F_CANDD_ALBC" "MIF" "Candida" 0.016 0.03 -"EUCAST 2016" "MIC" "F_CANDD_ALBC" "POS" "Candida" 0.064 0.12 -"EUCAST 2016" "MIC" "F_CANDD_ALBC" "VOR" "Candida" 0.125 0.25 -"EUCAST 2016" "MIC" "F_CANDD_GLBR" "AMB" "Candida" 1 2 -"EUCAST 2016" "MIC" "F_CANDD_GLBR" "ANI" "Candida" 0.064 0.12 -"EUCAST 2016" "MIC" "F_CANDD_GLBR" "FLU" "Candida" 0.002 64 -"EUCAST 2016" "MIC" "F_CANDD_GLBR" "MIF" "Candida" 0.032 0.06 -"EUCAST 2016" "MIC" "F_CANDD_PRPS" "AMB" "Candida" 1 2 -"EUCAST 2016" "MIC" "F_CANDD_PRPS" "ANI" "Candida" 0.002 8 -"EUCAST 2016" "MIC" "F_CANDD_PRPS" "FLU" "Candida" 2 8 -"EUCAST 2016" "MIC" "F_CANDD_PRPS" "ITR" "Candida" 0.125 0.25 -"EUCAST 2016" "MIC" "F_CANDD_PRPS" "MIF" "Candida" 0.002 4 -"EUCAST 2016" "MIC" "F_CANDD_PRPS" "POS" "Candida" 0.064 0.12 -"EUCAST 2016" "MIC" "F_CANDD_PRPS" "VOR" "Candida" 0.125 0.25 -"EUCAST 2016" "MIC" "F_CANDD_TRPC" "AMB" "Candida" 1 2 -"EUCAST 2016" "MIC" "F_CANDD_TRPC" "ANI" "Candida" 0.064 0.12 -"EUCAST 2016" "MIC" "F_CANDD_TRPC" "FLU" "Candida" 2 8 -"EUCAST 2016" "MIC" "F_CANDD_TRPC" "ITR" "Candida" 0.125 0.25 -"EUCAST 2016" "MIC" "F_CANDD_TRPC" "POS" "Candida" 0.064 0.12 -"EUCAST 2016" "MIC" "F_CANDD_TRPC" "VOR" "Candida" 0.125 0.25 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "AMC" "Enterobacteriaceae" 8 16 -"EUCAST 2015" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "AMC" "Enterobacteriaceae" 32 64 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "AMK" "Enterobacteriaceae" 8 32 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "AMP" "Enterobacteriaceae" 8 16 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "AMX" "Enterobacteriaceae" 8 16 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "ATM" "Enterobacteriaceae" 1 8 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "CAZ" "Enterobacteriaceae" 1 8 -"EUCAST 2015" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CFM" "Enterobacteriaceae" 1 2 -"EUCAST 2015" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CFR" "Enterobacteriaceae" 16 32 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "CHL" "Enterobacteriaceae" 8 16 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "CIP" "Enterobacteriaceae" 0.5 2 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "COL" "Enterobacteriaceae" 2 4 -"EUCAST 2015" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CPD" "Enterobacteriaceae" 1 2 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "CPT" "Enterobacteriaceae" 0.5 1 -"EUCAST 2015" "MIC" "Oral" "B_[FAM]_ENTRBCTR" "CRO" "Enterobacteriaceae" 1 4 -"EUCAST 2015" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CTB" "Enterobacteriaceae" 1 2 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "CTX" "Enterobacteriaceae" 1 4 -"EUCAST 2015" "MIC" "IV" "B_[FAM]_ENTRBCTR" "CXM" "Enterobacteriaceae" 8 16 -"EUCAST 2015" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CXM" "Enterobacteriaceae" 8 16 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "DOR" "Enterobacteriaceae" 1 4 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "ETP" "Enterobacteriaceae" 0.5 2 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "FEP" "Enterobacteriaceae" 1 8 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "FOS" "Enterobacteriaceae" 32 64 -"EUCAST 2015" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "FOS" "Enterobacteriaceae" 32 64 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "GEN" "Enterobacteriaceae" 2 8 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "IPM" "Enterobacteriaceae" 2 16 -"EUCAST 2015" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "LEX" "Enterobacteriaceae" 16 32 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "LVX" "Enterobacteriaceae" 1 4 -"EUCAST 2015" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "MEC" "Enterobacteriaceae" 8 16 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "MEM" "Enterobacteriaceae" 2 16 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "MFX" "Enterobacteriaceae" 0.5 2 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "NET" "Enterobacteriaceae" 2 8 -"EUCAST 2015" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "NIT" "Enterobacteriaceae" 64 128 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "NOR" "Enterobacteriaceae" 0.5 2 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "OFX" "Enterobacteriaceae" 0.5 2 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "PIP" "Enterobacteriaceae" 8 32 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "SAM" "Enterobacteriaceae" 8 16 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "SXT" "Enterobacteriaceae" 2 8 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "TCC" "Enterobacteriaceae" 8 32 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "TGC" "Enterobacteriaceae" 1 4 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "TIC" "Enterobacteriaceae" 8 32 -"EUCAST 2015" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "TMP" "Enterobacteriaceae" 2 8 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "TOB" "Enterobacteriaceae" 2 8 -"EUCAST 2015" "MIC" "B_[FAM]_ENTRBCTR" "TZP" "Enterobacteriaceae" 8 32 -"EUCAST 2015" "MIC" "B_ACNTB" "AMK" "Acinetobacter spp." 8 32 -"EUCAST 2015" "MIC" "B_ACNTB" "CIP" "Acinetobacter spp." 1 2 -"EUCAST 2015" "MIC" "B_ACNTB" "COL" "Acinetobacter spp." 2 4 -"EUCAST 2015" "MIC" "B_ACNTB" "DOR" "Acinetobacter spp." 1 4 -"EUCAST 2015" "MIC" "B_ACNTB" "GEN" "Acinetobacter spp." 4 8 -"EUCAST 2015" "MIC" "B_ACNTB" "IPM" "Acinetobacter spp." 2 16 -"EUCAST 2015" "MIC" "B_ACNTB" "LVX" "Acinetobacter spp." 1 4 -"EUCAST 2015" "MIC" "B_ACNTB" "MEM" "Acinetobacter spp." 2 16 -"EUCAST 2015" "MIC" "B_ACNTB" "NET" "Acinetobacter spp." 4 8 -"EUCAST 2015" "MIC" "B_ACNTB" "SXT" "Acinetobacter spp." 2 8 -"EUCAST 2015" "MIC" "B_ACNTB" "TOB" "Acinetobacter spp." 4 8 -"EUCAST 2015" "MIC" "B_CMPYL" "CIP" "Campylobacter jejuni and coli" 0.5 1 -"EUCAST 2015" "MIC" "B_CMPYL" "TCY" "Campylobacter jejuni and coli" 2 4 -"EUCAST 2015" "MIC" "B_CMPYL_COLI" "ERY" "Campylobacter jejuni and coli" 8 16 -"EUCAST 2015" "MIC" "B_CMPYL_JEJN" "ERY" "Campylobacter jejuni and coli" 4 8 -"EUCAST 2015" "MIC" "B_CRYNB" "CIP" "Corynebacterium spp." 1 2 -"EUCAST 2015" "MIC" "B_CRYNB" "CLI" "Corynebacterium spp." 0.5 1 -"EUCAST 2015" "MIC" "B_CRYNB" "GEN" "Corynebacterium spp." 1 2 -"EUCAST 2015" "MIC" "B_CRYNB" "LNZ" "Corynebacterium spp." 2 4 -"EUCAST 2015" "MIC" "B_CRYNB" "MFX" "Corynebacterium spp." 0.5 1 -"EUCAST 2015" "MIC" "B_CRYNB" "PEN" "Corynebacterium spp." 0.125 0.25 -"EUCAST 2015" "MIC" "B_CRYNB" "RIF" "Corynebacterium spp." 0.064 1 -"EUCAST 2015" "MIC" "B_CRYNB" "TCY" "Corynebacterium spp." 2 4 -"EUCAST 2015" "MIC" "B_CRYNB" "VAN" "Corynebacterium spp." 2 4 -"EUCAST 2015" "MIC" "B_CTRDM_DFFC" "DAP" "C. difficile" 4 -"EUCAST 2015" "MIC" "B_CTRDM_DFFC" "FUS" "C. difficile" 2 -"EUCAST 2015" "MIC" "B_CTRDM_DFFC" "MFX" "C. difficile" 4 -"EUCAST 2015" "MIC" "B_CTRDM_DFFC" "MTR" "C. difficile" 2 4 -"EUCAST 2015" "MIC" "B_CTRDM_DFFC" "RIF" "C. difficile" 0.004 -"EUCAST 2015" "MIC" "B_CTRDM_DFFC" "TGC" "C. difficile" 0.25 -"EUCAST 2015" "MIC" "B_CTRDM_DFFC" "VAN" "C. difficile" 2 4 -"EUCAST 2015" "MIC" "B_ENTRC" "AMC" "Enterococcus" 4 16 -"EUCAST 2015" "MIC" "B_ENTRC" "AMP" "Enterococcus" 4 16 -"EUCAST 2015" "MIC" "B_ENTRC" "AMX" "Enterococcus" 4 16 -"EUCAST 2015" "MIC" "UTI" "B_ENTRC" "CIP" "Enterococcus" 4 8 -"EUCAST 2015" "MIC" "B_ENTRC" "GEH" "Enterococcus" 128 128 -"EUCAST 2015" "MIC" "B_ENTRC" "GEN" "Enterococcus" 128 128 -"EUCAST 2015" "MIC" "B_ENTRC" "IPM" "Enterococcus" 4 16 -"EUCAST 2015" "MIC" "B_ENTRC" "LNZ" "Enterococcus" 4 8 -"EUCAST 2015" "MIC" "UTI" "B_ENTRC" "LVX" "Enterococcus" 4 8 -"EUCAST 2015" "MIC" "B_ENTRC" "QDA" "Enterococcus" 1 8 -"EUCAST 2015" "MIC" "B_ENTRC" "SAM" "Enterococcus" 4 16 -"EUCAST 2015" "MIC" "B_ENTRC" "SXT" "Enterococcus" 0.032 2 -"EUCAST 2015" "MIC" "B_ENTRC" "TEC" "Enterococcus" 2 4 -"EUCAST 2015" "MIC" "B_ENTRC" "TGC" "Enterococcus" 0.25 1 -"EUCAST 2015" "MIC" "UTI" "B_ENTRC" "TMP" "Enterococcus" 0.032 2 -"EUCAST 2015" "MIC" "B_ENTRC" "VAN" "Enterococcus" 4 8 -"EUCAST 2015" "MIC" "UTI" "B_ENTRC_FCLS" "NIT" "Enterococcus" 64 128 -"EUCAST 2015" "MIC" "B_HLCBCT_PYLR" "AMX" "H. pylori" 0.125 0.25 -"EUCAST 2015" "MIC" "B_HLCBCT_PYLR" "CLR" "H. pylori" 0.25 1 -"EUCAST 2015" "MIC" "B_HLCBCT_PYLR" "LVX" "H. pylori" 1 2 -"EUCAST 2015" "MIC" "B_HLCBCT_PYLR" "MTR" "H. pylori" 8 16 -"EUCAST 2015" "MIC" "B_HLCBCT_PYLR" "RIF" "H. pylori" 1 2 -"EUCAST 2015" "MIC" "B_HLCBCT_PYLR" "TCY" "H. pylori" 1 2 -"EUCAST 2015" "MIC" "B_HMPHL_INFL" "AMC" "H. influenaza" 2 4 -"EUCAST 2015" "MIC" "B_HMPHL_INFL" "AMP" "H. influenaza" 1 2 -"EUCAST 2015" "MIC" "B_HMPHL_INFL" "AMX" "H. influenaza" 2 4 -"EUCAST 2015" "MIC" "B_HMPHL_INFL" "AZM" "H. influenaza" 0.125 8 -"EUCAST 2015" "MIC" "B_HMPHL_INFL" "CFM" "H. influenaza" 0.125 0.25 -"EUCAST 2015" "MIC" "B_HMPHL_INFL" "CHL" "H. influenaza" 2 4 -"EUCAST 2015" "MIC" "B_HMPHL_INFL" "CIP" "H. influenaza" 0.5 1 -"EUCAST 2015" "MIC" "B_HMPHL_INFL" "CLR" "H. influenaza" 1 64 -"EUCAST 2015" "MIC" "B_HMPHL_INFL" "CPD" "H. influenaza" 0.25 1 -"EUCAST 2015" "MIC" "B_HMPHL_INFL" "CPT" "H. influenaza" 0.032 0.06 -"EUCAST 2015" "MIC" "B_HMPHL_INFL" "CRO" "H. influenaza" 0.125 0.25 -"EUCAST 2015" "MIC" "B_HMPHL_INFL" "CTB" "H. influenaza" 1 2 -"EUCAST 2015" "MIC" "B_HMPHL_INFL" "CTX" "H. influenaza" 0.125 0.25 -"EUCAST 2015" "MIC" "IV" "B_HMPHL_INFL" "CXM" "H. influenaza" 1 4 -"EUCAST 2015" "MIC" "Oral" "B_HMPHL_INFL" "CXM" "H. influenaza" 0.125 2 -"EUCAST 2015" "MIC" "B_HMPHL_INFL" "DOR" "H. influenaza" 1 2 -"EUCAST 2015" "MIC" "B_HMPHL_INFL" "DOX" "H. influenaza" 1 4 -"EUCAST 2015" "MIC" "B_HMPHL_INFL" "ERY" "H. influenaza" 0.5 32 -"EUCAST 2015" "MIC" "B_HMPHL_INFL" "ETP" "H. influenaza" 0.5 1 -"EUCAST 2015" "MIC" "B_HMPHL_INFL" "FEP" "H. influenaza" 0.25 0.5 -"EUCAST 2015" "MIC" "B_HMPHL_INFL" "IPM" "H. influenaza" 2 4 -"EUCAST 2015" "MIC" "B_HMPHL_INFL" "LVX" "H. influenaza" 1 2 -"EUCAST 2015" "MIC" "Non-meningitis" "B_HMPHL_INFL" "MEM" "H. influenaza" 2 4 -"EUCAST 2015" "MIC" "Meningitis" "B_HMPHL_INFL" "MEM" "H. influenaza" 0.25 2 -"EUCAST 2015" "MIC" "B_HMPHL_INFL" "MFX" "H. influenaza" 0.5 1 -"EUCAST 2015" "MIC" "B_HMPHL_INFL" "MNO" "H. influenaza" 1 4 -"EUCAST 2015" "MIC" "B_HMPHL_INFL" "OFX" "H. influenaza" 0.5 1 -"EUCAST 2015" "MIC" "Prophylaxis" "B_HMPHL_INFL" "RIF" "H. influenaza" 1 2 -"EUCAST 2015" "MIC" "B_HMPHL_INFL" "RXT" "H. influenaza" 1 32 -"EUCAST 2015" "MIC" "B_HMPHL_INFL" "SAM" "H. influenaza" 1 2 -"EUCAST 2015" "MIC" "B_HMPHL_INFL" "SXT" "H. influenaza" 0.5 2 -"EUCAST 2015" "MIC" "B_HMPHL_INFL" "TCY" "H. influenaza" 1 4 -"EUCAST 2015" "MIC" "B_HMPHL_INFL" "TLT" "H. influenaza" 0.125 16 -"EUCAST 2015" "MIC" "B_LISTR_MNCY" "AMP" "Listeria monocytogenes" 1 2 -"EUCAST 2015" "MIC" "B_LISTR_MNCY" "ERY" "Listeria monocytogenes" 1 2 -"EUCAST 2015" "MIC" "B_LISTR_MNCY" "MEM" "Listeria monocytogenes" 0.25 0.5 -"EUCAST 2015" "MIC" "B_LISTR_MNCY" "PEN" "Listeria monocytogenes" 1 2 -"EUCAST 2015" "MIC" "B_LISTR_MNCY" "SXT" "Listeria monocytogenes" 0.064 0.12 -"EUCAST 2015" "MIC" "B_MRXLL_CTRR" "AMC" "M. cattharalis" 1 2 -"EUCAST 2015" "MIC" "B_MRXLL_CTRR" "AZM" "M. cattharalis" 0.25 1 -"EUCAST 2015" "MIC" "B_MRXLL_CTRR" "CFM" "M. cattharalis" 0.5 2 -"EUCAST 2015" "MIC" "B_MRXLL_CTRR" "CHL" "M. cattharalis" 2 4 -"EUCAST 2015" "MIC" "B_MRXLL_CTRR" "CIP" "M. cattharalis" 0.5 1 -"EUCAST 2015" "MIC" "B_MRXLL_CTRR" "CLR" "M. cattharalis" 0.25 1 -"EUCAST 2015" "MIC" "B_MRXLL_CTRR" "CRO" "M. cattharalis" 1 4 -"EUCAST 2015" "MIC" "B_MRXLL_CTRR" "CTX" "M. cattharalis" 1 4 -"EUCAST 2015" "MIC" "IV" "B_MRXLL_CTRR" "CXM" "M. cattharalis" 4 16 -"EUCAST 2015" "MIC" "Oral" "B_MRXLL_CTRR" "CXM" "M. cattharalis" 0.125 8 -"EUCAST 2015" "MIC" "B_MRXLL_CTRR" "DOR" "M. cattharalis" 1 2 -"EUCAST 2015" "MIC" "B_MRXLL_CTRR" "DOX" "M. cattharalis" 1 4 -"EUCAST 2015" "MIC" "B_MRXLL_CTRR" "ERY" "M. cattharalis" 0.25 1 -"EUCAST 2015" "MIC" "B_MRXLL_CTRR" "ETP" "M. cattharalis" 0.5 1 -"EUCAST 2015" "MIC" "B_MRXLL_CTRR" "FEP" "M. cattharalis" 4 8 -"EUCAST 2015" "MIC" "B_MRXLL_CTRR" "IPM" "M. cattharalis" 2 4 -"EUCAST 2015" "MIC" "B_MRXLL_CTRR" "LVX" "M. cattharalis" 1 2 -"EUCAST 2015" "MIC" "B_MRXLL_CTRR" "MEM" "M. cattharalis" 2 4 -"EUCAST 2015" "MIC" "B_MRXLL_CTRR" "MFX" "M. cattharalis" 0.5 1 -"EUCAST 2015" "MIC" "B_MRXLL_CTRR" "MNO" "M. cattharalis" 1 4 -"EUCAST 2015" "MIC" "B_MRXLL_CTRR" "OFX" "M. cattharalis" 0.5 1 -"EUCAST 2015" "MIC" "B_MRXLL_CTRR" "RXT" "M. cattharalis" 0.5 2 -"EUCAST 2015" "MIC" "B_MRXLL_CTRR" "SAM" "M. cattharalis" 1 2 -"EUCAST 2015" "MIC" "B_MRXLL_CTRR" "SXT" "M. cattharalis" 0.5 2 -"EUCAST 2015" "MIC" "B_MRXLL_CTRR" "TCY" "M. cattharalis" 1 4 -"EUCAST 2015" "MIC" "B_MRXLL_CTRR" "TLT" "M. cattharalis" 0.25 1 -"EUCAST 2015" "MIC" "B_NESSR_GNRR" "AZM" "N. gonorrhoeae" 0.25 1 -"EUCAST 2015" "MIC" "B_NESSR_GNRR" "CFM" "N. gonorrhoeae" 0.125 0.25 -"EUCAST 2015" "MIC" "B_NESSR_GNRR" "CIP" "N. gonorrhoeae" 0.032 0.12 -"EUCAST 2015" "MIC" "B_NESSR_GNRR" "CRO" "N. gonorrhoeae" 0.125 0.25 -"EUCAST 2015" "MIC" "B_NESSR_GNRR" "CTX" "N. gonorrhoeae" 0.125 0.25 -"EUCAST 2015" "MIC" "B_NESSR_GNRR" "OFX" "N. gonorrhoeae" 0.125 0.5 -"EUCAST 2015" "MIC" "B_NESSR_GNRR" "PEN" "N. gonorrhoeae" 0.064 2 -"EUCAST 2015" "MIC" "B_NESSR_GNRR" "SPT" "N. gonorrhoeae" 64 128 -"EUCAST 2015" "MIC" "B_NESSR_GNRR" "TCY" "N. gonorrhoeae" 0.5 2 -"EUCAST 2015" "MIC" "B_NESSR_MNNG" "AMP" "N. meningitidis" 0.125 2 -"EUCAST 2015" "MIC" "B_NESSR_MNNG" "AMX" "N. meningitidis" 0.125 2 -"EUCAST 2015" "MIC" "B_NESSR_MNNG" "CHL" "N. meningitidis" 2 8 -"EUCAST 2015" "MIC" "B_NESSR_MNNG" "CIP" "N. meningitidis" 0.032 0.06 -"EUCAST 2015" "MIC" "B_NESSR_MNNG" "CRO" "N. meningitidis" 0.125 0.25 -"EUCAST 2015" "MIC" "B_NESSR_MNNG" "CTX" "N. meningitidis" 0.125 0.25 -"EUCAST 2015" "MIC" "B_NESSR_MNNG" "MEM" "N. meningitidis" 0.25 0.5 -"EUCAST 2015" "MIC" "B_NESSR_MNNG" "MNO" "N. meningitidis" 1 4 -"EUCAST 2015" "MIC" "B_NESSR_MNNG" "PEN" "N. meningitidis" 0.064 0.5 -"EUCAST 2015" "MIC" "B_NESSR_MNNG" "RIF" "N. meningitidis" 0.25 0.5 -"EUCAST 2015" "MIC" "B_NESSR_MNNG" "TCY" "N. meningitidis" 1 4 -"EUCAST 2015" "MIC" "B_PSDMN" "AMK" "Pseudo" 8 32 -"EUCAST 2015" "MIC" "B_PSDMN" "ATM" "Pseudo" 1 32 -"EUCAST 2015" "MIC" "B_PSDMN" "CAZ" "Pseudo" 8 16 -"EUCAST 2015" "MIC" "B_PSDMN" "CIP" "Pseudo" 0.5 2 -"EUCAST 2015" "MIC" "B_PSDMN" "COL" "Pseudo" 4 8 -"EUCAST 2015" "MIC" "B_PSDMN" "DOR" "Pseudo" 1 4 -"EUCAST 2015" "MIC" "B_PSDMN" "FEP" "Pseudo" 8 16 -"EUCAST 2015" "MIC" "B_PSDMN" "GEN" "Pseudo" 4 8 -"EUCAST 2015" "MIC" "B_PSDMN" "IPM" "Pseudo" 4 16 -"EUCAST 2015" "MIC" "B_PSDMN" "LVX" "Pseudo" 1 4 -"EUCAST 2015" "MIC" "B_PSDMN" "MEM" "Pseudo" 2 16 -"EUCAST 2015" "MIC" "B_PSDMN" "NET" "Pseudo" 4 8 -"EUCAST 2015" "MIC" "B_PSDMN" "PIP" "Pseudo" 16 32 -"EUCAST 2015" "MIC" "B_PSDMN" "TCC" "Pseudo" 16 32 -"EUCAST 2015" "MIC" "B_PSDMN" "TIC" "Pseudo" 16 32 -"EUCAST 2015" "MIC" "B_PSDMN" "TOB" "Pseudo" 4 8 -"EUCAST 2015" "MIC" "B_PSDMN" "TZP" "Pseudo" 16 32 -"EUCAST 2015" "MIC" "B_PSTRL_MLTC" "AMC" "Pasteurella multocida" 1 2 -"EUCAST 2015" "MIC" "B_PSTRL_MLTC" "AMP" "Pasteurella multocida" 1 2 -"EUCAST 2015" "MIC" "B_PSTRL_MLTC" "AMX" "Pasteurella multocida" 1 2 -"EUCAST 2015" "MIC" "B_PSTRL_MLTC" "CIP" "Pasteurella multocida" 0.064 0.12 -"EUCAST 2015" "MIC" "B_PSTRL_MLTC" "CTX" "Pasteurella multocida" 0.032 0.06 -"EUCAST 2015" "MIC" "B_PSTRL_MLTC" "DOX" "Pasteurella multocida" 1 2 -"EUCAST 2015" "MIC" "B_PSTRL_MLTC" "LVX" "Pasteurella multocida" 0.064 0.12 -"EUCAST 2015" "MIC" "B_PSTRL_MLTC" "PEN" "Pasteurella multocida" 0.5 1 -"EUCAST 2015" "MIC" "B_PSTRL_MLTC" "SXT" "Pasteurella multocida" 0.25 0.5 -"EUCAST 2015" "MIC" "B_SLMNL" "CIP" "Enterobacteriaceae" 0.064 0.12 -"EUCAST 2015" "MIC" "B_STNTR_MLTP" "SXT" "Stenotrophomonas maltophilia" 4 8 -"EUCAST 2015" "MIC" "B_STPHY" "AZM" "Staphs" 1 4 -"EUCAST 2015" "MIC" "B_STPHY" "CHL" "Staphs" 8 16 -"EUCAST 2015" "MIC" "B_STPHY" "CIP" "Staphs" 1 2 -"EUCAST 2015" "MIC" "B_STPHY" "CLI" "Staphs" 0.25 1 -"EUCAST 2015" "MIC" "B_STPHY" "CLR" "Staphs" 1 4 -"EUCAST 2015" "MIC" "B_STPHY" "DAP" "Staphs" 1 2 -"EUCAST 2015" "MIC" "B_STPHY" "DOX" "Staphs" 1 4 -"EUCAST 2015" "MIC" "B_STPHY" "ERY" "Staphs" 1 4 -"EUCAST 2015" "MIC" "B_STPHY" "FOS" "Staphs" 32 64 -"EUCAST 2015" "MIC" "B_STPHY" "FUS" "Staphs" 1 2 -"EUCAST 2015" "MIC" "B_STPHY" "LNZ" "Staphs" 4 8 -"EUCAST 2015" "MIC" "B_STPHY" "LVX" "Staphs" 1 4 -"EUCAST 2015" "MIC" "B_STPHY" "MFX" "Staphs" 0.5 2 -"EUCAST 2015" "MIC" "B_STPHY" "MNO" "Staphs" 0.5 2 -"EUCAST 2015" "MIC" "B_STPHY" "MUP" "Staphs" 1 512 -"EUCAST 2015" "MIC" "UTI" "B_STPHY" "NIT" "Staphs" 64 128 -"EUCAST 2015" "MIC" "B_STPHY" "OFX" "Staphs" 1 2 -"EUCAST 2015" "MIC" "B_STPHY" "QDA" "Staphs" 1 4 -"EUCAST 2015" "MIC" "B_STPHY" "RIF" "Staphs" 0.064 1 -"EUCAST 2015" "MIC" "B_STPHY" "RXT" "Staphs" 1 4 -"EUCAST 2015" "MIC" "B_STPHY" "SXT" "Staphs" 2 8 -"EUCAST 2015" "MIC" "B_STPHY" "TCY" "Staphs" 1 4 -"EUCAST 2015" "MIC" "B_STPHY" "TGC" "Staphs" 0.5 1 -"EUCAST 2015" "MIC" "UTI" "B_STPHY" "TMP" "Staphs" 2 8 -"EUCAST 2015" "MIC" "B_STPHY_AURS" "AMK" "Staphs" 8 32 -"EUCAST 2015" "MIC" "B_STPHY_AURS" "CPT" "Staphs" 1 2 -"EUCAST 2015" "MIC" "B_STPHY_AURS" "GEN" "Staphs" 1 2 -"EUCAST 2015" "MIC" "B_STPHY_AURS" "NET" "Staphs" 1 2 -"EUCAST 2015" "MIC" "B_STPHY_AURS" "PEN" "Staphs" 0.125 0.25 -"EUCAST 2015" "MIC" "B_STPHY_AURS" "TEC" "Staphs" 2 4 -"EUCAST 2015" "MIC" "B_STPHY_AURS" "TLV" "Staphs" 0.125 0.25 -"EUCAST 2015" "MIC" "B_STPHY_AURS" "TOB" "Staphs" 1 2 -"EUCAST 2015" "MIC" "B_STPHY_AURS" "VAN" "Staphs" 2 4 -"EUCAST 2015" "MIC" "B_STPHY_CONS" "AMK" "Staphs" 8 32 -"EUCAST 2015" "MIC" "B_STPHY_CONS" "GEN" "Staphs" 1 2 -"EUCAST 2015" "MIC" "B_STPHY_CONS" "NET" "Staphs" 1 2 -"EUCAST 2015" "MIC" "B_STPHY_CONS" "TEC" "Staphs" 4 8 -"EUCAST 2015" "MIC" "B_STPHY_CONS" "TOB" "Staphs" 1 2 -"EUCAST 2015" "MIC" "B_STPHY_CONS" "VAN" "Staphs" 4 8 -"EUCAST 2015" "MIC" "B_STPHY_LGDN" "PEN" "Staphs" 0.125 0.25 -"EUCAST 2015" "MIC" "B_STRPT" "AZM" "Strep A, B, C, G" 0.25 1 -"EUCAST 2015" "MIC" "B_STRPT" "CHL" "Strep A, B, C, G" 8 16 -"EUCAST 2015" "MIC" "B_STRPT" "CLI" "Strep A, B, C, G" 0.5 1 -"EUCAST 2015" "MIC" "B_STRPT" "CLR" "Strep A, B, C, G" 0.25 1 -"EUCAST 2015" "MIC" "B_STRPT" "DAP" "Strep A, B, C, G" 1 2 -"EUCAST 2015" "MIC" "B_STRPT" "DOX" "Strep A, B, C, G" 1 4 -"EUCAST 2015" "MIC" "B_STRPT" "ERY" "Strep A, B, C, G" 0.25 1 -"EUCAST 2015" "MIC" "B_STRPT" "LNZ" "Strep A, B, C, G" 2 8 -"EUCAST 2015" "MIC" "B_STRPT" "LVX" "Strep A, B, C, G" 1 4 -"EUCAST 2015" "MIC" "B_STRPT" "MFX" "Strep A, B, C, G" 0.5 2 -"EUCAST 2015" "MIC" "B_STRPT" "MNO" "Strep A, B, C, G" 0.5 2 -"EUCAST 2015" "MIC" "B_STRPT" "PEN" "Strep A, B, C, G" 0.25 0.5 -"EUCAST 2015" "MIC" "B_STRPT" "RIF" "Strep A, B, C, G" 0.064 1 -"EUCAST 2015" "MIC" "B_STRPT" "RXT" "Strep A, B, C, G" 0.5 2 -"EUCAST 2015" "MIC" "B_STRPT" "SXT" "Strep A, B, C, G" 1 4 -"EUCAST 2015" "MIC" "B_STRPT" "TCY" "Strep A, B, C, G" 1 4 -"EUCAST 2015" "MIC" "B_STRPT" "TEC" "Strep A, B, C, G" 2 4 -"EUCAST 2015" "MIC" "B_STRPT" "TGC" "Strep A, B, C, G" 0.25 1 -"EUCAST 2015" "MIC" "B_STRPT" "TLT" "Strep A, B, C, G" 0.25 1 -"EUCAST 2015" "MIC" "B_STRPT" "VAN" "Strep A, B, C, G" 2 4 -"EUCAST 2015" "MIC" "UTI" "B_STRPT_GRPB" "NIT" "Strep A, B, C, G" 64 128 -"EUCAST 2015" "MIC" "UTI" "B_STRPT_GRPB" "TMP" "Strep A, B, C, G" 2 4 -"EUCAST 2015" "MIC" "B_STRPT_PNMN" "AMP" "Pneumo" 0.5 4 -"EUCAST 2015" "MIC" "B_STRPT_PNMN" "AZM" "Pneumo" 0.25 1 -"EUCAST 2015" "MIC" "B_STRPT_PNMN" "CEC" "Pneumo" 0.032 1 -"EUCAST 2015" "MIC" "B_STRPT_PNMN" "CHL" "Pneumo" 8 16 -"EUCAST 2015" "MIC" "B_STRPT_PNMN" "CIP" "Pneumo" 0.125 4 -"EUCAST 2015" "MIC" "B_STRPT_PNMN" "CLI" "Pneumo" 0.5 1 -"EUCAST 2015" "MIC" "B_STRPT_PNMN" "CLR" "Pneumo" 0.25 1 -"EUCAST 2015" "MIC" "B_STRPT_PNMN" "CPD" "Pneumo" 0.25 1 -"EUCAST 2015" "MIC" "B_STRPT_PNMN" "CPT" "Pneumo" 0.25 0.5 -"EUCAST 2015" "MIC" "B_STRPT_PNMN" "CRO" "Pneumo" 0.5 4 -"EUCAST 2015" "MIC" "B_STRPT_PNMN" "CTX" "Pneumo" 0.5 4 -"EUCAST 2015" "MIC" "IV" "B_STRPT_PNMN" "CXM" "Pneumo" 0.5 2 -"EUCAST 2015" "MIC" "Oral" "B_STRPT_PNMN" "CXM" "Pneumo" 0.25 1 -"EUCAST 2015" "MIC" "B_STRPT_PNMN" "DOR" "Pneumo" 1 2 -"EUCAST 2015" "MIC" "B_STRPT_PNMN" "DOX" "Pneumo" 1 4 -"EUCAST 2015" "MIC" "B_STRPT_PNMN" "ERY" "Pneumo" 0.25 1 -"EUCAST 2015" "MIC" "B_STRPT_PNMN" "ETP" "Pneumo" 0.5 1 -"EUCAST 2015" "MIC" "B_STRPT_PNMN" "FEP" "Pneumo" 1 4 -"EUCAST 2015" "MIC" "B_STRPT_PNMN" "IPM" "Pneumo" 2 4 -"EUCAST 2015" "MIC" "B_STRPT_PNMN" "LNZ" "Pneumo" 2 8 -"EUCAST 2015" "MIC" "B_STRPT_PNMN" "LVX" "Pneumo" 2 4 -"EUCAST 2015" "MIC" "Non-meningitis" "B_STRPT_PNMN" "MEM" "Pneumo" 2 4 -"EUCAST 2015" "MIC" "Meningitis" "B_STRPT_PNMN" "MEM" "Pneumo" 0.25 2 -"EUCAST 2015" "MIC" "B_STRPT_PNMN" "MFX" "Pneumo" 0.5 1 -"EUCAST 2015" "MIC" "B_STRPT_PNMN" "MNO" "Pneumo" 0.5 2 -"EUCAST 2015" "MIC" "B_STRPT_PNMN" "OFX" "Pneumo" 0.125 8 -"EUCAST 2015" "MIC" "Non-meningitis" "B_STRPT_PNMN" "PEN" "Pneumo" 0.064 4 -"EUCAST 2015" "MIC" "Meningitis" "B_STRPT_PNMN" "PEN" "Pneumo" 0.064 0.12 -"EUCAST 2015" "MIC" "B_STRPT_PNMN" "RIF" "Pneumo" 0.064 1 -"EUCAST 2015" "MIC" "B_STRPT_PNMN" "RXT" "Pneumo" 0.5 2 -"EUCAST 2015" "MIC" "B_STRPT_PNMN" "SXT" "Pneumo" 1 4 -"EUCAST 2015" "MIC" "B_STRPT_PNMN" "TCY" "Pneumo" 1 4 -"EUCAST 2015" "MIC" "B_STRPT_PNMN" "TEC" "Pneumo" 2 4 -"EUCAST 2015" "MIC" "B_STRPT_PNMN" "TLT" "Pneumo" 0.25 1 -"EUCAST 2015" "MIC" "B_STRPT_PNMN" "VAN" "Pneumo" 2 4 -"EUCAST 2015" "MIC" "B_STRPT_VIRI" "AMP" "Viridans strept" 0.5 4 -"EUCAST 2015" "MIC" "B_STRPT_VIRI" "AMX" "Viridans strept" 0.5 4 -"EUCAST 2015" "MIC" "B_STRPT_VIRI" "CLI" "Viridans strept" 0.5 1 -"EUCAST 2015" "MIC" "B_STRPT_VIRI" "CRO" "Viridans strept" 0.5 1 -"EUCAST 2015" "MIC" "B_STRPT_VIRI" "CTX" "Viridans strept" 0.5 1 -"EUCAST 2015" "MIC" "B_STRPT_VIRI" "CXM" "Viridans strept" 0.5 1 -"EUCAST 2015" "MIC" "B_STRPT_VIRI" "CZO" "Viridans strept" 0.5 1 -"EUCAST 2015" "MIC" "B_STRPT_VIRI" "DOR" "Viridans strept" 1 2 -"EUCAST 2015" "MIC" "B_STRPT_VIRI" "ETP" "Viridans strept" 0.5 1 -"EUCAST 2015" "MIC" "B_STRPT_VIRI" "FEP" "Viridans strept" 0.5 1 -"EUCAST 2015" "MIC" "B_STRPT_VIRI" "GEH" "Viridans strept" 128 128 -"EUCAST 2015" "MIC" "B_STRPT_VIRI" "GEN" "Viridans strept" 128 128 -"EUCAST 2015" "MIC" "B_STRPT_VIRI" "IPM" "Viridans strept" 2 4 -"EUCAST 2015" "MIC" "B_STRPT_VIRI" "MEM" "Viridans strept" 2 4 -"EUCAST 2015" "MIC" "B_STRPT_VIRI" "PEN" "Viridans strept" 0.25 4 -"EUCAST 2015" "MIC" "B_STRPT_VIRI" "TEC" "Viridans strept" 2 4 -"EUCAST 2015" "MIC" "B_STRPT_VIRI" "VAN" "Viridans strept" 2 4 -"EUCAST 2015" "MIC" "F_ASPRG_MGTS" "AMB" "Aspergillus" 1 4 -"EUCAST 2015" "MIC" "F_ASPRG_MGTS" "POS" "Aspergillus" 0.125 0.25 -"EUCAST 2015" "MIC" "F_ASPRG_MGTS" "VOR" "Aspergillus" 1 4 -"EUCAST 2015" "MIC" "F_ASPRG_NDLN" "AMB" "Aspergillus" 1 4 -"EUCAST 2015" "MIC" "F_ASPRG_TERRS" "POS" "Aspergillus" 0.125 0.5 -"EUCAST 2015" "MIC" "F_CANDD" "AMB" "Candida" 1 2 -"EUCAST 2015" "MIC" "F_CANDD" "ANI" "Candida" 0.064 0.12 -"EUCAST 2015" "MIC" "F_CANDD" "FLU" "Candida" 2 8 -"EUCAST 2015" "MIC" "F_CANDD" "FLU" "Candida" -"EUCAST 2015" "MIC" "F_CANDD_ALBC" "AMB" "Candida" 1 2 -"EUCAST 2015" "MIC" "F_CANDD_ALBC" "ANI" "Candida" 0.032 0.06 -"EUCAST 2015" "MIC" "F_CANDD_ALBC" "FLU" "Candida" 2 8 -"EUCAST 2015" "MIC" "F_CANDD_ALBC" "ITR" "Candida" 0.064 0.12 -"EUCAST 2015" "MIC" "F_CANDD_ALBC" "MIF" "Candida" 0.016 0.03 -"EUCAST 2015" "MIC" "F_CANDD_ALBC" "POS" "Candida" 0.064 0.12 -"EUCAST 2015" "MIC" "F_CANDD_ALBC" "VOR" "Candida" 0.125 0.25 -"EUCAST 2015" "MIC" "F_CANDD_GLBR" "AMB" "Candida" 1 2 -"EUCAST 2015" "MIC" "F_CANDD_GLBR" "ANI" "Candida" 0.064 0.12 -"EUCAST 2015" "MIC" "F_CANDD_GLBR" "FLU" "Candida" 0.002 64 -"EUCAST 2015" "MIC" "F_CANDD_GLBR" "MIF" "Candida" 0.032 0.06 -"EUCAST 2015" "MIC" "F_CANDD_PRPS" "AMB" "Candida" 1 2 -"EUCAST 2015" "MIC" "F_CANDD_PRPS" "ANI" "Candida" 0.002 8 -"EUCAST 2015" "MIC" "F_CANDD_PRPS" "FLU" "Candida" 2 8 -"EUCAST 2015" "MIC" "F_CANDD_PRPS" "ITR" "Candida" 0.125 0.25 -"EUCAST 2015" "MIC" "F_CANDD_PRPS" "MIF" "Candida" 0.002 4 -"EUCAST 2015" "MIC" "F_CANDD_PRPS" "POS" "Candida" 0.064 0.12 -"EUCAST 2015" "MIC" "F_CANDD_PRPS" "VOR" "Candida" 0.125 0.25 -"EUCAST 2015" "MIC" "F_CANDD_TRPC" "AMB" "Candida" 1 2 -"EUCAST 2015" "MIC" "F_CANDD_TRPC" "ANI" "Candida" 0.064 0.12 -"EUCAST 2015" "MIC" "F_CANDD_TRPC" "FLU" "Candida" 2 8 -"EUCAST 2015" "MIC" "F_CANDD_TRPC" "ITR" "Candida" 0.125 0.25 -"EUCAST 2015" "MIC" "F_CANDD_TRPC" "POS" "Candida" 0.064 0.12 -"EUCAST 2015" "MIC" "F_CANDD_TRPC" "VOR" "Candida" 0.125 0.25 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "AMC" "Enterobacteriaceae" 8 16 -"EUCAST 2014" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "AMC" "Enterobacteriaceae" 32 64 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "AMK" "Enterobacteriaceae" 8 32 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "AMP" "Enterobacteriaceae" 8 16 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "AMX" "Enterobacteriaceae" 8 16 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "ATM" "Enterobacteriaceae" 1 8 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "CAZ" "Enterobacteriaceae" 1 8 -"EUCAST 2014" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CFM" "Enterobacteriaceae" 1 2 -"EUCAST 2014" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CFR" "Enterobacteriaceae" 16 32 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "CHL" "Enterobacteriaceae" 8 16 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "CIP" "Enterobacteriaceae" 0.5 2 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "COL" "Enterobacteriaceae" 2 4 -"EUCAST 2014" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CPD" "Enterobacteriaceae" 1 2 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "CPT" "Enterobacteriaceae" 0.5 1 -"EUCAST 2014" "MIC" "Oral" "B_[FAM]_ENTRBCTR" "CRO" "Enterobacteriaceae" 1 4 -"EUCAST 2014" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CTB" "Enterobacteriaceae" 1 2 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "CTX" "Enterobacteriaceae" 1 4 -"EUCAST 2014" "MIC" "IV" "B_[FAM]_ENTRBCTR" "CXM" "Enterobacteriaceae" 8 16 -"EUCAST 2014" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "CXM" "Enterobacteriaceae" 8 16 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "DOR" "Enterobacteriaceae" 1 4 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "ETP" "Enterobacteriaceae" 0.5 2 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "FEP" "Enterobacteriaceae" 1 8 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "FOS" "Enterobacteriaceae" 32 64 -"EUCAST 2014" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "FOS" "Enterobacteriaceae" 32 64 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "GEN" "Enterobacteriaceae" 2 8 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "IPM" "Enterobacteriaceae" 2 16 -"EUCAST 2014" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "LEX" "Enterobacteriaceae" 16 32 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "LVX" "Enterobacteriaceae" 1 4 -"EUCAST 2014" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "MEC" "Enterobacteriaceae" 8 16 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "MEM" "Enterobacteriaceae" 2 16 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "MFX" "Enterobacteriaceae" 0.5 2 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "NET" "Enterobacteriaceae" 2 8 -"EUCAST 2014" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "NIT" "Enterobacteriaceae" 64 128 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "NOR" "Enterobacteriaceae" 0.5 2 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "OFX" "Enterobacteriaceae" 0.5 2 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "PIP" "Enterobacteriaceae" 8 32 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "SAM" "Enterobacteriaceae" 8 16 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "SXT" "Enterobacteriaceae" 2 8 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "TCC" "Enterobacteriaceae" 8 32 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "TGC" "Enterobacteriaceae" 1 4 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "TIC" "Enterobacteriaceae" 8 32 -"EUCAST 2014" "MIC" "UTI" "B_[FAM]_ENTRBCTR" "TMP" "Enterobacteriaceae" 2 8 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "TOB" "Enterobacteriaceae" 2 8 -"EUCAST 2014" "MIC" "B_[FAM]_ENTRBCTR" "TZP" "Enterobacteriaceae" 8 32 -"EUCAST 2014" "MIC" "B_ACNTB" "AMK" "Acinetobacter spp." 8 32 -"EUCAST 2014" "MIC" "B_ACNTB" "CIP" "Acinetobacter spp." 1 2 -"EUCAST 2014" "MIC" "B_ACNTB" "COL" "Acinetobacter spp." 2 4 -"EUCAST 2014" "MIC" "B_ACNTB" "DOR" "Acinetobacter spp." 1 4 -"EUCAST 2014" "MIC" "B_ACNTB" "GEN" "Acinetobacter spp." 4 8 -"EUCAST 2014" "MIC" "B_ACNTB" "IPM" "Acinetobacter spp." 2 16 -"EUCAST 2014" "MIC" "B_ACNTB" "LVX" "Acinetobacter spp." 1 4 -"EUCAST 2014" "MIC" "B_ACNTB" "MEM" "Acinetobacter spp." 2 16 -"EUCAST 2014" "MIC" "B_ACNTB" "NET" "Acinetobacter spp." 4 8 -"EUCAST 2014" "MIC" "B_ACNTB" "SXT" "Acinetobacter spp." 2 8 -"EUCAST 2014" "MIC" "B_ACNTB" "TOB" "Acinetobacter spp." 4 8 -"EUCAST 2014" "MIC" "B_CMPYL" "CIP" "Campylobacter jejuni and coli" 0.5 1 -"EUCAST 2014" "MIC" "B_CMPYL" "TCY" "Campylobacter jejuni and coli" 2 4 -"EUCAST 2014" "MIC" "B_CMPYL_COLI" "ERY" "Campylobacter jejuni and coli" 8 16 -"EUCAST 2014" "MIC" "B_CMPYL_JEJN" "ERY" "Campylobacter jejuni and coli" 4 8 -"EUCAST 2014" "MIC" "B_CRYNB" "CIP" "Corynebacterium spp." 1 2 -"EUCAST 2014" "MIC" "B_CRYNB" "CLI" "Corynebacterium spp." 0.5 1 -"EUCAST 2014" "MIC" "B_CRYNB" "GEN" "Corynebacterium spp." 1 2 -"EUCAST 2014" "MIC" "B_CRYNB" "LNZ" "Corynebacterium spp." 2 4 -"EUCAST 2014" "MIC" "B_CRYNB" "MFX" "Corynebacterium spp." 0.5 1 -"EUCAST 2014" "MIC" "B_CRYNB" "PEN" "Corynebacterium spp." 0.125 0.25 -"EUCAST 2014" "MIC" "B_CRYNB" "RIF" "Corynebacterium spp." 0.064 1 -"EUCAST 2014" "MIC" "B_CRYNB" "TCY" "Corynebacterium spp." 2 4 -"EUCAST 2014" "MIC" "B_CRYNB" "VAN" "Corynebacterium spp." 2 4 -"EUCAST 2014" "MIC" "B_CTRDM_DFFC" "DAP" "C. difficile" 4 -"EUCAST 2014" "MIC" "B_CTRDM_DFFC" "FUS" "C. difficile" 2 -"EUCAST 2014" "MIC" "B_CTRDM_DFFC" "MFX" "C. difficile" 4 -"EUCAST 2014" "MIC" "B_CTRDM_DFFC" "MTR" "C. difficile" 2 4 -"EUCAST 2014" "MIC" "B_CTRDM_DFFC" "RIF" "C. difficile" 0.004 -"EUCAST 2014" "MIC" "B_CTRDM_DFFC" "TGC" "C. difficile" 0.25 -"EUCAST 2014" "MIC" "B_CTRDM_DFFC" "VAN" "C. difficile" 2 4 -"EUCAST 2014" "MIC" "B_ENTRC" "AMC" "Enterococcus" 4 16 -"EUCAST 2014" "MIC" "B_ENTRC" "AMP" "Enterococcus" 4 16 -"EUCAST 2014" "MIC" "B_ENTRC" "AMX" "Enterococcus" 4 16 -"EUCAST 2014" "MIC" "UTI" "B_ENTRC" "CIP" "Enterococcus" 4 8 -"EUCAST 2014" "MIC" "B_ENTRC" "GEH" "Enterococcus" 128 128 -"EUCAST 2014" "MIC" "B_ENTRC" "GEN" "Enterococcus" 128 128 -"EUCAST 2014" "MIC" "B_ENTRC" "IPM" "Enterococcus" 4 16 -"EUCAST 2014" "MIC" "B_ENTRC" "LNZ" "Enterococcus" 4 8 -"EUCAST 2014" "MIC" "UTI" "B_ENTRC" "LVX" "Enterococcus" 4 8 -"EUCAST 2014" "MIC" "B_ENTRC" "QDA" "Enterococcus" 1 8 -"EUCAST 2014" "MIC" "B_ENTRC" "SAM" "Enterococcus" 4 16 -"EUCAST 2014" "MIC" "B_ENTRC" "SXT" "Enterococcus" 0.032 2 -"EUCAST 2014" "MIC" "B_ENTRC" "TEC" "Enterococcus" 2 4 -"EUCAST 2014" "MIC" "B_ENTRC" "TGC" "Enterococcus" 0.25 1 -"EUCAST 2014" "MIC" "UTI" "B_ENTRC" "TMP" "Enterococcus" 0.032 2 -"EUCAST 2014" "MIC" "B_ENTRC" "VAN" "Enterococcus" 4 8 -"EUCAST 2014" "MIC" "UTI" "B_ENTRC_FCLS" "NIT" "Enterococcus" 64 128 -"EUCAST 2014" "MIC" "B_HLCBCT_PYLR" "AMX" "H. pylori" 0.125 0.25 -"EUCAST 2014" "MIC" "B_HLCBCT_PYLR" "CLR" "H. pylori" 0.25 1 -"EUCAST 2014" "MIC" "B_HLCBCT_PYLR" "LVX" "H. pylori" 1 2 -"EUCAST 2014" "MIC" "B_HLCBCT_PYLR" "MTR" "H. pylori" 8 16 -"EUCAST 2014" "MIC" "B_HLCBCT_PYLR" "RIF" "H. pylori" 1 2 -"EUCAST 2014" "MIC" "B_HLCBCT_PYLR" "TCY" "H. pylori" 1 2 -"EUCAST 2014" "MIC" "B_HMPHL_INFL" "AMC" "H. influenaza" 2 4 -"EUCAST 2014" "MIC" "B_HMPHL_INFL" "AMP" "H. influenaza" 1 2 -"EUCAST 2014" "MIC" "B_HMPHL_INFL" "AMX" "H. influenaza" 2 4 -"EUCAST 2014" "MIC" "B_HMPHL_INFL" "AZM" "H. influenaza" 0.125 8 -"EUCAST 2014" "MIC" "B_HMPHL_INFL" "CFM" "H. influenaza" 0.125 0.25 -"EUCAST 2014" "MIC" "B_HMPHL_INFL" "CHL" "H. influenaza" 2 4 -"EUCAST 2014" "MIC" "B_HMPHL_INFL" "CIP" "H. influenaza" 0.5 1 -"EUCAST 2014" "MIC" "B_HMPHL_INFL" "CLR" "H. influenaza" 1 64 -"EUCAST 2014" "MIC" "B_HMPHL_INFL" "CPD" "H. influenaza" 0.25 1 -"EUCAST 2014" "MIC" "B_HMPHL_INFL" "CPT" "H. influenaza" 0.032 0.06 -"EUCAST 2014" "MIC" "B_HMPHL_INFL" "CRO" "H. influenaza" 0.125 0.25 -"EUCAST 2014" "MIC" "B_HMPHL_INFL" "CTB" "H. influenaza" 1 2 -"EUCAST 2014" "MIC" "B_HMPHL_INFL" "CTX" "H. influenaza" 0.125 0.25 -"EUCAST 2014" "MIC" "IV" "B_HMPHL_INFL" "CXM" "H. influenaza" 1 4 -"EUCAST 2014" "MIC" "Oral" "B_HMPHL_INFL" "CXM" "H. influenaza" 0.125 2 -"EUCAST 2014" "MIC" "B_HMPHL_INFL" "DOR" "H. influenaza" 1 2 -"EUCAST 2014" "MIC" "B_HMPHL_INFL" "DOX" "H. influenaza" 1 4 -"EUCAST 2014" "MIC" "B_HMPHL_INFL" "ERY" "H. influenaza" 0.5 32 -"EUCAST 2014" "MIC" "B_HMPHL_INFL" "ETP" "H. influenaza" 0.5 1 -"EUCAST 2014" "MIC" "B_HMPHL_INFL" "FEP" "H. influenaza" 0.25 0.5 -"EUCAST 2014" "MIC" "B_HMPHL_INFL" "IPM" "H. influenaza" 2 4 -"EUCAST 2014" "MIC" "B_HMPHL_INFL" "LVX" "H. influenaza" 1 2 -"EUCAST 2014" "MIC" "Non-meningitis" "B_HMPHL_INFL" "MEM" "H. influenaza" 2 4 -"EUCAST 2014" "MIC" "Meningitis" "B_HMPHL_INFL" "MEM" "H. influenaza" 0.25 2 -"EUCAST 2014" "MIC" "B_HMPHL_INFL" "MFX" "H. influenaza" 0.5 1 -"EUCAST 2014" "MIC" "B_HMPHL_INFL" "MNO" "H. influenaza" 1 4 -"EUCAST 2014" "MIC" "B_HMPHL_INFL" "OFX" "H. influenaza" 0.5 1 -"EUCAST 2014" "MIC" "Prophylaxis" "B_HMPHL_INFL" "RIF" "H. influenaza" 1 2 -"EUCAST 2014" "MIC" "B_HMPHL_INFL" "RXT" "H. influenaza" 1 32 -"EUCAST 2014" "MIC" "B_HMPHL_INFL" "SAM" "H. influenaza" 1 2 -"EUCAST 2014" "MIC" "B_HMPHL_INFL" "SXT" "H. influenaza" 0.5 2 -"EUCAST 2014" "MIC" "B_HMPHL_INFL" "TCY" "H. influenaza" 1 4 -"EUCAST 2014" "MIC" "B_HMPHL_INFL" "TLT" "H. influenaza" 0.125 16 -"EUCAST 2014" "MIC" "B_LISTR_MNCY" "AMP" "Listeria monocytogenes" 1 2 -"EUCAST 2014" "MIC" "B_LISTR_MNCY" "ERY" "Listeria monocytogenes" 1 2 -"EUCAST 2014" "MIC" "B_LISTR_MNCY" "MEM" "Listeria monocytogenes" 0.25 0.5 -"EUCAST 2014" "MIC" "B_LISTR_MNCY" "PEN" "Listeria monocytogenes" 1 2 -"EUCAST 2014" "MIC" "B_LISTR_MNCY" "SXT" "Listeria monocytogenes" 0.064 0.12 -"EUCAST 2014" "MIC" "B_MRXLL_CTRR" "AMC" "M. cattharalis" 1 2 -"EUCAST 2014" "MIC" "B_MRXLL_CTRR" "AZM" "M. cattharalis" 0.25 1 -"EUCAST 2014" "MIC" "B_MRXLL_CTRR" "CFM" "M. cattharalis" 0.5 2 -"EUCAST 2014" "MIC" "B_MRXLL_CTRR" "CHL" "M. cattharalis" 2 4 -"EUCAST 2014" "MIC" "B_MRXLL_CTRR" "CIP" "M. cattharalis" 0.5 1 -"EUCAST 2014" "MIC" "B_MRXLL_CTRR" "CLR" "M. cattharalis" 0.25 1 -"EUCAST 2014" "MIC" "B_MRXLL_CTRR" "CRO" "M. cattharalis" 1 4 -"EUCAST 2014" "MIC" "B_MRXLL_CTRR" "CTX" "M. cattharalis" 1 4 -"EUCAST 2014" "MIC" "IV" "B_MRXLL_CTRR" "CXM" "M. cattharalis" 4 16 -"EUCAST 2014" "MIC" "Oral" "B_MRXLL_CTRR" "CXM" "M. cattharalis" 0.125 8 -"EUCAST 2014" "MIC" "B_MRXLL_CTRR" "DOR" "M. cattharalis" 1 2 -"EUCAST 2014" "MIC" "B_MRXLL_CTRR" "DOX" "M. cattharalis" 1 4 -"EUCAST 2014" "MIC" "B_MRXLL_CTRR" "ERY" "M. cattharalis" 0.25 1 -"EUCAST 2014" "MIC" "B_MRXLL_CTRR" "ETP" "M. cattharalis" 0.5 1 -"EUCAST 2014" "MIC" "B_MRXLL_CTRR" "FEP" "M. cattharalis" 4 8 -"EUCAST 2014" "MIC" "B_MRXLL_CTRR" "IPM" "M. cattharalis" 2 4 -"EUCAST 2014" "MIC" "B_MRXLL_CTRR" "LVX" "M. cattharalis" 1 2 -"EUCAST 2014" "MIC" "B_MRXLL_CTRR" "MEM" "M. cattharalis" 2 4 -"EUCAST 2014" "MIC" "B_MRXLL_CTRR" "MFX" "M. cattharalis" 0.5 1 -"EUCAST 2014" "MIC" "B_MRXLL_CTRR" "MNO" "M. cattharalis" 1 4 -"EUCAST 2014" "MIC" "B_MRXLL_CTRR" "OFX" "M. cattharalis" 0.5 1 -"EUCAST 2014" "MIC" "B_MRXLL_CTRR" "RXT" "M. cattharalis" 0.5 2 -"EUCAST 2014" "MIC" "B_MRXLL_CTRR" "SAM" "M. cattharalis" 1 2 -"EUCAST 2014" "MIC" "B_MRXLL_CTRR" "SXT" "M. cattharalis" 0.5 2 -"EUCAST 2014" "MIC" "B_MRXLL_CTRR" "TCY" "M. cattharalis" 1 4 -"EUCAST 2014" "MIC" "B_MRXLL_CTRR" "TLT" "M. cattharalis" 0.25 1 -"EUCAST 2014" "MIC" "B_NESSR_GNRR" "AZM" "N. gonorrhoeae" 0.25 1 -"EUCAST 2014" "MIC" "B_NESSR_GNRR" "CFM" "N. gonorrhoeae" 0.125 0.25 -"EUCAST 2014" "MIC" "B_NESSR_GNRR" "CIP" "N. gonorrhoeae" 0.032 0.12 -"EUCAST 2014" "MIC" "B_NESSR_GNRR" "CRO" "N. gonorrhoeae" 0.125 0.25 -"EUCAST 2014" "MIC" "B_NESSR_GNRR" "CTX" "N. gonorrhoeae" 0.125 0.25 -"EUCAST 2014" "MIC" "B_NESSR_GNRR" "OFX" "N. gonorrhoeae" 0.125 0.5 -"EUCAST 2014" "MIC" "B_NESSR_GNRR" "PEN" "N. gonorrhoeae" 0.064 2 -"EUCAST 2014" "MIC" "B_NESSR_GNRR" "SPT" "N. gonorrhoeae" 64 128 -"EUCAST 2014" "MIC" "B_NESSR_GNRR" "TCY" "N. gonorrhoeae" 0.5 2 -"EUCAST 2014" "MIC" "B_NESSR_MNNG" "AMP" "N. meningitidis" 0.125 2 -"EUCAST 2014" "MIC" "B_NESSR_MNNG" "AMX" "N. meningitidis" 0.125 2 -"EUCAST 2014" "MIC" "B_NESSR_MNNG" "CHL" "N. meningitidis" 2 8 -"EUCAST 2014" "MIC" "B_NESSR_MNNG" "CIP" "N. meningitidis" 0.032 0.12 -"EUCAST 2014" "MIC" "B_NESSR_MNNG" "CRO" "N. meningitidis" 0.125 0.25 -"EUCAST 2014" "MIC" "B_NESSR_MNNG" "CTX" "N. meningitidis" 0.125 0.25 -"EUCAST 2014" "MIC" "B_NESSR_MNNG" "MEM" "N. meningitidis" 0.25 0.5 -"EUCAST 2014" "MIC" "B_NESSR_MNNG" "MNO" "N. meningitidis" 1 4 -"EUCAST 2014" "MIC" "B_NESSR_MNNG" "PEN" "N. meningitidis" 0.064 0.5 -"EUCAST 2014" "MIC" "B_NESSR_MNNG" "RIF" "N. meningitidis" 0.25 0.5 -"EUCAST 2014" "MIC" "B_NESSR_MNNG" "TCY" "N. meningitidis" 1 4 -"EUCAST 2014" "MIC" "B_PSDMN" "AMK" "Pseudo" 8 32 -"EUCAST 2014" "MIC" "B_PSDMN" "ATM" "Pseudo" 1 32 -"EUCAST 2014" "MIC" "B_PSDMN" "CAZ" "Pseudo" 8 16 -"EUCAST 2014" "MIC" "B_PSDMN" "CIP" "Pseudo" 0.5 2 -"EUCAST 2014" "MIC" "B_PSDMN" "COL" "Pseudo" 4 8 -"EUCAST 2014" "MIC" "B_PSDMN" "DOR" "Pseudo" 1 4 -"EUCAST 2014" "MIC" "B_PSDMN" "FEP" "Pseudo" 8 16 -"EUCAST 2014" "MIC" "B_PSDMN" "GEN" "Pseudo" 4 8 -"EUCAST 2014" "MIC" "B_PSDMN" "IPM" "Pseudo" 4 16 -"EUCAST 2014" "MIC" "B_PSDMN" "LVX" "Pseudo" 1 4 -"EUCAST 2014" "MIC" "B_PSDMN" "MEM" "Pseudo" 2 16 -"EUCAST 2014" "MIC" "B_PSDMN" "NET" "Pseudo" 4 8 -"EUCAST 2014" "MIC" "B_PSDMN" "PIP" "Pseudo" 16 32 -"EUCAST 2014" "MIC" "B_PSDMN" "TCC" "Pseudo" 16 32 -"EUCAST 2014" "MIC" "B_PSDMN" "TIC" "Pseudo" 16 32 -"EUCAST 2014" "MIC" "B_PSDMN" "TOB" "Pseudo" 4 8 -"EUCAST 2014" "MIC" "B_PSDMN" "TZP" "Pseudo" 16 32 -"EUCAST 2014" "MIC" "B_PSTRL_MLTC" "AMC" "Pasteurella multocida" 1 2 -"EUCAST 2014" "MIC" "B_PSTRL_MLTC" "AMP" "Pasteurella multocida" 1 2 -"EUCAST 2014" "MIC" "B_PSTRL_MLTC" "AMX" "Pasteurella multocida" 1 2 -"EUCAST 2014" "MIC" "B_PSTRL_MLTC" "CIP" "Pasteurella multocida" 0.064 0.12 -"EUCAST 2014" "MIC" "B_PSTRL_MLTC" "CTX" "Pasteurella multocida" 0.032 0.06 -"EUCAST 2014" "MIC" "B_PSTRL_MLTC" "DOX" "Pasteurella multocida" 1 2 -"EUCAST 2014" "MIC" "B_PSTRL_MLTC" "LVX" "Pasteurella multocida" 0.064 0.12 -"EUCAST 2014" "MIC" "B_PSTRL_MLTC" "PEN" "Pasteurella multocida" 0.5 1 -"EUCAST 2014" "MIC" "B_PSTRL_MLTC" "SXT" "Pasteurella multocida" 0.25 0.5 -"EUCAST 2014" "MIC" "B_SLMNL" "CIP" "Enterobacteriaceae" 0.064 0.12 -"EUCAST 2014" "MIC" "B_STNTR_MLTP" "SXT" "Stenotrophomonas maltophilia" 4 8 -"EUCAST 2014" "MIC" "B_STPHY" "AZM" "Staphs" 1 4 -"EUCAST 2014" "MIC" "B_STPHY" "CHL" "Staphs" 8 16 -"EUCAST 2014" "MIC" "B_STPHY" "CIP" "Staphs" 1 2 -"EUCAST 2014" "MIC" "B_STPHY" "CLI" "Staphs" 0.25 1 -"EUCAST 2014" "MIC" "B_STPHY" "CLR" "Staphs" 1 4 -"EUCAST 2014" "MIC" "B_STPHY" "DAP" "Staphs" 1 2 -"EUCAST 2014" "MIC" "B_STPHY" "DOX" "Staphs" 1 4 -"EUCAST 2014" "MIC" "B_STPHY" "ERY" "Staphs" 1 4 -"EUCAST 2014" "MIC" "B_STPHY" "FOS" "Staphs" 32 64 -"EUCAST 2014" "MIC" "B_STPHY" "FUS" "Staphs" 1 2 -"EUCAST 2014" "MIC" "B_STPHY" "LNZ" "Staphs" 4 8 -"EUCAST 2014" "MIC" "B_STPHY" "LVX" "Staphs" 1 4 -"EUCAST 2014" "MIC" "B_STPHY" "MFX" "Staphs" 0.5 2 -"EUCAST 2014" "MIC" "B_STPHY" "MNO" "Staphs" 0.5 2 -"EUCAST 2014" "MIC" "B_STPHY" "MUP" "Staphs" 1 512 -"EUCAST 2014" "MIC" "UTI" "B_STPHY" "NIT" "Staphs" 64 128 -"EUCAST 2014" "MIC" "B_STPHY" "OFX" "Staphs" 1 2 -"EUCAST 2014" "MIC" "B_STPHY" "QDA" "Staphs" 1 4 -"EUCAST 2014" "MIC" "B_STPHY" "RIF" "Staphs" 0.064 1 -"EUCAST 2014" "MIC" "B_STPHY" "RXT" "Staphs" 1 4 -"EUCAST 2014" "MIC" "B_STPHY" "SXT" "Staphs" 2 8 -"EUCAST 2014" "MIC" "B_STPHY" "TCY" "Staphs" 1 4 -"EUCAST 2014" "MIC" "B_STPHY" "TGC" "Staphs" 0.5 1 -"EUCAST 2014" "MIC" "UTI" "B_STPHY" "TMP" "Staphs" 2 8 -"EUCAST 2014" "MIC" "B_STPHY_AURS" "AMK" "Staphs" 8 32 -"EUCAST 2014" "MIC" "B_STPHY_AURS" "CPT" "Staphs" 1 2 -"EUCAST 2014" "MIC" "B_STPHY_AURS" "GEN" "Staphs" 1 2 -"EUCAST 2014" "MIC" "B_STPHY_AURS" "NET" "Staphs" 1 2 -"EUCAST 2014" "MIC" "B_STPHY_AURS" "PEN" "Staphs" 0.125 0.25 -"EUCAST 2014" "MIC" "B_STPHY_AURS" "TEC" "Staphs" 2 4 -"EUCAST 2014" "MIC" "B_STPHY_AURS" "TLV" "Staphs" 1 2 -"EUCAST 2014" "MIC" "B_STPHY_AURS" "TOB" "Staphs" 1 2 -"EUCAST 2014" "MIC" "B_STPHY_AURS" "VAN" "Staphs" 2 4 -"EUCAST 2014" "MIC" "B_STPHY_CONS" "AMK" "Staphs" 8 32 -"EUCAST 2014" "MIC" "B_STPHY_CONS" "GEN" "Staphs" 1 2 -"EUCAST 2014" "MIC" "B_STPHY_CONS" "NET" "Staphs" 1 2 -"EUCAST 2014" "MIC" "B_STPHY_CONS" "TEC" "Staphs" 4 8 -"EUCAST 2014" "MIC" "B_STPHY_CONS" "TOB" "Staphs" 1 2 -"EUCAST 2014" "MIC" "B_STPHY_CONS" "VAN" "Staphs" 4 8 -"EUCAST 2014" "MIC" "B_STPHY_LGDN" "PEN" "Staphs" 0.125 0.25 -"EUCAST 2014" "MIC" "B_STRPT" "AZM" "Strep A, B, C, G" 0.25 1 -"EUCAST 2014" "MIC" "B_STRPT" "CHL" "Strep A, B, C, G" 8 16 -"EUCAST 2014" "MIC" "B_STRPT" "CLI" "Strep A, B, C, G" 0.5 1 -"EUCAST 2014" "MIC" "B_STRPT" "CLR" "Strep A, B, C, G" 0.25 1 -"EUCAST 2014" "MIC" "B_STRPT" "DAP" "Strep A, B, C, G" 1 2 -"EUCAST 2014" "MIC" "B_STRPT" "DOX" "Strep A, B, C, G" 1 4 -"EUCAST 2014" "MIC" "B_STRPT" "ERY" "Strep A, B, C, G" 0.25 1 -"EUCAST 2014" "MIC" "B_STRPT" "LNZ" "Strep A, B, C, G" 2 8 -"EUCAST 2014" "MIC" "B_STRPT" "LVX" "Strep A, B, C, G" 1 4 -"EUCAST 2014" "MIC" "B_STRPT" "MFX" "Strep A, B, C, G" 0.5 2 -"EUCAST 2014" "MIC" "B_STRPT" "MNO" "Strep A, B, C, G" 0.5 2 -"EUCAST 2014" "MIC" "B_STRPT" "PEN" "Strep A, B, C, G" 0.25 0.5 -"EUCAST 2014" "MIC" "B_STRPT" "RIF" "Strep A, B, C, G" 0.064 1 -"EUCAST 2014" "MIC" "B_STRPT" "RXT" "Strep A, B, C, G" 0.5 2 -"EUCAST 2014" "MIC" "B_STRPT" "SXT" "Strep A, B, C, G" 1 4 -"EUCAST 2014" "MIC" "B_STRPT" "TCY" "Strep A, B, C, G" 1 4 -"EUCAST 2014" "MIC" "B_STRPT" "TEC" "Strep A, B, C, G" 2 4 -"EUCAST 2014" "MIC" "B_STRPT" "TGC" "Strep A, B, C, G" 0.25 1 -"EUCAST 2014" "MIC" "B_STRPT" "TLT" "Strep A, B, C, G" 0.25 1 -"EUCAST 2014" "MIC" "B_STRPT" "VAN" "Strep A, B, C, G" 2 4 -"EUCAST 2014" "MIC" "UTI" "B_STRPT_GRPB" "NIT" "Strep A, B, C, G" 64 128 -"EUCAST 2014" "MIC" "UTI" "B_STRPT_GRPB" "TMP" "Strep A, B, C, G" 2 4 -"EUCAST 2014" "MIC" "B_STRPT_PNMN" "AMP" "Pneumo" 0.5 4 -"EUCAST 2014" "MIC" "B_STRPT_PNMN" "AZM" "Pneumo" 0.25 1 -"EUCAST 2014" "MIC" "B_STRPT_PNMN" "CEC" "Pneumo" 0.032 1 -"EUCAST 2014" "MIC" "B_STRPT_PNMN" "CHL" "Pneumo" 8 16 -"EUCAST 2014" "MIC" "B_STRPT_PNMN" "CIP" "Pneumo" 0.125 4 -"EUCAST 2014" "MIC" "B_STRPT_PNMN" "CLI" "Pneumo" 0.5 1 -"EUCAST 2014" "MIC" "B_STRPT_PNMN" "CLR" "Pneumo" 0.25 1 -"EUCAST 2014" "MIC" "B_STRPT_PNMN" "CPD" "Pneumo" 0.25 1 -"EUCAST 2014" "MIC" "B_STRPT_PNMN" "CPT" "Pneumo" 0.25 0.5 -"EUCAST 2014" "MIC" "B_STRPT_PNMN" "CRO" "Pneumo" 0.5 4 -"EUCAST 2014" "MIC" "B_STRPT_PNMN" "CTX" "Pneumo" 0.5 4 -"EUCAST 2014" "MIC" "IV" "B_STRPT_PNMN" "CXM" "Pneumo" 0.5 2 -"EUCAST 2014" "MIC" "Oral" "B_STRPT_PNMN" "CXM" "Pneumo" 0.25 1 -"EUCAST 2014" "MIC" "B_STRPT_PNMN" "DOR" "Pneumo" 1 2 -"EUCAST 2014" "MIC" "B_STRPT_PNMN" "DOX" "Pneumo" 1 4 -"EUCAST 2014" "MIC" "B_STRPT_PNMN" "ERY" "Pneumo" 0.25 1 -"EUCAST 2014" "MIC" "B_STRPT_PNMN" "ETP" "Pneumo" 0.5 1 -"EUCAST 2014" "MIC" "B_STRPT_PNMN" "FEP" "Pneumo" 1 4 -"EUCAST 2014" "MIC" "B_STRPT_PNMN" "IPM" "Pneumo" 2 4 -"EUCAST 2014" "MIC" "B_STRPT_PNMN" "LNZ" "Pneumo" 2 8 -"EUCAST 2014" "MIC" "B_STRPT_PNMN" "LVX" "Pneumo" 2 4 -"EUCAST 2014" "MIC" "Non-meningitis" "B_STRPT_PNMN" "MEM" "Pneumo" 2 4 -"EUCAST 2014" "MIC" "Meningitis" "B_STRPT_PNMN" "MEM" "Pneumo" 0.25 2 -"EUCAST 2014" "MIC" "B_STRPT_PNMN" "MFX" "Pneumo" 0.5 1 -"EUCAST 2014" "MIC" "B_STRPT_PNMN" "MNO" "Pneumo" 0.5 2 -"EUCAST 2014" "MIC" "B_STRPT_PNMN" "OFX" "Pneumo" 0.125 8 -"EUCAST 2014" "MIC" "Non-meningitis" "B_STRPT_PNMN" "PEN" "Pneumo" 0.064 4 -"EUCAST 2014" "MIC" "Meningitis" "B_STRPT_PNMN" "PEN" "Pneumo" 0.064 0.12 -"EUCAST 2014" "MIC" "B_STRPT_PNMN" "RIF" "Pneumo" 0.064 1 -"EUCAST 2014" "MIC" "B_STRPT_PNMN" "RXT" "Pneumo" 0.5 2 -"EUCAST 2014" "MIC" "B_STRPT_PNMN" "SXT" "Pneumo" 1 4 -"EUCAST 2014" "MIC" "B_STRPT_PNMN" "TCY" "Pneumo" 1 4 -"EUCAST 2014" "MIC" "B_STRPT_PNMN" "TEC" "Pneumo" 2 4 -"EUCAST 2014" "MIC" "B_STRPT_PNMN" "TLT" "Pneumo" 0.25 1 -"EUCAST 2014" "MIC" "B_STRPT_PNMN" "VAN" "Pneumo" 2 4 -"EUCAST 2014" "MIC" "B_STRPT_VIRI" "AMP" "Viridans strept" 0.5 4 -"EUCAST 2014" "MIC" "B_STRPT_VIRI" "AMX" "Viridans strept" 0.5 4 -"EUCAST 2014" "MIC" "B_STRPT_VIRI" "CLI" "Viridans strept" 0.5 1 -"EUCAST 2014" "MIC" "B_STRPT_VIRI" "CRO" "Viridans strept" 0.5 1 -"EUCAST 2014" "MIC" "B_STRPT_VIRI" "CTX" "Viridans strept" 0.5 1 -"EUCAST 2014" "MIC" "B_STRPT_VIRI" "CXM" "Viridans strept" 0.5 1 -"EUCAST 2014" "MIC" "B_STRPT_VIRI" "CZO" "Viridans strept" 0.5 1 -"EUCAST 2014" "MIC" "B_STRPT_VIRI" "DOR" "Viridans strept" 1 2 -"EUCAST 2014" "MIC" "B_STRPT_VIRI" "ETP" "Viridans strept" 0.5 1 -"EUCAST 2014" "MIC" "B_STRPT_VIRI" "FEP" "Viridans strept" 0.5 1 -"EUCAST 2014" "MIC" "B_STRPT_VIRI" "GEH" "Viridans strept" 128 128 -"EUCAST 2014" "MIC" "B_STRPT_VIRI" "GEN" "Viridans strept" 128 128 -"EUCAST 2014" "MIC" "B_STRPT_VIRI" "IPM" "Viridans strept" 2 4 -"EUCAST 2014" "MIC" "B_STRPT_VIRI" "MEM" "Viridans strept" 2 4 -"EUCAST 2014" "MIC" "B_STRPT_VIRI" "PEN" "Viridans strept" 0.25 4 -"EUCAST 2014" "MIC" "B_STRPT_VIRI" "TEC" "Viridans strept" 2 4 -"EUCAST 2014" "MIC" "B_STRPT_VIRI" "VAN" "Viridans strept" 2 4 -"EUCAST 2014" "MIC" "F_ASPRG_MGTS" "AMB" "Aspergillus" 1 4 -"EUCAST 2014" "MIC" "F_ASPRG_MGTS" "POS" "Aspergillus" 0.125 0.25 -"EUCAST 2014" "MIC" "F_ASPRG_MGTS" "VOR" "Aspergillus" 1 4 -"EUCAST 2014" "MIC" "F_ASPRG_NDLN" "AMB" "Aspergillus" 1 4 -"EUCAST 2014" "MIC" "F_ASPRG_TERRS" "POS" "Aspergillus" 0.125 0.5 -"EUCAST 2014" "MIC" "F_CANDD" "AMB" "Candida" 1 2 -"EUCAST 2014" "MIC" "F_CANDD" "ANI" "Candida" 0.064 0.12 -"EUCAST 2014" "MIC" "F_CANDD" "FLU" "Candida" 2 8 -"EUCAST 2014" "MIC" "F_CANDD" "FLU" "Candida" -"EUCAST 2014" "MIC" "F_CANDD_ALBC" "AMB" "Candida" 1 2 -"EUCAST 2014" "MIC" "F_CANDD_ALBC" "ANI" "Candida" 0.032 0.06 -"EUCAST 2014" "MIC" "F_CANDD_ALBC" "FLU" "Candida" 2 8 -"EUCAST 2014" "MIC" "F_CANDD_ALBC" "MIF" "Candida" 0.016 0.03 -"EUCAST 2014" "MIC" "F_CANDD_ALBC" "POS" "Candida" 0.064 0.12 -"EUCAST 2014" "MIC" "F_CANDD_ALBC" "VOR" "Candida" 0.125 0.25 -"EUCAST 2014" "MIC" "F_CANDD_GLBR" "AMB" "Candida" 1 2 -"EUCAST 2014" "MIC" "F_CANDD_GLBR" "ANI" "Candida" 0.064 0.12 -"EUCAST 2014" "MIC" "F_CANDD_GLBR" "FLU" "Candida" 0.002 64 -"EUCAST 2014" "MIC" "F_CANDD_GLBR" "MIF" "Candida" 0.032 0.06 -"EUCAST 2014" "MIC" "F_CANDD_PRPS" "AMB" "Candida" 1 2 -"EUCAST 2014" "MIC" "F_CANDD_PRPS" "ANI" "Candida" 0.002 8 -"EUCAST 2014" "MIC" "F_CANDD_PRPS" "FLU" "Candida" 2 8 -"EUCAST 2014" "MIC" "F_CANDD_PRPS" "MIF" "Candida" 0.002 4 -"EUCAST 2014" "MIC" "F_CANDD_PRPS" "POS" "Candida" 0.064 0.12 -"EUCAST 2014" "MIC" "F_CANDD_PRPS" "VOR" "Candida" 0.125 0.25 -"EUCAST 2014" "MIC" "F_CANDD_TRPC" "AMB" "Candida" 1 2 -"EUCAST 2014" "MIC" "F_CANDD_TRPC" "ANI" "Candida" 0.064 0.12 -"EUCAST 2014" "MIC" "F_CANDD_TRPC" "FLU" "Candida" 2 8 -"EUCAST 2014" "MIC" "F_CANDD_TRPC" "POS" "Candida" 0.064 0.12 -"EUCAST 2014" "MIC" "F_CANDD_TRPC" "VOR" "Candida" 0.125 0.25 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "AMC" "Enterobacteriaceae" 8 16 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "AMK" "Enterobacteriaceae" 8 32 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "AMP" "Enterobacteriaceae" 8 16 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "AMX" "Enterobacteriaceae" 8 16 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "ATM" "Enterobacteriaceae" 1 8 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "CAZ" "Enterobacteriaceae" 1 8 -"EUCAST 2013" "MIC" "Urinary tract infect" "B_[FAM]_ENTRBCTR" "CFM" "Enterobacteriaceae" 1 2 -"EUCAST 2013" "MIC" "Urinary tract infect" "B_[FAM]_ENTRBCTR" "CFR" "Enterobacteriaceae" 16 32 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "CHL" "Enterobacteriaceae" 8 16 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "CIP" "Enterobacteriaceae" 0.5 2 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "COL" "Enterobacteriaceae" 2 4 -"EUCAST 2013" "MIC" "Urinary tract infect" "B_[FAM]_ENTRBCTR" "CPD" "Enterobacteriaceae" 1 2 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "CPT" "Enterobacteriaceae" 0.5 1 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "CRO" "Enterobacteriaceae" 1 4 -"EUCAST 2013" "MIC" "Urinary tract infect" "B_[FAM]_ENTRBCTR" "CTB" "Enterobacteriaceae" 1 2 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "CTX" "Enterobacteriaceae" 1 4 -"EUCAST 2013" "MIC" "Urinary tract infect" "B_[FAM]_ENTRBCTR" "CXA" "Enterobacteriaceae" 8 16 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "CXM" "Enterobacteriaceae" 8 16 -"EUCAST 2013" "MIC" "Urinary tract infect" "B_[FAM]_ENTRBCTR" "CXM" "Enterobacteriaceae" 8 16 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "DOR" "Enterobacteriaceae" 1 8 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "ETP" "Enterobacteriaceae" 0.5 2 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "FEP" "Enterobacteriaceae" 1 8 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "FOS" "Enterobacteriaceae" 32 64 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "FOX" "Enterobacteriaceae" 8 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "GEN" "Enterobacteriaceae" 2 8 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "IPM" "Enterobacteriaceae" 2 16 -"EUCAST 2013" "MIC" "Urinary tract infect" "B_[FAM]_ENTRBCTR" "LEX" "Enterobacteriaceae" 16 32 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "LVX" "Enterobacteriaceae" 1 4 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "MEM" "Enterobacteriaceae" 2 16 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "MFX" "Enterobacteriaceae" 0.5 2 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "NET" "Enterobacteriaceae" 2 8 -"EUCAST 2013" "MIC" "Urinary tract infect" "B_[FAM]_ENTRBCTR" "NIT" "Enterobacteriaceae" 64 128 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "NOR" "Enterobacteriaceae" 0.5 2 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "OFX" "Enterobacteriaceae" 0.5 2 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "PIP" "Enterobacteriaceae" 8 32 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "SAM" "Enterobacteriaceae" 8 16 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "SXT" "Enterobacteriaceae" 2 8 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "TCC" "Enterobacteriaceae" 8 32 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "TGC" "Enterobacteriaceae" 1 4 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "TIC" "Enterobacteriaceae" 8 32 -"EUCAST 2013" "MIC" "Urinary tract infect" "B_[FAM]_ENTRBCTR" "TMP" "Enterobacteriaceae" 2 8 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "TOB" "Enterobacteriaceae" 2 8 -"EUCAST 2013" "MIC" "B_[FAM]_ENTRBCTR" "TZP" "Enterobacteriaceae" 8 32 -"EUCAST 2013" "MIC" "B_ACNTB" "AMK" "Acinetob" 8 32 -"EUCAST 2013" "MIC" "B_ACNTB" "CIP" "Acinetob" 1 2 -"EUCAST 2013" "MIC" "B_ACNTB" "COL" "Acinetob" 2 4 -"EUCAST 2013" "MIC" "B_ACNTB" "DOR" "Acinetob" 1 8 -"EUCAST 2013" "MIC" "B_ACNTB" "GEN" "Acinetob" 4 8 -"EUCAST 2013" "MIC" "B_ACNTB" "IPM" "Acinetob" 2 16 -"EUCAST 2013" "MIC" "B_ACNTB" "LVX" "Acinetob" 1 4 -"EUCAST 2013" "MIC" "B_ACNTB" "MEM" "Acinetob" 2 16 -"EUCAST 2013" "MIC" "B_ACNTB" "NET" "Acinetob" 4 8 -"EUCAST 2013" "MIC" "B_ACNTB" "SXT" "Acinetob" 2 8 -"EUCAST 2013" "MIC" "B_ACNTB" "TOB" "Acinetob" 4 8 -"EUCAST 2013" "MIC" "B_CMPYL" "CIP" "Campylobacter" 0.5 1 -"EUCAST 2013" "MIC" "B_CMPYL" "TCY" "Campylobacter" 2 4 -"EUCAST 2013" "MIC" "B_CMPYL_COLI" "ERY" "Campylobacter" 8 16 -"EUCAST 2013" "MIC" "B_CMPYL_JEJN" "ERY" "Campylobacter" 4 8 -"EUCAST 2013" "MIC" "B_CTRDM_DFFC" "DAP" "C.difficile" 4 -"EUCAST 2013" "MIC" "B_CTRDM_DFFC" "FUS" "C.difficile" 2 -"EUCAST 2013" "MIC" "B_CTRDM_DFFC" "MFX" "C.difficile" 4 -"EUCAST 2013" "MIC" "B_CTRDM_DFFC" "MTR" "C.difficile" 2 4 -"EUCAST 2013" "MIC" "B_CTRDM_DFFC" "RIF" "C.difficile" 0.004 -"EUCAST 2013" "MIC" "B_CTRDM_DFFC" "TGC" "C.difficile" 0.25 -"EUCAST 2013" "MIC" "B_CTRDM_DFFC" "VAN" "C.difficile" 2 4 -"EUCAST 2013" "MIC" "B_ENTRC" "AMC" "Enterococcus" 4 16 -"EUCAST 2013" "MIC" "B_ENTRC" "AMP" "Enterococcus" 4 16 -"EUCAST 2013" "MIC" "B_ENTRC" "AMX" "Enterococcus" 4 16 -"EUCAST 2013" "MIC" "B_ENTRC" "GEH" "Enterococcus" 128 128 -"EUCAST 2013" "MIC" "B_ENTRC" "GEN" "Enterococcus" 128 128 -"EUCAST 2013" "MIC" "B_ENTRC" "IPM" "Enterococcus" 4 16 -"EUCAST 2013" "MIC" "B_ENTRC" "LNZ" "Enterococcus" 4 8 -"EUCAST 2013" "MIC" "B_ENTRC" "SAM" "Enterococcus" 4 16 -"EUCAST 2013" "MIC" "B_ENTRC" "STH" "Enterococcus" 512 512 -"EUCAST 2013" "MIC" "B_ENTRC" "STR" "Enterococcus" 512 512 -"EUCAST 2013" "MIC" "B_ENTRC" "SXT" "Enterococcus" 0.032 2 -"EUCAST 2013" "MIC" "B_ENTRC" "TEC" "Enterococcus" 2 4 -"EUCAST 2013" "MIC" "B_ENTRC" "TGC" "Enterococcus" 0.25 1 -"EUCAST 2013" "MIC" "Urinary tract infect" "B_ENTRC" "TMP" "Enterococcus" 0.032 2 -"EUCAST 2013" "MIC" "B_ENTRC" "VAN" "Enterococcus" 4 8 -"EUCAST 2013" "MIC" "B_ENTRC_FACM" "QDA" "Enterococcus" 1 8 -"EUCAST 2013" "MIC" "Urinary tract infect" "B_ENTRC_FCLS" "NIT" "Enterococcus" 64 128 -"EUCAST 2013" "MIC" "Urinary tract infect" "B_ESCHR_COLI" "MEC" "Enterobacteriaceae" 8 16 -"EUCAST 2013" "MIC" "B_HLCBCT_PYLR" "AMX" "H.pylori" 0.125 0.25 -"EUCAST 2013" "MIC" "B_HLCBCT_PYLR" "CLR" "H.pylori" 0.25 1 -"EUCAST 2013" "MIC" "B_HLCBCT_PYLR" "LVX" "H.pylori" 1 2 -"EUCAST 2013" "MIC" "B_HLCBCT_PYLR" "MTR" "H.pylori" 8 16 -"EUCAST 2013" "MIC" "B_HLCBCT_PYLR" "RIF" "H.pylori" 1 2 -"EUCAST 2013" "MIC" "B_HLCBCT_PYLR" "TCY" "H.pylori" 1 2 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "AMC" "H.influenzae" 2 4 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "AMP" "H.influenzae" 1 2 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "AMX" "H.influenzae" 2 4 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "AZM" "H.influenzae" 0.125 8 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "CEC" "H.influenzae" 0.5 1 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "CFM" "H.influenzae" 0.125 0.25 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "CHL" "H.influenzae" 2 4 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "CIP" "H.influenzae" 0.5 1 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "CLR" "H.influenzae" 1 64 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "CPD" "H.influenzae" 0.25 1 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "CPT" "H.influenzae" 0.032 0.06 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "CRO" "H.influenzae" 0.125 0.25 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "CTB" "H.influenzae" 1 2 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "CTX" "H.influenzae" 0.125 0.25 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "CXA" "H.influenzae" 0.125 2 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "CXM" "H.influenzae" 1 4 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "CXM" "H.influenzae" 0.125 2 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "DOR" "H.influenzae" 1 2 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "DOX" "H.influenzae" 1 4 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "ERY" "H.influenzae" 0.5 32 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "ETP" "H.influenzae" 0.5 1 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "FEP" "H.influenzae" 0.25 0.5 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "IPM" "H.influenzae" 2 4 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "LVX" "H.influenzae" 1 2 -"EUCAST 2013" "MIC" "Nonmeningitis" "B_HMPHL_INFL" "MEM" "H.influenzae" 2 4 -"EUCAST 2013" "MIC" "Meningitis" "B_HMPHL_INFL" "MEM" "H.influenzae" 0.25 2 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "MFX" "H.influenzae" 0.5 1 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "MNO" "H.influenzae" 1 4 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "OFX" "H.influenzae" 0.5 1 -"EUCAST 2013" "MIC" "Prophylaxis" "B_HMPHL_INFL" "RIF" "H.influenzae" 1 2 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "RXT" "H.influenzae" 1 32 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "SAM" "H.influenzae" 1 2 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "SXT" "H.influenzae" 0.5 2 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "TCY" "H.influenzae" 1 4 -"EUCAST 2013" "MIC" "B_HMPHL_INFL" "TLT" "H.influenzae" 0.125 16 -"EUCAST 2013" "MIC" "Urinary tract infect" "B_KLBSL_PNMN" "MEC" "Enterobacteriaceae" 8 16 -"EUCAST 2013" "MIC" "B_LISTR_MNCY" "AMP" "Listeria" 1 2 -"EUCAST 2013" "MIC" "B_LISTR_MNCY" "ERY" "Listeria" 1 2 -"EUCAST 2013" "MIC" "B_LISTR_MNCY" "MEM" "Listeria" 0.25 0.5 -"EUCAST 2013" "MIC" "B_LISTR_MNCY" "PEN" "Listeria" 1 2 -"EUCAST 2013" "MIC" "B_LISTR_MNCY" "SXT" "Listeria" 0.064 0.12 -"EUCAST 2013" "MIC" "B_MRXLL_CTRR" "AMC" "M.catarrhalis" 1 2 -"EUCAST 2013" "MIC" "B_MRXLL_CTRR" "AZM" "M.catarrhalis" 0.25 1 -"EUCAST 2013" "MIC" "B_MRXLL_CTRR" "CEC" "M.catarrhalis" 0.125 0.25 -"EUCAST 2013" "MIC" "B_MRXLL_CTRR" "CFM" "M.catarrhalis" 0.5 2 -"EUCAST 2013" "MIC" "B_MRXLL_CTRR" "CHL" "M.catarrhalis" 2 4 -"EUCAST 2013" "MIC" "B_MRXLL_CTRR" "CIP" "M.catarrhalis" 0.5 1 -"EUCAST 2013" "MIC" "B_MRXLL_CTRR" "CLR" "M.catarrhalis" 0.25 1 -"EUCAST 2013" "MIC" "B_MRXLL_CTRR" "CRO" "M.catarrhalis" 1 4 -"EUCAST 2013" "MIC" "B_MRXLL_CTRR" "CTX" "M.catarrhalis" 1 4 -"EUCAST 2013" "MIC" "B_MRXLL_CTRR" "CXA" "M.catarrhalis" 0.125 8 -"EUCAST 2013" "MIC" "B_MRXLL_CTRR" "CXM" "M.catarrhalis" 4 16 -"EUCAST 2013" "MIC" "B_MRXLL_CTRR" "CXM" "M.catarrhalis" 0.125 8 -"EUCAST 2013" "MIC" "B_MRXLL_CTRR" "DOR" "M.catarrhalis" 1 2 -"EUCAST 2013" "MIC" "B_MRXLL_CTRR" "DOX" "M.catarrhalis" 1 4 -"EUCAST 2013" "MIC" "B_MRXLL_CTRR" "ERY" "M.catarrhalis" 0.25 1 -"EUCAST 2013" "MIC" "B_MRXLL_CTRR" "ETP" "M.catarrhalis" 0.5 1 -"EUCAST 2013" "MIC" "B_MRXLL_CTRR" "FEP" "M.catarrhalis" 4 8 -"EUCAST 2013" "MIC" "B_MRXLL_CTRR" "IPM" "M.catarrhalis" 2 4 -"EUCAST 2013" "MIC" "B_MRXLL_CTRR" "LVX" "M.catarrhalis" 1 2 -"EUCAST 2013" "MIC" "B_MRXLL_CTRR" "MEM" "M.catarrhalis" 2 4 -"EUCAST 2013" "MIC" "B_MRXLL_CTRR" "MFX" "M.catarrhalis" 0.5 1 -"EUCAST 2013" "MIC" "B_MRXLL_CTRR" "MNO" "M.catarrhalis" 1 4 -"EUCAST 2013" "MIC" "B_MRXLL_CTRR" "OFX" "M.catarrhalis" 0.5 1 -"EUCAST 2013" "MIC" "B_MRXLL_CTRR" "RXT" "M.catarrhalis" 0.5 2 -"EUCAST 2013" "MIC" "B_MRXLL_CTRR" "SAM" "M.catarrhalis" 1 2 -"EUCAST 2013" "MIC" "B_MRXLL_CTRR" "SXT" "M.catarrhalis" 0.5 2 -"EUCAST 2013" "MIC" "B_MRXLL_CTRR" "TCY" "M.catarrhalis" 1 4 -"EUCAST 2013" "MIC" "B_MRXLL_CTRR" "TLT" "M.catarrhalis" 0.25 1 -"EUCAST 2013" "MIC" "B_NESSR_GNRR" "AZM" "N.gonorrhoeae" 0.25 1 -"EUCAST 2013" "MIC" "B_NESSR_GNRR" "CFM" "N.gonorrhoeae" 0.125 0.25 -"EUCAST 2013" "MIC" "B_NESSR_GNRR" "CIP" "N.gonorrhoeae" 0.032 0.12 -"EUCAST 2013" "MIC" "B_NESSR_GNRR" "CRO" "N.gonorrhoeae" 0.125 0.25 -"EUCAST 2013" "MIC" "B_NESSR_GNRR" "CTX" "N.gonorrhoeae" 0.125 0.25 -"EUCAST 2013" "MIC" "B_NESSR_GNRR" "OFX" "N.gonorrhoeae" 0.125 0.5 -"EUCAST 2013" "MIC" "B_NESSR_GNRR" "PEN" "N.gonorrhoeae" 0.064 2 -"EUCAST 2013" "MIC" "B_NESSR_GNRR" "SPT" "N.gonorrhoeae" 64 128 -"EUCAST 2013" "MIC" "B_NESSR_GNRR" "TCY" "N.gonorrhoeae" 0.5 2 -"EUCAST 2013" "MIC" "B_NESSR_MNNG" "AMP" "N.meningitidis" 0.125 2 -"EUCAST 2013" "MIC" "B_NESSR_MNNG" "AMX" "N.meningitidis" 0.125 2 -"EUCAST 2013" "MIC" "B_NESSR_MNNG" "CHL" "N.meningitidis" 2 8 -"EUCAST 2013" "MIC" "B_NESSR_MNNG" "CIP" "N.meningitidis" 0.032 0.12 -"EUCAST 2013" "MIC" "B_NESSR_MNNG" "CRO" "N.meningitidis" 0.125 0.25 -"EUCAST 2013" "MIC" "B_NESSR_MNNG" "CTX" "N.meningitidis" 0.125 0.25 -"EUCAST 2013" "MIC" "B_NESSR_MNNG" "MEM" "N.meningitidis" 0.25 0.5 -"EUCAST 2013" "MIC" "B_NESSR_MNNG" "MNO" "N.meningitidis" 1 4 -"EUCAST 2013" "MIC" "B_NESSR_MNNG" "PEN" "N.meningitidis" 0.064 0.5 -"EUCAST 2013" "MIC" "B_NESSR_MNNG" "RIF" "N.meningitidis" 0.25 0.5 -"EUCAST 2013" "MIC" "B_NESSR_MNNG" "TCY" "N.meningitidis" 1 4 -"EUCAST 2013" "MIC" "Urinary tract infect" "B_PROTS_MRBL" "MEC" "Enterobacteriaceae" 8 16 -"EUCAST 2013" "MIC" "B_PSDMN" "AMK" "Pseud" 8 32 -"EUCAST 2013" "MIC" "B_PSDMN" "ATM" "Pseud" 1 32 -"EUCAST 2013" "MIC" "B_PSDMN" "CAZ" "Pseud" 8 16 -"EUCAST 2013" "MIC" "B_PSDMN" "CIP" "Pseud" 0.5 2 -"EUCAST 2013" "MIC" "B_PSDMN" "COL" "Pseud" 4 8 -"EUCAST 2013" "MIC" "B_PSDMN" "DOR" "Pseud" 1 8 -"EUCAST 2013" "MIC" "B_PSDMN" "FEP" "Pseud" 8 16 -"EUCAST 2013" "MIC" "B_PSDMN" "GEN" "Pseud" 4 8 -"EUCAST 2013" "MIC" "B_PSDMN" "IPM" "Pseud" 4 16 -"EUCAST 2013" "MIC" "B_PSDMN" "LVX" "Pseud" 1 4 -"EUCAST 2013" "MIC" "B_PSDMN" "MEM" "Pseud" 2 16 -"EUCAST 2013" "MIC" "B_PSDMN" "NET" "Pseud" 4 8 -"EUCAST 2013" "MIC" "B_PSDMN" "PIP" "Pseud" 16 32 -"EUCAST 2013" "MIC" "B_PSDMN" "TCC" "Pseud" 16 32 -"EUCAST 2013" "MIC" "B_PSDMN" "TIC" "Pseud" 16 32 -"EUCAST 2013" "MIC" "B_PSDMN" "TOB" "Pseud" 4 8 -"EUCAST 2013" "MIC" "B_PSDMN" "TZP" "Pseud" 16 32 -"EUCAST 2013" "MIC" "B_PSTRL_MLTC" "AMC" "Pasteurella" 1 2 -"EUCAST 2013" "MIC" "B_PSTRL_MLTC" "AMP" "Pasteurella" 1 2 -"EUCAST 2013" "MIC" "B_PSTRL_MLTC" "AMX" "Pasteurella" 1 2 -"EUCAST 2013" "MIC" "B_PSTRL_MLTC" "CIP" "Pasteurella" 0.064 0.12 -"EUCAST 2013" "MIC" "B_PSTRL_MLTC" "CTX" "Pasteurella" 0.032 0.06 -"EUCAST 2013" "MIC" "B_PSTRL_MLTC" "DOX" "Pasteurella" 1 2 -"EUCAST 2013" "MIC" "B_PSTRL_MLTC" "LVX" "Pasteurella" 0.064 0.12 -"EUCAST 2013" "MIC" "B_PSTRL_MLTC" "PEN" "Pasteurella" 0.5 1 -"EUCAST 2013" "MIC" "B_PSTRL_MLTC" "SXT" "Pasteurella" 0.25 0.5 -"EUCAST 2013" "MIC" "B_STNTR_MLTP" "SXT" "S.maltophilia" 4 8 -"EUCAST 2013" "MIC" "B_STPHY" "AZM" "Staphs" 1 4 -"EUCAST 2013" "MIC" "B_STPHY" "CHL" "Staphs" 8 16 -"EUCAST 2013" "MIC" "B_STPHY" "CIP" "Staphs" 1 2 -"EUCAST 2013" "MIC" "B_STPHY" "CLI" "Staphs" 0.25 1 -"EUCAST 2013" "MIC" "B_STPHY" "CLR" "Staphs" 1 4 -"EUCAST 2013" "MIC" "B_STPHY" "DAP" "Staphs" 1 2 -"EUCAST 2013" "MIC" "B_STPHY" "DOX" "Staphs" 1 4 -"EUCAST 2013" "MIC" "B_STPHY" "ERY" "Staphs" 1 4 -"EUCAST 2013" "MIC" "B_STPHY" "FOS" "Staphs" 32 64 -"EUCAST 2013" "MIC" "B_STPHY" "FUS" "Staphs" 1 2 -"EUCAST 2013" "MIC" "B_STPHY" "LNZ" "Staphs" 4 8 -"EUCAST 2013" "MIC" "B_STPHY" "LVX" "Staphs" 1 4 -"EUCAST 2013" "MIC" "B_STPHY" "MFX" "Staphs" 0.5 2 -"EUCAST 2013" "MIC" "B_STPHY" "MNO" "Staphs" 0.5 2 -"EUCAST 2013" "MIC" "B_STPHY" "MUP" "Staphs" 1 512 -"EUCAST 2013" "MIC" "Urinary tract infect" "B_STPHY" "NIT" "Staphs" 64 128 -"EUCAST 2013" "MIC" "B_STPHY" "OFX" "Staphs" 1 2 -"EUCAST 2013" "MIC" "B_STPHY" "QDA" "Staphs" 1 4 -"EUCAST 2013" "MIC" "B_STPHY" "RIF" "Staphs" 0.064 1 -"EUCAST 2013" "MIC" "B_STPHY" "RXT" "Staphs" 1 4 -"EUCAST 2013" "MIC" "B_STPHY" "SXT" "Staphs" 2 8 -"EUCAST 2013" "MIC" "B_STPHY" "TCY" "Staphs" 1 4 -"EUCAST 2013" "MIC" "B_STPHY" "TGC" "Staphs" 0.5 1 -"EUCAST 2013" "MIC" "Urinary tract infect" "B_STPHY" "TMP" "Staphs" 2 8 -"EUCAST 2013" "MIC" "B_STPHY_AURS" "AMK" "Staphs" 8 32 -"EUCAST 2013" "MIC" "B_STPHY_AURS" "CPT" "Staphs" 1 2 -"EUCAST 2013" "MIC" "B_STPHY_AURS" "FOX" "Staphs" 4 8 -"EUCAST 2013" "MIC" "B_STPHY_AURS" "GEN" "Staphs" 1 2 -"EUCAST 2013" "MIC" "B_STPHY_AURS" "NET" "Staphs" 1 2 -"EUCAST 2013" "MIC" "B_STPHY_AURS" "OXA" "Staphs" 2 4 -"EUCAST 2013" "MIC" "B_STPHY_AURS" "PEN" "Staphs" 0.125 0.25 -"EUCAST 2013" "MIC" "B_STPHY_AURS" "TEC" "Staphs" 2 4 -"EUCAST 2013" "MIC" "B_STPHY_AURS" "TLV" "Staphs" 1 2 -"EUCAST 2013" "MIC" "B_STPHY_AURS" "TOB" "Staphs" 1 2 -"EUCAST 2013" "MIC" "B_STPHY_AURS" "VAN" "Staphs" 2 4 -"EUCAST 2013" "MIC" "B_STPHY_CONS" "AMK" "Staphs" 8 32 -"EUCAST 2013" "MIC" "B_STPHY_CONS" "GEN" "Staphs" 1 2 -"EUCAST 2013" "MIC" "B_STPHY_CONS" "NET" "Staphs" 1 2 -"EUCAST 2013" "MIC" "B_STPHY_CONS" "OXA" "Staphs" 0.25 0.5 -"EUCAST 2013" "MIC" "B_STPHY_CONS" "TEC" "Staphs" 4 8 -"EUCAST 2013" "MIC" "B_STPHY_CONS" "TOB" "Staphs" 1 2 -"EUCAST 2013" "MIC" "B_STPHY_CONS" "VAN" "Staphs" 4 8 -"EUCAST 2013" "MIC" "B_STPHY_LGDN" "FOX" "Staphs" 4 8 -"EUCAST 2013" "MIC" "B_STPHY_LGDN" "OXA" "Staphs" 2 4 -"EUCAST 2013" "MIC" "B_STRPT" "AZM" "Strept A,B,C,G" 0.25 1 -"EUCAST 2013" "MIC" "B_STRPT" "CHL" "Strept A,B,C,G" 8 16 -"EUCAST 2013" "MIC" "B_STRPT" "CLI" "Strept A,B,C,G" 0.5 1 -"EUCAST 2013" "MIC" "B_STRPT" "CLR" "Strept A,B,C,G" 0.25 1 -"EUCAST 2013" "MIC" "B_STRPT" "DAP" "Strept A,B,C,G" 1 2 -"EUCAST 2013" "MIC" "B_STRPT" "DOX" "Strept A,B,C,G" 1 4 -"EUCAST 2013" "MIC" "B_STRPT" "ERY" "Strept A,B,C,G" 0.25 1 -"EUCAST 2013" "MIC" "B_STRPT" "LNZ" "Strept A,B,C,G" 2 8 -"EUCAST 2013" "MIC" "B_STRPT" "LVX" "Strept A,B,C,G" 1 4 -"EUCAST 2013" "MIC" "B_STRPT" "MFX" "Strept A,B,C,G" 0.5 2 -"EUCAST 2013" "MIC" "B_STRPT" "MNO" "Strept A,B,C,G" 0.5 2 -"EUCAST 2013" "MIC" "B_STRPT" "PEN" "Strept A,B,C,G" 0.25 0.5 -"EUCAST 2013" "MIC" "B_STRPT" "RIF" "Strept A,B,C,G" 0.064 1 -"EUCAST 2013" "MIC" "B_STRPT" "RXT" "Strept A,B,C,G" 0.5 2 -"EUCAST 2013" "MIC" "B_STRPT" "SXT" "Strept A,B,C,G" 1 4 -"EUCAST 2013" "MIC" "B_STRPT" "TCY" "Strept A,B,C,G" 1 4 -"EUCAST 2013" "MIC" "B_STRPT" "TEC" "Strept A,B,C,G" 2 4 -"EUCAST 2013" "MIC" "B_STRPT" "TGC" "Strept A,B,C,G" 0.25 1 -"EUCAST 2013" "MIC" "B_STRPT" "TLT" "Strept A,B,C,G" 0.25 1 -"EUCAST 2013" "MIC" "B_STRPT" "VAN" "Strept A,B,C,G" 2 4 -"EUCAST 2013" "MIC" "Urinary tract infect" "B_STRPT_GRPB" "NIT" "Strept A,B,C,G" 64 128 -"EUCAST 2013" "MIC" "Urinary tract infect" "B_STRPT_GRPB" "TMP" "Strept A,B,C,G" 2 4 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "AMP" "Pneumo" 0.5 4 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "AZM" "Pneumo" 0.25 1 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "CEC" "Pneumo" 0.032 1 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "CHL" "Pneumo" 8 16 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "CIP" "Pneumo" 0.125 4 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "CLI" "Pneumo" 0.5 1 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "CLR" "Pneumo" 0.25 1 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "CPD" "Pneumo" 0.25 1 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "CPT" "Pneumo" 0.25 0.5 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "CRO" "Pneumo" 0.5 4 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "CTX" "Pneumo" 0.5 4 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "CXA" "Pneumo" 0.25 1 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "CXM" "Pneumo" 0.5 2 -"EUCAST 2013" "MIC" "Oral" "B_STRPT_PNMN" "CXM" "Pneumo" 0.25 1 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "DOR" "Pneumo" 1 2 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "DOX" "Pneumo" 1 4 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "ERY" "Pneumo" 0.25 1 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "ETP" "Pneumo" 0.5 1 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "FEP" "Pneumo" 1 4 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "IPM" "Pneumo" 2 4 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "LNZ" "Pneumo" 2 8 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "LVX" "Pneumo" 2 4 -"EUCAST 2013" "MIC" "Meningitis" "B_STRPT_PNMN" "MEM" "Pneumo" 0.25 2 -"EUCAST 2013" "MIC" "Nonmeningitis" "B_STRPT_PNMN" "MEM" "Pneumo" 2 4 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "MFX" "Pneumo" 0.5 1 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "MNO" "Pneumo" 0.5 2 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "OFX" "Pneumo" 0.125 8 -"EUCAST 2013" "MIC" "Meningitis" "B_STRPT_PNMN" "PEN" "Pneumo" 0.064 0.12 -"EUCAST 2013" "MIC" "Nonmeningitis" "B_STRPT_PNMN" "PEN" "Pneumo" 0.064 4 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "RIF" "Pneumo" 0.064 1 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "RXT" "Pneumo" 0.5 2 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "SXT" "Pneumo" 1 4 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "TCY" "Pneumo" 1 4 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "TEC" "Pneumo" 2 4 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "TLT" "Pneumo" 0.25 1 -"EUCAST 2013" "MIC" "B_STRPT_PNMN" "VAN" "Pneumo" 2 4 -"EUCAST 2013" "MIC" "B_STRPT_VIRI" "AMP" "Viridans strept" 0.5 4 -"EUCAST 2013" "MIC" "B_STRPT_VIRI" "AMX" "Viridans strept" 0.5 4 -"EUCAST 2013" "MIC" "B_STRPT_VIRI" "CLI" "Viridans strept" 0.5 1 -"EUCAST 2013" "MIC" "B_STRPT_VIRI" "CRO" "Viridans strept" 0.5 1 -"EUCAST 2013" "MIC" "B_STRPT_VIRI" "CTX" "Viridans strept" 0.5 1 -"EUCAST 2013" "MIC" "B_STRPT_VIRI" "CXM" "Viridans strept" 0.5 1 -"EUCAST 2013" "MIC" "B_STRPT_VIRI" "CZO" "Viridans strept" 0.5 1 -"EUCAST 2013" "MIC" "B_STRPT_VIRI" "DOR" "Viridans strept" 1 2 -"EUCAST 2013" "MIC" "B_STRPT_VIRI" "ETP" "Viridans strept" 0.5 1 -"EUCAST 2013" "MIC" "B_STRPT_VIRI" "FEP" "Viridans strept" 0.5 1 -"EUCAST 2013" "MIC" "B_STRPT_VIRI" "IPM" "Viridans strept" 2 4 -"EUCAST 2013" "MIC" "B_STRPT_VIRI" "MEM" "Viridans strept" 2 4 -"EUCAST 2013" "MIC" "B_STRPT_VIRI" "PEN" "Viridans strept" 0.25 4 -"EUCAST 2013" "MIC" "B_STRPT_VIRI" "TEC" "Viridans strept" 2 4 -"EUCAST 2013" "MIC" "B_STRPT_VIRI" "VAN" "Viridans strept" 2 4 -"EUCAST 2013" "MIC" "F_ASPRG" "AMB" "Aspergillus" 1 4 -"EUCAST 2013" "MIC" "F_ASPRG" "AMB" "Aspergillus" 1 4 -"EUCAST 2013" "MIC" "F_ASPRG" "ITR" "Aspergillus" 1 4 -"EUCAST 2013" "MIC" "F_ASPRG" "ITR" "Aspergillus" 1 4 -"EUCAST 2013" "MIC" "F_ASPRG" "ITR" "Aspergillus" 1 4 -"EUCAST 2013" "MIC" "F_ASPRG" "ITR" "Aspergillus" 1 4 -"EUCAST 2013" "MIC" "F_ASPRG" "POS" "Aspergillus" 0.125 0.25 -"EUCAST 2013" "MIC" "F_ASPRG" "POS" "Aspergillus" 0.125 0.25 -"EUCAST 2013" "MIC" "F_ASPRG" "VOR" "Aspergillus" 1 4 -"EUCAST 2013" "MIC" "F_CANDD" "AMB" "Candida" 1 2 -"EUCAST 2013" "MIC" "F_CANDD" "ANI" "Candida" 0.064 0.12 -"EUCAST 2013" "MIC" "F_CANDD" "FLU" "Candida" 2 8 -"EUCAST 2013" "MIC" "F_CANDD_ALBC" "AMB" "Candida" 1 2 -"EUCAST 2013" "MIC" "F_CANDD_ALBC" "ANI" "Candida" 0.032 0.06 -"EUCAST 2013" "MIC" "F_CANDD_ALBC" "POS" "Candida" 0.064 0.12 -"EUCAST 2013" "MIC" "F_CANDD_ALBC" "VOR" "Candida" 0.125 0.25 -"EUCAST 2013" "MIC" "F_CANDD_GLBR" "AMB" "Candida" 1 2 -"EUCAST 2013" "MIC" "F_CANDD_GLBR" "ANI" "Candida" 0.064 0.12 -"EUCAST 2013" "MIC" "F_CANDD_PRPS" "AMB" "Candida" 1 2 -"EUCAST 2013" "MIC" "F_CANDD_PRPS" "POS" "Candida" 0.064 0.12 -"EUCAST 2013" "MIC" "F_CANDD_PRPS" "VOR" "Candida" 0.125 0.25 -"EUCAST 2013" "MIC" "F_CANDD_TRPC" "AMB" "Candida" 1 2 -"EUCAST 2013" "MIC" "F_CANDD_TRPC" "ANI" "Candida" 0.064 0.12 -"EUCAST 2013" "MIC" "F_CANDD_TRPC" "POS" "Candida" 0.064 0.12 -"EUCAST 2013" "MIC" "F_CANDD_TRPC" "VOR" "Candida" 0.125 0.25 -"EUCAST 2012" "MIC" "B_ACNTB" "AMK" 8 32 -"EUCAST 2012" "MIC" "B_ACNTB" "CIP" 1 2 -"EUCAST 2012" "MIC" "B_ACNTB" "COL" 2 4 -"EUCAST 2012" "MIC" "B_ACNTB" "DOR" 1 8 -"EUCAST 2012" "MIC" "B_ACNTB" "GEN" 4 8 -"EUCAST 2012" "MIC" "B_ACNTB" "IPM" 2 16 -"EUCAST 2012" "MIC" "B_ACNTB" "LVX" 1 4 -"EUCAST 2012" "MIC" "B_ACNTB" "MEM" 2 16 -"EUCAST 2012" "MIC" "B_ACNTB" "NET" 4 8 -"EUCAST 2012" "MIC" "B_ACNTB" "SXT" 2 8 -"EUCAST 2012" "MIC" "B_ACNTB" "TOB" 4 8 -"EUCAST 2012" "MIC" "B_ANRRH" "AMC" 4 16 -"EUCAST 2012" "MIC" "B_ANRRH" "AMP" 0.5 4 -"EUCAST 2012" "MIC" "B_ANRRH" "AMX" 0.5 4 -"EUCAST 2012" "MIC" "B_ANRRH" "CHL" 8 16 -"EUCAST 2012" "MIC" "B_ANRRH" "CLI" 4 8 -"EUCAST 2012" "MIC" "B_ANRRH" "DOR" 1 2 -"EUCAST 2012" "MIC" "B_ANRRH" "ETP" 1 2 -"EUCAST 2012" "MIC" "B_ANRRH" "IPM" 2 16 -"EUCAST 2012" "MIC" "B_ANRRH" "MEM" 2 16 -"EUCAST 2012" "MIC" "B_ANRRH" "MTR" 4 8 -"EUCAST 2012" "MIC" "B_ANRRH" "PEN" 0.25 1 -"EUCAST 2012" "MIC" "B_ANRRH" "PIP" 16 32 -"EUCAST 2012" "MIC" "B_ANRRH" "SAM" 4 16 -"EUCAST 2012" "MIC" "B_ANRRH" "TCC" 8 32 -"EUCAST 2012" "MIC" "B_ANRRH" "TIC" 16 32 -"EUCAST 2012" "MIC" "B_ANRRH" "TZP" 8 32 -"EUCAST 2012" "MIC" "B_CTRDM_DFFC" "DAP" 4 -"EUCAST 2012" "MIC" "B_CTRDM_DFFC" "FUS" 2 -"EUCAST 2012" "MIC" "B_CTRDM_DFFC" "MFX" 4 -"EUCAST 2012" "MIC" "B_CTRDM_DFFC" "MTR" 2 4 -"EUCAST 2012" "MIC" "B_CTRDM_DFFC" "RIF" 0.004 -"EUCAST 2012" "MIC" "B_CTRDM_DFFC" "TGC" 0.25 -"EUCAST 2012" "MIC" "B_CTRDM_DFFC" "VAN" 2 4 -"EUCAST 2012" "MIC" "B_ENTRC" "AMC" 4 16 -"EUCAST 2012" "MIC" "B_ENTRC" "AMP" 4 16 -"EUCAST 2012" "MIC" "B_ENTRC" "AMX" 4 16 -"EUCAST 2012" "MIC" "B_ENTRC" "GEH" 128 128 -"EUCAST 2012" "MIC" "B_ENTRC" "GEN" 128 128 -"EUCAST 2012" "MIC" "B_ENTRC" "IPM" 4 16 -"EUCAST 2012" "MIC" "B_ENTRC" "LNZ" 4 8 -"EUCAST 2012" "MIC" "B_ENTRC" "QDA" 1 8 -"EUCAST 2012" "MIC" "B_ENTRC" "SAM" 4 16 -"EUCAST 2012" "MIC" "B_ENTRC" "STH" 512 512 -"EUCAST 2012" "MIC" "B_ENTRC" "STR" 512 512 -"EUCAST 2012" "MIC" "B_ENTRC" "SXT" 0.032 2 -"EUCAST 2012" "MIC" "B_ENTRC" "TEC" 2 4 -"EUCAST 2012" "MIC" "B_ENTRC" "TGC" 0.25 1 -"EUCAST 2012" "MIC" "UTI only" "B_ENTRC" "TMP" 0.032 2 -"EUCAST 2012" "MIC" "B_ENTRC" "VAN" 4 8 -"EUCAST 2012" "MIC" "UTI only" "B_ENTRC_FCLS" "NIT" 64 128 -"EUCAST 2012" "MIC" "B_HLCBCT_PYLR" "AMX" 0.125 0.25 -"EUCAST 2012" "MIC" "B_HLCBCT_PYLR" "CLR" 0.25 1 -"EUCAST 2012" "MIC" "B_HLCBCT_PYLR" "LVX" 1 2 -"EUCAST 2012" "MIC" "B_HLCBCT_PYLR" "MTR" 8 16 -"EUCAST 2012" "MIC" "B_HLCBCT_PYLR" "RIF" 1 2 -"EUCAST 2012" "MIC" "B_HLCBCT_PYLR" "TIC" 1 2 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "AMC" 2 4 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "AMP" 1 2 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "AMX" 2 4 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "AZM" 0.125 8 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "CEC" 0.5 1 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "CFR" 0.125 0.25 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "CHL" 2 4 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "CIP" 0.5 1 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "CLR" 1 64 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "CPD" 0.25 1 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "CRO" 0.125 0.25 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "CTB" 1 2 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "CTX" 0.125 0.25 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "CXA" 0.125 2 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "CXM" 1 4 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "DOR" 1 2 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "DOX" 1 4 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "ERY" 0.5 32 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "ETP" 0.5 1 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "FEP" 0.25 0.5 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "IPM" 2 4 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "LVX" 1 2 -"EUCAST 2012" "MIC" "Other infections" "B_HMPHL_INFL" "MEM" 2 4 -"EUCAST 2012" "MIC" "Meningitis" "B_HMPHL_INFL" "MEM" 0.25 2 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "MFX" 0.5 1 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "MNO" 1 4 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "OFX" 0.5 1 -"EUCAST 2012" "MIC" "Prophylaxis" "B_HMPHL_INFL" "RIF" 1 2 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "RXT" 1 32 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "SAM" 1 2 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "SXT" 0.5 2 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "TCY" 1 4 -"EUCAST 2012" "MIC" "B_HMPHL_INFL" "TLT" 0.125 16 -"EUCAST 2012" "MIC" "B_LISTR_MNCY" "AMP" 1 2 -"EUCAST 2012" "MIC" "B_LISTR_MNCY" "ERY" 1 2 -"EUCAST 2012" "MIC" "B_LISTR_MNCY" "MEM" 0.25 0.5 -"EUCAST 2012" "MIC" "B_LISTR_MNCY" "PEN" 1 2 -"EUCAST 2012" "MIC" "B_LISTR_MNCY" "SXT" 0.064 0.12 -"EUCAST 2012" "MIC" "B_MRXLL_CTRR" "AMC" 1 2 -"EUCAST 2012" "MIC" "B_MRXLL_CTRR" "AZM" 0.25 1 -"EUCAST 2012" "MIC" "B_MRXLL_CTRR" "CEC" 0.125 0.25 -"EUCAST 2012" "MIC" "B_MRXLL_CTRR" "CFR" 0.5 2 -"EUCAST 2012" "MIC" "B_MRXLL_CTRR" "CHL" 2 4 -"EUCAST 2012" "MIC" "B_MRXLL_CTRR" "CIP" 0.5 1 -"EUCAST 2012" "MIC" "B_MRXLL_CTRR" "CLR" 0.25 1 -"EUCAST 2012" "MIC" "B_MRXLL_CTRR" "CRO" 1 4 -"EUCAST 2012" "MIC" "B_MRXLL_CTRR" "CTX" 1 4 -"EUCAST 2012" "MIC" "B_MRXLL_CTRR" "CXA" 0.125 8 -"EUCAST 2012" "MIC" "B_MRXLL_CTRR" "CXM" 4 16 -"EUCAST 2012" "MIC" "B_MRXLL_CTRR" "DOR" 1 2 -"EUCAST 2012" "MIC" "B_MRXLL_CTRR" "DOX" 1 4 -"EUCAST 2012" "MIC" "B_MRXLL_CTRR" "ERY" 0.25 1 -"EUCAST 2012" "MIC" "B_MRXLL_CTRR" "ETP" 0.5 1 -"EUCAST 2012" "MIC" "B_MRXLL_CTRR" "FEP" 4 8 -"EUCAST 2012" "MIC" "B_MRXLL_CTRR" "IPM" 2 4 -"EUCAST 2012" "MIC" "B_MRXLL_CTRR" "LVX" 1 2 -"EUCAST 2012" "MIC" "B_MRXLL_CTRR" "MEM" 2 4 -"EUCAST 2012" "MIC" "B_MRXLL_CTRR" "MFX" 0.5 1 -"EUCAST 2012" "MIC" "B_MRXLL_CTRR" "MNO" 1 4 -"EUCAST 2012" "MIC" "B_MRXLL_CTRR" "OFX" 0.5 1 -"EUCAST 2012" "MIC" "B_MRXLL_CTRR" "RXT" 0.5 2 -"EUCAST 2012" "MIC" "B_MRXLL_CTRR" "SAM" 1 2 -"EUCAST 2012" "MIC" "B_MRXLL_CTRR" "SXT" 0.5 2 -"EUCAST 2012" "MIC" "B_MRXLL_CTRR" "TCY" 1 4 -"EUCAST 2012" "MIC" "B_MRXLL_CTRR" "TLT" 0.25 1 -"EUCAST 2012" "MIC" "B_NESSR_GNRR" "AZM" 0.25 1 -"EUCAST 2012" "MIC" "B_NESSR_GNRR" "CFR" 0.125 0.25 -"EUCAST 2012" "MIC" "B_NESSR_GNRR" "CIP" 0.032 0.12 -"EUCAST 2012" "MIC" "B_NESSR_GNRR" "CRO" 0.125 0.25 -"EUCAST 2012" "MIC" "B_NESSR_GNRR" "CTX" 0.125 0.25 -"EUCAST 2012" "MIC" "B_NESSR_GNRR" "MNO" 0.5 2 -"EUCAST 2012" "MIC" "B_NESSR_GNRR" "OFX" 0.125 0.5 -"EUCAST 2012" "MIC" "B_NESSR_GNRR" "PEN" 0.064 2 -"EUCAST 2012" "MIC" "B_NESSR_GNRR" "SPT" 64 128 -"EUCAST 2012" "MIC" "B_NESSR_GNRR" "TCY" 0.5 2 -"EUCAST 2012" "MIC" "B_NESSR_MNNG" "AMP" 0.125 2 -"EUCAST 2012" "MIC" "B_NESSR_MNNG" "AMX" 0.125 2 -"EUCAST 2012" "MIC" "B_NESSR_MNNG" "CHL" 2 8 -"EUCAST 2012" "MIC" "B_NESSR_MNNG" "CIP" 0.032 0.12 -"EUCAST 2012" "MIC" "B_NESSR_MNNG" "CRO" 0.125 0.25 -"EUCAST 2012" "MIC" "B_NESSR_MNNG" "CTX" 0.125 0.25 -"EUCAST 2012" "MIC" "B_NESSR_MNNG" "MEM" 0.25 0.5 -"EUCAST 2012" "MIC" "B_NESSR_MNNG" "MNO" 1 4 -"EUCAST 2012" "MIC" "B_NESSR_MNNG" "PEN" 0.064 0.5 -"EUCAST 2012" "MIC" "B_NESSR_MNNG" "RIF" 0.25 0.5 -"EUCAST 2012" "MIC" "B_NESSR_MNNG" "TCY" 1 4 -"EUCAST 2012" "MIC" "B_PSDMN" "AMK" 8 32 -"EUCAST 2012" "MIC" "B_PSDMN" "ATM" 1 32 -"EUCAST 2012" "MIC" "B_PSDMN" "CAZ" 8 16 -"EUCAST 2012" "MIC" "B_PSDMN" "CIP" 0.5 2 -"EUCAST 2012" "MIC" "B_PSDMN" "COL" 4 8 -"EUCAST 2012" "MIC" "B_PSDMN" "DOR" 1 8 -"EUCAST 2012" "MIC" "B_PSDMN" "FEP" 8 16 -"EUCAST 2012" "MIC" "B_PSDMN" "GEN" 4 8 -"EUCAST 2012" "MIC" "B_PSDMN" "IPM" 4 16 -"EUCAST 2012" "MIC" "B_PSDMN" "LVX" 1 4 -"EUCAST 2012" "MIC" "B_PSDMN" "MEM" 2 16 -"EUCAST 2012" "MIC" "B_PSDMN" "NET" 4 8 -"EUCAST 2012" "MIC" "B_PSDMN" "PIP" 16 32 -"EUCAST 2012" "MIC" "B_PSDMN" "TCC" 16 32 -"EUCAST 2012" "MIC" "B_PSDMN" "TIC" 16 32 -"EUCAST 2012" "MIC" "B_PSDMN" "TOB" 4 8 -"EUCAST 2012" "MIC" "B_PSDMN" "TZP" 16 32 -"EUCAST 2012" "MIC" "B_STNTR_MLTP" "SXT" 4 8 -"EUCAST 2012" "MIC" "B_STPHY" "AZM" 1 4 -"EUCAST 2012" "MIC" "B_STPHY" "CHL" 8 16 -"EUCAST 2012" "MIC" "B_STPHY" "CIP" 1 2 -"EUCAST 2012" "MIC" "B_STPHY" "CLI" 0.25 1 -"EUCAST 2012" "MIC" "B_STPHY" "CLR" 1 4 -"EUCAST 2012" "MIC" "B_STPHY" "DAP" 1 2 -"EUCAST 2012" "MIC" "B_STPHY" "DOX" 1 4 -"EUCAST 2012" "MIC" "B_STPHY" "ERY" 1 4 -"EUCAST 2012" "MIC" "B_STPHY" "FOS" 32 64 -"EUCAST 2012" "MIC" "B_STPHY" "FUS" 1 2 -"EUCAST 2012" "MIC" "B_STPHY" "GEN" 1 2 -"EUCAST 2012" "MIC" "B_STPHY" "LNZ" 4 8 -"EUCAST 2012" "MIC" "B_STPHY" "LVX" 1 4 -"EUCAST 2012" "MIC" "B_STPHY" "MFX" 0.5 2 -"EUCAST 2012" "MIC" "B_STPHY" "MNO" 0.5 2 -"EUCAST 2012" "MIC" "B_STPHY" "MUP" 1 512 -"EUCAST 2012" "MIC" "UTI only" "B_STPHY" "NIT" 64 128 -"EUCAST 2012" "MIC" "B_STPHY" "OFX" 1 2 -"EUCAST 2012" "MIC" "B_STPHY" "OXA" 0.25 0.5 -"EUCAST 2012" "MIC" "B_STPHY" "PEN" 0.125 0.25 -"EUCAST 2012" "MIC" "B_STPHY" "QDA" 1 4 -"EUCAST 2012" "MIC" "B_STPHY" "RIF" 0.064 1 -"EUCAST 2012" "MIC" "B_STPHY" "RXT" 1 4 -"EUCAST 2012" "MIC" "B_STPHY" "SXT" 2 8 -"EUCAST 2012" "MIC" "B_STPHY" "TCY" 1 4 -"EUCAST 2012" "MIC" "B_STPHY" "TGC" 0.5 1 -"EUCAST 2012" "MIC" "UTI only" "B_STPHY" "TMP" 2 8 -"EUCAST 2012" "MIC" "B_STPHY_AURS" "AMK" 8 32 -"EUCAST 2012" "MIC" "B_STPHY_AURS" "FOX" 4 8 -"EUCAST 2012" "MIC" "B_STPHY_AURS" "NET" 1 2 -"EUCAST 2012" "MIC" "B_STPHY_AURS" "OXA" 2 4 -"EUCAST 2012" "MIC" "B_STPHY_AURS" "TEC" 2 4 -"EUCAST 2012" "MIC" "B_STPHY_AURS" "TLV" 1 2 -"EUCAST 2012" "MIC" "B_STPHY_AURS" "TOB" 1 2 -"EUCAST 2012" "MIC" "B_STPHY_AURS" "VAN" 2 4 -"EUCAST 2012" "MIC" "B_STPHY_CONS" "AMK" 8 32 -"EUCAST 2012" "MIC" "B_STPHY_CONS" "GEN" 1 2 -"EUCAST 2012" "MIC" "B_STPHY_CONS" "NET" 1 2 -"EUCAST 2012" "MIC" "B_STPHY_CONS" "TEC" 4 8 -"EUCAST 2012" "MIC" "B_STPHY_CONS" "TOB" 1 2 -"EUCAST 2012" "MIC" "B_STPHY_CONS" "VAN" 4 8 -"EUCAST 2012" "MIC" "B_STPHY_LGDN" "FOX" 4 8 -"EUCAST 2012" "MIC" "B_STPHY_LGDN" "OXA" 2 4 -"EUCAST 2012" "MIC" "UTI only" "B_STRPT_GRPB" "NIT" 64 128 -"EUCAST 2012" "MIC" "UTI only" "B_STRPT_GRPB" "TMP" 2 4 -"EUCAST 2012" "MIC" "B_STRPT_HAEM" "AZM" 0.25 1 -"EUCAST 2012" "MIC" "B_STRPT_HAEM" "CHL" 8 16 -"EUCAST 2012" "MIC" "B_STRPT_HAEM" "CLI" 0.5 1 -"EUCAST 2012" "MIC" "B_STRPT_HAEM" "CLR" 0.25 1 -"EUCAST 2012" "MIC" "B_STRPT_HAEM" "DAP" 1 2 -"EUCAST 2012" "MIC" "B_STRPT_HAEM" "DOX" 1 4 -"EUCAST 2012" "MIC" "B_STRPT_HAEM" "ERY" 0.25 1 -"EUCAST 2012" "MIC" "B_STRPT_HAEM" "LNZ" 2 8 -"EUCAST 2012" "MIC" "B_STRPT_HAEM" "LVX" 1 4 -"EUCAST 2012" "MIC" "B_STRPT_HAEM" "MFX" 0.5 2 -"EUCAST 2012" "MIC" "B_STRPT_HAEM" "MNO" 0.5 2 -"EUCAST 2012" "MIC" "B_STRPT_HAEM" "PEN" 0.25 0.5 -"EUCAST 2012" "MIC" "B_STRPT_HAEM" "RIF" 0.064 1 -"EUCAST 2012" "MIC" "B_STRPT_HAEM" "RXT" 0.5 2 -"EUCAST 2012" "MIC" "B_STRPT_HAEM" "SXT" 1 4 -"EUCAST 2012" "MIC" "B_STRPT_HAEM" "TCY" 1 4 -"EUCAST 2012" "MIC" "B_STRPT_HAEM" "TEC" 2 4 -"EUCAST 2012" "MIC" "B_STRPT_HAEM" "TGC" 0.25 1 -"EUCAST 2012" "MIC" "B_STRPT_HAEM" "TLT" 0.25 1 -"EUCAST 2012" "MIC" "B_STRPT_HAEM" "VAN" 2 4 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "AMP" 0.5 4 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "AZM" 0.25 1 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "CEC" 0.032 1 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "CHL" 8 16 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "CIP" 0.125 4 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "CLI" 0.5 1 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "CLR" 0.25 1 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "CPD" 0.25 1 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "CRO" 0.5 4 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "CTX" 0.5 4 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "CXA" 0.25 1 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "CXM" 0.5 2 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "DOR" 1 2 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "DOX" 1 4 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "ERY" 0.25 1 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "ETP" 0.5 1 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "FEP" 1 4 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "IPM" 2 4 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "LNZ" 2 8 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "LVX" 2 4 -"EUCAST 2012" "MIC" "Other infections" "B_STRPT_PNMN" "MEM" 2 4 -"EUCAST 2012" "MIC" "Meningitis" "B_STRPT_PNMN" "MEM" 0.25 2 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "MFX" 0.5 1 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "MNO" 0.5 2 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "OFX" 0.125 8 -"EUCAST 2012" "MIC" "Other infections" "B_STRPT_PNMN" "PEN" 0.064 4 -"EUCAST 2012" "MIC" "Meningitis" "B_STRPT_PNMN" "PEN" 0.064 0.12 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "RIF" 0.064 1 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "RXT" 0.5 2 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "SXT" 1 4 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "TCY" 1 4 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "TEC" 2 4 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "TLT" 0.25 1 -"EUCAST 2012" "MIC" "B_STRPT_PNMN" "VAN" 2 4 -"EUCAST 2012" "MIC" "B_STRPT_VIRI" "AMP" 0.5 4 -"EUCAST 2012" "MIC" "B_STRPT_VIRI" "AMX" 0.5 4 -"EUCAST 2012" "MIC" "B_STRPT_VIRI" "CLI" 0.5 1 -"EUCAST 2012" "MIC" "B_STRPT_VIRI" "CRO" 0.5 1 -"EUCAST 2012" "MIC" "B_STRPT_VIRI" "CTX" 0.5 1 -"EUCAST 2012" "MIC" "B_STRPT_VIRI" "CXM" 0.5 1 -"EUCAST 2012" "MIC" "B_STRPT_VIRI" "CZO" 0.5 1 -"EUCAST 2012" "MIC" "B_STRPT_VIRI" "DOR" 1 2 -"EUCAST 2012" "MIC" "B_STRPT_VIRI" "ETP" 0.5 1 -"EUCAST 2012" "MIC" "B_STRPT_VIRI" "FEP" 0.5 1 -"EUCAST 2012" "MIC" "B_STRPT_VIRI" "IPM" 2 4 -"EUCAST 2012" "MIC" "B_STRPT_VIRI" "MEM" 2 4 -"EUCAST 2012" "MIC" "B_STRPT_VIRI" "PEN" 0.25 4 -"EUCAST 2012" "MIC" "B_STRPT_VIRI" "TEC" 2 4 -"EUCAST 2012" "MIC" "B_STRPT_VIRI" "VAN" 2 4 -"EUCAST 2011" "MIC" "B_ACNTB" "AMK" 8 32 -"EUCAST 2011" "MIC" "B_ACNTB" "CIP" 1 2 -"EUCAST 2011" "MIC" "B_ACNTB" "COL" 2 4 -"EUCAST 2011" "MIC" "B_ACNTB" "DOR" 1 8 -"EUCAST 2011" "MIC" "B_ACNTB" "GEN" 4 8 -"EUCAST 2011" "MIC" "B_ACNTB" "IPM" 2 16 -"EUCAST 2011" "MIC" "B_ACNTB" "LVX" 1 4 -"EUCAST 2011" "MIC" "B_ACNTB" "MEM" 2 16 -"EUCAST 2011" "MIC" "B_ACNTB" "NET" 4 8 -"EUCAST 2011" "MIC" "B_ACNTB" "SXT" 2 8 -"EUCAST 2011" "MIC" "B_ACNTB" "TOB" 4 8 -"EUCAST 2011" "MIC" "B_ENTRC" "AMC" 4 16 -"EUCAST 2011" "MIC" "B_ENTRC" "AMP" 4 16 -"EUCAST 2011" "MIC" "B_ENTRC" "AMX" 4 16 -"EUCAST 2011" "MIC" "B_ENTRC" "GEN" 128 256 -"EUCAST 2011" "MIC" "B_ENTRC" "IPM" 4 16 -"EUCAST 2011" "MIC" "B_ENTRC" "LNZ" 4 8 -"EUCAST 2011" "MIC" "B_ENTRC" "NIT" 64 128 -"EUCAST 2011" "MIC" "B_ENTRC" "SAM" 4 16 -"EUCAST 2011" "MIC" "B_ENTRC" "SXT" 0.32 2 -"EUCAST 2011" "MIC" "B_ENTRC" "TEC" 2 4 -"EUCAST 2011" "MIC" "B_ENTRC" "TGC" 0.25 1 -"EUCAST 2011" "MIC" "B_ENTRC" "TMP" 0.32 2 -"EUCAST 2011" "MIC" "B_ENTRC" "VAN" 4 8 -"EUCAST 2011" "MIC" "B_ENTRC_FACM" "QDA" 1 8 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "AMC" 1 2 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "AMP" 1 2 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "AMX" 1 2 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "AZM" 0.125 8 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "CEC" 0.5 1 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "CFM" 0.125 0.25 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "CHL" 1 4 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "CIP" 0.5 1 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "CLR" 1 64 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "CPD" 0.25 1 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "CRO" 0.125 0.25 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "CTB" 1 2 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "CTX" 0.125 0.25 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "CXA" 0.125 2 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "CXM" 1 4 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "CXM" 1 32 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "DOR" 1 2 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "DOX" 1 4 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "ERY" 0.5 32 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "ETP" 0.5 1 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "FEP" 0.25 0.5 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "IPM" 2 4 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "LVX" 1 2 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "MEM" 2 4 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "MFX" 0.5 1 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "MNO" 1 4 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "OFX" 0.5 1 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "RIF" 0.5 1 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "SAM" 1 2 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "SXT" 0.5 2 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "TCY" 1 4 -"EUCAST 2011" "MIC" "B_HMPHL_INFL" "TLT" 0.125 16 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "AMC" 1 2 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "AMP" 1 2 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "AMX" 1 2 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "AZM" 0.5 1 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "CEC" 0.5 1 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "CFM" 0.5 2 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "CHL" 1 4 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "CIP" 0.5 1 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "CLR" 0.25 1 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "CPD" 0.25 1 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "CRO" 1 4 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "CTB" 1 2 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "CTX" 1 4 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "CXA" 0.125 4 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "CXM" 1 4 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "CXM" 0.5 2 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "DOR" 1 2 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "DOX" 1 4 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "ERY" 0.25 1 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "ETP" 0.5 1 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "FEP" 0.25 0.5 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "IPM" 2 4 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "LVX" 1 2 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "MEM" 2 4 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "MFX" 0.5 1 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "MNO" 1 4 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "OFX" 0.5 1 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "RIF" 0.5 1 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "SAM" 1 2 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "SXT" 0.5 2 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "TCY" 1 4 -"EUCAST 2011" "MIC" "B_MRXLL_CTRR" "TLT" 0.25 1 -"EUCAST 2011" "MIC" "B_NESSR_GNRR" "AZM" 0.25 1 -"EUCAST 2011" "MIC" "B_NESSR_GNRR" "CFM" 0.125 0.25 -"EUCAST 2011" "MIC" "B_NESSR_GNRR" "CIP" 0.032 0.06 -"EUCAST 2011" "MIC" "B_NESSR_GNRR" "CRO" 0.125 0.25 -"EUCAST 2011" "MIC" "B_NESSR_GNRR" "CTX" 0.125 0.25 -"EUCAST 2011" "MIC" "B_NESSR_GNRR" "MNO" 0.5 2 -"EUCAST 2011" "MIC" "B_NESSR_GNRR" "OFX" 0.125 0.5 -"EUCAST 2011" "MIC" "B_NESSR_GNRR" "PEN" 0.064 2 -"EUCAST 2011" "MIC" "B_NESSR_GNRR" "SPT" 64 128 -"EUCAST 2011" "MIC" "B_NESSR_GNRR" "TCY" 0.5 2 -"EUCAST 2011" "MIC" "B_NESSR_MNNG" "AMP" 0.125 2 -"EUCAST 2011" "MIC" "B_NESSR_MNNG" "AMX" 0.125 2 -"EUCAST 2011" "MIC" "B_NESSR_MNNG" "CIP" 0.032 0.06 -"EUCAST 2011" "MIC" "B_NESSR_MNNG" "COL" 2 8 -"EUCAST 2011" "MIC" "B_NESSR_MNNG" "CRO" 0.125 0.25 -"EUCAST 2011" "MIC" "B_NESSR_MNNG" "CTX" 0.125 0.25 -"EUCAST 2011" "MIC" "B_NESSR_MNNG" "MEM" 0.25 0.5 -"EUCAST 2011" "MIC" "B_NESSR_MNNG" "MNO" 1 4 -"EUCAST 2011" "MIC" "B_NESSR_MNNG" "PEN" 0.064 0.5 -"EUCAST 2011" "MIC" "B_NESSR_MNNG" "RIF" 0.25 0.5 -"EUCAST 2011" "MIC" "B_NESSR_MNNG" "TCY" 1 4 -"EUCAST 2011" "MIC" "B_PSDMN" "AMK" 8 32 -"EUCAST 2011" "MIC" "B_PSDMN" "ATM" 1 32 -"EUCAST 2011" "MIC" "B_PSDMN" "CAZ" 8 16 -"EUCAST 2011" "MIC" "B_PSDMN" "CIP" 0.5 2 -"EUCAST 2011" "MIC" "B_PSDMN" "COL" 2 4 -"EUCAST 2011" "MIC" "B_PSDMN" "DOR" 1 8 -"EUCAST 2011" "MIC" "B_PSDMN" "FEP" 8 16 -"EUCAST 2011" "MIC" "B_PSDMN" "FOS" 32 64 -"EUCAST 2011" "MIC" "B_PSDMN" "GEN" 4 8 -"EUCAST 2011" "MIC" "B_PSDMN" "IPM" 4 16 -"EUCAST 2011" "MIC" "B_PSDMN" "LVX" 1 4 -"EUCAST 2011" "MIC" "B_PSDMN" "MEM" 2 16 -"EUCAST 2011" "MIC" "B_PSDMN" "NET" 4 8 -"EUCAST 2011" "MIC" "B_PSDMN" "PIP" 16 32 -"EUCAST 2011" "MIC" "B_PSDMN" "SXT" 4 8 -"EUCAST 2011" "MIC" "B_PSDMN" "TCC" 16 32 -"EUCAST 2011" "MIC" "B_PSDMN" "TIC" 16 32 -"EUCAST 2011" "MIC" "B_PSDMN" "TOB" 4 8 -"EUCAST 2011" "MIC" "B_PSDMN" "TZP" 16 32 -"EUCAST 2011" "MIC" "B_STPHY" "AMK" 8 32 -"EUCAST 2011" "MIC" "B_STPHY" "AZM" 1 4 -"EUCAST 2011" "MIC" "B_STPHY" "CHL" 8 16 -"EUCAST 2011" "MIC" "B_STPHY" "CIP" 1 2 -"EUCAST 2011" "MIC" "B_STPHY" "CLI" 0.25 1 -"EUCAST 2011" "MIC" "B_STPHY" "CLR" 1 4 -"EUCAST 2011" "MIC" "B_STPHY" "DAP" 1 2 -"EUCAST 2011" "MIC" "B_STPHY" "DOX" 1 4 -"EUCAST 2011" "MIC" "B_STPHY" "ERY" 1 4 -"EUCAST 2011" "MIC" "B_STPHY" "FOS" 32 64 -"EUCAST 2011" "MIC" "B_STPHY" "FUS" 1 2 -"EUCAST 2011" "MIC" "B_STPHY" "GEN" 1 2 -"EUCAST 2011" "MIC" "B_STPHY" "LNZ" 4 8 -"EUCAST 2011" "MIC" "B_STPHY" "LVX" 1 4 -"EUCAST 2011" "MIC" "B_STPHY" "MFX" 0.5 2 -"EUCAST 2011" "MIC" "B_STPHY" "MNO" 0.5 2 -"EUCAST 2011" "MIC" "B_STPHY" "NET" 1 2 -"EUCAST 2011" "MIC" "B_STPHY" "NIT" 64 128 -"EUCAST 2011" "MIC" "B_STPHY" "OFX" 1 2 -"EUCAST 2011" "MIC" "B_STPHY" "OXA" 0.25 0.5 -"EUCAST 2011" "MIC" "B_STPHY" "PEN" 0.125 0.25 -"EUCAST 2011" "MIC" "B_STPHY" "QDA" 1 4 -"EUCAST 2011" "MIC" "B_STPHY" "RIF" 0.064 0.5 -"EUCAST 2011" "MIC" "B_STPHY" "RXT" 1 4 -"EUCAST 2011" "MIC" "B_STPHY" "SXT" 2 8 -"EUCAST 2011" "MIC" "B_STPHY" "TCY" 1 4 -"EUCAST 2011" "MIC" "B_STPHY" "TEC" 4 8 -"EUCAST 2011" "MIC" "B_STPHY" "TGC" 0.5 1 -"EUCAST 2011" "MIC" "B_STPHY" "TMP" 2 8 -"EUCAST 2011" "MIC" "B_STPHY" "TOB" 1 2 -"EUCAST 2011" "MIC" "B_STPHY" "VAN" 2 4 -"EUCAST 2011" "MIC" "B_STPHY_AURS" "OXA" 2 4 -"EUCAST 2011" "MIC" "B_STPHY_AURS" "TEC" 2 4 -"EUCAST 2011" "MIC" "B_STPHY_LGDN" "OXA" 2 4 -"EUCAST 2011" "MIC" "B_STPHY_LGDN" "TEC" 2 4 -"EUCAST 2011" "MIC" "B_STRPT" "AMP" 0.5 4 -"EUCAST 2011" "MIC" "B_STRPT" "AMX" 0.5 4 -"EUCAST 2011" "MIC" "B_STRPT" "CLI" 0.5 1 -"EUCAST 2011" "MIC" "B_STRPT" "CRO" 0.5 1 -"EUCAST 2011" "MIC" "B_STRPT" "CTX" 0.5 1 -"EUCAST 2011" "MIC" "B_STRPT" "CXM" 0.5 1 -"EUCAST 2011" "MIC" "B_STRPT" "CZO" 0.5 1 -"EUCAST 2011" "MIC" "B_STRPT" "DOR" 1 2 -"EUCAST 2011" "MIC" "B_STRPT" "ETP" 0.5 1 -"EUCAST 2011" "MIC" "B_STRPT" "FEP" 0.5 1 -"EUCAST 2011" "MIC" "B_STRPT" "IPM" 2 4 -"EUCAST 2011" "MIC" "B_STRPT" "MEM" 2 4 -"EUCAST 2011" "MIC" "B_STRPT" "PEN" 0.25 4 -"EUCAST 2011" "MIC" "B_STRPT" "TEC" 2 4 -"EUCAST 2011" "MIC" "B_STRPT" "VAN" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPA" "AZM" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_GRPA" "CHL" 8 16 -"EUCAST 2011" "MIC" "B_STRPT_GRPA" "CLI" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_GRPA" "CLR" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_GRPA" "DAP" 1 2 -"EUCAST 2011" "MIC" "B_STRPT_GRPA" "DOR" 1 2 -"EUCAST 2011" "MIC" "B_STRPT_GRPA" "DOX" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPA" "ERY" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_GRPA" "ETP" 0.5 1 -"EUCAST 2011" "MIC" "B_STRPT_GRPA" "IPM" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPA" "LNZ" 2 8 -"EUCAST 2011" "MIC" "B_STRPT_GRPA" "LVX" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPA" "MEM" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPA" "MFX" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_GRPA" "MNO" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_GRPA" "NIT" 64 128 -"EUCAST 2011" "MIC" "B_STRPT_GRPA" "PEN" 0.25 0.5 -"EUCAST 2011" "MIC" "B_STRPT_GRPA" "RIF" 0.064 1 -"EUCAST 2011" "MIC" "B_STRPT_GRPA" "RXT" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_GRPA" "SXT" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPA" "TCY" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPA" "TEC" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPA" "TGC" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_GRPA" "TLT" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_GRPA" "VAN" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPB" "AZM" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_GRPB" "CHL" 8 16 -"EUCAST 2011" "MIC" "B_STRPT_GRPB" "CLI" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_GRPB" "CLR" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_GRPB" "DAP" 1 2 -"EUCAST 2011" "MIC" "B_STRPT_GRPB" "DOR" 1 2 -"EUCAST 2011" "MIC" "B_STRPT_GRPB" "DOX" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPB" "ERY" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_GRPB" "ETP" 0.5 1 -"EUCAST 2011" "MIC" "B_STRPT_GRPB" "IPM" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPB" "LNZ" 2 8 -"EUCAST 2011" "MIC" "B_STRPT_GRPB" "LVX" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPB" "MEM" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPB" "MFX" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_GRPB" "MNO" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_GRPB" "NIT" 64 128 -"EUCAST 2011" "MIC" "B_STRPT_GRPB" "PEN" 0.25 0.5 -"EUCAST 2011" "MIC" "B_STRPT_GRPB" "RIF" 0.064 1 -"EUCAST 2011" "MIC" "B_STRPT_GRPB" "RXT" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_GRPB" "SXT" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPB" "TCY" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPB" "TEC" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPB" "TGC" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_GRPB" "TLT" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_GRPB" "VAN" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPC" "AZM" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_GRPC" "CHL" 8 16 -"EUCAST 2011" "MIC" "B_STRPT_GRPC" "CLI" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_GRPC" "CLR" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_GRPC" "DAP" 1 2 -"EUCAST 2011" "MIC" "B_STRPT_GRPC" "DOR" 1 2 -"EUCAST 2011" "MIC" "B_STRPT_GRPC" "DOX" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPC" "ERY" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_GRPC" "ETP" 0.5 1 -"EUCAST 2011" "MIC" "B_STRPT_GRPC" "IPM" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPC" "LNZ" 2 8 -"EUCAST 2011" "MIC" "B_STRPT_GRPC" "LVX" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPC" "MEM" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPC" "MFX" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_GRPC" "MNO" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_GRPC" "NIT" 64 128 -"EUCAST 2011" "MIC" "B_STRPT_GRPC" "PEN" 0.25 0.5 -"EUCAST 2011" "MIC" "B_STRPT_GRPC" "RIF" 0.064 1 -"EUCAST 2011" "MIC" "B_STRPT_GRPC" "RXT" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_GRPC" "SXT" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPC" "TCY" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPC" "TEC" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPC" "TGC" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_GRPC" "TLT" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_GRPC" "VAN" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPG" "AZM" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_GRPG" "CHL" 8 16 -"EUCAST 2011" "MIC" "B_STRPT_GRPG" "CLI" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_GRPG" "CLR" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_GRPG" "DAP" 1 2 -"EUCAST 2011" "MIC" "B_STRPT_GRPG" "DOR" 1 2 -"EUCAST 2011" "MIC" "B_STRPT_GRPG" "DOX" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPG" "ERY" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_GRPG" "ETP" 0.5 1 -"EUCAST 2011" "MIC" "B_STRPT_GRPG" "IPM" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPG" "LNZ" 2 8 -"EUCAST 2011" "MIC" "B_STRPT_GRPG" "LVX" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPG" "MEM" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPG" "MFX" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_GRPG" "MNO" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_GRPG" "NIT" 64 128 -"EUCAST 2011" "MIC" "B_STRPT_GRPG" "PEN" 0.25 0.5 -"EUCAST 2011" "MIC" "B_STRPT_GRPG" "RIF" 0.064 1 -"EUCAST 2011" "MIC" "B_STRPT_GRPG" "RXT" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_GRPG" "SXT" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPG" "TCY" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPG" "TEC" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_GRPG" "TGC" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_GRPG" "TLT" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_GRPG" "VAN" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "AZM" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "AZM" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "CHL" 8 16 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "CHL" 8 16 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "CLI" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "CLI" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "CLR" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "CLR" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "DAP" 1 2 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "DAP" 1 2 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "DOR" 1 2 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "DOR" 1 2 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "DOX" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "DOX" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "ERY" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "ERY" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "ETP" 0.5 1 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "ETP" 0.5 1 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "IPM" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "IPM" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "LNZ" 2 8 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "LNZ" 2 8 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "LVX" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "LVX" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "MEM" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "MEM" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "MFX" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "MFX" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "MNO" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "MNO" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "NIT" 64 128 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "NIT" 64 128 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "PEN" 0.25 0.5 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "PEN" 0.25 0.5 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "RIF" 0.064 1 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "RIF" 0.064 1 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "RXT" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "RXT" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "SXT" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "SXT" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "TCY" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "TCY" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "TEC" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "TEC" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "TGC" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "TGC" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "TLT" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "TLT" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "VAN" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_HAEM" "VAN" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "AMP" 0.5 4 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "AZM" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "CEC" 0.032 1 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "CHL" 8 16 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "CIP" 0.125 4 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "CLI" 0.5 1 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "CLR" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "CPD" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "CRO" 0.5 4 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "CTX" 0.5 4 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "CXA" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "CXM" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "DOR" 1 2 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "DOX" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "ERY" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "ETP" 0.5 1 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "FEP" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "IPM" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "LNZ" 4 8 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "LVX" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "MEM" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "MFX" 0.5 1 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "MNO" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "OFX" 0.125 8 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "PEN" 0.064 4 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "RIF" 0.064 1 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "RXT" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "SXT" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "TCY" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "TEC" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "TLT" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_PNMN" "VAN" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_PYGN" "AZM" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_PYGN" "CHL" 8 16 -"EUCAST 2011" "MIC" "B_STRPT_PYGN" "CLI" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_PYGN" "CLR" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_PYGN" "DAP" 1 2 -"EUCAST 2011" "MIC" "B_STRPT_PYGN" "DOR" 1 2 -"EUCAST 2011" "MIC" "B_STRPT_PYGN" "DOX" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_PYGN" "ERY" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_PYGN" "ETP" 0.5 1 -"EUCAST 2011" "MIC" "B_STRPT_PYGN" "IPM" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_PYGN" "LNZ" 2 8 -"EUCAST 2011" "MIC" "B_STRPT_PYGN" "LVX" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_PYGN" "MEM" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_PYGN" "MFX" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_PYGN" "MNO" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_PYGN" "NIT" 64 128 -"EUCAST 2011" "MIC" "B_STRPT_PYGN" "PEN" 0.25 0.5 -"EUCAST 2011" "MIC" "B_STRPT_PYGN" "RIF" 0.064 1 -"EUCAST 2011" "MIC" "B_STRPT_PYGN" "RXT" 0.5 2 -"EUCAST 2011" "MIC" "B_STRPT_PYGN" "SXT" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_PYGN" "TCY" 1 4 -"EUCAST 2011" "MIC" "B_STRPT_PYGN" "TEC" 2 4 -"EUCAST 2011" "MIC" "B_STRPT_PYGN" "TGC" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_PYGN" "TLT" 0.25 1 -"EUCAST 2011" "MIC" "B_STRPT_PYGN" "VAN" 2 4 -"CLSI 2019" "MIC" "Respiratory" "AN_[FAM]_SCHSTSMT" "FLR" "VET08 Table 2A" 4 16 -"CLSI 2019" "MIC" "Respiratory" "AN_[FAM]_SCHSTSMT" "TIO" "VET08 Table 2A" 2 8 -"CLSI 2019" "MIC" "Urine" "B_[FAM]_ENTRBCTR" "CZO" "Table 2A" 16 32 -"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "B_[FAM]_ENTRBCTR" "DIF" "VET08 Table 2A" 0.5 4 -"CLSI 2019" "MIC" "Skin, soft tissue, respiratory, UTI" "B_[FAM]_ENTRBCTR" "ENR" "VET08 Table 2A" 0.5 4 -"CLSI 2019" "MIC" "Skin, soft tissue" "B_[FAM]_ENTRBCTR" "ENR" "VET08 Table 2A" 0.5 4 -"CLSI 2019" "MIC" "B_[FAM]_ENTRBCTR" "GEN" "VET08 Table 2A" 2 8 -"CLSI 2019" "MIC" "B_[FAM]_ENTRBCTR" "GEN" "VET08 Table 2A" 2 8 -"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "B_[FAM]_ENTRBCTR" "MAR" "VET08 Table 2A" 1 4 -"CLSI 2019" "MIC" "Skin, soft tissue" "B_[FAM]_ENTRBCTR" "MAR" "VET08 Table 2A" 1 4 -"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "B_[FAM]_ENTRBCTR" "ORB" "VET08 Table 2A" 1 8 -"CLSI 2019" "MIC" "Skin, soft tissue" "B_[FAM]_ENTRBCTR" "ORB" "VET08 Table 2A" 1 8 -"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "B_[FAM]_ENTRBCTR" "TZP" "VET08 Table 2A" 8 32 -"CLSI 2019" "MIC" "B_ABTRP" "AMP" "M45 Table 1" 0.25 8 -"CLSI 2019" "MIC" "B_ABTRP" "CHL" "M45 Table 1" 4 8 -"CLSI 2019" "MIC" "B_ABTRP" "CIP" "M45 Table 1" 1 4 -"CLSI 2019" "MIC" "B_ABTRP" "CLI" "M45 Table 1" 0.25 1 -"CLSI 2019" "MIC" "B_ABTRP" "CRO" "M45 Table 1" 1 4 -"CLSI 2019" "MIC" "B_ABTRP" "CTX" "M45 Table 1" 1 4 -"CLSI 2019" "MIC" "B_ABTRP" "ERY" "M45 Table 1" 0.25 1 -"CLSI 2019" "MIC" "B_ABTRP" "FEP" "M45 Table 1" 1 4 -"CLSI 2019" "MIC" "B_ABTRP" "IPM" "M45 Table 1" 0.5 2 -"CLSI 2019" "MIC" "B_ABTRP" "LVX" "M45 Table 1" 2 8 -"CLSI 2019" "MIC" "B_ABTRP" "MEM" "M45 Table 1" 0.5 2 -"CLSI 2019" "MIC" "B_ABTRP" "PEN" "M45 Table 1" 0.125 4 -"CLSI 2019" "MIC" "B_ABTRP" "VAN" "M45 Table 1" 1 -"CLSI 2019" "MIC" "B_ACNTB" "AMK" "Table 2B-2" 16 64 -"CLSI 2019" "MIC" "B_ACNTB" "CAZ" "Table 2B-2" 8 32 -"CLSI 2019" "MIC" "B_ACNTB" "CIP" "Table 2B-2" 1 4 -"CLSI 2019" "MIC" "B_ACNTB" "COL" "Table 2B-2" 2 4 -"CLSI 2019" "MIC" "B_ACNTB" "CRO" "Table 2B-2" 8 64 -"CLSI 2019" "MIC" "B_ACNTB" "CTX" "Table 2B-2" 8 64 -"CLSI 2019" "MIC" "B_ACNTB" "DOR" "Table 2B-2" 2 8 -"CLSI 2019" "MIC" "B_ACNTB" "DOX" "Table 2B-2" 4 16 -"CLSI 2019" "MIC" "B_ACNTB" "ETP" "Table 2B-2" -"CLSI 2019" "MIC" "B_ACNTB" "FDC" "Table 2B-2" 4 16 -"CLSI 2019" "MIC" "B_ACNTB" "FEP" "Table 2B-2" 8 32 -"CLSI 2019" "MIC" "B_ACNTB" "GAT" "Table 2B-2" 2 8 -"CLSI 2019" "MIC" "B_ACNTB" "GEN" "Table 2B-2" 4 16 -"CLSI 2019" "MIC" "B_ACNTB" "IPM" "Table 2B-2" 2 8 -"CLSI 2019" "MIC" "B_ACNTB" "LVX" "Table 2B-2" 2 8 -"CLSI 2019" "MIC" "B_ACNTB" "MEM" "Table 2B-2" 2 8 -"CLSI 2019" "MIC" "B_ACNTB" "MNO" "Table 2B-2" 4 16 -"CLSI 2019" "MIC" "B_ACNTB" "NET" "Table 2B-2" 8 32 -"CLSI 2019" "MIC" "B_ACNTB" "PIP" "Table 2B-2" 16 128 -"CLSI 2019" "MIC" "B_ACNTB" "PLB" "Table 2B-2" 2 4 -"CLSI 2019" "MIC" "B_ACNTB" "SAM" "Table 2B-2" 8 32 -"CLSI 2019" "MIC" "B_ACNTB" "SXT" "Table 2B-2" 2 4 -"CLSI 2019" "MIC" "B_ACNTB" "TCC" "Table 2B-2" 16 128 -"CLSI 2019" "MIC" "B_ACNTB" "TCY" "Table 2B-2" 4 16 -"CLSI 2019" "MIC" "B_ACNTB" "TOB" "Table 2B-2" 4 16 -"CLSI 2019" "MIC" "B_ACNTB" "TZP" "Table 2B-2" 16 128 -"CLSI 2019" "MIC" "Respiratory" "B_ACTNB_PLRP" "AMP" "VET08 Table 2I" 0.5 2 -"CLSI 2019" "MIC" "Respiratory" "B_ACTNB_PLRP" "ENR" "VET08 Table 2I" 0.25 1 -"CLSI 2019" "MIC" "Respiratory" "B_ACTNB_PLRP" "FLR" "VET08 Table 2I" 2 8 -"CLSI 2019" "MIC" "B_ACTNB_PLRP" "GEN" "VET08 Table 2I" 2 8 -"CLSI 2019" "MIC" "Respiratory" "B_ACTNB_PLRP" "TCY" "VET08 Table 2I" 0.5 2 -"CLSI 2019" "MIC" "Respiratory" "B_ACTNB_PLRP" "TIA" "VET08 Table 2I" 16 32 -"CLSI 2019" "MIC" "B_ACTNB_PLRP" "TIL" "Vet Table" 16 32 -"CLSI 2019" "MIC" "Respiratory" "B_ACTNB_PLRP" "TIL" "VET08 Table 2I" 16 32 -"CLSI 2019" "MIC" "Respiratory" "B_ACTNB_PLRP" "TIO" "VET08 Table 2I" 2 8 -"CLSI 2019" "MIC" "Respiratory" "B_ACTNB_PLRP" "TIP" "VET08 Table 2I" 16 -"CLSI 2019" "MIC" "Respiratory" "B_ACTNB_PLRP" "TUL" "VET08 Table 2I" 64 -"CLSI 2019" "MIC" "B_AERCC" "CIP" "M45 Table 2" 1 4 -"CLSI 2019" "MIC" "B_AERCC" "CRO" "M45 Table 2" 1 4 -"CLSI 2019" "MIC" "B_AERCC" "CTX" "M45 Table 2" 1 4 -"CLSI 2019" "MIC" "B_AERCC" "LNZ" "M45 Table 2" 2 -"CLSI 2019" "MIC" "B_AERCC" "LVX" "M45 Table 2" 2 8 -"CLSI 2019" "MIC" "B_AERCC" "MEM" "M45 Table 2" 0.5 -"CLSI 2019" "MIC" "B_AERCC" "PEN" "M45 Table 2" 0.125 4 -"CLSI 2019" "MIC" "B_AERCC" "SXT" "M45 Table 2" 2 4 -"CLSI 2019" "MIC" "B_AERCC" "TCY" "M45 Table 2" 2 8 -"CLSI 2019" "MIC" "B_AERCC" "VAN" "M45 Table 2" 1 -"CLSI 2019" "MIC" "B_AERMN" "AMK" "M45 Table 3" 16 64 -"CLSI 2019" "MIC" "B_AERMN" "ATM" "M45 Table 3" 4 16 -"CLSI 2019" "MIC" "B_AERMN" "CAZ" "M45 Table 3" 4 16 -"CLSI 2019" "MIC" "B_AERMN" "CHL" "M45 Table 3" 8 32 -"CLSI 2019" "MIC" "B_AERMN" "CIP" "M45 Table 3" 1 4 -"CLSI 2019" "MIC" "B_AERMN" "CRO" "M45 Table 3" 1 4 -"CLSI 2019" "MIC" "B_AERMN" "CTX" "M45 Table 3" 1 4 -"CLSI 2019" "MIC" "B_AERMN" "CXM" "M45 Table 3" 8 32 -"CLSI 2019" "MIC" "B_AERMN" "DOR" "M45 Table 3" 1 4 -"CLSI 2019" "MIC" "B_AERMN" "ETP" "M45 Table 3" 0.5 2 -"CLSI 2019" "MIC" "B_AERMN" "FEP" "M45 Table 3" 2 16 -"CLSI 2019" "MIC" "B_AERMN" "FOX" "M45 Table 3" 8 32 -"CLSI 2019" "MIC" "B_AERMN" "GEN" "M45 Table 3" 4 16 -"CLSI 2019" "MIC" "B_AERMN" "IPM" "M45 Table 3" 1 4 -"CLSI 2019" "MIC" "B_AERMN" "LVX" "M45 Table 3" 2 4 -"CLSI 2019" "MIC" "B_AERMN" "MEM" "M45 Table 3" 1 4 -"CLSI 2019" "MIC" "B_AERMN" "SXT" "M45 Table 3" 2 4 -"CLSI 2019" "MIC" "B_AERMN" "TCY" "M45 Table 3" 4 16 -"CLSI 2019" "MIC" "B_AERMN" "TZP" "M45 Table 3" 16 128 -"CLSI 2019" "MIC" "B_AERMN_SLMN" "OXO" "VET03 Table 12" 0.125 1 -"CLSI 2019" "MIC" "B_AERMN_SLMN" "OXY" "VET03 Table 12" 1 8 -"CLSI 2019" "MIC" "B_AGGRG" "AMC" "M45 Table 9" 4 8 -"CLSI 2019" "MIC" "B_AGGRG" "AMP" "M45 Table 9" 1 4 -"CLSI 2019" "MIC" "B_AGGRG" "AZM" "M45 Table 9" 4 -"CLSI 2019" "MIC" "B_AGGRG" "CHL" "M45 Table 9" 4 16 -"CLSI 2019" "MIC" "B_AGGRG" "CIP" "M45 Table 9" 1 4 -"CLSI 2019" "MIC" "B_AGGRG" "CLR" "M45 Table 9" 8 32 -"CLSI 2019" "MIC" "B_AGGRG" "CRO" "M45 Table 9" 2 -"CLSI 2019" "MIC" "B_AGGRG" "CTX" "M45 Table 9" 2 -"CLSI 2019" "MIC" "B_AGGRG" "IPM" "M45 Table 9" 4 16 -"CLSI 2019" "MIC" "B_AGGRG" "LVX" "M45 Table 9" 2 8 -"CLSI 2019" "MIC" "B_AGGRG" "MEM" "M45 Table 9" 4 16 -"CLSI 2019" "MIC" "B_AGGRG" "PEN" "M45 Table 9" 1 4 -"CLSI 2019" "MIC" "B_AGGRG" "RIF" "M45 Table 9" 1 4 -"CLSI 2019" "MIC" "B_AGGRG" "SAM" "M45 Table 9" 2 4 -"CLSI 2019" "MIC" "B_AGGRG" "SXT" "M45 Table 9" 0.5 4 -"CLSI 2019" "MIC" "B_AGGRG" "TCY" "M45 Table 9" 2 8 -"CLSI 2019" "MIC" "Canine, feline" "B_ALLSC" "ENR" "Vet Table" 0.5 4 -"CLSI 2019" "MIC" "Wounds, abscesses" "B_AMYCS_CANS" "CPD" "VET08 Table 2D" 2 8 -"CLSI 2019" "MIC" "Skin, respiratory" "B_AMYCS_CANS" "PRA" "VET08 Table 2D" 0.25 -"CLSI 2019" "MIC" "B_ANRSL" "AMC" "Table 2J" 4 16 -"CLSI 2019" "MIC" "B_ANRSL" "AMP" "Table 2J" 0.5 2 -"CLSI 2019" "MIC" "B_ANRSL" "CFP" "Table 2J" 16 64 -"CLSI 2019" "MIC" "B_ANRSL" "CHL" "Table 2J" 8 32 -"CLSI 2019" "MIC" "B_ANRSL" "CLI" "Table 2J" 2 8 -"CLSI 2019" "MIC" "B_ANRSL" "CMZ" "Table 2J" 16 64 -"CLSI 2019" "MIC" "B_ANRSL" "CRO" "Table 2J" 16 64 -"CLSI 2019" "MIC" "B_ANRSL" "CTT" "Table 2J" 16 64 -"CLSI 2019" "MIC" "B_ANRSL" "CTX" "Table 2J" 16 64 -"CLSI 2019" "MIC" "B_ANRSL" "CZX" "Table 2J" 32 128 -"CLSI 2019" "MIC" "B_ANRSL" "DOR" "Table 2J" 2 8 -"CLSI 2019" "MIC" "B_ANRSL" "ETP" "Table 2J" 4 16 -"CLSI 2019" "MIC" "B_ANRSL" "FOX" "Table 2J" 16 64 -"CLSI 2019" "MIC" "B_ANRSL" "IPM" "Table 2J" 4 16 -"CLSI 2019" "MIC" "B_ANRSL" "LTM" "Table 2J" 2 8 -"CLSI 2019" "MIC" "B_ANRSL" "MEM" "Table 2J" 4 16 -"CLSI 2019" "MIC" "B_ANRSL" "MTR" "Table 2J" 8 32 -"CLSI 2019" "MIC" "B_ANRSL" "PEN" "Table 2J" 0.5 2 -"CLSI 2019" "MIC" "B_ANRSL" "PIP" "Table 2J" 32 128 -"CLSI 2019" "MIC" "B_ANRSL" "SAM" "Table 2J" 8 32 -"CLSI 2019" "MIC" "B_ANRSL" "TCC" "Table 2J" 32 128 -"CLSI 2019" "MIC" "B_ANRSL" "TCY" "Table 2J" 4 16 -"CLSI 2019" "MIC" "B_ANRSL" "TZP" "Table 2J" 16 128 -"CLSI 2019" "MIC" "B_BCLLS" "AMK" "M45 Table 4" 16 64 -"CLSI 2019" "MIC" "B_BCLLS" "AMP" "M45 Table 4" 0.25 0.5 -"CLSI 2019" "MIC" "B_BCLLS" "CHL" "M45 Table 4" 8 32 -"CLSI 2019" "MIC" "B_BCLLS" "CIP" "M45 Table 4" 1 4 -"CLSI 2019" "MIC" "B_BCLLS" "CLI" "M45 Table 4" 0.5 4 -"CLSI 2019" "MIC" "B_BCLLS" "ERY" "M45 Table 4" 0.5 8 -"CLSI 2019" "MIC" "B_BCLLS" "GEN" "M45 Table 4" 4 16 -"CLSI 2019" "MIC" "B_BCLLS" "IPM" "M45 Table 4" 4 16 -"CLSI 2019" "MIC" "B_BCLLS" "LVX" "M45 Table 4" 2 8 -"CLSI 2019" "MIC" "B_BCLLS" "MEM" "M45 Table 4" 4 16 -"CLSI 2019" "MIC" "B_BCLLS" "PEN" "M45 Table 4" 0.125 0.25 -"CLSI 2019" "MIC" "B_BCLLS" "RIF" "M45 Table 4" 1 4 -"CLSI 2019" "MIC" "B_BCLLS" "SXT" "M45 Table 4" 2 4 -"CLSI 2019" "MIC" "B_BCLLS" "TCY" "M45 Table 4" 4 16 -"CLSI 2019" "MIC" "B_BCLLS" "VAN" "M45 Table 4" 4 -"CLSI 2019" "MIC" "B_BCLLS_ANTH" "AMX" "M45 Table 21" 0.125 0.25 -"CLSI 2019" "MIC" "B_BCLLS_ANTH" "CIP" "M45 Table 21" 0.25 -"CLSI 2019" "MIC" "B_BCLLS_ANTH" "DOX" "M45 Table 21" 1 -"CLSI 2019" "MIC" "B_BCLLS_ANTH" "LVX" "M45 Table 21" 0.25 -"CLSI 2019" "MIC" "B_BCLLS_ANTH" "PEN" "M45 Table 21" 0.5 1 -"CLSI 2019" "MIC" "B_BRCLL" "DOX" "M45 Table 21" 1 -"CLSI 2019" "MIC" "B_BRCLL" "GEN" "M45 Table 21" 4 -"CLSI 2019" "MIC" "B_BRCLL" "STR" "M45 Table 21" 8 -"CLSI 2019" "MIC" "B_BRCLL" "SXT" "M45 Table 21" 2 -"CLSI 2019" "MIC" "B_BRCLL" "TCY" "M45 Table 21" 1 -"CLSI 2019" "MIC" "Respiratory" "B_BRDTL_PTCA" "AMP" "VET08 Table 2F" 0.5 2 -"CLSI 2019" "MIC" "Respiratory" "B_BRDTL_PTCA" "FLR" "VET08 Table 2F" 2 8 -"CLSI 2019" "MIC" "Respiratory" "B_BRDTL_PTCA" "TIP" "VET08 Table 2F" 8 -"CLSI 2019" "MIC" "Respiratory" "B_BRDTL_PTCA" "TUL" "VET08 Table 2F" 16 64 -"CLSI 2019" "MIC" "B_BRKHL_CEPC" "CAZ" "Table 2B-3" 8 32 -"CLSI 2019" "MIC" "B_BRKHL_CEPC" "CAZ" "Table 2B-3" 8 32 -"CLSI 2019" "MIC" "B_BRKHL_CEPC" "CHL" "Table 2B-3" 8 32 -"CLSI 2019" "MIC" "B_BRKHL_CEPC" "CHL" "Table 2B-3" 8 32 -"CLSI 2019" "MIC" "B_BRKHL_CEPC" "LVX" "Table 2B-3" 2 8 -"CLSI 2019" "MIC" "B_BRKHL_CEPC" "LVX" "Table 2B-3" 2 8 -"CLSI 2019" "MIC" "B_BRKHL_CEPC" "MEM" "Table 2B-3" 4 16 -"CLSI 2019" "MIC" "B_BRKHL_CEPC" "MEM" "Table 2B-3" 4 16 -"CLSI 2019" "MIC" "B_BRKHL_CEPC" "MNO" "Table 2B-3" 4 16 -"CLSI 2019" "MIC" "B_BRKHL_CEPC" "MNO" "Table 2B-3" 4 16 -"CLSI 2019" "MIC" "B_BRKHL_CEPC" "SXT" "Table 2B-3" 2 4 -"CLSI 2019" "MIC" "B_BRKHL_CEPC" "SXT" "Table 2B-3" 2 4 -"CLSI 2019" "MIC" "B_BRKHL_CEPC" "TCC" "Table 2B-3" 16 128 -"CLSI 2019" "MIC" "B_BRKHL_CEPC" "TCC" "Table 2B-3" 16 128 -"CLSI 2019" "MIC" "B_BRKHL_MALL" "CAZ" "M45 Table 21" 8 32 -"CLSI 2019" "MIC" "B_BRKHL_MALL" "DOX" "M45 Table 21" 4 16 -"CLSI 2019" "MIC" "B_BRKHL_MALL" "IPM" "M45 Table 21" 4 16 -"CLSI 2019" "MIC" "B_BRKHL_MALL" "TCY" "M45 Table 21" 4 16 -"CLSI 2019" "MIC" "B_BRKHL_PSDM" "AMC" "M45 Table 21" 8 32 -"CLSI 2019" "MIC" "B_BRKHL_PSDM" "CAZ" "M45 Table 21" 8 32 -"CLSI 2019" "MIC" "B_BRKHL_PSDM" "DOX" "M45 Table 21" 4 16 -"CLSI 2019" "MIC" "B_BRKHL_PSDM" "IPM" "M45 Table 21" 4 16 -"CLSI 2019" "MIC" "B_BRKHL_PSDM" "SXT" "M45 Table 21" 2 4 -"CLSI 2019" "MIC" "B_BRKHL_PSDM" "TCY" "M45 Table 21" 4 16 -"CLSI 2019" "MIC" "B_CMPYL" "CIP" "M45 Table 5" 1 4 -"CLSI 2019" "MIC" "B_CMPYL" "DOX" "M45 Table 5" 2 8 -"CLSI 2019" "MIC" "B_CMPYL" "ERY" "M45 Table 5" 8 32 -"CLSI 2019" "MIC" "B_CMPYL" "TCY" "M45 Table 5" 4 16 -"CLSI 2019" "MIC" "B_CRDBC" "AMC" "M45 Table 9" 4 8 -"CLSI 2019" "MIC" "B_CRDBC" "AMP" "M45 Table 9" 1 4 -"CLSI 2019" "MIC" "B_CRDBC" "AZM" "M45 Table 9" 4 -"CLSI 2019" "MIC" "B_CRDBC" "CHL" "M45 Table 9" 4 16 -"CLSI 2019" "MIC" "B_CRDBC" "CIP" "M45 Table 9" 1 4 -"CLSI 2019" "MIC" "B_CRDBC" "CLR" "M45 Table 9" 8 32 -"CLSI 2019" "MIC" "B_CRDBC" "CRO" "M45 Table 9" 2 -"CLSI 2019" "MIC" "B_CRDBC" "CTX" "M45 Table 9" 2 -"CLSI 2019" "MIC" "B_CRDBC" "IPM" "M45 Table 9" 0.5 2 -"CLSI 2019" "MIC" "B_CRDBC" "LVX" "M45 Table 9" 2 8 -"CLSI 2019" "MIC" "B_CRDBC" "MEM" "M45 Table 9" 0.5 2 -"CLSI 2019" "MIC" "B_CRDBC" "PEN" "M45 Table 9" 1 4 -"CLSI 2019" "MIC" "B_CRDBC" "RIF" "M45 Table 9" 1 4 -"CLSI 2019" "MIC" "B_CRDBC" "SAM" "M45 Table 9" 2 4 -"CLSI 2019" "MIC" "B_CRDBC" "SXT" "M45 Table 9" 0.5 4 -"CLSI 2019" "MIC" "B_CRDBC" "TCY" "M45 Table 9" 2 8 -"CLSI 2019" "MIC" "B_EKNLL_CRRD" "AMC" "M45 Table 9" 4 8 -"CLSI 2019" "MIC" "B_EKNLL_CRRD" "AMP" "M45 Table 9" 1 4 -"CLSI 2019" "MIC" "B_EKNLL_CRRD" "AZM" "M45 Table 9" 4 -"CLSI 2019" "MIC" "B_EKNLL_CRRD" "CHL" "M45 Table 9" 4 16 -"CLSI 2019" "MIC" "B_EKNLL_CRRD" "CIP" "M45 Table 9" 1 4 -"CLSI 2019" "MIC" "B_EKNLL_CRRD" "CLR" "M45 Table 9" 8 32 -"CLSI 2019" "MIC" "B_EKNLL_CRRD" "CRO" "M45 Table 9" 2 -"CLSI 2019" "MIC" "B_EKNLL_CRRD" "CTX" "M45 Table 9" 2 -"CLSI 2019" "MIC" "B_EKNLL_CRRD" "IPM" "M45 Table 9" 0.5 2 -"CLSI 2019" "MIC" "B_EKNLL_CRRD" "LVX" "M45 Table 9" 2 8 -"CLSI 2019" "MIC" "B_EKNLL_CRRD" "MEM" "M45 Table 9" 0.5 2 -"CLSI 2019" "MIC" "B_EKNLL_CRRD" "PEN" "M45 Table 9" 1 4 -"CLSI 2019" "MIC" "B_EKNLL_CRRD" "RIF" "M45 Table 9" 1 4 -"CLSI 2019" "MIC" "B_EKNLL_CRRD" "SAM" "M45 Table 9" 2 4 -"CLSI 2019" "MIC" "B_EKNLL_CRRD" "SXT" "M45 Table 9" 0.5 4 -"CLSI 2019" "MIC" "B_EKNLL_CRRD" "TCY" "M45 Table 9" 2 8 -"CLSI 2019" "MIC" "B_ENTRC" "AMP" "Table 2D" 8 16 -"CLSI 2019" "MIC" "B_ENTRC" "CHL" "Table 2D" 8 32 -"CLSI 2019" "MIC" "B_ENTRC" "CIP" "Table 2D" 1 4 -"CLSI 2019" "MIC" "B_ENTRC" "DAP" "Table 2D" 2 8 -"CLSI 2019" "MIC" "B_ENTRC" "DOX" "Table 2D" 4 16 -"CLSI 2019" "MIC" "B_ENTRC" "ERY" "Table 2D" 0.5 8 -"CLSI 2019" "MIC" "B_ENTRC" "FOS" "Table 2D" 64 256 -"CLSI 2019" "MIC" "B_ENTRC" "GAT" "Table 2D" 2 8 -"CLSI 2019" "MIC" "B_ENTRC" "GEH" "Table 2D" 512 512 -"CLSI 2019" "MIC" "B_ENTRC" "GEN" "Table 2D" 512 512 -"CLSI 2019" "MIC" "B_ENTRC" "LNZ" "Table 2D" 2 8 -"CLSI 2019" "MIC" "B_ENTRC" "LVX" "Table 2D" 2 8 -"CLSI 2019" "MIC" "B_ENTRC" "MNO" "Table 2D" 4 16 -"CLSI 2019" "MIC" "B_ENTRC" "NIT" "Table 2D" 32 128 -"CLSI 2019" "MIC" "B_ENTRC" "ORI" "Table 2D" 0.125 -"CLSI 2019" "MIC" "B_ENTRC" "PEN" "Table 2D" 8 16 -"CLSI 2019" "MIC" "B_ENTRC" "QDA" "Table 2D" 1 4 -"CLSI 2019" "MIC" "B_ENTRC" "RIF" "Table 2D" 1 4 -"CLSI 2019" "MIC" "B_ENTRC" "STH" "Table 2D" 1024 1024 -"CLSI 2019" "MIC" "B_ENTRC" "STR" "Table 2D" 1024 1024 -"CLSI 2019" "MIC" "B_ENTRC" "TCY" "Table 2D" 4 16 -"CLSI 2019" "MIC" "B_ENTRC" "TEC" "Table 2D" 8 32 -"CLSI 2019" "MIC" "B_ENTRC" "TLV" "Table 2D" 0.125 -"CLSI 2019" "MIC" "B_ENTRC" "TZD" "Table 2D" 0.5 -"CLSI 2019" "MIC" "B_ENTRC" "VAN" "Table 2D" 4 32 -"CLSI 2019" "MIC" "B_ENTRC_FACM" "DAP" "Table 2D" 4 8 -"CLSI 2019" "MIC" "B_ENTRC_FCLS" "DAL" "Table 2D" 0.25 -"CLSI 2019" "MIC" "Skin, soft tissue" "B_ESCHR_COLI" "AMC" "VET08 Table 2A" 0.25 1 -"CLSI 2019" "MIC" "UTI" "B_ESCHR_COLI" "AMC" "VET08 Table 2A" 8 -"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "B_ESCHR_COLI" "AMC" "VET08 Table 2A" 0.25 1 -"CLSI 2019" "MIC" "B_ESCHR_COLI" "AMK" "VET08 Table 2A" 4 16 -"CLSI 2019" "MIC" "B_ESCHR_COLI" "AMK" "VET08 Table 2A" 2 8 -"CLSI 2019" "MIC" "B_ESCHR_COLI" "AMK" "VET08 Table 2A" 4 16 -"CLSI 2019" "MIC" "Skin, soft tissue" "B_ESCHR_COLI" "AMP" "VET08 Table 2A" 0.25 1 -"CLSI 2019" "MIC" "UTI" "B_ESCHR_COLI" "AMP" "VET08 Table 2A" 8 -"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "B_ESCHR_COLI" "AMP" "VET08 Table 2A" 0.25 1 -"CLSI 2019" "MIC" "Metritis" "B_ESCHR_COLI" "AMP" "VET08 Table 2A" 0.25 1 -"CLSI 2019" "MIC" "UTI" "B_ESCHR_COLI" "CPD" "VET08 Table 2A" 2 8 -"CLSI 2019" "MIC" "Respiratory, genital" "B_ESCHR_COLI" "CZO" "VET08 Table 2A" 2 8 -"CLSI 2019" "MIC" "Skin, soft tissue" "B_ESCHR_COLI" "CZO" "VET08 Table 2A" 2 8 -"CLSI 2019" "MIC" "UTI" "B_ESCHR_COLI" "CZO" "VET08 Table 2A" 16 32 -"CLSI 2019" "MIC" "B_ESCHR_COLI" "DOX" "VET08 Table 2A" 0.125 0.5 -"CLSI 2019" "MIC" "Skin, soft tissue, respiratory" "B_ESCHR_COLI" "ENR" "VET08 Table 2A" 0.125 0.5 -"CLSI 2019" "MIC" "B_ESCHR_COLI" "ENR" "VET08 Table 2A" 0.25 2 -"CLSI 2019" "MIC" "B_ESCHR_COLI" "FOS" "Table 2A" 64 256 -"CLSI 2019" "MIC" "B_ESCHR_COLI" "FOS" "Table 2A" 64 256 -"CLSI 2019" "MIC" "UTI" "B_ESCHR_COLI" "FOV" "VET08 Table 2A" 2 8 -"CLSI 2019" "MIC" "UTI" "B_ESCHR_COLI" "FOV" "VET08 Table 2A" 2 8 -"CLSI 2019" "MIC" "Skin, soft tissue" "B_ESCHR_COLI" "LEX" "VET08 Table 2A" 2 8 -"CLSI 2019" "MIC" "UTI" "B_ESCHR_COLI" "LEX" "VET08 Table 2A" 16 32 -"CLSI 2019" "MIC" "Respiratory, skin, soft tissue" "B_ESCHR_COLI" "MNO" "VET08 Table 2A" 0.125 0.5 -"CLSI 2019" "MIC" "Skin, UTI" "B_ESCHR_COLI" "PRA" "VET08 Table 2A" 0.25 2 -"CLSI 2019" "MIC" "Skin, respiratory" "B_ESCHR_COLI" "PRA" "VET08 Table 2A" 0.25 2 -"CLSI 2019" "MIC" "Mastitis" "B_ESCHR_COLI" "TIO" "VET08 Table 2A" 2 8 -"CLSI 2019" "MIC" "B_FRNCS_TLRN" "CHL" "M45 Table 21" 8 -"CLSI 2019" "MIC" "B_FRNCS_TLRN" "CIP" "M45 Table 21" 0.5 -"CLSI 2019" "MIC" "B_FRNCS_TLRN" "DOX" "M45 Table 21" 4 -"CLSI 2019" "MIC" "B_FRNCS_TLRN" "GEN" "M45 Table 21" 4 -"CLSI 2019" "MIC" "B_FRNCS_TLRN" "LVX" "M45 Table 21" 0.5 -"CLSI 2019" "MIC" "B_FRNCS_TLRN" "STR" "M45 Table 21" 8 -"CLSI 2019" "MIC" "B_FRNCS_TLRN" "TCY" "M45 Table 21" 4 -"CLSI 2019" "MIC" "B_GEMLL" "CLI" "M45 Table 8" 0.25 1 -"CLSI 2019" "MIC" "B_GEMLL" "CRO" "M45 Table 8" 1 4 -"CLSI 2019" "MIC" "B_GEMLL" "CTX" "M45 Table 8" 1 4 -"CLSI 2019" "MIC" "B_GEMLL" "ERY" "M45 Table 8" 0.25 1 -"CLSI 2019" "MIC" "B_GEMLL" "LVX" "M45 Table 8" 2 8 -"CLSI 2019" "MIC" "B_GEMLL" "MEM" "M45 Table 8" 0.5 2 -"CLSI 2019" "MIC" "B_GEMLL" "PEN" "M45 Table 8" 0.125 4 -"CLSI 2019" "MIC" "B_GEMLL" "VAN" "M45 Table 8" 1 -"CLSI 2019" "MIC" "B_GRNLC" "AMP" "M45 Table 1" 0.25 8 -"CLSI 2019" "MIC" "B_GRNLC" "CHL" "M45 Table 1" 4 8 -"CLSI 2019" "MIC" "B_GRNLC" "CIP" "M45 Table 1" 1 4 -"CLSI 2019" "MIC" "B_GRNLC" "CLI" "M45 Table 1" 0.25 1 -"CLSI 2019" "MIC" "B_GRNLC" "CRO" "M45 Table 1" 1 4 -"CLSI 2019" "MIC" "B_GRNLC" "CTX" "M45 Table 1" 1 4 -"CLSI 2019" "MIC" "B_GRNLC" "ERY" "M45 Table 1" 0.25 1 -"CLSI 2019" "MIC" "B_GRNLC" "FEP" "M45 Table 1" 1 4 -"CLSI 2019" "MIC" "B_GRNLC" "IPM" "M45 Table 1" 0.5 2 -"CLSI 2019" "MIC" "B_GRNLC" "LVX" "M45 Table 1" 2 8 -"CLSI 2019" "MIC" "B_GRNLC" "MEM" "M45 Table 1" 0.5 2 -"CLSI 2019" "MIC" "B_GRNLC" "PEN" "M45 Table 1" 0.125 4 -"CLSI 2019" "MIC" "B_GRNLC" "VAN" "M45 Table 1" 1 -"CLSI 2019" "MIC" "B_HLCBCT_PYLR" "CLR" "M45 Table 10" 0.25 1 -"CLSI 2019" "MIC" "B_HMPHL" "AMC" "Table 2E" 4 8 -"CLSI 2019" "MIC" "B_HMPHL" "AMP" "Table 2E" 1 4 -"CLSI 2019" "MIC" "B_HMPHL" "ATM" "Table 2E" 2 -"CLSI 2019" "MIC" "B_HMPHL" "AZM" "Table 2E" 4 -"CLSI 2019" "MIC" "B_HMPHL" "CAT" "Table 2E" 4 16 -"CLSI 2019" "MIC" "B_HMPHL" "CAZ" "Table 2E" 2 -"CLSI 2019" "MIC" "B_HMPHL" "CDR" "Table 2E" 1 -"CLSI 2019" "MIC" "B_HMPHL" "CEC" "Table 2E" 8 32 -"CLSI 2019" "MIC" "B_HMPHL" "CFM" "Table 2E" 1 -"CLSI 2019" "MIC" "B_HMPHL" "CHL" "Table 2E" 2 8 -"CLSI 2019" "MIC" "B_HMPHL" "CID" "Table 2E" 4 16 -"CLSI 2019" "MIC" "B_HMPHL" "CIP" "Table 2E" 1 -"CLSI 2019" "MIC" "B_HMPHL" "CLR" "Table 2E" 8 32 -"CLSI 2019" "MIC" "B_HMPHL" "CPD" "Table 2E" 2 -"CLSI 2019" "MIC" "B_HMPHL" "CPR" "Table 2E" 8 32 -"CLSI 2019" "MIC" "B_HMPHL" "CRO" "Table 2E" 2 -"CLSI 2019" "MIC" "B_HMPHL" "CTB" "Table 2E" 2 -"CLSI 2019" "MIC" "B_HMPHL" "CTX" "Table 2E" 2 -"CLSI 2019" "MIC" "B_HMPHL" "CXA" "Table 2E" 4 16 -"CLSI 2019" "MIC" "Oral" "B_HMPHL" "CXM" "Table 2E" 4 16 -"CLSI 2019" "MIC" "B_HMPHL" "CXM" "Table 2E" 4 16 -"CLSI 2019" "MIC" "B_HMPHL" "CZX" "Table 2E" 2 -"CLSI 2019" "MIC" "B_HMPHL" "DOR" "Table 2E" 1 -"CLSI 2019" "MIC" "B_HMPHL" "ETP" "Table 2E" 0.5 -"CLSI 2019" "MIC" "B_HMPHL" "FEP" "Table 2E" 2 -"CLSI 2019" "MIC" "B_HMPHL" "FLE" "Table 2E" 2 -"CLSI 2019" "MIC" "B_HMPHL" "GAT" "Table 2E" 1 -"CLSI 2019" "MIC" "B_HMPHL" "GEM" "Table 2E" 0.125 -"CLSI 2019" "MIC" "B_HMPHL" "GRX" "Table 2E" 0.5 -"CLSI 2019" "MIC" "B_HMPHL" "IPM" "Table 2E" 4 -"CLSI 2019" "MIC" "B_HMPHL" "LOM" "Table 2E" 2 -"CLSI 2019" "MIC" "B_HMPHL" "LOR" "Table 2E" 8 32 -"CLSI 2019" "MIC" "B_HMPHL" "LVX" "Table 2E" 2 -"CLSI 2019" "MIC" "B_HMPHL" "MAN" "Table 2E" 4 16 -"CLSI 2019" "MIC" "B_HMPHL" "MEM" "Table 2E" 0.5 -"CLSI 2019" "MIC" "B_HMPHL" "MFX" "Table 2E" 1 -"CLSI 2019" "MIC" "B_HMPHL" "OFX" "Table 2E" 2 -"CLSI 2019" "MIC" "B_HMPHL" "RIF" "Table 2E" 1 4 -"CLSI 2019" "MIC" "B_HMPHL" "SAM" "Table 2E" 2 4 -"CLSI 2019" "MIC" "B_HMPHL" "SPX" "Table 2E" 0.25 -"CLSI 2019" "MIC" "B_HMPHL" "SXT" "Table 2E" 0.5 4 -"CLSI 2019" "MIC" "B_HMPHL" "TCY" "Table 2E" 2 8 -"CLSI 2019" "MIC" "B_HMPHL" "TVA" "Table 2E" 1 -"CLSI 2019" "MIC" "B_HMPHL" "TZP" "Table 2E" 1 2 -"CLSI 2019" "MIC" "B_HMPHL_INFL" "CPT" "Table 2E" 0.5 -"CLSI 2019" "MIC" "Respiratory" "B_HSTPH_SOMN" "AMP" "VET08 Table 2J" 0.032 0.25 -"CLSI 2019" "MIC" "B_HSTPH_SOMN" "ENR" "Vet Table" 0.25 2 -"CLSI 2019" "MIC" "Respiratory" "B_HSTPH_SOMN" "ENR" "VET08 Table 2J" 0.25 2 -"CLSI 2019" "MIC" "Respiratory" "B_HSTPH_SOMN" "FLR" "VET08 Table 2J" 2 8 -"CLSI 2019" "MIC" "Respiratory" "B_HSTPH_SOMN" "GAM" "VET08 Table 2J" 4 16 -"CLSI 2019" "MIC" "Respiratory" "B_HSTPH_SOMN" "PEN" "VET08 Table 2J" 0.25 1 -"CLSI 2019" "MIC" "Respiratory" "B_HSTPH_SOMN" "SPT" "VET08 Table 2J" 32 128 -"CLSI 2019" "MIC" "Respiratory" "B_HSTPH_SOMN" "TCY" "VET08 Table 2J" 2 8 -"CLSI 2019" "MIC" "Respiratory" "B_HSTPH_SOMN" "TIO" "VET08 Table 2J" 2 8 -"CLSI 2019" "MIC" "Respiratory" "B_HSTPH_SOMN" "TIP" "VET08 Table 2J" 8 32 -"CLSI 2019" "MIC" "Respiratory" "B_HSTPH_SOMN" "TUL" "VET08 Table 2J" 16 64 -"CLSI 2019" "MIC" "B_KGLLA" "AMC" "M45 Table 9" 4 8 -"CLSI 2019" "MIC" "B_KGLLA" "AMP" "M45 Table 9" 1 4 -"CLSI 2019" "MIC" "B_KGLLA" "AZM" "M45 Table 9" 4 -"CLSI 2019" "MIC" "B_KGLLA" "CHL" "M45 Table 9" 4 16 -"CLSI 2019" "MIC" "B_KGLLA" "CIP" "M45 Table 9" 1 4 -"CLSI 2019" "MIC" "B_KGLLA" "CLR" "M45 Table 9" 8 32 -"CLSI 2019" "MIC" "B_KGLLA" "CRO" "M45 Table 9" 2 -"CLSI 2019" "MIC" "B_KGLLA" "CTX" "M45 Table 9" 2 -"CLSI 2019" "MIC" "B_KGLLA" "IPM" "M45 Table 9" 0.5 2 -"CLSI 2019" "MIC" "B_KGLLA" "LVX" "M45 Table 9" 2 8 -"CLSI 2019" "MIC" "B_KGLLA" "MEM" "M45 Table 9" 0.5 2 -"CLSI 2019" "MIC" "B_KGLLA" "PEN" "M45 Table 9" 1 4 -"CLSI 2019" "MIC" "B_KGLLA" "RIF" "M45 Table 9" 1 4 -"CLSI 2019" "MIC" "B_KGLLA" "SAM" "M45 Table 9" 2 4 -"CLSI 2019" "MIC" "B_KGLLA" "SXT" "M45 Table 9" 0.5 4 -"CLSI 2019" "MIC" "B_KGLLA" "TCY" "M45 Table 9" 2 8 -"CLSI 2019" "MIC" "UTI" "B_KLBSL_PNMN" "CZO" "VET08 Table 2A" 16 32 -"CLSI 2019" "MIC" "UTI" "B_KLBSL_PNMN" "LEX" "VET08 Table 2A" 16 32 -"CLSI 2019" "MIC" "B_LCNST" "AMP" "M45 Table 13" 8 -"CLSI 2019" "MIC" "B_LCNST" "CHL" "M45 Table 13" 8 32 -"CLSI 2019" "MIC" "B_LCNST" "MNO" "M45 Table 13" 4 16 -"CLSI 2019" "MIC" "B_LCNST" "PEN" "M45 Table 13" 8 -"CLSI 2019" "MIC" "B_LCTBC" "AMP" "M45 Table 11" 8 -"CLSI 2019" "MIC" "B_LCTBC" "CLI" "M45 Table 11" 0.5 2 -"CLSI 2019" "MIC" "B_LCTBC" "DAP" "M45 Table 11" 4 -"CLSI 2019" "MIC" "B_LCTBC" "ERY" "M45 Table 11" 0.5 8 -"CLSI 2019" "MIC" "B_LCTBC" "GEN" "M45 Table 11" 4 16 -"CLSI 2019" "MIC" "B_LCTBC" "IPM" "M45 Table 11" 0.5 2 -"CLSI 2019" "MIC" "B_LCTBC" "LNZ" "M45 Table 11" 4 -"CLSI 2019" "MIC" "B_LCTBC" "MEM" "M45 Table 11" 1 4 -"CLSI 2019" "MIC" "B_LCTBC" "PEN" "M45 Table 11" 8 -"CLSI 2019" "MIC" "B_LCTBC" "VAN" "M45 Table 11" 2 16 -"CLSI 2019" "MIC" "B_LCTCC" "AMP" "M45 Table 12" 1 4 -"CLSI 2019" "MIC" "B_LCTCC" "CLI" "M45 Table 12" 0.5 4 -"CLSI 2019" "MIC" "B_LCTCC" "CRO" "M45 Table 12" 1 4 -"CLSI 2019" "MIC" "B_LCTCC" "ERY" "M45 Table 12" 0.5 8 -"CLSI 2019" "MIC" "B_LCTCC" "LVX" "M45 Table 12" 2 8 -"CLSI 2019" "MIC" "B_LCTCC" "MEM" "M45 Table 12" 0.25 1 -"CLSI 2019" "MIC" "B_LCTCC" "PEN" "M45 Table 12" 1 4 -"CLSI 2019" "MIC" "B_LCTCC" "SXT" "M45 Table 12" 2 4 -"CLSI 2019" "MIC" "B_LCTCC" "TCY" "M45 Table 12" 2 8 -"CLSI 2019" "MIC" "B_LCTCC" "VAN" "M45 Table 12" 2 4 -"CLSI 2019" "MIC" "B_LISTR_MNCY" "AMP" "M45 Table 14" 2 -"CLSI 2019" "MIC" "B_LISTR_MNCY" "MEM" "M45 Table 14" 0.25 -"CLSI 2019" "MIC" "B_LISTR_MNCY" "PEN" "M45 Table 14" 2 -"CLSI 2019" "MIC" "B_LISTR_MNCY" "SXT" "M45 Table 14" 0.5 -"CLSI 2019" "MIC" "B_MCRCCCS" "CLI" "M45 Table 15" 0.5 4 -"CLSI 2019" "MIC" "B_MCRCCCS" "ERY" "M45 Table 15" 0.5 8 -"CLSI 2019" "MIC" "B_MCRCCCS" "PEN" "M45 Table 15" 0.125 0.25 -"CLSI 2019" "MIC" "B_MCRCCCS" "VAN" "M45 Table 15" 2 -"CLSI 2019" "MIC" "Respiratory" "B_MNNHM_HMLY" "AMP" "VET08 Table 2G" 0.032 0.25 -"CLSI 2019" "MIC" "Respiratory" "B_MNNHM_HMLY" "DAN" "VET08 Table 2G" 0.25 1 -"CLSI 2019" "MIC" "Respiratory" "B_MNNHM_HMLY" "ENR" "VET08 Table 2G" 0.25 2 -"CLSI 2019" "MIC" "Respiratory" "B_MNNHM_HMLY" "FLR" "VET08 Table 2G" 2 8 -"CLSI 2019" "MIC" "Respiratory" "B_MNNHM_HMLY" "GAM" "VET08 Table 2G" 4 16 -"CLSI 2019" "MIC" "Respiratory" "B_MNNHM_HMLY" "PEN" "VET08 Table 2G" 0.25 1 -"CLSI 2019" "MIC" "Respiratory" "B_MNNHM_HMLY" "SPT" "VET08 Table 2G" 32 128 -"CLSI 2019" "MIC" "Respiratory" "B_MNNHM_HMLY" "TCY" "VET08 Table 2G" 2 8 -"CLSI 2019" "MIC" "Respiratory" "B_MNNHM_HMLY" "TIL" "VET08 Table 2G" 8 32 -"CLSI 2019" "MIC" "Respiratory" "B_MNNHM_HMLY" "TIO" "VET08 Table 2G" 2 8 -"CLSI 2019" "MIC" "Respiratory" "B_MNNHM_HMLY" "TIP" "VET08 Table 2G" 4 16 -"CLSI 2019" "MIC" "Respiratory" "B_MNNHM_HMLY" "TUL" "VET08 Table 2G" 16 64 -"CLSI 2019" "MIC" "B_MRXLL_CTRR" "AMC" "M45 Table 16" 4 8 -"CLSI 2019" "MIC" "B_MRXLL_CTRR" "AZM" "M45 Table 16" 0.25 -"CLSI 2019" "MIC" "B_MRXLL_CTRR" "CAZ" "M45 Table 16" 2 -"CLSI 2019" "MIC" "B_MRXLL_CTRR" "CEC" "M45 Table 16" 8 32 -"CLSI 2019" "MIC" "B_MRXLL_CTRR" "CHL" "M45 Table 16" 2 8 -"CLSI 2019" "MIC" "B_MRXLL_CTRR" "CIP" "M45 Table 16" 1 -"CLSI 2019" "MIC" "B_MRXLL_CTRR" "CLI" "M45 Table 16" 0.5 4 -"CLSI 2019" "MIC" "B_MRXLL_CTRR" "CLR" "M45 Table 16" 1 -"CLSI 2019" "MIC" "B_MRXLL_CTRR" "CRO" "M45 Table 16" 2 -"CLSI 2019" "MIC" "B_MRXLL_CTRR" "CTX" "M45 Table 16" 2 -"CLSI 2019" "MIC" "Oral" "B_MRXLL_CTRR" "CXM" "M45 Table 16" 4 16 -"CLSI 2019" "MIC" "B_MRXLL_CTRR" "ERY" "M45 Table 16" 2 -"CLSI 2019" "MIC" "B_MRXLL_CTRR" "LVX" "M45 Table 16" 2 -"CLSI 2019" "MIC" "B_MRXLL_CTRR" "RIF" "M45 Table 16" 1 4 -"CLSI 2019" "MIC" "B_MRXLL_CTRR" "SXT" "M45 Table 16" 0.5 4 -"CLSI 2019" "MIC" "B_MRXLL_CTRR" "TCY" "M45 Table 16" 2 8 -"CLSI 2019" "MIC" "B_NESSR_GNRR" "AZM" "Table 2F" 1 -"CLSI 2019" "MIC" "B_NESSR_GNRR" "CFM" "Table 2F" 0.25 -"CLSI 2019" "MIC" "B_NESSR_GNRR" "CIP" "Table 2F" 0.064 1 -"CLSI 2019" "MIC" "B_NESSR_GNRR" "CPD" "Table 2F" 0.5 -"CLSI 2019" "MIC" "B_NESSR_GNRR" "CRO" "Table 2F" 0.25 -"CLSI 2019" "MIC" "B_NESSR_GNRR" "CTT" "Table 2F" 2 8 -"CLSI 2019" "MIC" "B_NESSR_GNRR" "CTX" "Table 2F" 0.5 -"CLSI 2019" "MIC" "B_NESSR_GNRR" "CZX" "Table 2F" 0.5 -"CLSI 2019" "MIC" "B_NESSR_GNRR" "FEP" "Table 2F" 0.5 -"CLSI 2019" "MIC" "B_NESSR_GNRR" "FOX" "Table 2F" 2 8 -"CLSI 2019" "MIC" "B_NESSR_GNRR" "GAT" "Table 2F" 0.125 0.5 -"CLSI 2019" "MIC" "B_NESSR_GNRR" "GRX" "Table 2F" 0.064 1 -"CLSI 2019" "MIC" "B_NESSR_GNRR" "PEN" "Table 2F" 0.064 2 -"CLSI 2019" "MIC" "B_NESSR_GNRR" "SPT" "Table 2F" 32 128 -"CLSI 2019" "MIC" "B_NESSR_GNRR" "TCY" "Table 2F" 0.25 2 -"CLSI 2019" "MIC" "B_NESSR_GNRR" "TVA" "Table 2F" 0.25 -"CLSI 2019" "MIC" "B_NESSR_MNNG" "AMP" "Table 2I" 0.125 2 -"CLSI 2019" "MIC" "B_NESSR_MNNG" "AZM" "Table 2I" 2 -"CLSI 2019" "MIC" "B_NESSR_MNNG" "CHL" "Table 2I" 2 8 -"CLSI 2019" "MIC" "B_NESSR_MNNG" "CIP" "Table 2I" 0.032 0.12 -"CLSI 2019" "MIC" "B_NESSR_MNNG" "CRO" "Table 2I" 0.125 -"CLSI 2019" "MIC" "B_NESSR_MNNG" "CTX" "Table 2I" 0.125 -"CLSI 2019" "MIC" "B_NESSR_MNNG" "LVX" "Table 2I" 0.032 0.12 -"CLSI 2019" "MIC" "B_NESSR_MNNG" "MEM" "Table 2I" 0.25 -"CLSI 2019" "MIC" "B_NESSR_MNNG" "MNO" "Table 2I" 2 -"CLSI 2019" "MIC" "B_NESSR_MNNG" "NAL" "Table 2I" 4 8 -"CLSI 2019" "MIC" "B_NESSR_MNNG" "PEN" "Table 2I" 0.064 0.5 -"CLSI 2019" "MIC" "B_NESSR_MNNG" "RIF" "Table 2I" 0.5 2 -"CLSI 2019" "MIC" "B_NESSR_MNNG" "SMX" "Table 2I" 2 8 -"CLSI 2019" "MIC" "B_NESSR_MNNG" "SOX" "Table 2I" 2 8 -"CLSI 2019" "MIC" "B_NESSR_MNNG" "SSS" "Table 2I" 2 8 -"CLSI 2019" "MIC" "B_NESSR_MNNG" "SXT" "Table 2I" 0.125 0.5 -"CLSI 2019" "MIC" "B_PDCCC" "AMP" "M45 Table 18" 8 -"CLSI 2019" "MIC" "B_PDCCC" "CHL" "M45 Table 18" 8 32 -"CLSI 2019" "MIC" "B_PDCCC" "IPM" "M45 Table 18" 0.5 -"CLSI 2019" "MIC" "B_PDCCC" "PEN" "M45 Table 18" 8 -"CLSI 2019" "MIC" "UTI" "B_PROTS_MRBL" "CPD" "VET08 Table 2A" 2 8 -"CLSI 2019" "MIC" "UTI" "B_PROTS_MRBL" "CZO" "VET08 Table 2A" 16 32 -"CLSI 2019" "MIC" "UTI" "B_PROTS_MRBL" "FOV" "VET08 Table 2A" 2 8 -"CLSI 2019" "MIC" "UTI" "B_PROTS_MRBL" "LEX" "VET08 Table 2A" 16 32 -"CLSI 2019" "MIC" "B_PRPNB" "VAN" "Table 2J-2" 2 4 -"CLSI 2019" "MIC" "B_PSDMN" "ETP" -"CLSI 2019" "MIC" "B_PSDMN_AERG" "AMK" "Table 2B-1" 16 64 -"CLSI 2019" "MIC" "B_PSDMN_AERG" "AMK" "VET08 Table 2B" 4 16 -"CLSI 2019" "MIC" "B_PSDMN_AERG" "AMK" "VET08 Table 2B" 2 8 -"CLSI 2019" "MIC" "B_PSDMN_AERG" "AMK" "VET08 Table 2B" 4 16 -"CLSI 2019" "MIC" "B_PSDMN_AERG" "ATM" "Table 2B-1" 8 32 -"CLSI 2019" "MIC" "B_PSDMN_AERG" "CAZ" "Table 2B-1" 8 32 -"CLSI 2019" "MIC" "B_PSDMN_AERG" "CIP" "Table 2B-1" 0.5 2 -"CLSI 2019" "MIC" "B_PSDMN_AERG" "COL" "Table 2B-1" 2 4 -"CLSI 2019" "MIC" "B_PSDMN_AERG" "CZA" "Table 2B-1" 8 16 -"CLSI 2019" "MIC" "B_PSDMN_AERG" "CZT" "Table 2B-1" 4 16 -"CLSI 2019" "MIC" "B_PSDMN_AERG" "DOR" "Table 2B-1" 2 8 -"CLSI 2019" "MIC" "Skin, soft tissue" "B_PSDMN_AERG" "ENR" "VET08 Table 2B" 0.5 4 -"CLSI 2019" "MIC" "Skin, soft tissue, respiratory" "B_PSDMN_AERG" "ENR" "VET08 Table 2B" 0.125 0.5 -"CLSI 2019" "MIC" "B_PSDMN_AERG" "FDC" "Table 2B-1" 4 16 -"CLSI 2019" "MIC" "B_PSDMN_AERG" "FEP" "Table 2B-1" 8 32 -"CLSI 2019" "MIC" "B_PSDMN_AERG" "GAT" "Table 2B-1" 2 8 -"CLSI 2019" "MIC" "B_PSDMN_AERG" "GEN" "Table 2B-1" 4 16 -"CLSI 2019" "MIC" "B_PSDMN_AERG" "GEN" "VET08 Table 2B" 2 8 -"CLSI 2019" "MIC" "B_PSDMN_AERG" "GEN" "VET08 Table 2B" 2 8 -"CLSI 2019" "MIC" "B_PSDMN_AERG" "IPM" "Table 2B-1" 2 8 -"CLSI 2019" "MIC" "B_PSDMN_AERG" "LOM" "Table 2B-1" 2 8 -"CLSI 2019" "MIC" "B_PSDMN_AERG" "LVX" "Table 2B-1" 1 4 -"CLSI 2019" "MIC" "B_PSDMN_AERG" "MEM" "Table 2B-1" 2 8 -"CLSI 2019" "MIC" "B_PSDMN_AERG" "NET" "Table 2B-1" 8 32 -"CLSI 2019" "MIC" "B_PSDMN_AERG" "OFX" "Table 2B-1" 2 8 -"CLSI 2019" "MIC" "B_PSDMN_AERG" "PIP" "Table 2B-1" 16 128 -"CLSI 2019" "MIC" "B_PSDMN_AERG" "PLB" "Table 2B-1" 2 8 -"CLSI 2019" "MIC" "B_PSDMN_AERG" "TCC" "Table 2B-1" 16 128 -"CLSI 2019" "MIC" "B_PSDMN_AERG" "TOB" "Table 2B-1" 4 16 -"CLSI 2019" "MIC" "B_PSDMN_AERG" "TZP" "Table 2B-1" 16 128 -"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "B_PSDMN_AERG" "TZP" "VET08 Table 2B" 8 32 -"CLSI 2019" "MIC" "B_PSTRL" "AMC" "M45 Table 17" 0.5 -"CLSI 2019" "MIC" "B_PSTRL" "AMP" "M45 Table 17" 0.5 -"CLSI 2019" "MIC" "B_PSTRL" "AMX" "M45 Table 17" 0.5 -"CLSI 2019" "MIC" "B_PSTRL" "AZM" "M45 Table 17" 1 -"CLSI 2019" "MIC" "B_PSTRL" "CHL" "M45 Table 17" 2 -"CLSI 2019" "MIC" "B_PSTRL" "CRO" "M45 Table 17" 0.125 -"CLSI 2019" "MIC" "B_PSTRL" "DOX" "M45 Table 17" 0.5 -"CLSI 2019" "MIC" "B_PSTRL" "ERY" "M45 Table 17" 0.5 2 -"CLSI 2019" "MIC" "B_PSTRL" "LVX" "M45 Table 17" 0.064 -"CLSI 2019" "MIC" "B_PSTRL" "MFX" "M45 Table 17" 0.064 -"CLSI 2019" "MIC" "B_PSTRL" "PEN" "M45 Table 17" 0.5 -"CLSI 2019" "MIC" "B_PSTRL" "SXT" "M45 Table 17" 0.5 -"CLSI 2019" "MIC" "B_PSTRL" "TCY" "M45 Table 17" 1 -"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "B_PSTRL_MLTC" "AMC" "VET08 Table 2H" 0.25 1 -"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "B_PSTRL_MLTC" "AMP" "VET08 Table 2H" 0.25 1 -"CLSI 2019" "MIC" "Respiratory" "B_PSTRL_MLTC" "AMP" "VET08 Table 2H" 0.5 2 -"CLSI 2019" "MIC" "Respiratory" "B_PSTRL_MLTC" "AMP" "VET08 Table 2H" 0.032 0.25 -"CLSI 2019" "MIC" "Wounds, abscesses" "B_PSTRL_MLTC" "CPD" "VET08 Table 2H" 2 8 -"CLSI 2019" "MIC" "Skin, soft tissue, respiratory, urinary/genital" "B_PSTRL_MLTC" "CZO" "VET08 Table 2H" 2 8 -"CLSI 2019" "MIC" "Respiratory" "B_PSTRL_MLTC" "DAN" "VET08 Table 2H" 0.25 1 -"CLSI 2019" "MIC" "Respiratory" "B_PSTRL_MLTC" "ENR" "VET08 Table 2H" 0.25 1 -"CLSI 2019" "MIC" "Respiratory" "B_PSTRL_MLTC" "ENR" "VET08 Table 2H" 0.25 2 -"CLSI 2019" "MIC" "Respiratory" "B_PSTRL_MLTC" "FLR" "VET08 Table 2H" 2 8 -"CLSI 2019" "MIC" "Respiratory" "B_PSTRL_MLTC" "FLR" "VET08 Table 2H" 2 8 -"CLSI 2019" "MIC" "Skin, soft tissue" "B_PSTRL_MLTC" "FOV" "VET08 Table 2H" 0.125 0.5 -"CLSI 2019" "MIC" "Respiratory" "B_PSTRL_MLTC" "GAM" "VET08 Table 2H" 4 16 -"CLSI 2019" "MIC" "B_PSTRL_MLTC" "PEN" "VET08 Table 2H" 0.25 1 -"CLSI 2019" "MIC" "Respiratory" "B_PSTRL_MLTC" "PEN" "VET08 Table 2H" 0.25 1 -"CLSI 2019" "MIC" "Skin, respiratory" "B_PSTRL_MLTC" "PRA" "VET08 Table 2H" 0.25 -"CLSI 2019" "MIC" "Respiratory" "B_PSTRL_MLTC" "SPT" "VET08 Table 2H" 32 128 -"CLSI 2019" "MIC" "Respiratory" "B_PSTRL_MLTC" "TCY" "VET08 Table 2H" 2 8 -"CLSI 2019" "MIC" "Respiratory" "B_PSTRL_MLTC" "TCY" "VET08 Table 2H" 0.5 2 -"CLSI 2019" "MIC" "B_PSTRL_MLTC" "TIL" "Vet Table" 16 32 -"CLSI 2019" "MIC" "Respiratory" "B_PSTRL_MLTC" "TIL" "VET08 Table 2H" 16 32 -"CLSI 2019" "MIC" "Respiratory" "B_PSTRL_MLTC" "TIO" "VET08 Table 2H" 2 8 -"CLSI 2019" "MIC" "Respiratory" "B_PSTRL_MLTC" "TIO" "VET08 Table 2H" 2 8 -"CLSI 2019" "MIC" "Respiratory" "B_PSTRL_MLTC" "TIP" "VET08 Table 2H" 8 32 -"CLSI 2019" "MIC" "Respiratory" "B_PSTRL_MLTC" "TIP" "VET08 Table 2H" 4 -"CLSI 2019" "MIC" "Respiratory" "B_PSTRL_MLTC" "TUL" "VET08 Table 2H" 16 64 -"CLSI 2019" "MIC" "Respiratory" "B_PSTRL_MLTC" "TUL" "VET08 Table 2H" 16 64 -"CLSI 2019" "MIC" "B_ROTHI" "CLI" "M45 Table 19" 0.5 4 -"CLSI 2019" "MIC" "B_ROTHI" "ERY" "M45 Table 19" 0.5 8 -"CLSI 2019" "MIC" "B_ROTHI" "LVX" "M45 Table 19" 1 4 -"CLSI 2019" "MIC" "B_ROTHI" "PEN" "M45 Table 19" 0.125 4 -"CLSI 2019" "MIC" "B_ROTHI" "SXT" "M45 Table 19" 2 4 -"CLSI 2019" "MIC" "B_ROTHI" "VAN" "M45 Table 19" 2 -"CLSI 2019" "MIC" "Extraintestinal" "B_SLMNL" "CIP" "Table 2A" 0.064 1 -"CLSI 2019" "MIC" "B_SLMNL" "CIP" "Table 2A" 0.064 1 -"CLSI 2019" "MIC" "B_SLMNL" "LVX" "Table 2A" 0.125 2 -"CLSI 2019" "MIC" "Extraintestinal" "B_SLMNL" "LVX" "Table 2A" 0.125 2 -"CLSI 2019" "MIC" "B_SLMNL" "OFX" "Table 2A" 0.125 2 -"CLSI 2019" "MIC" "Extraintestinal" "B_SLMNL" "OFX" "Table 2A" 0.125 2 -"CLSI 2019" "MIC" "B_SLMNL_ENTR" "AZM" "Table 2A" 16 32 -"CLSI 2019" "MIC" "Respiratory" "B_SLMNL_ENTR" "FLR" "VET08 Table 2A" 4 16 -"CLSI 2019" "MIC" "B_STNTR_MLTP" "CAZ" "Table 2B-4" 8 32 -"CLSI 2019" "MIC" "B_STNTR_MLTP" "CHL" "Table 2B-4" 8 32 -"CLSI 2019" "MIC" "B_STNTR_MLTP" "FDC" "Table 2B-4" 4 16 -"CLSI 2019" "MIC" "B_STNTR_MLTP" "LVX" "Table 2B-4" 2 8 -"CLSI 2019" "MIC" "B_STNTR_MLTP" "MNO" "Table 2B-4" 4 16 -"CLSI 2019" "MIC" "B_STNTR_MLTP" "SXT" "Table 2B-4" 2 4 -"CLSI 2019" "MIC" "B_STNTR_MLTP" "TCC" "Table 2B-4" 16 128 -"CLSI 2019" "MIC" "B_STPHY" "AMC" "Table 2C" 4 8 -"CLSI 2019" "MIC" "Skin, soft tissue" "B_STPHY" "AMC" "VET08 Table 2C" 0.25 1 -"CLSI 2019" "MIC" "UTI" "B_STPHY" "AMC" "VET08 Table 2C" 8 -"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "B_STPHY" "AMC" "VET08 Table 2C" 0.25 1 -"CLSI 2019" "MIC" "B_STPHY" "AMK" "VET08 Table 2C" 4 16 -"CLSI 2019" "MIC" "B_STPHY" "AMP" "Table 2C" 0.25 0.5 -"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "B_STPHY" "AMP" "VET08 Table 2C" 0.25 1 -"CLSI 2019" "MIC" "B_STPHY" "AZM" "Table 2C" 2 8 -"CLSI 2019" "MIC" "B_STPHY" "CAZ" "Table 2C" 8 32 -"CLSI 2019" "MIC" "B_STPHY" "CDR" "Table 2C" 1 4 -"CLSI 2019" "MIC" "B_STPHY" "CEC" "Table 2C" 8 32 -"CLSI 2019" "MIC" "B_STPHY" "CEP" "Table 2C" 8 32 -"CLSI 2019" "MIC" "B_STPHY" "CFP" "Table 2C" 16 64 -"CLSI 2019" "MIC" "B_STPHY" "CHL" "Table 2C" 8 32 -"CLSI 2019" "MIC" "B_STPHY" "CID" "Table 2C" 8 32 -"CLSI 2019" "MIC" "B_STPHY" "CIP" "Table 2C" 1 4 -"CLSI 2019" "MIC" "B_STPHY" "CLI" "Table 2C" 0.5 4 -"CLSI 2019" "MIC" "Skin, soft tissue" "B_STPHY" "CLI" "VET08 Table 2C" 0.5 4 -"CLSI 2019" "MIC" "B_STPHY" "CLR" "Table 2C" 2 8 -"CLSI 2019" "MIC" "B_STPHY" "CMZ" "Table 2C" 16 64 -"CLSI 2019" "MIC" "B_STPHY" "CPD" "Table 2C" 2 8 -"CLSI 2019" "MIC" "B_STPHY" "CPR" "Table 2C" 8 32 -"CLSI 2019" "MIC" "B_STPHY" "CRO" "Table 2C" 8 64 -"CLSI 2019" "MIC" "B_STPHY" "CTT" "Table 2C" 16 64 -"CLSI 2019" "MIC" "B_STPHY" "CTX" "Table 2C" 8 64 -"CLSI 2019" "MIC" "B_STPHY" "CXA" "Table 2C" 4 32 -"CLSI 2019" "MIC" "Oral" "B_STPHY" "CXM" "Table 2C" 4 32 -"CLSI 2019" "MIC" "Intravenous" "B_STPHY" "CXM" "Table 2C" 8 32 -"CLSI 2019" "MIC" "Oral" "B_STPHY" "CXM" "Table 2C" 4 32 -"CLSI 2019" "MIC" "B_STPHY" "CZO" "Table 2C" 8 32 -"CLSI 2019" "MIC" "B_STPHY" "CZX" "Table 2C" 8 64 -"CLSI 2019" "MIC" "B_STPHY" "DAP" "Table 2C" 1 -"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "B_STPHY" "DIF" "VET08 Table 2C" 0.5 4 -"CLSI 2019" "MIC" "B_STPHY" "DIR" "Table 2C" 2 8 -"CLSI 2019" "MIC" "B_STPHY" "DOR" "Table 2C" 0.5 -"CLSI 2019" "MIC" "B_STPHY" "DOX" "Table 2C" 4 16 -"CLSI 2019" "MIC" "Skin, soft tissue, UTI, respiratory" "B_STPHY" "ENR" "VET08 Table 2C" 0.5 4 -"CLSI 2019" "MIC" "Skin, soft tissue" "B_STPHY" "ENR" "VET08 Table 2C" 0.5 4 -"CLSI 2019" "MIC" "B_STPHY" "ENX" "Table 2C" 2 8 -"CLSI 2019" "MIC" "B_STPHY" "ERY" "Table 2C" 0.5 8 -"CLSI 2019" "MIC" "B_STPHY" "ETP" "Table 2C" 2 8 -"CLSI 2019" "MIC" "B_STPHY" "FEP" "Table 2C" 8 32 -"CLSI 2019" "MIC" "B_STPHY" "FLE" "Table 2C" 2 8 -"CLSI 2019" "MIC" "B_STPHY" "GAT" "Table 2C" 0.5 2 -"CLSI 2019" "MIC" "B_STPHY" "GEN" "Table 2C" 4 16 -"CLSI 2019" "MIC" "B_STPHY" "GRX" "Table 2C" 1 4 -"CLSI 2019" "MIC" "B_STPHY" "IPM" "Table 2C" 4 16 -"CLSI 2019" "MIC" "B_STPHY" "LNZ" "Table 2C" 4 8 -"CLSI 2019" "MIC" "B_STPHY" "LOM" "Table 2C" 2 8 -"CLSI 2019" "MIC" "B_STPHY" "LOR" "Table 2C" 8 32 -"CLSI 2019" "MIC" "B_STPHY" "LTM" "Table 2C" 8 64 -"CLSI 2019" "MIC" "B_STPHY" "LVX" "Table 2C" 1 4 -"CLSI 2019" "MIC" "B_STPHY" "MAN" "Table 2C" 8 32 -"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "B_STPHY" "MAR" "VET08 Table 2C" 1 4 -"CLSI 2019" "MIC" "Skin, soft tissue" "B_STPHY" "MAR" "VET08 Table 2C" 1 4 -"CLSI 2019" "MIC" "B_STPHY" "MEM" "Table 2C" 4 16 -"CLSI 2019" "MIC" "B_STPHY" "MET" "Table 2C" 8 16 -"CLSI 2019" "MIC" "B_STPHY" "MFX" "Table 2C" 0.5 2 -"CLSI 2019" "MIC" "B_STPHY" "MNO" "Table 2C" 4 16 -"CLSI 2019" "MIC" "B_STPHY" "NAF" "Table 2C" 2 4 -"CLSI 2019" "MIC" "B_STPHY" "NIT" "Table 2C" 32 128 -"CLSI 2019" "MIC" "B_STPHY" "OFX" "Table 2C" 1 4 -"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "B_STPHY" "ORB" "VET08 Table 2C" 1 8 -"CLSI 2019" "MIC" "Skin, soft tissue" "B_STPHY" "ORB" "VET08 Table 2C" 1 8 -"CLSI 2019" "MIC" "B_STPHY" "OXA" "Table 2C" 0.25 0.5 -"CLSI 2019" "MIC" "B_STPHY" "PEN" "Table 2C" 0.125 0.25 -"CLSI 2019" "MIC" "Respiratory, soft tissue" "B_STPHY" "PEN" "VET08 Table 2C" 0.5 2 -"CLSI 2019" "MIC" "B_STPHY" "QDA" "Table 2C" 1 4 -"CLSI 2019" "MIC" "B_STPHY" "RIF" "Table 2C" 1 4 -"CLSI 2019" "MIC" "B_STPHY" "SAM" "Table 2C" 8 32 -"CLSI 2019" "MIC" "B_STPHY" "SMX" "Table 2C" 256 512 -"CLSI 2019" "MIC" "B_STPHY" "SOX" "Table 2C" 256 512 -"CLSI 2019" "MIC" "B_STPHY" "SPX" "Table 2C" 0.5 2 -"CLSI 2019" "MIC" "B_STPHY" "SSS" "Table 2C" 256 512 -"CLSI 2019" "MIC" "B_STPHY" "SXT" "Table 2C" 2 4 -"CLSI 2019" "MIC" "B_STPHY" "TCC" "Table 2C" 8 16 -"CLSI 2019" "MIC" "B_STPHY" "TCY" "Table 2C" 4 16 -"CLSI 2019" "MIC" "Skin, soft tissue" "B_STPHY" "TCY" "VET08 Table 2C" 0.25 1 -"CLSI 2019" "MIC" "B_STPHY" "TEC" "Table 2C" 8 32 -"CLSI 2019" "MIC" "B_STPHY" "TMP" "Table 2C" 8 16 -"CLSI 2019" "MIC" "B_STPHY" "TZP" "Table 2C" 8 16 -"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "B_STPHY" "TZP" "VET08 Table 2C" 8 32 -"CLSI 2019" "MIC" "B_STPHY" "VAN" "Table 2C" 4 32 -"CLSI 2019" "MIC" "B_STPHY_AURS" "AMK" "VET08 Table 2C" 2 8 -"CLSI 2019" "MIC" "B_STPHY_AURS" "AMK" "VET08 Table 2C" 4 16 -"CLSI 2019" "MIC" "Skin, soft tissue" "B_STPHY_AURS" "CEP" "VET08 Table 2C" 2 8 -"CLSI 2019" "MIC" "Wounds, abscesses" "B_STPHY_AURS" "CPD" "VET08 Table 2C" 2 8 -"CLSI 2019" "MIC" "B_STPHY_AURS" "CPT" "Table 2C" 1 8 -"CLSI 2019" "MIC" "Skin, soft tissue, UTI, respiratory" "B_STPHY_AURS" "CZO" "VET08 Table 2C" 2 8 -"CLSI 2019" "MIC" "B_STPHY_AURS" "DAL" "Table 2C" 0.25 -"CLSI 2019" "MIC" "B_STPHY_AURS" "DOX" "VET08 Table 2C" 0.125 0.5 -"CLSI 2019" "MIC" "Skin, soft tissue, respiratory" "B_STPHY_AURS" "ENR" "VET08 Table 2C" 0.125 0.5 -"CLSI 2019" "MIC" "B_STPHY_AURS" "FOX" "Table 2C" 4 8 -"CLSI 2019" "MIC" "Skin, soft tissue" "B_STPHY_AURS" "LEX" "VET08 Table 2C" 2 4 -"CLSI 2019" "MIC" "Respiratory, skin, soft tissue" "B_STPHY_AURS" "MNO" "VET08 Table 2C" 0.125 0.5 -"CLSI 2019" "MIC" "B_STPHY_AURS" "ORI" "Table 2C" 0.125 -"CLSI 2019" "MIC" "B_STPHY_AURS" "OXA" "Table 2C" 2 4 -"CLSI 2019" "MIC" "Mastitis" "B_STPHY_AURS" "PNO" "VET08 Table 2C" 1 4 -"CLSI 2019" "MIC" "Skin, respiratory" "B_STPHY_AURS" "PRA" "VET08 Table 2C" 0.25 2 -"CLSI 2019" "MIC" "Mastitis" "B_STPHY_AURS" "PRL" "VET08 Table 2C" 2 4 -"CLSI 2019" "MIC" "Mastitis" "B_STPHY_AURS" "TIO" "VET08 Table 2C" 2 8 -"CLSI 2019" "MIC" "B_STPHY_AURS" "TLV" "Table 2C" 0.125 -"CLSI 2019" "MIC" "B_STPHY_AURS" "TZD" "Table 2C" 0.5 2 -"CLSI 2019" "MIC" "B_STPHY_AURS" "VAN" "Table 2C" 2 16 -"CLSI 2019" "MIC" "B_STPHY_COPS" "CPT" "Table 2C" 1 8 -"CLSI 2019" "MIC" "B_STPHY_COPS" "DAL" "Table 2C" 0.25 -"CLSI 2019" "MIC" "B_STPHY_COPS" "FOX" "Table 2C" 4 8 -"CLSI 2019" "MIC" "B_STPHY_COPS" "ORI" "Table 2C" 0.125 -"CLSI 2019" "MIC" "B_STPHY_COPS" "OXA" "Table 2C" 2 4 -"CLSI 2019" "MIC" "B_STPHY_COPS" "TLV" "Table 2C" 0.125 -"CLSI 2019" "MIC" "B_STPHY_COPS" "TZD" "Table 2C" 0.5 2 -"CLSI 2019" "MIC" "B_STPHY_COPS" "VAN" "Table 2C" 2 16 -"CLSI 2019" "MIC" "B_STPHY_EPDR" "OXA" "Table 2C" 0.25 0.5 -"CLSI 2019" "MIC" "Skin, respiratory" "B_STPHY_FELS" "PRA" "VET08 Table 2C" 0.25 2 -"CLSI 2019" "MIC" "B_STPHY_LGDN" "FOX" "Table 2C" 4 8 -"CLSI 2019" "MIC" "B_STPHY_LGDN" "OXA" "Table 2C" 2 4 -"CLSI 2019" "MIC" "B_STPHY_SCHL_SCHL" "OXA" "Table 2C" 0.25 0.5 -"CLSI 2019" "MIC" "B_STPHY_SCHL_SCHL" "OXA" "Table 2C" "1ug" 0.25 0.5 -"CLSI 2019" "MIC" "B_STRPT" "AMC" "Table 2H-1" -"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "B_STRPT" "AMC" "VET08 Table 2D" 0.25 1 -"CLSI 2019" "MIC" "B_STRPT" "AMK" "VET08 Table 2D" 4 16 -"CLSI 2019" "MIC" "B_STRPT" "AMP" "M45 Table 1" 0.25 8 -"CLSI 2019" "MIC" "B_STRPT" "AMP" "Table 2H-1" 0.25 -"CLSI 2019" "MIC" "Skin, soft tissue" "B_STRPT" "AMP" "VET08 Table 2D" 0.25 -"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "B_STRPT" "AMP" "VET08 Table 2D" 0.25 1 -"CLSI 2019" "MIC" "B_STRPT" "AMX" "Table 2H-1" -"CLSI 2019" "MIC" "B_STRPT" "AZM" "Table 2H-1" 0.5 2 -"CLSI 2019" "MIC" "B_STRPT" "CHL" "M45 Table 1" 4 8 -"CLSI 2019" "MIC" "B_STRPT" "CHL" "Table 2H-1" 4 16 -"CLSI 2019" "MIC" "B_STRPT" "CIP" "M45 Table 1" 1 4 -"CLSI 2019" "MIC" "B_STRPT" "CLI" "M45 Table 1" 0.25 1 -"CLSI 2019" "MIC" "B_STRPT" "CLI" "Table 2H-1" 0.25 1 -"CLSI 2019" "MIC" "B_STRPT" "CLR" "Table 2H-1" 0.25 1 -"CLSI 2019" "MIC" "B_STRPT" "CPT" "Table 2H-1" 0.5 -"CLSI 2019" "MIC" "B_STRPT" "CRO" "M45 Table 1" 1 4 -"CLSI 2019" "MIC" "B_STRPT" "CRO" "Table 2H-1" 0.5 -"CLSI 2019" "MIC" "B_STRPT" "CTX" "M45 Table 1" 1 4 -"CLSI 2019" "MIC" "B_STRPT" "CTX" "Table 2H-1" 0.5 -"CLSI 2019" "MIC" "B_STRPT" "CXM" "Table 2H-1" -"CLSI 2019" "MIC" "B_STRPT" "DAL" "Table 2H-1" 0.25 -"CLSI 2019" "MIC" "B_STRPT" "DAP" "Table 2H-1" -"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "B_STRPT" "DIF" "VET08 Table 2D" 0.5 4 -"CLSI 2019" "MIC" "B_STRPT" "DIR" "Table 2H-1" 0.5 2 -"CLSI 2019" "MIC" "B_STRPT" "DOR" "Table 2H-1" 0.125 -"CLSI 2019" "MIC" "Skin, soft tissue, respiratory, UIT" "B_STRPT" "ENR" "VET08 Table 2D" 0.5 4 -"CLSI 2019" "MIC" "Skin, soft tissue" "B_STRPT" "ENR" "VET08 Table 2D" 0.5 4 -"CLSI 2019" "MIC" "B_STRPT" "ERY" "M45 Table 1" 0.25 1 -"CLSI 2019" "MIC" "B_STRPT" "ERY" "Table 2H-1" 0.25 1 -"CLSI 2019" "MIC" "B_STRPT" "ETP" "Table 2H-1" 1 -"CLSI 2019" "MIC" "B_STRPT" "FEP" "M45 Table 1" 1 4 -"CLSI 2019" "MIC" "B_STRPT" "FEP" "Table 2H-1" 0.5 -"CLSI 2019" "MIC" "B_STRPT" "GAT" "M45 Table 1" 1 4 -"CLSI 2019" "MIC" "B_STRPT" "GAT" "Table 2H-1" 1 4 -"CLSI 2019" "MIC" "B_STRPT" "GEM" "Table 2H-1" -"CLSI 2019" "MIC" "B_STRPT" "GRX" "Table 2H-1" 0.5 2 -"CLSI 2019" "MIC" "B_STRPT" "IPM" "M45 Table 1" 0.5 2 -"CLSI 2019" "MIC" "B_STRPT" "IPM" "Table 2H-1" -"CLSI 2019" "MIC" "B_STRPT" "LNZ" "Table 2H-1" 2 -"CLSI 2019" "MIC" "B_STRPT" "LVX" "M45 Table 1" 2 8 -"CLSI 2019" "MIC" "B_STRPT" "LVX" "Table 2H-1" 2 8 -"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "B_STRPT" "MAR" "VET08 Table 2D" 1 4 -"CLSI 2019" "MIC" "Skin, soft tissue" "B_STRPT" "MAR" "VET08 Table 2D" 1 4 -"CLSI 2019" "MIC" "B_STRPT" "MEM" "M45 Table 1" 0.5 2 -"CLSI 2019" "MIC" "B_STRPT" "MEM" "Table 2H-1" 0.5 -"CLSI 2019" "MIC" "B_STRPT" "MFX" "Table 2H-1" -"CLSI 2019" "MIC" "Respiratory, skin, soft tissue" "B_STRPT" "MNO" "VET08 Table 2D" 0.125 0.5 -"CLSI 2019" "MIC" "B_STRPT" "OFX" "Table 2H-1" 2 8 -"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "B_STRPT" "ORB" "VET08 Table 2D" 1 8 -"CLSI 2019" "MIC" "Skin, soft tissue" "B_STRPT" "ORB" "VET08 Table 2D" 1 8 -"CLSI 2019" "MIC" "B_STRPT" "ORI" "Table 2H-1" 0.25 -"CLSI 2019" "MIC" "B_STRPT" "PEN" "M45 Table 1" 0.125 4 -"CLSI 2019" "MIC" "B_STRPT" "PEN" "Table 2H-1" 0.125 -"CLSI 2019" "MIC" "Respiratory, soft tissue" "B_STRPT" "PEN" "VET08 Table 2D" 0.5 2 -"CLSI 2019" "MIC" "B_STRPT" "QDA" "Table 2H-1" 1 4 -"CLSI 2019" "MIC" "B_STRPT" "RIF" "Table 2H-1" -"CLSI 2019" "MIC" "B_STRPT" "SPX" "Table 2H-1" -"CLSI 2019" "MIC" "B_STRPT" "SXT" "Table 2H-1" -"CLSI 2019" "MIC" "B_STRPT" "TCY" "Table 2H-1" 2 8 -"CLSI 2019" "MIC" "B_STRPT" "TLT" "Table 2H-1" -"CLSI 2019" "MIC" "B_STRPT" "TLV" "Table 2H-1" 0.125 -"CLSI 2019" "MIC" "B_STRPT" "TVA" "Table 2H-1" 1 4 -"CLSI 2019" "MIC" "B_STRPT" "TZD" "Table 2H-1" 0.5 -"CLSI 2019" "MIC" "B_STRPT" "VAN" "M45 Table 1" 1 -"CLSI 2019" "MIC" "B_STRPT" "VAN" "Table 2H-1" 1 -"CLSI 2019" "MIC" "Mastitis" "B_STRPT_AGLC" "PNO" "VET08 Table 2D" 1 4 -"CLSI 2019" "MIC" "Mastitis" "B_STRPT_AGLC" "PRL" "VET08 Table 2D" 2 4 -"CLSI 2019" "MIC" "Mastitis" "B_STRPT_AGLC" "TIO" "VET08 Table 2D" 2 8 -"CLSI 2019" "MIC" "Mastitis" "B_STRPT_DYSG" "PNO" "VET08 Table 2D" 1 4 -"CLSI 2019" "MIC" "Mastitis" "B_STRPT_DYSG" "PRL" "VET08 Table 2D" 2 4 -"CLSI 2019" "MIC" "Mastitis" "B_STRPT_DYSG" "TIO" "VET08 Table 2D" 2 8 -"CLSI 2019" "MIC" "B_STRPT_EQUI" "AMK" "VET08 Table 2D" 2 8 -"CLSI 2019" "MIC" "B_STRPT_EQUI" "AMK" "VET08 Table 2D" 4 16 -"CLSI 2019" "MIC" "Respiratory" "B_STRPT_EQUI" "AMP" "VET08 Table 2D" 0.25 -"CLSI 2019" "MIC" "B_STRPT_EQUI" "DOX" "VET08 Table 2D" 0.125 0.5 -"CLSI 2019" "MIC" "Skin, soft tissue, respiratory" "B_STRPT_EQUI" "ENR" "VET08 Table 2D" 0.125 0.5 -"CLSI 2019" "MIC" "B_STRPT_EQUI_ZPDM" "AMK" "VET08 Table 2D" 2 8 -"CLSI 2019" "MIC" "B_STRPT_EQUI_ZPDM" "AMK" "VET08 Table 2D" 4 16 -"CLSI 2019" "MIC" "Respiratory" "B_STRPT_EQUI_ZPDM" "AMP" "VET08 Table 2D" 0.25 -"CLSI 2019" "MIC" "B_STRPT_EQUI_ZPDM" "DOX" "VET08 Table 2D" 0.125 0.5 -"CLSI 2019" "MIC" "Skin, soft tissue, respiratory" "B_STRPT_EQUI_ZPDM" "ENR" "VET08 Table 2D" 0.125 0.5 -"CLSI 2019" "MIC" "Respiratory" "B_STRPT_EQUI_ZPDM" "TIO" "VET08 Table 2D" 0.25 -"CLSI 2019" "MIC" "Skin, soft tissue" "B_STRPT_HAEM" "CEP" "VET08 Table 2D" 2 8 -"CLSI 2019" "MIC" "Skin, soft tissue" "B_STRPT_HAEM" "CLI" "VET08 Table 2D" 0.5 4 -"CLSI 2019" "MIC" "Skin, soft tissue, respiratory, urinary/genital" "B_STRPT_HAEM" "CZO" "VET08 Table 2D" 2 8 -"CLSI 2019" "MIC" "Respiratory, genital" "B_STRPT_HAEM" "CZO" "VET08 Table 2D" 2 8 -"CLSI 2019" "MIC" "Skin, soft tissue" "B_STRPT_HAEM" "FOV" "VET08 Table 2D" 0.125 0.5 -"CLSI 2019" "MIC" "Skin, soft tissue" "B_STRPT_HAEM" "LEX" "VET08 Table 2D" 2 8 -"CLSI 2019" "MIC" "Non-meningitis" "B_STRPT_PNMN" "AMC" "Table 2G" 2 8 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "AMP" "Table 2G" -"CLSI 2019" "MIC" "Non-meningitis" "B_STRPT_PNMN" "AMX" "Table 2G" 2 8 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "AZM" "Table 2G" 0.5 2 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "CDR" "Table 2G" 0.5 2 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "CEC" "Table 2G" 1 4 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "CHL" "Table 2G" 4 8 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "CIP" "Table 2G" -"CLSI 2019" "MIC" "B_STRPT_PNMN" "CLI" "Table 2G" 0.25 1 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "CLR" "Table 2G" 0.25 1 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "CPD" "Table 2G" 0.5 2 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "CPR" "Table 2G" 2 8 -"CLSI 2019" "MIC" "Non-meningitis" "B_STRPT_PNMN" "CPT" "Table 2G" 0.5 -"CLSI 2019" "MIC" "Meningitis" "B_STRPT_PNMN" "CRO" "Table 2G" 0.5 2 -"CLSI 2019" "MIC" "Non-meningitis" "B_STRPT_PNMN" "CRO" "Table 2G" 1 4 -"CLSI 2019" "MIC" "Meningitis" "B_STRPT_PNMN" "CTX" "Table 2G" 0.5 2 -"CLSI 2019" "MIC" "Non-meningitis" "B_STRPT_PNMN" "CTX" "Table 2G" 1 4 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "CXA" "Table 2G" 1 4 -"CLSI 2019" "MIC" "Oral" "B_STRPT_PNMN" "CXM" "Table 2G" 1 4 -"CLSI 2019" "MIC" "Parenteral" "B_STRPT_PNMN" "CXM" "Table 2G" 0.5 2 -"CLSI 2019" "MIC" "Oral" "B_STRPT_PNMN" "CXM" "Table 2G" 1 4 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "DIR" "Table 2G" 0.5 2 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "DOR" "Table 2G" 1 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "DOX" "Table 2G" 0.25 1 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "ERY" "Table 2G" 0.25 1 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "ETP" "Table 2G" 1 4 -"CLSI 2019" "MIC" "Meningitis" "B_STRPT_PNMN" "FEP" "Table 2G" 0.5 2 -"CLSI 2019" "MIC" "Non-meningitis" "B_STRPT_PNMN" "FEP" "Table 2G" 1 4 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "GAT" "Table 2G" 1 4 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "GEM" "Table 2G" 0.125 0.5 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "GRX" "Table 2G" 0.5 2 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "IPM" "Table 2G" 0.125 1 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "LNZ" "Table 2G" 2 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "LOR" "Table 2G" 2 8 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "LVX" "Table 2G" 2 8 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "MEM" "Table 2G" 0.25 1 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "MFX" "Table 2G" 1 4 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "OFX" "Table 2G" 2 8 -"CLSI 2019" "MIC" "Meningitis" "B_STRPT_PNMN" "PEN" "Table 2G" 0.064 0.12 -"CLSI 2019" "MIC" "Non-meningitis" "B_STRPT_PNMN" "PEN" "Table 2G" 2 8 -"CLSI 2019" "MIC" "Oral" "B_STRPT_PNMN" "PEN" "Table 2G" 0.064 2 -"CLSI 2019" "MIC" "Oral" "B_STRPT_PNMN" "PNV" "Table 2G" 0.064 2 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "QDA" "Table 2G" 1 4 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "RIF" "Table 2G" 1 4 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "SAM" "Table 2G" -"CLSI 2019" "MIC" "B_STRPT_PNMN" "SPX" "Table 2G" 0.5 2 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "SXT" "Table 2G" 0.5 4 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "TCY" "Table 2G" 1 4 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "TLT" "Table 2G" 1 4 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "TVA" "Table 2G" 1 4 -"CLSI 2019" "MIC" "B_STRPT_PNMN" "VAN" "Table 2G" 1 -"CLSI 2019" "MIC" "Respiratory" "B_STRPT_SUIS" "AMP" "VET08 Table 2D" 0.5 2 -"CLSI 2019" "MIC" "Respiratory" "B_STRPT_SUIS" "ENR" "VET08 Table 2D" 0.5 2 -"CLSI 2019" "MIC" "Respiratory" "B_STRPT_SUIS" "FLR" "VET08 Table 2D" 2 8 -"CLSI 2019" "MIC" "B_STRPT_SUIS" "PEN" "VET08 Table 2D" 0.25 1 -"CLSI 2019" "MIC" "Respiratory" "B_STRPT_SUIS" "TCY" "VET08 Table 2D" 0.5 2 -"CLSI 2019" "MIC" "Respiratory" "B_STRPT_SUIS" "TIO" "VET08 Table 2D" 2 8 -"CLSI 2019" "MIC" "Mastitis" "B_STRPT_UBRS" "PNO" "VET08 Table 2D" 1 4 -"CLSI 2019" "MIC" "Mastitis" "B_STRPT_UBRS" "PRL" "VET08 Table 2D" 2 4 -"CLSI 2019" "MIC" "Mastitis" "B_STRPT_UBRS" "TIO" "VET08 Table 2D" 2 8 -"CLSI 2019" "MIC" "B_STRPT_VIRI" "AMP" "Table 2H-2" 0.25 8 -"CLSI 2019" "MIC" "B_STRPT_VIRI" "AZM" "Table 2H-2" 0.5 2 -"CLSI 2019" "MIC" "B_STRPT_VIRI" "CHL" "Table 2H-2" 4 16 -"CLSI 2019" "MIC" "B_STRPT_VIRI" "CLI" "Table 2H-2" 0.25 1 -"CLSI 2019" "MIC" "B_STRPT_VIRI" "CLR" "Table 2H-2" 0.25 1 -"CLSI 2019" "MIC" "B_STRPT_VIRI" "CRO" "Table 2H-2" 1 4 -"CLSI 2019" "MIC" "B_STRPT_VIRI" "CTX" "Table 2H-2" 1 4 -"CLSI 2019" "MIC" "B_STRPT_VIRI" "CZT" "Table 2H-2" 8 32 -"CLSI 2019" "MIC" "B_STRPT_VIRI" "DAL" "Table 2H-2" 0.25 -"CLSI 2019" "MIC" "B_STRPT_VIRI" "DAP" "Table 2H-2" 1 -"CLSI 2019" "MIC" "B_STRPT_VIRI" "DIR" "Table 2H-2" 0.5 2 -"CLSI 2019" "MIC" "B_STRPT_VIRI" "DOR" "Table 2H-2" 1 -"CLSI 2019" "MIC" "B_STRPT_VIRI" "ERY" "Table 2H-2" 0.25 1 -"CLSI 2019" "MIC" "B_STRPT_VIRI" "ETP" "Table 2H-2" 1 -"CLSI 2019" "MIC" "B_STRPT_VIRI" "FEP" "Table 2H-2" 1 4 -"CLSI 2019" "MIC" "B_STRPT_VIRI" "GAT" "Table 2H-2" 1 4 -"CLSI 2019" "MIC" "B_STRPT_VIRI" "GRX" "Table 2H-2" 0.5 2 -"CLSI 2019" "MIC" "B_STRPT_VIRI" "LNZ" "Table 2H-2" 2 -"CLSI 2019" "MIC" "B_STRPT_VIRI" "LVX" "Table 2H-2" 2 8 -"CLSI 2019" "MIC" "B_STRPT_VIRI" "MEM" "Table 2H-2" 0.5 -"CLSI 2019" "MIC" "B_STRPT_VIRI" "OFX" "Table 2H-2" 2 8 -"CLSI 2019" "MIC" "B_STRPT_VIRI" "ORI" "Table 2H-2" 0.25 -"CLSI 2019" "MIC" "B_STRPT_VIRI" "PEN" "Table 2H-2" 0.125 4 -"CLSI 2019" "MIC" "B_STRPT_VIRI" "QDA" "Table 2H-2" 1 4 -"CLSI 2019" "MIC" "B_STRPT_VIRI" "TCY" "Table 2H-2" 2 8 -"CLSI 2019" "MIC" "B_STRPT_VIRI" "TLV" "Table 2H-2" 0.125 -"CLSI 2019" "MIC" "B_STRPT_VIRI" "TVA" "Table 2H-2" 1 4 -"CLSI 2019" "MIC" "B_STRPT_VIRI" "TZD" "Table 2H-2" 0.25 -"CLSI 2019" "MIC" "B_STRPT_VIRI" "VAN" "Table 2H-2" 1 -"CLSI 2019" "MIC" "B_VIBRI" "AMC" "M45 Table 20" 8 32 -"CLSI 2019" "MIC" "B_VIBRI" "AMK" "M45 Table 20" 16 64 -"CLSI 2019" "MIC" "B_VIBRI" "AMP" "M45 Table 20" 8 32 -"CLSI 2019" "MIC" "B_VIBRI" "AZM" "M45 Table 20" 2 -"CLSI 2019" "MIC" "B_VIBRI" "CAZ" "M45 Table 20" 4 16 -"CLSI 2019" "MIC" "B_VIBRI" "CHL" "M45 Table 20" 8 32 -"CLSI 2019" "MIC" "B_VIBRI" "CIP" "M45 Table 20" 1 4 -"CLSI 2019" "MIC" "B_VIBRI" "CTX" "M45 Table 20" 1 4 -"CLSI 2019" "MIC" "B_VIBRI" "CXM" "M45 Table 20" 8 32 -"CLSI 2019" "MIC" "B_VIBRI" "CZO" "M45 Table 20" 2 8 -"CLSI 2019" "MIC" "B_VIBRI" "FEP" "M45 Table 20" 2 16 -"CLSI 2019" "MIC" "B_VIBRI" "FOX" "M45 Table 20" 8 32 -"CLSI 2019" "MIC" "B_VIBRI" "GEN" "M45 Table 20" 4 16 -"CLSI 2019" "MIC" "B_VIBRI" "IPM" "M45 Table 20" 1 4 -"CLSI 2019" "MIC" "B_VIBRI" "LVX" "M45 Table 20" 2 8 -"CLSI 2019" "MIC" "B_VIBRI" "MEM" "M45 Table 20" 1 4 -"CLSI 2019" "MIC" "B_VIBRI" "OFX" "M45 Table 20" 2 8 -"CLSI 2019" "MIC" "B_VIBRI" "PIP" "M45 Table 20" 16 128 -"CLSI 2019" "MIC" "B_VIBRI" "SAM" "M45 Table 20" 8 32 -"CLSI 2019" "MIC" "B_VIBRI" "SSS" "M45 Table 20" 256 512 -"CLSI 2019" "MIC" "B_VIBRI" "SXT" "M45 Table 20" 2 4 -"CLSI 2019" "MIC" "B_VIBRI" "TCY" "M45 Table 20" 4 16 -"CLSI 2019" "MIC" "B_VIBRI" "TZP" "M45 Table 20" 16 128 -"CLSI 2019" "MIC" "B_YERSN_PSTS" "CHL" "M45 Table 21" 8 32 -"CLSI 2019" "MIC" "B_YERSN_PSTS" "CIP" "M45 Table 21" 0.25 -"CLSI 2019" "MIC" "B_YERSN_PSTS" "DOX" "M45 Table 21" 4 16 -"CLSI 2019" "MIC" "B_YERSN_PSTS" "GEN" "M45 Table 21" 4 16 -"CLSI 2019" "MIC" "B_YERSN_PSTS" "LVX" "M45 Table 21" 0.25 -"CLSI 2019" "MIC" "B_YERSN_PSTS" "STR" "M45 Table 21" 4 16 -"CLSI 2019" "MIC" "B_YERSN_PSTS" "SXT" "M45 Table 21" 2 4 -"CLSI 2019" "MIC" "B_YERSN_PSTS" "TCY" "M45 Table 21" 4 16 -"CLSI 2019" "MIC" "F_CANDD" "ANI" "Table 1" 2 8 -"CLSI 2019" "MIC" "F_CANDD" "ANI" "Table 1" 0.25 1 -"CLSI 2019" "MIC" "F_CANDD" "CAS" "Table 1" 2 8 -"CLSI 2019" "MIC" "F_CANDD" "CAS" "Table 1" 0.25 1 -"CLSI 2019" "MIC" "F_CANDD" "MIF" "Table 1" 2 8 -"CLSI 2019" "MIC" "F_CANDD" "MIF" "Table 1" 0.25 1 -"CLSI 2019" "MIC" "F_CANDD" "VOR" "Table 1" 0.5 2 -"CLSI 2019" "MIC" "F_CANDD_ALBC" "ANI" "Table 1" 0.25 1 -"CLSI 2019" "MIC" "F_CANDD_ALBC" "CAS" "Table 1" 0.25 1 -"CLSI 2019" "MIC" "F_CANDD_ALBC" "FLU" "Table 1" 2 8 -"CLSI 2019" "MIC" "F_CANDD_ALBC" "MIF" "Table 1" 0.25 1 -"CLSI 2019" "MIC" "F_CANDD_ALBC" "VOR" "Table 1" 0.125 1 -"CLSI 2019" "MIC" "F_CANDD_GLBR" "ANI" "Table 1" 0.125 0.5 -"CLSI 2019" "MIC" "F_CANDD_GLBR" "CAS" "Table 1" 0.125 0.5 -"CLSI 2019" "MIC" "F_CANDD_GLBR" "FLU" "Table 1" 0.001 64 -"CLSI 2019" "MIC" "F_CANDD_GLBR" "MIF" "Table 1" 0.064 0.25 -"CLSI 2019" "MIC" "F_CANDD_PRPS" "ANI" "Table 1" 2 8 -"CLSI 2019" "MIC" "F_CANDD_PRPS" "CAS" "Table 1" 2 8 -"CLSI 2019" "MIC" "F_CANDD_PRPS" "FLU" "Table 1" 2 8 -"CLSI 2019" "MIC" "F_CANDD_PRPS" "MIF" "Table 1" 2 8 -"CLSI 2019" "MIC" "F_CANDD_PRPS" "VOR" "Table 1" 0.125 1 -"CLSI 2019" "MIC" "F_CANDD_TRPC" "ANI" "Table 1" 0.25 1 -"CLSI 2019" "MIC" "F_CANDD_TRPC" "CAS" "Table 1" 0.25 1 -"CLSI 2019" "MIC" "F_CANDD_TRPC" "FLU" "Table 1" 2 8 -"CLSI 2019" "MIC" "F_CANDD_TRPC" "MIF" "Table 1" 0.25 1 -"CLSI 2019" "MIC" "F_CANDD_TRPC" "VOR" "Table 1" 0.125 1 -"CLSI 2019" "MIC" "Skin, soft tissue" "F_PSDLL" "AMP" "VET08 Table 2C" 0.25 0.5 -"CLSI 2019" "MIC" "Skin, soft tissue" "F_PSDLL" "CEP" "VET08 Table 2C" 2 8 -"CLSI 2019" "MIC" "Wounds, abscesses" "F_PSDLL" "CPD" "VET08 Table 2C" 2 8 -"CLSI 2019" "MIC" "Skin, soft tissue, UTI, respiratory" "F_PSDLL" "CZO" "VET08 Table 2C" 2 8 -"CLSI 2019" "MIC" "Skin, soft tissue" "F_PSDLL" "DOX" "VET08 Table 2C" 0.125 0.5 -"CLSI 2019" "MIC" "Skin, soft tissue" "F_PSDLL" "FOV" "VET08 Table 2C" 0.5 2 -"CLSI 2019" "MIC" "Skin, soft tissue" "F_PSDLL" "LEX" "VET08 Table 2C" 2 4 -"CLSI 2019" "MIC" "Skin, soft tissue" "F_PSDLL" "MNO" "VET08 Table 2C" 0.5 2 -"CLSI 2019" "MIC" "F_PSDLL" "OXA" "Table 2C" 0.25 0.5 -"CLSI 2019" "MIC" "F_PSDLL" "OXA" "Table 2C" 0.25 0.5 -"CLSI 2019" "MIC" "Skin, UTI" "F_PSDLL" "PRA" "VET08 Table 2C" 0.25 2 -"CLSI 2019" "MIC" "Skin, respiratory" "F_PSDLL" "PRA" "VET08 Table 2C" 0.25 2 -"CLSI 2018" "MIC" "Urine" "B_[FAM]_ENTRBCTR" "CZO" "Table 2A" 16 32 -"CLSI 2018" "MIC" "B_ABTRP" "FEP" "M45 Table 1" 1 4 -"CLSI 2018" "MIC" "B_ABTRP" "GAT" "M45 Table 1" 1 4 -"CLSI 2018" "MIC" "B_ABTRP" "IPM" "M45 Table 1" 0.5 2 -"CLSI 2018" "MIC" "B_ABTRP" "LVX" "M45 Table 1" 2 8 -"CLSI 2018" "MIC" "B_ABTRP" "MEM" "M45 Table 1" 0.5 2 -"CLSI 2018" "MIC" "B_ABTRP" "PEN" "M45 Table 1" 0.125 4 -"CLSI 2018" "MIC" "B_ABTRP" "VAN" "M45 Table 1" 1 -"CLSI 2018" "MIC" "B_ACNTB" "AMK" "Table 2B-2" 16 64 -"CLSI 2018" "MIC" "B_ACNTB" "CAZ" "Table 2B-2" 8 32 -"CLSI 2018" "MIC" "B_ACNTB" "CIP" "Table 2B-2" 1 4 -"CLSI 2018" "MIC" "B_ACNTB" "COL" "Table 2B-2" 2 4 -"CLSI 2018" "MIC" "B_ACNTB" "CRO" "Table 2B-2" 8 64 -"CLSI 2018" "MIC" "B_ACNTB" "CTX" "Table 2B-2" 8 64 -"CLSI 2018" "MIC" "B_ACNTB" "DOR" "Table 2B-2" 2 8 -"CLSI 2018" "MIC" "B_ACNTB" "DOX" "Table 2B-2" 4 16 -"CLSI 2018" "MIC" "B_ACNTB" "ETP" "Table 2B-2" -"CLSI 2018" "MIC" "B_ACNTB" "FEP" "Table 2B-2" 8 32 -"CLSI 2018" "MIC" "B_ACNTB" "GAT" "Table 2B-2" 2 8 -"CLSI 2018" "MIC" "B_ACNTB" "GEN" "Table 2B-2" 4 16 -"CLSI 2018" "MIC" "B_ACNTB" "IPM" "Table 2B-2" 2 8 -"CLSI 2018" "MIC" "B_ACNTB" "LVX" "Table 2B-2" 2 8 -"CLSI 2018" "MIC" "B_ACNTB" "MEM" "Table 2B-2" 2 8 -"CLSI 2018" "MIC" "B_ACNTB" "MNO" "Table 2B-2" 4 16 -"CLSI 2018" "MIC" "B_ACNTB" "NET" "Table 2B-2" 8 32 -"CLSI 2018" "MIC" "B_ACNTB" "PIP" "Table 2B-2" 16 128 -"CLSI 2018" "MIC" "B_ACNTB" "PLB" "Table 2B-2" 2 4 -"CLSI 2018" "MIC" "B_ACNTB" "SAM" "Table 2B-2" 8 32 -"CLSI 2018" "MIC" "B_ACNTB" "SXT" "Table 2B-2" 2 4 -"CLSI 2018" "MIC" "B_ACNTB" "TCC" "Table 2B-2" 16 128 -"CLSI 2018" "MIC" "B_ACNTB" "TCY" "Table 2B-2" 4 16 -"CLSI 2018" "MIC" "B_ACNTB" "TOB" "Table 2B-2" 4 16 -"CLSI 2018" "MIC" "B_ACNTB" "TZP" "Table 2B-2" 16 128 -"CLSI 2018" "MIC" "B_ACTNB_PLRP" "TIL" "Vet Table" 16 32 -"CLSI 2018" "MIC" "B_AERMN" "AMC" "M45 Table 2" 8 32 -"CLSI 2018" "MIC" "B_AERMN" "AMK" "M45 Table 2" 16 64 -"CLSI 2018" "MIC" "B_AERMN" "ATM" "M45 Table 2" 4 16 -"CLSI 2018" "MIC" "B_AERMN" "CAZ" "M45 Table 2" 4 16 -"CLSI 2018" "MIC" "B_AERMN" "CHL" "M45 Table 2" 8 32 -"CLSI 2018" "MIC" "B_AERMN" "CIP" "M45 Table 2" 1 4 -"CLSI 2018" "MIC" "B_AERMN" "CRO" "M45 Table 2" 1 4 -"CLSI 2018" "MIC" "B_AERMN" "CTX" "M45 Table 2" 1 4 -"CLSI 2018" "MIC" "B_AERMN" "CXM" "M45 Table 2" 8 32 -"CLSI 2018" "MIC" "B_AERMN" "CZO" "M45 Table 2" 1 4 -"CLSI 2018" "MIC" "B_AERMN" "ETP" "M45 Table 2" 2 8 -"CLSI 2018" "MIC" "B_AERMN" "FEP" "M45 Table 2" 8 32 -"CLSI 2018" "MIC" "B_AERMN" "FOX" "M45 Table 2" 8 32 -"CLSI 2018" "MIC" "B_AERMN" "GEN" "M45 Table 2" 4 16 -"CLSI 2018" "MIC" "B_AERMN" "IPM" "M45 Table 2" 4 16 -"CLSI 2018" "MIC" "B_AERMN" "LVX" "M45 Table 2" 2 8 -"CLSI 2018" "MIC" "B_AERMN" "MEM" "M45 Table 2" 4 16 -"CLSI 2018" "MIC" "B_AERMN" "SAM" "M45 Table 2" 8 32 -"CLSI 2018" "MIC" "B_AERMN" "SXT" "M45 Table 2" 2 4 -"CLSI 2018" "MIC" "B_AERMN" "TCY" "M45 Table 2" 4 16 -"CLSI 2018" "MIC" "B_AERMN" "TZP" "M45 Table 2" 16 128 -"CLSI 2018" "MIC" "B_AGGRG" "AMC" "M45 Table 7" 4 8 -"CLSI 2018" "MIC" "B_AGGRG" "AMP" "M45 Table 7" 1 4 -"CLSI 2018" "MIC" "B_AGGRG" "AZM" "M45 Table 7" 4 -"CLSI 2018" "MIC" "B_AGGRG" "CHL" "M45 Table 7" 4 16 -"CLSI 2018" "MIC" "B_AGGRG" "CIP" "M45 Table 7" 1 4 -"CLSI 2018" "MIC" "B_AGGRG" "CLR" "M45 Table 7" 8 32 -"CLSI 2018" "MIC" "B_AGGRG" "CRO" "M45 Table 7" 2 -"CLSI 2018" "MIC" "B_AGGRG" "CTX" "M45 Table 7" 2 -"CLSI 2018" "MIC" "B_AGGRG" "IPM" "M45 Table 7" 4 16 -"CLSI 2018" "MIC" "B_AGGRG" "LVX" "M45 Table 7" 2 8 -"CLSI 2018" "MIC" "B_AGGRG" "MEM" "M45 Table 7" 4 16 -"CLSI 2018" "MIC" "B_AGGRG" "PEN" "M45 Table 7" 1 4 -"CLSI 2018" "MIC" "B_AGGRG" "RIF" "M45 Table 7" 1 4 -"CLSI 2018" "MIC" "B_AGGRG" "SAM" "M45 Table 7" 2 4 -"CLSI 2018" "MIC" "B_AGGRG" "SXT" "M45 Table 7" 0.5 4 -"CLSI 2018" "MIC" "B_AGGRG" "TCY" "M45 Table 7" 2 8 -"CLSI 2018" "MIC" "Canine, feline" "B_ALLSC" "ENR" "Vet Table" 0.5 4 -"CLSI 2018" "MIC" "B_ANRSL" "AMC" "Table 2J" 4 16 -"CLSI 2018" "MIC" "B_ANRSL" "AMP" "Table 2J" 0.5 2 -"CLSI 2018" "MIC" "B_ANRSL" "CFP" "Table 2J" 16 64 -"CLSI 2018" "MIC" "B_ANRSL" "CHL" "Table 2J" 8 32 -"CLSI 2018" "MIC" "B_ANRSL" "CLI" "Table 2J" 2 8 -"CLSI 2018" "MIC" "B_ANRSL" "CMZ" "Table 2J" 16 64 -"CLSI 2018" "MIC" "B_ANRSL" "CRO" "Table 2J" 16 64 -"CLSI 2018" "MIC" "B_ANRSL" "CTT" "Table 2J" 16 64 -"CLSI 2018" "MIC" "B_ANRSL" "CTX" "Table 2J" 16 64 -"CLSI 2018" "MIC" "B_ANRSL" "CZX" "Table 2J" 32 128 -"CLSI 2018" "MIC" "B_ANRSL" "DOR" "Table 2J" 2 8 -"CLSI 2018" "MIC" "B_ANRSL" "ETP" "Table 2J" 4 16 -"CLSI 2018" "MIC" "B_ANRSL" "FOX" "Table 2J" 16 64 -"CLSI 2018" "MIC" "B_ANRSL" "IPM" "Table 2J" 4 16 -"CLSI 2018" "MIC" "B_ANRSL" "LTM" "Table 2J" 2 8 -"CLSI 2018" "MIC" "B_ANRSL" "MEM" "Table 2J" 4 16 -"CLSI 2018" "MIC" "B_ANRSL" "MTR" "Table 2J" 8 32 -"CLSI 2018" "MIC" "B_ANRSL" "PEN" "Table 2J" 0.5 2 -"CLSI 2018" "MIC" "B_ANRSL" "PIP" "Table 2J" 32 128 -"CLSI 2018" "MIC" "B_ANRSL" "SAM" "Table 2J" 8 32 -"CLSI 2018" "MIC" "B_ANRSL" "TCC" "Table 2J" 32 128 -"CLSI 2018" "MIC" "B_ANRSL" "TCY" "Table 2J" 4 16 -"CLSI 2018" "MIC" "B_ANRSL" "TZP" "Table 2J" 16 128 -"CLSI 2018" "MIC" "B_BCLLS" "AMK" "M45 Table 3" 16 64 -"CLSI 2018" "MIC" "B_BCLLS" "AMP" "M45 Table 3" 0.25 0.5 -"CLSI 2018" "MIC" "B_BCLLS" "CAZ" "M45 Table 3" 8 32 -"CLSI 2018" "MIC" "B_BCLLS" "CHL" "M45 Table 3" 8 32 -"CLSI 2018" "MIC" "B_BCLLS" "CIP" "M45 Table 3" 1 4 -"CLSI 2018" "MIC" "B_BCLLS" "CLI" "M45 Table 3" 0.5 4 -"CLSI 2018" "MIC" "B_BCLLS" "CRO" "M45 Table 3" 8 64 -"CLSI 2018" "MIC" "B_BCLLS" "CTX" "M45 Table 3" 8 64 -"CLSI 2018" "MIC" "B_BCLLS" "CZO" "M45 Table 3" 8 16 -"CLSI 2018" "MIC" "B_BCLLS" "ERY" "M45 Table 3" 0.5 8 -"CLSI 2018" "MIC" "B_BCLLS" "GEN" "M45 Table 3" 4 16 -"CLSI 2018" "MIC" "B_BCLLS" "IPM" "M45 Table 3" 4 16 -"CLSI 2018" "MIC" "B_BCLLS" "LVX" "M45 Table 3" 2 8 -"CLSI 2018" "MIC" "B_BCLLS" "PEN" "M45 Table 3" 0.125 0.25 -"CLSI 2018" "MIC" "B_BCLLS" "RIF" "M45 Table 3" 1 4 -"CLSI 2018" "MIC" "B_BCLLS" "SXT" "M45 Table 3" 2 4 -"CLSI 2018" "MIC" "B_BCLLS" "TCY" "M45 Table 3" 4 16 -"CLSI 2018" "MIC" "B_BCLLS" "VAN" "M45 Table 3" 4 -"CLSI 2018" "MIC" "B_BCLLS_ANTH" "AMK" "M45 Table 16" -"CLSI 2018" "MIC" "B_BCLLS_ANTH" "AMP" "M45 Table 16" -"CLSI 2018" "MIC" "B_BCLLS_ANTH" "CAZ" "M45 Table 16" -"CLSI 2018" "MIC" "B_BCLLS_ANTH" "CHL" "M45 Table 16" -"CLSI 2018" "MIC" "B_BCLLS_ANTH" "CIP" "M45 Table 16" 0.25 -"CLSI 2018" "MIC" "B_BCLLS_ANTH" "CLI" "M45 Table 16" -"CLSI 2018" "MIC" "B_BCLLS_ANTH" "CRO" "M45 Table 16" -"CLSI 2018" "MIC" "B_BCLLS_ANTH" "CTX" "M45 Table 16" -"CLSI 2018" "MIC" "B_BCLLS_ANTH" "CZO" "M45 Table 16" -"CLSI 2018" "MIC" "B_BCLLS_ANTH" "DOX" "M45 Table 16" 1 -"CLSI 2018" "MIC" "B_BCLLS_ANTH" "ERY" "M45 Table 16" -"CLSI 2018" "MIC" "B_BCLLS_ANTH" "GEN" "M45 Table 16" -"CLSI 2018" "MIC" "B_BCLLS_ANTH" "IPM" "M45 Table 16" -"CLSI 2018" "MIC" "B_BCLLS_ANTH" "LVX" "M45 Table 16" 0.25 -"CLSI 2018" "MIC" "B_BCLLS_ANTH" "PEN" "M45 Table 16" 0.125 0.25 -"CLSI 2018" "MIC" "B_BCLLS_ANTH" "RIF" "M45 Table 16" -"CLSI 2018" "MIC" "B_BCLLS_ANTH" "SXT" "M45 Table 16" -"CLSI 2018" "MIC" "B_BCLLS_ANTH" "TCY" "M45 Table 16" 1 -"CLSI 2018" "MIC" "B_BCLLS_ANTH" "VAN" "M45 Table 16" -"CLSI 2018" "MIC" "B_BRCLL" "DOX" "M45 Table 16" 1 -"CLSI 2018" "MIC" "B_BRCLL" "GEN" "M45 Table 16" 4 -"CLSI 2018" "MIC" "B_BRCLL" "STR" "M45 Table 16" 8 -"CLSI 2018" "MIC" "B_BRCLL" "SXT" "M45 Table 16" 2 -"CLSI 2018" "MIC" "B_BRCLL" "TCY" "M45 Table 16" 1 -"CLSI 2018" "MIC" "B_BRKHL_CEPC" "CAZ" "Table 2B-3" 8 32 -"CLSI 2018" "MIC" "B_BRKHL_CEPC" "CAZ" "Table 2B-3" 8 32 -"CLSI 2018" "MIC" "B_BRKHL_CEPC" "CHL" "Table 2B-3" 8 32 -"CLSI 2018" "MIC" "B_BRKHL_CEPC" "CHL" "Table 2B-3" 8 32 -"CLSI 2018" "MIC" "B_BRKHL_CEPC" "LVX" "Table 2B-3" 2 8 -"CLSI 2018" "MIC" "B_BRKHL_CEPC" "LVX" "Table 2B-3" 2 8 -"CLSI 2018" "MIC" "B_BRKHL_CEPC" "MEM" "Table 2B-3" 4 16 -"CLSI 2018" "MIC" "B_BRKHL_CEPC" "MEM" "Table 2B-3" 4 16 -"CLSI 2018" "MIC" "B_BRKHL_CEPC" "MNO" "Table 2B-3" 4 16 -"CLSI 2018" "MIC" "B_BRKHL_CEPC" "MNO" "Table 2B-3" 4 16 -"CLSI 2018" "MIC" "B_BRKHL_CEPC" "SXT" "Table 2B-3" 2 4 -"CLSI 2018" "MIC" "B_BRKHL_CEPC" "SXT" "Table 2B-3" 2 4 -"CLSI 2018" "MIC" "B_BRKHL_CEPC" "TCC" "Table 2B-3" 16 128 -"CLSI 2018" "MIC" "B_BRKHL_CEPC" "TCC" "Table 2B-3" 16 128 -"CLSI 2018" "MIC" "B_BRKHL_MALL" "CAZ" "M45 Table 16" 8 32 -"CLSI 2018" "MIC" "B_BRKHL_MALL" "DOX" "M45 Table 16" 4 16 -"CLSI 2018" "MIC" "B_BRKHL_MALL" "IPM" "M45 Table 16" 4 16 -"CLSI 2018" "MIC" "B_BRKHL_MALL" "TCY" "M45 Table 16" 4 16 -"CLSI 2018" "MIC" "B_BRKHL_PSDM" "AMC" "M45 Table 16" 8 32 -"CLSI 2018" "MIC" "B_BRKHL_PSDM" "CAZ" "M45 Table 16" 8 32 -"CLSI 2018" "MIC" "B_BRKHL_PSDM" "DOX" "M45 Table 16" 4 16 -"CLSI 2018" "MIC" "B_BRKHL_PSDM" "IPM" "M45 Table 16" 4 16 -"CLSI 2018" "MIC" "B_BRKHL_PSDM" "SXT" "M45 Table 16" 2 4 -"CLSI 2018" "MIC" "B_BRKHL_PSDM" "TCY" "M45 Table 16" 4 16 -"CLSI 2018" "MIC" "B_CMPYL" "CIP" "M45 Table 3" 1 4 -"CLSI 2018" "MIC" "B_CMPYL" "DOX" "M45 Table 3" 2 8 -"CLSI 2018" "MIC" "B_CMPYL" "ERY" "M45 Table 3" 8 32 -"CLSI 2018" "MIC" "B_CMPYL" "TCY" "M45 Table 3" 4 16 -"CLSI 2018" "MIC" "B_CRDBC" "AMC" "M45 Table 7" 4 8 -"CLSI 2018" "MIC" "B_CRDBC" "AMP" "M45 Table 7" 1 4 -"CLSI 2018" "MIC" "B_CRDBC" "AZM" "M45 Table 7" 4 -"CLSI 2018" "MIC" "B_CRDBC" "CHL" "M45 Table 7" 4 16 -"CLSI 2018" "MIC" "B_CRDBC" "CIP" "M45 Table 7" 1 4 -"CLSI 2018" "MIC" "B_CRDBC" "CLR" "M45 Table 7" 8 32 -"CLSI 2018" "MIC" "B_CRDBC" "CRO" "M45 Table 7" 2 -"CLSI 2018" "MIC" "B_CRDBC" "CTX" "M45 Table 7" 2 -"CLSI 2018" "MIC" "B_CRDBC" "IPM" "M45 Table 7" 0.5 2 -"CLSI 2018" "MIC" "B_CRDBC" "LVX" "M45 Table 7" 2 8 -"CLSI 2018" "MIC" "B_CRDBC" "MEM" "M45 Table 7" 0.5 2 -"CLSI 2018" "MIC" "B_CRDBC" "PEN" "M45 Table 7" 1 4 -"CLSI 2018" "MIC" "B_CRDBC" "RIF" "M45 Table 7" 1 4 -"CLSI 2018" "MIC" "B_CRDBC" "SAM" "M45 Table 7" 2 4 -"CLSI 2018" "MIC" "B_CRDBC" "SXT" "M45 Table 7" 0.5 4 -"CLSI 2018" "MIC" "B_CRDBC" "TCY" "M45 Table 7" 2 8 -"CLSI 2018" "MIC" "B_EKNLL" "AMC" "M45 Table 7" 4 8 -"CLSI 2018" "MIC" "B_EKNLL" "AMP" "M45 Table 7" 1 4 -"CLSI 2018" "MIC" "B_EKNLL" "AZM" "M45 Table 7" 4 -"CLSI 2018" "MIC" "B_EKNLL" "CHL" "M45 Table 7" 4 16 -"CLSI 2018" "MIC" "B_EKNLL" "CIP" "M45 Table 7" 1 4 -"CLSI 2018" "MIC" "B_EKNLL" "CLR" "M45 Table 7" 8 32 -"CLSI 2018" "MIC" "B_EKNLL" "CRO" "M45 Table 7" 2 -"CLSI 2018" "MIC" "B_EKNLL" "CTX" "M45 Table 7" 2 -"CLSI 2018" "MIC" "B_EKNLL" "IPM" "M45 Table 7" 0.5 2 -"CLSI 2018" "MIC" "B_EKNLL" "LVX" "M45 Table 7" 2 8 -"CLSI 2018" "MIC" "B_EKNLL" "MEM" "M45 Table 7" 0.5 2 -"CLSI 2018" "MIC" "B_EKNLL" "PEN" "M45 Table 7" 1 4 -"CLSI 2018" "MIC" "B_EKNLL" "RIF" "M45 Table 7" 1 4 -"CLSI 2018" "MIC" "B_EKNLL" "SAM" "M45 Table 7" 2 4 -"CLSI 2018" "MIC" "B_EKNLL" "SXT" "M45 Table 7" 0.5 4 -"CLSI 2018" "MIC" "B_EKNLL" "TCY" "M45 Table 7" 2 8 -"CLSI 2018" "MIC" "B_ENTRC" "AMP" "Table 2D" 8 16 -"CLSI 2018" "MIC" "B_ENTRC" "CHL" "Table 2D" 8 32 -"CLSI 2018" "MIC" "B_ENTRC" "CIP" "Table 2D" 1 4 -"CLSI 2018" "MIC" "B_ENTRC" "DAP" "Table 2D" 4 -"CLSI 2018" "MIC" "B_ENTRC" "DOX" "Table 2D" 4 16 -"CLSI 2018" "MIC" "B_ENTRC" "ERY" "Table 2D" 0.5 8 -"CLSI 2018" "MIC" "B_ENTRC" "FOS" "Table 2D" 64 256 -"CLSI 2018" "MIC" "B_ENTRC" "GAT" "Table 2D" 2 8 -"CLSI 2018" "MIC" "B_ENTRC" "GEH" "Table 2D" 512 512 -"CLSI 2018" "MIC" "B_ENTRC" "GEN" "Table 2D" 512 512 -"CLSI 2018" "MIC" "B_ENTRC" "LNZ" "Table 2D" 2 8 -"CLSI 2018" "MIC" "B_ENTRC" "LVX" "Table 2D" 2 8 -"CLSI 2018" "MIC" "B_ENTRC" "MNO" "Table 2D" 4 16 -"CLSI 2018" "MIC" "B_ENTRC" "NIT" "Table 2D" 32 128 -"CLSI 2018" "MIC" "B_ENTRC" "NOR" "Table 2D" 4 16 -"CLSI 2018" "MIC" "B_ENTRC" "ORI" "Table 2D" 0.125 -"CLSI 2018" "MIC" "B_ENTRC" "PEN" "Table 2D" 8 16 -"CLSI 2018" "MIC" "B_ENTRC" "QDA" "Table 2D" 1 4 -"CLSI 2018" "MIC" "B_ENTRC" "RIF" "Table 2D" 1 4 -"CLSI 2018" "MIC" "B_ENTRC" "STH" "Table 2D" 1024 1024 -"CLSI 2018" "MIC" "B_ENTRC" "STR" "Table 2D" 1024 1024 -"CLSI 2018" "MIC" "B_ENTRC" "TCY" "Table 2D" 4 16 -"CLSI 2018" "MIC" "B_ENTRC" "TEC" "Table 2D" 8 32 -"CLSI 2018" "MIC" "B_ENTRC" "TLV" "Table 2D" 0.125 -"CLSI 2018" "MIC" "B_ENTRC" "TZD" "Table 2D" 0.5 -"CLSI 2018" "MIC" "B_ENTRC" "VAN" "Table 2D" 4 32 -"CLSI 2018" "MIC" "B_ENTRC_FCLS" "DAL" "Table 2D" 0.25 -"CLSI 2018" "MIC" "B_ERYSP_RHSP" "AMP" "M45 Table 6" 0.25 -"CLSI 2018" "MIC" "B_ERYSP_RHSP" "CIP" "M45 Table 6" 1 -"CLSI 2018" "MIC" "B_ERYSP_RHSP" "CLI" "M45 Table 6" 0.25 1 -"CLSI 2018" "MIC" "B_ERYSP_RHSP" "CRO" "M45 Table 6" 1 -"CLSI 2018" "MIC" "B_ERYSP_RHSP" "CTX" "M45 Table 6" 1 -"CLSI 2018" "MIC" "B_ERYSP_RHSP" "ERY" "M45 Table 6" 0.25 1 -"CLSI 2018" "MIC" "B_ERYSP_RHSP" "FEP" "M45 Table 6" 1 -"CLSI 2018" "MIC" "B_ERYSP_RHSP" "IPM" "M45 Table 6" 0.5 -"CLSI 2018" "MIC" "B_ERYSP_RHSP" "LVX" "M45 Table 6" 2 -"CLSI 2018" "MIC" "B_ERYSP_RHSP" "MEM" "M45 Table 6" 0.5 -"CLSI 2018" "MIC" "B_ERYSP_RHSP" "PEN" "M45 Table 6" 0.125 -"CLSI 2018" "MIC" "B_FRNCS_TLRN" "CHL" "M45 Table 16" 8 -"CLSI 2018" "MIC" "B_FRNCS_TLRN" "CIP" "M45 Table 16" 0.5 -"CLSI 2018" "MIC" "B_FRNCS_TLRN" "DOX" "M45 Table 16" 4 -"CLSI 2018" "MIC" "B_FRNCS_TLRN" "GEN" "M45 Table 16" 4 -"CLSI 2018" "MIC" "B_FRNCS_TLRN" "LVX" "M45 Table 16" 0.5 -"CLSI 2018" "MIC" "B_FRNCS_TLRN" "STR" "M45 Table 16" 8 -"CLSI 2018" "MIC" "B_FRNCS_TLRN" "TCY" "M45 Table 16" 4 -"CLSI 2018" "MIC" "B_GRNLC" "AMP" "M45 Table 1" 0.25 8 -"CLSI 2018" "MIC" "B_GRNLC" "CHL" "M45 Table 1" 4 8 -"CLSI 2018" "MIC" "B_GRNLC" "CIP" "M45 Table 1" 1 4 -"CLSI 2018" "MIC" "B_GRNLC" "CLI" "M45 Table 1" 0.25 1 -"CLSI 2018" "MIC" "B_GRNLC" "CRO" "M45 Table 1" 1 4 -"CLSI 2018" "MIC" "B_GRNLC" "CTX" "M45 Table 1" 1 4 -"CLSI 2018" "MIC" "B_GRNLC" "ERY" "M45 Table 1" 0.25 1 -"CLSI 2018" "MIC" "B_GRNLC" "FEP" "M45 Table 1" 1 4 -"CLSI 2018" "MIC" "B_GRNLC" "GAT" "M45 Table 1" 1 4 -"CLSI 2018" "MIC" "B_GRNLC" "IPM" "M45 Table 1" 0.5 2 -"CLSI 2018" "MIC" "B_GRNLC" "LVX" "M45 Table 1" 2 8 -"CLSI 2018" "MIC" "B_GRNLC" "MEM" "M45 Table 1" 0.5 2 -"CLSI 2018" "MIC" "B_GRNLC" "PEN" "M45 Table 1" 0.125 4 -"CLSI 2018" "MIC" "B_GRNLC" "VAN" "M45 Table 1" 1 -"CLSI 2018" "MIC" "B_HLCBCT_PYLR" "CLR" "M45 Table 8" 0.25 1 -"CLSI 2018" "MIC" "B_HMPHL" "AMC" "Table 2E" 4 8 -"CLSI 2018" "MIC" "B_HMPHL" "AMP" "Table 2E" 1 4 -"CLSI 2018" "MIC" "B_HMPHL" "ATM" "Table 2E" 2 -"CLSI 2018" "MIC" "B_HMPHL" "AZM" "Table 2E" 4 -"CLSI 2018" "MIC" "B_HMPHL" "CAT" "Table 2E" 4 16 -"CLSI 2018" "MIC" "B_HMPHL" "CAZ" "Table 2E" 2 -"CLSI 2018" "MIC" "B_HMPHL" "CDR" "Table 2E" 1 -"CLSI 2018" "MIC" "B_HMPHL" "CEC" "Table 2E" 8 32 -"CLSI 2018" "MIC" "B_HMPHL" "CFM" "Table 2E" 1 -"CLSI 2018" "MIC" "B_HMPHL" "CHL" "Table 2E" 2 8 -"CLSI 2018" "MIC" "B_HMPHL" "CID" "Table 2E" 4 16 -"CLSI 2018" "MIC" "B_HMPHL" "CIP" "Table 2E" 1 -"CLSI 2018" "MIC" "B_HMPHL" "CLR" "Table 2E" 8 32 -"CLSI 2018" "MIC" "B_HMPHL" "CPD" "Table 2E" 2 -"CLSI 2018" "MIC" "B_HMPHL" "CPR" "Table 2E" 8 32 -"CLSI 2018" "MIC" "B_HMPHL" "CRO" "Table 2E" 2 -"CLSI 2018" "MIC" "B_HMPHL" "CTB" "Table 2E" 2 -"CLSI 2018" "MIC" "B_HMPHL" "CTX" "Table 2E" 2 -"CLSI 2018" "MIC" "B_HMPHL" "CXA" "Table 2E" 4 16 -"CLSI 2018" "MIC" "Oral" "B_HMPHL" "CXM" "Table 2E" 4 16 -"CLSI 2018" "MIC" "B_HMPHL" "CXM" "Table 2E" 4 16 -"CLSI 2018" "MIC" "B_HMPHL" "CZX" "Table 2E" 2 -"CLSI 2018" "MIC" "B_HMPHL" "DOR" "Table 2E" 1 -"CLSI 2018" "MIC" "B_HMPHL" "ETP" "Table 2E" 0.5 -"CLSI 2018" "MIC" "B_HMPHL" "FEP" "Table 2E" 2 -"CLSI 2018" "MIC" "B_HMPHL" "FLE" "Table 2E" 2 -"CLSI 2018" "MIC" "B_HMPHL" "GAT" "Table 2E" 1 -"CLSI 2018" "MIC" "B_HMPHL" "GEM" "Table 2E" 0.125 -"CLSI 2018" "MIC" "B_HMPHL" "GRX" "Table 2E" 0.5 -"CLSI 2018" "MIC" "B_HMPHL" "IPM" "Table 2E" 4 -"CLSI 2018" "MIC" "B_HMPHL" "LOM" "Table 2E" 2 -"CLSI 2018" "MIC" "B_HMPHL" "LOR" "Table 2E" 8 32 -"CLSI 2018" "MIC" "B_HMPHL" "LVX" "Table 2E" 2 -"CLSI 2018" "MIC" "B_HMPHL" "MAN" "Table 2E" 4 16 -"CLSI 2018" "MIC" "B_HMPHL" "MEM" "Table 2E" 0.5 -"CLSI 2018" "MIC" "B_HMPHL" "MFX" "Table 2E" 1 -"CLSI 2018" "MIC" "B_HMPHL" "OFX" "Table 2E" 2 -"CLSI 2018" "MIC" "B_HMPHL" "RIF" "Table 2E" 1 4 -"CLSI 2018" "MIC" "B_HMPHL" "SAM" "Table 2E" 2 4 -"CLSI 2018" "MIC" "B_HMPHL" "SPX" "Table 2E" 0.25 -"CLSI 2018" "MIC" "B_HMPHL" "SXT" "Table 2E" 0.5 4 -"CLSI 2018" "MIC" "B_HMPHL" "TCY" "Table 2E" 2 8 -"CLSI 2018" "MIC" "B_HMPHL" "TLT" "Table 2E" 4 16 -"CLSI 2018" "MIC" "B_HMPHL" "TVA" "Table 2E" 1 -"CLSI 2018" "MIC" "B_HMPHL" "TZP" "Table 2E" 1 2 -"CLSI 2018" "MIC" "B_HMPHL_INFL" "CPT" "Table 2E" 0.5 -"CLSI 2018" "MIC" "B_HSTPH_SOMN" "ENR" "Vet Table" 0.25 2 -"CLSI 2018" "MIC" "B_KGLLA" "AZM" "M45 Table 7" 4 -"CLSI 2018" "MIC" "B_KGLLA" "CHL" "M45 Table 7" 4 16 -"CLSI 2018" "MIC" "B_KGLLA" "CIP" "M45 Table 7" 1 4 -"CLSI 2018" "MIC" "B_KGLLA" "CLR" "M45 Table 7" 8 32 -"CLSI 2018" "MIC" "B_KGLLA" "CRO" "M45 Table 7" 2 -"CLSI 2018" "MIC" "B_KGLLA" "CTX" "M45 Table 7" 2 -"CLSI 2018" "MIC" "B_KGLLA" "IPM" "M45 Table 7" 0.5 2 -"CLSI 2018" "MIC" "B_KGLLA" "LVX" "M45 Table 7" 2 8 -"CLSI 2018" "MIC" "B_KGLLA" "MEM" "M45 Table 7" 0.5 2 -"CLSI 2018" "MIC" "B_KGLLA" "PEN" "M45 Table 7" 1 4 -"CLSI 2018" "MIC" "B_KGLLA" "RIF" "M45 Table 7" 1 4 -"CLSI 2018" "MIC" "B_KGLLA" "SXT" "M45 Table 7" 0.5 4 -"CLSI 2018" "MIC" "B_KGLLA" "TCY" "M45 Table 7" 2 8 -"CLSI 2018" "MIC" "B_LCNST" "AMP" "M45 Table 10" 8 -"CLSI 2018" "MIC" "B_LCNST" "CHL" "M45 Table 10" 8 32 -"CLSI 2018" "MIC" "B_LCNST" "GEN" "M45 Table 10" 4 16 -"CLSI 2018" "MIC" "B_LCNST" "MNO" "M45 Table 10" 4 16 -"CLSI 2018" "MIC" "B_LCNST" "PEN" "M45 Table 10" 8 -"CLSI 2018" "MIC" "B_LCTBC" "AMP" "M45 Table 9" 8 -"CLSI 2018" "MIC" "B_LCTBC" "CLI" "M45 Table 9" 0.5 2 -"CLSI 2018" "MIC" "B_LCTBC" "DAP" "M45 Table 9" 4 -"CLSI 2018" "MIC" "B_LCTBC" "ERY" "M45 Table 9" 0.5 8 -"CLSI 2018" "MIC" "B_LCTBC" "GEN" "M45 Table 9" 4 16 -"CLSI 2018" "MIC" "B_LCTBC" "IPM" "M45 Table 9" 0.5 2 -"CLSI 2018" "MIC" "B_LCTBC" "LNZ" "M45 Table 9" 4 -"CLSI 2018" "MIC" "B_LCTBC" "PEN" "M45 Table 9" 8 -"CLSI 2018" "MIC" "B_LCTBC" "VAN" "M45 Table 9" 2 16 -"CLSI 2018" "MIC" "B_LISTR_MNCY" "AMP" "M45 Table 11" 2 -"CLSI 2018" "MIC" "B_LISTR_MNCY" "PEN" "M45 Table 11" 2 -"CLSI 2018" "MIC" "B_LISTR_MNCY" "SXT" "M45 Table 11" 0.5 4 -"CLSI 2018" "MIC" "B_MRXLL_CTRR" "AMC" "M45 Table 12" 4 8 -"CLSI 2018" "MIC" "B_MRXLL_CTRR" "AZM" "M45 Table 12" 0.25 -"CLSI 2018" "MIC" "B_MRXLL_CTRR" "CAZ" "M45 Table 12" 2 -"CLSI 2018" "MIC" "B_MRXLL_CTRR" "CEC" "M45 Table 12" 8 32 -"CLSI 2018" "MIC" "B_MRXLL_CTRR" "CHL" "M45 Table 12" 2 8 -"CLSI 2018" "MIC" "B_MRXLL_CTRR" "CIP" "M45 Table 12" 1 -"CLSI 2018" "MIC" "B_MRXLL_CTRR" "CLI" "M45 Table 12" 0.5 4 -"CLSI 2018" "MIC" "B_MRXLL_CTRR" "CLR" "M45 Table 12" 1 -"CLSI 2018" "MIC" "B_MRXLL_CTRR" "CRO" "M45 Table 12" 2 -"CLSI 2018" "MIC" "B_MRXLL_CTRR" "CTX" "M45 Table 12" 2 -"CLSI 2018" "MIC" "B_MRXLL_CTRR" "CXM" "M45 Table 12" 4 16 -"CLSI 2018" "MIC" "B_MRXLL_CTRR" "ERY" "M45 Table 12" 2 -"CLSI 2018" "MIC" "B_MRXLL_CTRR" "LVX" "M45 Table 12" 2 -"CLSI 2018" "MIC" "B_MRXLL_CTRR" "RIF" "M45 Table 12" 1 4 -"CLSI 2018" "MIC" "B_MRXLL_CTRR" "SXT" "M45 Table 12" 0.5 4 -"CLSI 2018" "MIC" "B_MRXLL_CTRR" "TCY" "M45 Table 12" 2 8 -"CLSI 2018" "MIC" "B_NESSR_GNRR" "CAT" "Table 2F" 0.5 -"CLSI 2018" "MIC" "B_NESSR_GNRR" "CAZ" "Table 2F" 0.5 -"CLSI 2018" "MIC" "B_NESSR_GNRR" "CFM" "Table 2F" 0.25 -"CLSI 2018" "MIC" "B_NESSR_GNRR" "CIP" "Table 2F" 0.064 1 -"CLSI 2018" "MIC" "B_NESSR_GNRR" "CMZ" "Table 2F" 2 8 -"CLSI 2018" "MIC" "B_NESSR_GNRR" "CPD" "Table 2F" 0.5 -"CLSI 2018" "MIC" "B_NESSR_GNRR" "CRO" "Table 2F" 0.25 -"CLSI 2018" "MIC" "B_NESSR_GNRR" "CTT" "Table 2F" 2 8 -"CLSI 2018" "MIC" "B_NESSR_GNRR" "CTX" "Table 2F" 0.5 -"CLSI 2018" "MIC" "B_NESSR_GNRR" "CXM" "Table 2F" 1 4 -"CLSI 2018" "MIC" "B_NESSR_GNRR" "CZX" "Table 2F" 0.5 -"CLSI 2018" "MIC" "B_NESSR_GNRR" "ENX" "Table 2F" 0.5 2 -"CLSI 2018" "MIC" "B_NESSR_GNRR" "FEP" "Table 2F" 0.5 -"CLSI 2018" "MIC" "B_NESSR_GNRR" "FLE" "Table 2F" 0.25 1 -"CLSI 2018" "MIC" "B_NESSR_GNRR" "FOX" "Table 2F" 2 8 -"CLSI 2018" "MIC" "B_NESSR_GNRR" "GAT" "Table 2F" 0.125 0.5 -"CLSI 2018" "MIC" "B_NESSR_GNRR" "GRX" "Table 2F" 0.064 1 -"CLSI 2018" "MIC" "B_NESSR_GNRR" "LOM" "Table 2F" 0.125 2 -"CLSI 2018" "MIC" "B_NESSR_GNRR" "OFX" "Table 2F" 0.25 2 -"CLSI 2018" "MIC" "B_NESSR_GNRR" "PEN" "Table 2F" 0.064 2 -"CLSI 2018" "MIC" "B_NESSR_GNRR" "SPT" "Table 2F" 32 128 -"CLSI 2018" "MIC" "B_NESSR_GNRR" "TCY" "Table 2F" 0.25 2 -"CLSI 2018" "MIC" "B_NESSR_GNRR" "TVA" "Table 2F" 0.25 -"CLSI 2018" "MIC" "B_NESSR_MNNG" "AMP" "Table 2I" 0.125 2 -"CLSI 2018" "MIC" "B_NESSR_MNNG" "AZM" "Table 2I" 2 -"CLSI 2018" "MIC" "B_NESSR_MNNG" "CHL" "Table 2I" 2 8 -"CLSI 2018" "MIC" "B_NESSR_MNNG" "CIP" "Table 2I" 0.032 0.12 -"CLSI 2018" "MIC" "B_NESSR_MNNG" "CRO" "Table 2I" 0.125 -"CLSI 2018" "MIC" "B_NESSR_MNNG" "CTX" "Table 2I" 0.125 -"CLSI 2018" "MIC" "B_NESSR_MNNG" "LVX" "Table 2I" 0.032 0.12 -"CLSI 2018" "MIC" "B_NESSR_MNNG" "MEM" "Table 2I" 0.25 -"CLSI 2018" "MIC" "B_NESSR_MNNG" "MNO" "Table 2I" 2 -"CLSI 2018" "MIC" "B_NESSR_MNNG" "NAL" "Table 2I" 4 8 -"CLSI 2018" "MIC" "B_NESSR_MNNG" "PEN" "Table 2I" 0.064 0.5 -"CLSI 2018" "MIC" "B_NESSR_MNNG" "RIF" "Table 2I" 0.5 2 -"CLSI 2018" "MIC" "B_NESSR_MNNG" "SMX" "Table 2I" 2 8 -"CLSI 2018" "MIC" "B_NESSR_MNNG" "SOX" "Table 2I" 2 8 -"CLSI 2018" "MIC" "B_NESSR_MNNG" "SSS" "Table 2I" 2 8 -"CLSI 2018" "MIC" "B_NESSR_MNNG" "SXT" "Table 2I" 0.125 0.5 -"CLSI 2018" "MIC" "B_PDCCC" "AMP" "M45 Table 14" 8 -"CLSI 2018" "MIC" "B_PDCCC" "CHL" "M45 Table 14" 8 32 -"CLSI 2018" "MIC" "B_PDCCC" "GEN" "M45 Table 14" 4 16 -"CLSI 2018" "MIC" "B_PDCCC" "IPM" "M45 Table 14" 0.5 -"CLSI 2018" "MIC" "B_PDCCC" "PEN" "M45 Table 14" 8 -"CLSI 2018" "MIC" "B_PLSMN" "AMC" "M45 Table 2" 8 32 -"CLSI 2018" "MIC" "B_PLSMN" "AMK" "M45 Table 2" 16 64 -"CLSI 2018" "MIC" "B_PLSMN" "ATM" "M45 Table 2" 4 16 -"CLSI 2018" "MIC" "B_PLSMN" "CAZ" "M45 Table 2" 4 16 -"CLSI 2018" "MIC" "B_PLSMN" "CHL" "M45 Table 2" 8 32 -"CLSI 2018" "MIC" "B_PLSMN" "CIP" "M45 Table 2" 1 4 -"CLSI 2018" "MIC" "B_PLSMN" "CRO" "M45 Table 2" 1 4 -"CLSI 2018" "MIC" "B_PLSMN" "CTX" "M45 Table 2" 1 4 -"CLSI 2018" "MIC" "B_PLSMN" "CXM" "M45 Table 2" 8 32 -"CLSI 2018" "MIC" "B_PLSMN" "CZO" "M45 Table 2" 1 4 -"CLSI 2018" "MIC" "B_PLSMN" "ETP" "M45 Table 2" 2 8 -"CLSI 2018" "MIC" "B_PLSMN" "FEP" "M45 Table 2" 8 32 -"CLSI 2018" "MIC" "B_PLSMN" "FOX" "M45 Table 2" 8 32 -"CLSI 2018" "MIC" "B_PLSMN" "GEN" "M45 Table 2" 4 16 -"CLSI 2018" "MIC" "B_PLSMN" "IPM" "M45 Table 2" 4 16 -"CLSI 2018" "MIC" "B_PLSMN" "LVX" "M45 Table 2" 2 8 -"CLSI 2018" "MIC" "B_PLSMN" "MEM" "M45 Table 2" 4 16 -"CLSI 2018" "MIC" "B_PLSMN" "SAM" "M45 Table 2" 8 32 -"CLSI 2018" "MIC" "B_PLSMN" "SXT" "M45 Table 2" 2 4 -"CLSI 2018" "MIC" "B_PLSMN" "TCY" "M45 Table 2" 4 16 -"CLSI 2018" "MIC" "B_PLSMN" "TZP" "M45 Table 2" 16 128 -"CLSI 2018" "MIC" "B_PRPNB" "VAN" "Table 2J-2" 2 4 -"CLSI 2018" "MIC" "B_PSDMN" "ETP" -"CLSI 2018" "MIC" "B_PSDMN_AERG" "AMK" "Table 2B-1" 16 64 -"CLSI 2018" "MIC" "B_PSDMN_AERG" "ATM" "Table 2B-1" 8 32 -"CLSI 2018" "MIC" "B_PSDMN_AERG" "CAZ" "Table 2B-1" 8 32 -"CLSI 2018" "MIC" "B_PSDMN_AERG" "CIP" "Table 2B-1" 1 4 -"CLSI 2018" "MIC" "B_PSDMN_AERG" "COL" "Table 2B-1" 2 4 -"CLSI 2018" "MIC" "B_PSDMN_AERG" "CZA" "Table 2B-1" 8 16 -"CLSI 2018" "MIC" "B_PSDMN_AERG" "CZT" 4 16 -"CLSI 2018" "MIC" "B_PSDMN_AERG" "DOR" "Table 2B-1" 2 8 -"CLSI 2018" "MIC" "B_PSDMN_AERG" "FEP" "Table 2B-1" 8 32 -"CLSI 2018" "MIC" "B_PSDMN_AERG" "GAT" "Table 2B-1" 2 8 -"CLSI 2018" "MIC" "B_PSDMN_AERG" "GEN" "Table 2B-1" 4 16 -"CLSI 2018" "MIC" "B_PSDMN_AERG" "IPM" "Table 2B-1" 2 8 -"CLSI 2018" "MIC" "B_PSDMN_AERG" "LOM" "Table 2B-1" 2 8 -"CLSI 2018" "MIC" "B_PSDMN_AERG" "LVX" "Table 2B-1" 2 8 -"CLSI 2018" "MIC" "B_PSDMN_AERG" "MEM" "Table 2B-1" 2 8 -"CLSI 2018" "MIC" "B_PSDMN_AERG" "NET" "Table 2B-1" 8 32 -"CLSI 2018" "MIC" "B_PSDMN_AERG" "NOR" "Table 2B-1" 4 16 -"CLSI 2018" "MIC" "B_PSDMN_AERG" "OFX" "Table 2B-1" 2 8 -"CLSI 2018" "MIC" "B_PSDMN_AERG" "PIP" "Table 2B-1" 16 128 -"CLSI 2018" "MIC" "B_PSDMN_AERG" "PLB" "Table 2B-1" 2 8 -"CLSI 2018" "MIC" "B_PSDMN_AERG" "TCC" "Table 2B-1" 16 128 -"CLSI 2018" "MIC" "B_PSDMN_AERG" "TOB" "Table 2B-1" 4 16 -"CLSI 2018" "MIC" "B_PSDMN_AERG" "TZP" "Table 2B-1" 16 128 -"CLSI 2018" "MIC" "B_PSTRL" "AMC" "M45 Table 13" 0.5 -"CLSI 2018" "MIC" "B_PSTRL" "AMP" "M45 Table 13" 0.5 -"CLSI 2018" "MIC" "B_PSTRL" "AMX" "M45 Table 13" 0.5 -"CLSI 2018" "MIC" "B_PSTRL" "AZM" "M45 Table 13" 1 -"CLSI 2018" "MIC" "B_PSTRL" "CHL" "M45 Table 13" 2 -"CLSI 2018" "MIC" "B_PSTRL" "CRO" "M45 Table 13" 0.125 -"CLSI 2018" "MIC" "B_PSTRL" "DOX" "M45 Table 13" 0.5 -"CLSI 2018" "MIC" "B_PSTRL" "ERY" "M45 Table 13" 0.5 2 -"CLSI 2018" "MIC" "B_PSTRL" "LVX" "M45 Table 13" 0.064 -"CLSI 2018" "MIC" "B_PSTRL" "MFX" "M45 Table 13" 0.064 -"CLSI 2018" "MIC" "B_PSTRL" "PEN" "M45 Table 13" 0.5 -"CLSI 2018" "MIC" "B_PSTRL" "SXT" "M45 Table 13" 0.5 -"CLSI 2018" "MIC" "B_PSTRL" "TCY" "M45 Table 13" 1 -"CLSI 2018" "MIC" "B_PSTRL_MLTC" "TIL" "Vet Table" 16 32 -"CLSI 2018" "MIC" "Extraintestinal" "B_SLMNL" "CIP" "Table 2A" 0.064 1 -"CLSI 2018" "MIC" "B_SLMNL" "CIP" "Table 2A" 0.064 1 -"CLSI 2018" "MIC" "B_SLMNL" "LVX" "Table 2A" 0.125 2 -"CLSI 2018" "MIC" "Extraintestinal" "B_SLMNL" "LVX" "Table 2A" 0.125 2 -"CLSI 2018" "MIC" "B_SLMNL" "OFX" "Table 2A" 0.125 2 -"CLSI 2018" "MIC" "Extraintestinal" "B_SLMNL" "OFX" "Table 2A" 0.125 2 -"CLSI 2018" "MIC" "B_SLMNL_ENTR" "AZM" "Table 2A" 16 32 -"CLSI 2018" "MIC" "B_STNTR_MLTP" "CAZ" "Table 2B-4" 8 32 -"CLSI 2018" "MIC" "B_STNTR_MLTP" "CHL" "Table 2B-4" 8 32 -"CLSI 2018" "MIC" "B_STNTR_MLTP" "LVX" "Table 2B-4" 2 8 -"CLSI 2018" "MIC" "B_STNTR_MLTP" "MNO" "Table 2B-4" 4 16 -"CLSI 2018" "MIC" "B_STNTR_MLTP" "SXT" "Table 2B-4" 2 4 -"CLSI 2018" "MIC" "B_STNTR_MLTP" "TCC" "Table 2B-4" 16 128 -"CLSI 2018" "MIC" "B_STPHY" "AMC" "Table 2C" 4 8 -"CLSI 2018" "MIC" "B_STPHY" "AMP" "Table 2C" 0.25 0.5 -"CLSI 2018" "MIC" "B_STPHY" "AZM" "Table 2C" 2 8 -"CLSI 2018" "MIC" "B_STPHY" "CAZ" "Table 2C" 8 32 -"CLSI 2018" "MIC" "B_STPHY" "CDR" "Table 2C" 1 4 -"CLSI 2018" "MIC" "B_STPHY" "CEC" "Table 2C" 8 32 -"CLSI 2018" "MIC" "B_STPHY" "CEP" "Table 2C" 8 32 -"CLSI 2018" "MIC" "B_STPHY" "CFP" "Table 2C" 16 64 -"CLSI 2018" "MIC" "B_STPHY" "CHL" "Table 2C" 8 32 -"CLSI 2018" "MIC" "B_STPHY" "CID" "Table 2C" 8 32 -"CLSI 2018" "MIC" "B_STPHY" "CIP" "Table 2C" 1 4 -"CLSI 2018" "MIC" "B_STPHY" "CLI" "Table 2C" 0.5 4 -"CLSI 2018" "MIC" "B_STPHY" "CLR" "Table 2C" 2 8 -"CLSI 2018" "MIC" "B_STPHY" "CMZ" "Table 2C" 16 64 -"CLSI 2018" "MIC" "B_STPHY" "CPD" "Table 2C" 2 8 -"CLSI 2018" "MIC" "B_STPHY" "CPR" "Table 2C" 8 32 -"CLSI 2018" "MIC" "B_STPHY" "CRO" "Table 2C" 8 64 -"CLSI 2018" "MIC" "B_STPHY" "CTT" "Table 2C" 16 64 -"CLSI 2018" "MIC" "B_STPHY" "CTX" "Table 2C" 8 64 -"CLSI 2018" "MIC" "B_STPHY" "CXA" "Table 2C" 4 32 -"CLSI 2018" "MIC" "Oral" "B_STPHY" "CXM" "Table 2C" 4 32 -"CLSI 2018" "MIC" "Intravenous" "B_STPHY" "CXM" "Table 2C" 8 32 -"CLSI 2018" "MIC" "Oral" "B_STPHY" "CXM" "Table 2C" 4 32 -"CLSI 2018" "MIC" "B_STPHY" "CZO" "Table 2C" 8 32 -"CLSI 2018" "MIC" "B_STPHY" "CZX" "Table 2C" 8 64 -"CLSI 2018" "MIC" "B_STPHY" "DAL" "Table 2C" 0.25 -"CLSI 2018" "MIC" "B_STPHY" "DAP" "Table 2C" 1 -"CLSI 2018" "MIC" "B_STPHY" "DIR" "Table 2C" 2 8 -"CLSI 2018" "MIC" "B_STPHY" "DOR" "Table 2C" 0.5 -"CLSI 2018" "MIC" "B_STPHY" "DOX" "Table 2C" 4 16 -"CLSI 2018" "MIC" "B_STPHY" "ENX" "Table 2C" 2 8 -"CLSI 2018" "MIC" "B_STPHY" "ERY" "Table 2C" 0.5 8 -"CLSI 2018" "MIC" "B_STPHY" "ETP" "Table 2C" 2 8 -"CLSI 2018" "MIC" "B_STPHY" "FEP" "Table 2C" 8 32 -"CLSI 2018" "MIC" "B_STPHY" "FLE" "Table 2C" 2 8 -"CLSI 2018" "MIC" "B_STPHY" "FOX" "Table 2C" 4 8 -"CLSI 2018" "MIC" "B_STPHY" "GAT" "Table 2C" 0.5 2 -"CLSI 2018" "MIC" "B_STPHY" "GEN" "Table 2C" 4 16 -"CLSI 2018" "MIC" "B_STPHY" "GRX" "Table 2C" 1 4 -"CLSI 2018" "MIC" "B_STPHY" "IPM" "Table 2C" 4 16 -"CLSI 2018" "MIC" "B_STPHY" "LNZ" "Table 2C" 4 8 -"CLSI 2018" "MIC" "B_STPHY" "LOM" "Table 2C" 2 8 -"CLSI 2018" "MIC" "B_STPHY" "LOR" "Table 2C" 8 32 -"CLSI 2018" "MIC" "B_STPHY" "LTM" "Table 2C" 8 64 -"CLSI 2018" "MIC" "B_STPHY" "LVX" "Table 2C" 1 4 -"CLSI 2018" "MIC" "B_STPHY" "MAN" "Table 2C" 8 32 -"CLSI 2018" "MIC" "B_STPHY" "MEM" "Table 2C" 4 16 -"CLSI 2018" "MIC" "B_STPHY" "MET" "Table 2C" 8 16 -"CLSI 2018" "MIC" "B_STPHY" "MFX" "Table 2C" 0.5 2 -"CLSI 2018" "MIC" "B_STPHY" "MNO" "Table 2C" 4 16 -"CLSI 2018" "MIC" "B_STPHY" "NAF" "Table 2C" 2 4 -"CLSI 2018" "MIC" "B_STPHY" "NIT" "Table 2C" 32 128 -"CLSI 2018" "MIC" "B_STPHY" "NOR" "Table 2C" 4 16 -"CLSI 2018" "MIC" "B_STPHY" "OFX" "Table 2C" 1 4 -"CLSI 2018" "MIC" "B_STPHY" "ORI" "Table 2C" 0.125 -"CLSI 2018" "MIC" "B_STPHY" "OXA" "Table 2C" 2 4 -"CLSI 2018" "MIC" "B_STPHY" "PEN" "Table 2C" 0.125 0.25 -"CLSI 2018" "MIC" "B_STPHY" "QDA" "Table 2C" 1 4 -"CLSI 2018" "MIC" "B_STPHY" "RIF" "Table 2C" 1 4 -"CLSI 2018" "MIC" "B_STPHY" "SAM" "Table 2C" 8 32 -"CLSI 2018" "MIC" "B_STPHY" "SMX" "Table 2C" 256 512 -"CLSI 2018" "MIC" "B_STPHY" "SOX" "Table 2C" 256 512 -"CLSI 2018" "MIC" "B_STPHY" "SPX" "Table 2C" 0.5 2 -"CLSI 2018" "MIC" "B_STPHY" "SSS" "Table 2C" 256 512 -"CLSI 2018" "MIC" "B_STPHY" "SXT" "Table 2C" 2 4 -"CLSI 2018" "MIC" "B_STPHY" "TCC" "Table 2C" 8 16 -"CLSI 2018" "MIC" "B_STPHY" "TCY" "Table 2C" 4 16 -"CLSI 2018" "MIC" "B_STPHY" "TEC" "Table 2C" 8 32 -"CLSI 2018" "MIC" "B_STPHY" "TLT" "Table 2C" 1 4 -"CLSI 2018" "MIC" "B_STPHY" "TLV" "Table 2C" 0.125 -"CLSI 2018" "MIC" "B_STPHY" "TMP" "Table 2C" 8 16 -"CLSI 2018" "MIC" "B_STPHY" "TZD" "Table 2C" 0.5 2 -"CLSI 2018" "MIC" "B_STPHY" "TZP" "Table 2C" 8 16 -"CLSI 2018" "MIC" "B_STPHY" "VAN" "Table 2C" 4 32 -"CLSI 2018" "MIC" "B_STPHY_AURS" "CPT" "Table 2C" 1 4 -"CLSI 2018" "MIC" "B_STPHY_AURS" "FOX" "Table 2C" 4 8 -"CLSI 2018" "MIC" "B_STPHY_AURS" "OXA" "Table 2C" 2 4 -"CLSI 2018" "MIC" "B_STPHY_AURS" "VAN" "Table 2C" 2 16 -"CLSI 2018" "MIC" "B_STPHY_LGDN" "FOX" "Table 2C" 4 8 -"CLSI 2018" "MIC" "B_STPHY_LGDN" "OXA" "Table 2C" 2 4 -"CLSI 2018" "MIC" "B_STPHY_SCHL_SCHL" "OXA" "Table 2C" "1ug" 0.25 0.5 -"CLSI 2018" "MIC" "B_STRPT" "AMC" "Table 2H-1" -"CLSI 2018" "MIC" "B_STRPT" "AMP" "M45 Table 1" 0.25 8 -"CLSI 2018" "MIC" "B_STRPT" "AMP" "Table 2H-1" 0.25 -"CLSI 2018" "MIC" "B_STRPT" "AMX" "Table 2H-1" -"CLSI 2018" "MIC" "B_STRPT" "AZM" "Table 2H-1" 0.5 2 -"CLSI 2018" "MIC" "B_STRPT" "CHL" "M45 Table 1" 4 8 -"CLSI 2018" "MIC" "B_STRPT" "CHL" "Table 2H-1" 4 16 -"CLSI 2018" "MIC" "B_STRPT" "CIP" "M45 Table 1" 1 4 -"CLSI 2018" "MIC" "B_STRPT" "CLI" "M45 Table 1" 0.25 1 -"CLSI 2018" "MIC" "B_STRPT" "CLI" "Table 2H-1" 0.25 1 -"CLSI 2018" "MIC" "B_STRPT" "CLR" "Table 2H-1" 0.25 1 -"CLSI 2018" "MIC" "B_STRPT" "CPT" "Table 2H-1" 0.5 -"CLSI 2018" "MIC" "B_STRPT" "CRO" "M45 Table 1" 1 4 -"CLSI 2018" "MIC" "B_STRPT" "CRO" "Table 2H-1" 0.5 -"CLSI 2018" "MIC" "B_STRPT" "CTX" "M45 Table 1" 1 4 -"CLSI 2018" "MIC" "B_STRPT" "CTX" "Table 2H-1" 0.5 -"CLSI 2018" "MIC" "B_STRPT" "CXM" "Table 2H-1" -"CLSI 2018" "MIC" "B_STRPT" "DAL" "Table 2H-1" 0.25 -"CLSI 2018" "MIC" "B_STRPT" "DAP" "Table 2H-1" -"CLSI 2018" "MIC" "B_STRPT" "DIR" "Table 2H-1" 0.5 2 -"CLSI 2018" "MIC" "B_STRPT" "DOR" "Table 2H-1" 0.125 -"CLSI 2018" "MIC" "B_STRPT" "ERY" "M45 Table 1" 0.25 1 -"CLSI 2018" "MIC" "B_STRPT" "ERY" "Table 2H-1" 0.25 1 -"CLSI 2018" "MIC" "B_STRPT" "ETP" "Table 2H-1" 1 -"CLSI 2018" "MIC" "B_STRPT" "FEP" "M45 Table 1" 1 4 -"CLSI 2018" "MIC" "B_STRPT" "FEP" "Table 2H-1" 0.5 -"CLSI 2018" "MIC" "B_STRPT" "GAT" "M45 Table 1" 1 4 -"CLSI 2018" "MIC" "B_STRPT" "GAT" "Table 2H-1" 1 4 -"CLSI 2018" "MIC" "B_STRPT" "GEM" "Table 2H-1" -"CLSI 2018" "MIC" "B_STRPT" "GRX" "Table 2H-1" 0.5 2 -"CLSI 2018" "MIC" "B_STRPT" "IPM" "M45 Table 1" 0.5 2 -"CLSI 2018" "MIC" "B_STRPT" "IPM" "Table 2H-1" -"CLSI 2018" "MIC" "B_STRPT" "LNZ" "Table 2H-1" 2 -"CLSI 2018" "MIC" "B_STRPT" "LVX" "M45 Table 1" 2 8 -"CLSI 2018" "MIC" "B_STRPT" "LVX" "Table 2H-1" 2 8 -"CLSI 2018" "MIC" "B_STRPT" "MEM" "M45 Table 1" 0.5 2 -"CLSI 2018" "MIC" "B_STRPT" "MEM" "Table 2H-1" 0.5 -"CLSI 2018" "MIC" "B_STRPT" "MFX" "Table 2H-1" -"CLSI 2018" "MIC" "B_STRPT" "OFX" "Table 2H-1" 2 8 -"CLSI 2018" "MIC" "B_STRPT" "ORI" "Table 2H-1" 0.25 -"CLSI 2018" "MIC" "B_STRPT" "PEN" "M45 Table 1" 0.125 4 -"CLSI 2018" "MIC" "B_STRPT" "PEN" "Table 2H-1" 0.125 -"CLSI 2018" "MIC" "B_STRPT" "QDA" "Table 2H-1" 1 4 -"CLSI 2018" "MIC" "B_STRPT" "RIF" "Table 2H-1" -"CLSI 2018" "MIC" "B_STRPT" "SPX" "Table 2H-1" -"CLSI 2018" "MIC" "B_STRPT" "SXT" "Table 2H-1" -"CLSI 2018" "MIC" "B_STRPT" "TCY" "Table 2H-1" 2 8 -"CLSI 2018" "MIC" "B_STRPT" "TLT" "Table 2H-1" -"CLSI 2018" "MIC" "B_STRPT" "TLV" "Table 2H-1" 0.125 -"CLSI 2018" "MIC" "B_STRPT" "TVA" "Table 2H-1" 1 4 -"CLSI 2018" "MIC" "B_STRPT" "TZD" "Table 2H-1" 0.5 -"CLSI 2018" "MIC" "B_STRPT" "VAN" "M45 Table 1" 1 -"CLSI 2018" "MIC" "B_STRPT" "VAN" "Table 2H-1" 1 -"CLSI 2018" "MIC" "Non-meningitis" "B_STRPT_PNMN" "AMC" "Table 2G" 2 8 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "AMP" "Table 2G" -"CLSI 2018" "MIC" "Non-meningitis" "B_STRPT_PNMN" "AMX" "Table 2G" 2 8 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "AZM" "Table 2G" 0.5 2 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "CDR" "Table 2G" 0.5 2 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "CEC" "Table 2G" 1 4 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "CHL" "Table 2G" 4 8 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "CIP" "Table 2G" -"CLSI 2018" "MIC" "B_STRPT_PNMN" "CLI" "Table 2G" 0.25 1 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "CLR" "Table 2G" 0.25 1 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "CPD" "Table 2G" 0.5 2 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "CPR" "Table 2G" 2 8 -"CLSI 2018" "MIC" "Non-meningitis" "B_STRPT_PNMN" "CPT" "Table 2G" 0.5 -"CLSI 2018" "MIC" "Meningitis" "B_STRPT_PNMN" "CRO" "Table 2G" 0.5 2 -"CLSI 2018" "MIC" "Non-meningitis" "B_STRPT_PNMN" "CRO" "Table 2G" 1 4 -"CLSI 2018" "MIC" "Meningitis" "B_STRPT_PNMN" "CTX" "Table 2G" 0.5 2 -"CLSI 2018" "MIC" "Non-meningitis" "B_STRPT_PNMN" "CTX" "Table 2G" 1 4 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "CXA" "Table 2G" 1 4 -"CLSI 2018" "MIC" "Oral" "B_STRPT_PNMN" "CXM" "Table 2G" 1 4 -"CLSI 2018" "MIC" "Parenteral" "B_STRPT_PNMN" "CXM" "Table 2G" 0.5 2 -"CLSI 2018" "MIC" "Oral" "B_STRPT_PNMN" "CXM" "Table 2G" 1 4 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "DIR" "Table 2G" 0.5 2 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "DOR" "Table 2G" 1 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "DOX" "Table 2G" 0.25 1 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "ERY" "Table 2G" 0.25 1 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "ETP" "Table 2G" 1 4 -"CLSI 2018" "MIC" "Meningitis" "B_STRPT_PNMN" "FEP" "Table 2G" 0.5 2 -"CLSI 2018" "MIC" "Non-meningitis" "B_STRPT_PNMN" "FEP" "Table 2G" 1 4 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "GAT" "Table 2G" 1 4 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "GEM" "Table 2G" 0.125 0.5 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "GRX" "Table 2G" 0.5 2 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "IPM" "Table 2G" 0.125 1 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "LNZ" "Table 2G" 2 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "LOR" "Table 2G" 2 8 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "LVX" "Table 2G" 2 8 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "MEM" "Table 2G" 0.25 1 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "MFX" "Table 2G" 1 4 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "NOR" "Table 2G" -"CLSI 2018" "MIC" "B_STRPT_PNMN" "OFX" "Table 2G" 2 8 -"CLSI 2018" "MIC" "Meningitis" "B_STRPT_PNMN" "PEN" "Table 2G" 0.064 0.12 -"CLSI 2018" "MIC" "Non-meningitis" "B_STRPT_PNMN" "PEN" "Table 2G" 2 8 -"CLSI 2018" "MIC" "Oral" "B_STRPT_PNMN" "PEN" "Table 2G" 0.064 2 -"CLSI 2018" "MIC" "Oral" "B_STRPT_PNMN" "PNV" "Table 2G" 0.064 2 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "QDA" "Table 2G" 1 4 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "RIF" "Table 2G" 1 4 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "SAM" "Table 2G" -"CLSI 2018" "MIC" "B_STRPT_PNMN" "SPX" "Table 2G" 0.5 2 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "SXT" "Table 2G" 0.5 4 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "TCY" "Table 2G" 1 4 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "TLT" "Table 2G" 1 4 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "TVA" "Table 2G" 1 4 -"CLSI 2018" "MIC" "B_STRPT_PNMN" "VAN" "Table 2G" 1 -"CLSI 2018" "MIC" "B_STRPT_VIRI" "AMP" "Table 2H-2" 0.25 8 -"CLSI 2018" "MIC" "B_STRPT_VIRI" "AZM" "Table 2H-2" 0.5 2 -"CLSI 2018" "MIC" "B_STRPT_VIRI" "CHL" "Table 2H-2" 4 16 -"CLSI 2018" "MIC" "B_STRPT_VIRI" "CLI" "Table 2H-2" 0.25 1 -"CLSI 2018" "MIC" "B_STRPT_VIRI" "CLR" "Table 2H-2" 0.25 1 -"CLSI 2018" "MIC" "B_STRPT_VIRI" "CRO" "Table 2H-2" 1 4 -"CLSI 2018" "MIC" "B_STRPT_VIRI" "CTX" "Table 2H-2" 1 4 -"CLSI 2018" "MIC" "B_STRPT_VIRI" "CZT" "Table 2H-2" 8 32 -"CLSI 2018" "MIC" "B_STRPT_VIRI" "DAL" "Table 2H-2" 0.25 -"CLSI 2018" "MIC" "B_STRPT_VIRI" "DAP" "Table 2H-2" 1 -"CLSI 2018" "MIC" "B_STRPT_VIRI" "DIR" "Table 2H-2" 0.5 2 -"CLSI 2018" "MIC" "B_STRPT_VIRI" "DOR" "Table 2H-2" 1 -"CLSI 2018" "MIC" "B_STRPT_VIRI" "ERY" "Table 2H-2" 0.25 1 -"CLSI 2018" "MIC" "B_STRPT_VIRI" "ETP" "Table 2H-2" 1 -"CLSI 2018" "MIC" "B_STRPT_VIRI" "FEP" "Table 2H-2" 1 4 -"CLSI 2018" "MIC" "B_STRPT_VIRI" "GAT" "Table 2H-2" 1 4 -"CLSI 2018" "MIC" "B_STRPT_VIRI" "GRX" "Table 2H-2" 0.5 2 -"CLSI 2018" "MIC" "B_STRPT_VIRI" "LNZ" "Table 2H-2" 2 -"CLSI 2018" "MIC" "B_STRPT_VIRI" "LVX" "Table 2H-2" 2 8 -"CLSI 2018" "MIC" "B_STRPT_VIRI" "MEM" "Table 2H-2" 0.5 -"CLSI 2018" "MIC" "B_STRPT_VIRI" "OFX" "Table 2H-2" 2 8 -"CLSI 2018" "MIC" "B_STRPT_VIRI" "ORI" "Table 2H-2" 0.25 -"CLSI 2018" "MIC" "B_STRPT_VIRI" "PEN" "Table 2H-2" 0.125 4 -"CLSI 2018" "MIC" "B_STRPT_VIRI" "QDA" "Table 2H-2" 1 4 -"CLSI 2018" "MIC" "B_STRPT_VIRI" "TCY" "Table 2H-2" 2 8 -"CLSI 2018" "MIC" "B_STRPT_VIRI" "TLV" "Table 2H-2" 0.125 -"CLSI 2018" "MIC" "B_STRPT_VIRI" "TVA" "Table 2H-2" 1 4 -"CLSI 2018" "MIC" "B_STRPT_VIRI" "TZD" "Table 2H-2" 0.25 -"CLSI 2018" "MIC" "B_STRPT_VIRI" "VAN" "Table 2H-2" 1 -"CLSI 2018" "MIC" "B_VIBRI_CHLR" "AZM" "M45 Table 14" "30ug" 2 -"CLSI 2018" "MIC" "B_VIBRI_CHLR" "DOX" "M45 Table 14" "30ug" 4 16 -"CLSI 2018" "MIC" "B_YERSN_PSTS" "CHL" "M45 Table 16" 8 32 -"CLSI 2018" "MIC" "B_YERSN_PSTS" "CIP" "M45 Table 16" 0.25 -"CLSI 2018" "MIC" "B_YERSN_PSTS" "DOX" "M45 Table 16" 4 16 -"CLSI 2018" "MIC" "B_YERSN_PSTS" "GEN" "M45 Table 16" 4 16 -"CLSI 2018" "MIC" "B_YERSN_PSTS" "LVX" "M45 Table 16" 0.25 -"CLSI 2018" "MIC" "B_YERSN_PSTS" "STR" "M45 Table 16" 4 16 -"CLSI 2018" "MIC" "B_YERSN_PSTS" "SXT" "M45 Table 16" 2 4 -"CLSI 2018" "MIC" "B_YERSN_PSTS" "TCY" "M45 Table 16" 4 16 -"CLSI 2018" "MIC" "F_PSDLL" "OXA" "Table 2C" 0.25 0.5 -"CLSI 2017" "MIC" "Urine" "B_[FAM]_ENTRBCTR" "CZO" "Table 2A" 16 32 -"CLSI 2017" "MIC" "B_ABTRP" "FEP" "M45 Table 1" 1 4 -"CLSI 2017" "MIC" "B_ABTRP" "GAT" "M45 Table 1" 1 4 -"CLSI 2017" "MIC" "B_ABTRP" "IPM" "M45 Table 1" 0.5 2 -"CLSI 2017" "MIC" "B_ABTRP" "LVX" "M45 Table 1" 2 8 -"CLSI 2017" "MIC" "B_ABTRP" "MEM" "M45 Table 1" 0.5 2 -"CLSI 2017" "MIC" "B_ABTRP" "PEN" "M45 Table 1" 0.125 4 -"CLSI 2017" "MIC" "B_ABTRP" "VAN" "M45 Table 1" 1 -"CLSI 2017" "MIC" "B_ACNTB" "AMK" "Table 2B-2" 16 64 -"CLSI 2017" "MIC" "B_ACNTB" "CAZ" "Table 2B-2" 8 32 -"CLSI 2017" "MIC" "B_ACNTB" "CIP" "Table 2B-2" 1 4 -"CLSI 2017" "MIC" "B_ACNTB" "COL" "Table 2B-2" 2 4 -"CLSI 2017" "MIC" "B_ACNTB" "CRO" "Table 2B-2" 8 64 -"CLSI 2017" "MIC" "B_ACNTB" "CTX" "Table 2B-2" 8 64 -"CLSI 2017" "MIC" "B_ACNTB" "DOR" "Table 2B-2" 2 8 -"CLSI 2017" "MIC" "B_ACNTB" "DOX" "Table 2B-2" 4 16 -"CLSI 2017" "MIC" "B_ACNTB" "ETP" "Table 2B-2" -"CLSI 2017" "MIC" "B_ACNTB" "FEP" "Table 2B-2" 8 32 -"CLSI 2017" "MIC" "B_ACNTB" "GAT" "Table 2B-2" 2 8 -"CLSI 2017" "MIC" "B_ACNTB" "GEN" "Table 2B-2" 4 16 -"CLSI 2017" "MIC" "B_ACNTB" "IPM" "Table 2B-2" 2 8 -"CLSI 2017" "MIC" "B_ACNTB" "LVX" "Table 2B-2" 2 8 -"CLSI 2017" "MIC" "B_ACNTB" "MEM" "Table 2B-2" 2 8 -"CLSI 2017" "MIC" "B_ACNTB" "MNO" "Table 2B-2" 4 16 -"CLSI 2017" "MIC" "B_ACNTB" "NET" "Table 2B-2" 8 32 -"CLSI 2017" "MIC" "B_ACNTB" "PIP" "Table 2B-2" 16 128 -"CLSI 2017" "MIC" "B_ACNTB" "PLB" "Table 2B-2" 2 4 -"CLSI 2017" "MIC" "B_ACNTB" "SAM" "Table 2B-2" 8 32 -"CLSI 2017" "MIC" "B_ACNTB" "SXT" "Table 2B-2" 2 4 -"CLSI 2017" "MIC" "B_ACNTB" "TCC" "Table 2B-2" 16 128 -"CLSI 2017" "MIC" "B_ACNTB" "TCY" "Table 2B-2" 4 16 -"CLSI 2017" "MIC" "B_ACNTB" "TOB" "Table 2B-2" 4 16 -"CLSI 2017" "MIC" "B_ACNTB" "TZP" "Table 2B-2" 16 128 -"CLSI 2017" "MIC" "B_ACTNB_PLRP" "TIL" "Vet Table" 16 32 -"CLSI 2017" "MIC" "B_AERMN" "AMC" "M45 Table 2" 8 32 -"CLSI 2017" "MIC" "B_AERMN" "AMK" "M45 Table 2" 16 64 -"CLSI 2017" "MIC" "B_AERMN" "ATM" "M45 Table 2" 4 16 -"CLSI 2017" "MIC" "B_AERMN" "CAZ" "M45 Table 2" 4 16 -"CLSI 2017" "MIC" "B_AERMN" "CHL" "M45 Table 2" 8 32 -"CLSI 2017" "MIC" "B_AERMN" "CIP" "M45 Table 2" 1 4 -"CLSI 2017" "MIC" "B_AERMN" "CRO" "M45 Table 2" 1 4 -"CLSI 2017" "MIC" "B_AERMN" "CTX" "M45 Table 2" 1 4 -"CLSI 2017" "MIC" "B_AERMN" "CXM" "M45 Table 2" 8 32 -"CLSI 2017" "MIC" "B_AERMN" "CZO" "M45 Table 2" 1 4 -"CLSI 2017" "MIC" "B_AERMN" "ETP" "M45 Table 2" 2 8 -"CLSI 2017" "MIC" "B_AERMN" "FEP" "M45 Table 2" 8 32 -"CLSI 2017" "MIC" "B_AERMN" "FOX" "M45 Table 2" 8 32 -"CLSI 2017" "MIC" "B_AERMN" "GEN" "M45 Table 2" 4 16 -"CLSI 2017" "MIC" "B_AERMN" "IPM" "M45 Table 2" 4 16 -"CLSI 2017" "MIC" "B_AERMN" "LVX" "M45 Table 2" 2 8 -"CLSI 2017" "MIC" "B_AERMN" "MEM" "M45 Table 2" 4 16 -"CLSI 2017" "MIC" "B_AERMN" "SAM" "M45 Table 2" 8 32 -"CLSI 2017" "MIC" "B_AERMN" "SXT" "M45 Table 2" 2 4 -"CLSI 2017" "MIC" "B_AERMN" "TCY" "M45 Table 2" 4 16 -"CLSI 2017" "MIC" "B_AERMN" "TZP" "M45 Table 2" 16 128 -"CLSI 2017" "MIC" "B_AGGRG" "AMC" "M45 Table 7" 4 8 -"CLSI 2017" "MIC" "B_AGGRG" "AMP" "M45 Table 7" 1 4 -"CLSI 2017" "MIC" "B_AGGRG" "AZM" "M45 Table 7" 4 -"CLSI 2017" "MIC" "B_AGGRG" "CHL" "M45 Table 7" 4 16 -"CLSI 2017" "MIC" "B_AGGRG" "CIP" "M45 Table 7" 1 4 -"CLSI 2017" "MIC" "B_AGGRG" "CLR" "M45 Table 7" 8 32 -"CLSI 2017" "MIC" "B_AGGRG" "CRO" "M45 Table 7" 2 -"CLSI 2017" "MIC" "B_AGGRG" "CTX" "M45 Table 7" 2 -"CLSI 2017" "MIC" "B_AGGRG" "IPM" "M45 Table 7" 4 16 -"CLSI 2017" "MIC" "B_AGGRG" "LVX" "M45 Table 7" 2 8 -"CLSI 2017" "MIC" "B_AGGRG" "MEM" "M45 Table 7" 4 16 -"CLSI 2017" "MIC" "B_AGGRG" "PEN" "M45 Table 7" 1 4 -"CLSI 2017" "MIC" "B_AGGRG" "RIF" "M45 Table 7" 1 4 -"CLSI 2017" "MIC" "B_AGGRG" "SAM" "M45 Table 7" 2 4 -"CLSI 2017" "MIC" "B_AGGRG" "SXT" "M45 Table 7" 0.5 4 -"CLSI 2017" "MIC" "B_AGGRG" "TCY" "M45 Table 7" 2 8 -"CLSI 2017" "MIC" "Canine, feline" "B_ALLSC" "ENR" "Vet Table" 0.5 4 -"CLSI 2017" "MIC" "B_ANRSL" "AMC" "Table 2J" 4 16 -"CLSI 2017" "MIC" "B_ANRSL" "AMP" "Table 2J" 0.5 2 -"CLSI 2017" "MIC" "B_ANRSL" "CFP" "Table 2J" 16 64 -"CLSI 2017" "MIC" "B_ANRSL" "CHL" "Table 2J" 8 32 -"CLSI 2017" "MIC" "B_ANRSL" "CLI" "Table 2J" 2 8 -"CLSI 2017" "MIC" "B_ANRSL" "CMZ" "Table 2J" 16 64 -"CLSI 2017" "MIC" "B_ANRSL" "CRO" "Table 2J" 16 64 -"CLSI 2017" "MIC" "B_ANRSL" "CTT" "Table 2J" 16 64 -"CLSI 2017" "MIC" "B_ANRSL" "CTX" "Table 2J" 16 64 -"CLSI 2017" "MIC" "B_ANRSL" "CZX" "Table 2J" 32 128 -"CLSI 2017" "MIC" "B_ANRSL" "DOR" "Table 2J" 2 8 -"CLSI 2017" "MIC" "B_ANRSL" "ETP" "Table 2J" 4 16 -"CLSI 2017" "MIC" "B_ANRSL" "FOX" "Table 2J" 16 64 -"CLSI 2017" "MIC" "B_ANRSL" "IPM" "Table 2J" 4 16 -"CLSI 2017" "MIC" "B_ANRSL" "LTM" "Table 2J" 2 8 -"CLSI 2017" "MIC" "B_ANRSL" "MEM" "Table 2J" 4 16 -"CLSI 2017" "MIC" "B_ANRSL" "MTR" "Table 2J" 8 32 -"CLSI 2017" "MIC" "B_ANRSL" "PEN" "Table 2J" 0.5 2 -"CLSI 2017" "MIC" "B_ANRSL" "PIP" "Table 2J" 32 128 -"CLSI 2017" "MIC" "B_ANRSL" "SAM" "Table 2J" 8 32 -"CLSI 2017" "MIC" "B_ANRSL" "TCC" "Table 2J" 32 128 -"CLSI 2017" "MIC" "B_ANRSL" "TCY" "Table 2J" 4 16 -"CLSI 2017" "MIC" "B_ANRSL" "TZP" "Table 2J" 32 128 -"CLSI 2017" "MIC" "B_BCLLS" "AMK" "M45 Table 3" 16 64 -"CLSI 2017" "MIC" "B_BCLLS" "AMP" "M45 Table 3" 0.25 0.5 -"CLSI 2017" "MIC" "B_BCLLS" "CAZ" "M45 Table 3" 8 32 -"CLSI 2017" "MIC" "B_BCLLS" "CHL" "M45 Table 3" 8 32 -"CLSI 2017" "MIC" "B_BCLLS" "CIP" "M45 Table 3" 1 4 -"CLSI 2017" "MIC" "B_BCLLS" "CLI" "M45 Table 3" 0.5 4 -"CLSI 2017" "MIC" "B_BCLLS" "CRO" "M45 Table 3" 8 64 -"CLSI 2017" "MIC" "B_BCLLS" "CTX" "M45 Table 3" 8 64 -"CLSI 2017" "MIC" "B_BCLLS" "CZO" "M45 Table 3" 8 16 -"CLSI 2017" "MIC" "B_BCLLS" "ERY" "M45 Table 3" 0.5 8 -"CLSI 2017" "MIC" "B_BCLLS" "GEN" "M45 Table 3" 4 16 -"CLSI 2017" "MIC" "B_BCLLS" "IPM" "M45 Table 3" 4 16 -"CLSI 2017" "MIC" "B_BCLLS" "LVX" "M45 Table 3" 2 8 -"CLSI 2017" "MIC" "B_BCLLS" "PEN" "M45 Table 3" 0.125 0.25 -"CLSI 2017" "MIC" "B_BCLLS" "RIF" "M45 Table 3" 1 4 -"CLSI 2017" "MIC" "B_BCLLS" "SXT" "M45 Table 3" 2 4 -"CLSI 2017" "MIC" "B_BCLLS" "TCY" "M45 Table 3" 4 16 -"CLSI 2017" "MIC" "B_BCLLS" "VAN" "M45 Table 3" 4 -"CLSI 2017" "MIC" "B_BCLLS_ANTH" "AMK" "M45 Table 16" -"CLSI 2017" "MIC" "B_BCLLS_ANTH" "AMP" "M45 Table 16" -"CLSI 2017" "MIC" "B_BCLLS_ANTH" "CAZ" "M45 Table 16" -"CLSI 2017" "MIC" "B_BCLLS_ANTH" "CHL" "M45 Table 16" -"CLSI 2017" "MIC" "B_BCLLS_ANTH" "CIP" "M45 Table 16" 0.25 -"CLSI 2017" "MIC" "B_BCLLS_ANTH" "CLI" "M45 Table 16" -"CLSI 2017" "MIC" "B_BCLLS_ANTH" "CRO" "M45 Table 16" -"CLSI 2017" "MIC" "B_BCLLS_ANTH" "CTX" "M45 Table 16" -"CLSI 2017" "MIC" "B_BCLLS_ANTH" "CZO" "M45 Table 16" -"CLSI 2017" "MIC" "B_BCLLS_ANTH" "DOX" "M45 Table 16" 1 -"CLSI 2017" "MIC" "B_BCLLS_ANTH" "ERY" "M45 Table 16" -"CLSI 2017" "MIC" "B_BCLLS_ANTH" "GEN" "M45 Table 16" -"CLSI 2017" "MIC" "B_BCLLS_ANTH" "IPM" "M45 Table 16" -"CLSI 2017" "MIC" "B_BCLLS_ANTH" "LVX" "M45 Table 16" 0.25 -"CLSI 2017" "MIC" "B_BCLLS_ANTH" "PEN" "M45 Table 16" 0.125 0.25 -"CLSI 2017" "MIC" "B_BCLLS_ANTH" "RIF" "M45 Table 16" -"CLSI 2017" "MIC" "B_BCLLS_ANTH" "SXT" "M45 Table 16" -"CLSI 2017" "MIC" "B_BCLLS_ANTH" "TCY" "M45 Table 16" 1 -"CLSI 2017" "MIC" "B_BCLLS_ANTH" "VAN" "M45 Table 16" -"CLSI 2017" "MIC" "B_BRCLL" "DOX" "M45 Table 16" 1 -"CLSI 2017" "MIC" "B_BRCLL" "GEN" "M45 Table 16" 4 -"CLSI 2017" "MIC" "B_BRCLL" "STR" "M45 Table 16" 8 -"CLSI 2017" "MIC" "B_BRCLL" "SXT" "M45 Table 16" 2 -"CLSI 2017" "MIC" "B_BRCLL" "TCY" "M45 Table 16" 1 -"CLSI 2017" "MIC" "B_BRKHL_CEPC" "CAZ" "Table 2B-3" 8 32 -"CLSI 2017" "MIC" "B_BRKHL_CEPC" "CHL" "Table 2B-3" 8 32 -"CLSI 2017" "MIC" "B_BRKHL_CEPC" "LVX" "Table 2B-3" 2 8 -"CLSI 2017" "MIC" "B_BRKHL_CEPC" "MEM" "Table 2B-3" 4 16 -"CLSI 2017" "MIC" "B_BRKHL_CEPC" "MNO" "Table 2B-3" 4 16 -"CLSI 2017" "MIC" "B_BRKHL_CEPC" "SXT" "Table 2B-3" 2 4 -"CLSI 2017" "MIC" "B_BRKHL_CEPC" "TCC" "Table 2B-3" 16 128 -"CLSI 2017" "MIC" "B_BRKHL_MALL" "CAZ" "M45 Table 16" 8 32 -"CLSI 2017" "MIC" "B_BRKHL_MALL" "DOX" "M45 Table 16" 4 16 -"CLSI 2017" "MIC" "B_BRKHL_MALL" "IPM" "M45 Table 16" 4 16 -"CLSI 2017" "MIC" "B_BRKHL_MALL" "TCY" "M45 Table 16" 4 16 -"CLSI 2017" "MIC" "B_BRKHL_PSDM" "AMC" "M45 Table 16" 8 32 -"CLSI 2017" "MIC" "B_BRKHL_PSDM" "CAZ" "M45 Table 16" 8 32 -"CLSI 2017" "MIC" "B_BRKHL_PSDM" "DOX" "M45 Table 16" 4 16 -"CLSI 2017" "MIC" "B_BRKHL_PSDM" "IPM" "M45 Table 16" 4 16 -"CLSI 2017" "MIC" "B_BRKHL_PSDM" "SXT" "M45 Table 16" 2 4 -"CLSI 2017" "MIC" "B_BRKHL_PSDM" "TCY" "M45 Table 16" 4 16 -"CLSI 2017" "MIC" "B_CMPYL" "CIP" "M45 Table 3" 1 4 -"CLSI 2017" "MIC" "B_CMPYL" "DOX" "M45 Table 3" 2 8 -"CLSI 2017" "MIC" "B_CMPYL" "ERY" "M45 Table 3" 8 32 -"CLSI 2017" "MIC" "B_CMPYL" "TCY" "M45 Table 3" 4 16 -"CLSI 2017" "MIC" "B_CRDBC" "AMC" "M45 Table 7" 4 8 -"CLSI 2017" "MIC" "B_CRDBC" "AMP" "M45 Table 7" 1 4 -"CLSI 2017" "MIC" "B_CRDBC" "AZM" "M45 Table 7" 4 -"CLSI 2017" "MIC" "B_CRDBC" "CHL" "M45 Table 7" 4 16 -"CLSI 2017" "MIC" "B_CRDBC" "CIP" "M45 Table 7" 1 4 -"CLSI 2017" "MIC" "B_CRDBC" "CLR" "M45 Table 7" 8 32 -"CLSI 2017" "MIC" "B_CRDBC" "CRO" "M45 Table 7" 2 -"CLSI 2017" "MIC" "B_CRDBC" "CTX" "M45 Table 7" 2 -"CLSI 2017" "MIC" "B_CRDBC" "IPM" "M45 Table 7" 0.5 2 -"CLSI 2017" "MIC" "B_CRDBC" "LVX" "M45 Table 7" 2 8 -"CLSI 2017" "MIC" "B_CRDBC" "MEM" "M45 Table 7" 0.5 2 -"CLSI 2017" "MIC" "B_CRDBC" "PEN" "M45 Table 7" 1 4 -"CLSI 2017" "MIC" "B_CRDBC" "RIF" "M45 Table 7" 1 4 -"CLSI 2017" "MIC" "B_CRDBC" "SAM" "M45 Table 7" 2 4 -"CLSI 2017" "MIC" "B_CRDBC" "SXT" "M45 Table 7" 0.5 4 -"CLSI 2017" "MIC" "B_CRDBC" "TCY" "M45 Table 7" 2 8 -"CLSI 2017" "MIC" "B_EKNLL" "AMC" "M45 Table 7" 4 8 -"CLSI 2017" "MIC" "B_EKNLL" "AMP" "M45 Table 7" 1 4 -"CLSI 2017" "MIC" "B_EKNLL" "AZM" "M45 Table 7" 4 -"CLSI 2017" "MIC" "B_EKNLL" "CHL" "M45 Table 7" 4 16 -"CLSI 2017" "MIC" "B_EKNLL" "CIP" "M45 Table 7" 1 4 -"CLSI 2017" "MIC" "B_EKNLL" "CLR" "M45 Table 7" 8 32 -"CLSI 2017" "MIC" "B_EKNLL" "CRO" "M45 Table 7" 2 -"CLSI 2017" "MIC" "B_EKNLL" "CTX" "M45 Table 7" 2 -"CLSI 2017" "MIC" "B_EKNLL" "IPM" "M45 Table 7" 0.5 2 -"CLSI 2017" "MIC" "B_EKNLL" "LVX" "M45 Table 7" 2 8 -"CLSI 2017" "MIC" "B_EKNLL" "MEM" "M45 Table 7" 0.5 2 -"CLSI 2017" "MIC" "B_EKNLL" "PEN" "M45 Table 7" 1 4 -"CLSI 2017" "MIC" "B_EKNLL" "RIF" "M45 Table 7" 1 4 -"CLSI 2017" "MIC" "B_EKNLL" "SAM" "M45 Table 7" 2 4 -"CLSI 2017" "MIC" "B_EKNLL" "SXT" "M45 Table 7" 0.5 4 -"CLSI 2017" "MIC" "B_EKNLL" "TCY" "M45 Table 7" 2 8 -"CLSI 2017" "MIC" "B_ENTRC" "AMP" "Table 2D" 8 16 -"CLSI 2017" "MIC" "B_ENTRC" "CHL" "Table 2D" 8 32 -"CLSI 2017" "MIC" "B_ENTRC" "CIP" "Table 2D" 1 4 -"CLSI 2017" "MIC" "B_ENTRC" "DAP" "Table 2D" 4 -"CLSI 2017" "MIC" "B_ENTRC" "DOX" "Table 2D" 4 16 -"CLSI 2017" "MIC" "B_ENTRC" "ERY" "Table 2D" 0.5 8 -"CLSI 2017" "MIC" "B_ENTRC" "FOS" "Table 2D" 64 256 -"CLSI 2017" "MIC" "B_ENTRC" "GAT" "Table 2D" 2 8 -"CLSI 2017" "MIC" "B_ENTRC" "GEH" "Table 2D" 512 512 -"CLSI 2017" "MIC" "B_ENTRC" "GEN" "Table 2D" 512 512 -"CLSI 2017" "MIC" "B_ENTRC" "LNZ" "Table 2D" 2 8 -"CLSI 2017" "MIC" "B_ENTRC" "LVX" "Table 2D" 2 8 -"CLSI 2017" "MIC" "B_ENTRC" "MNO" "Table 2D" 4 16 -"CLSI 2017" "MIC" "B_ENTRC" "NIT" "Table 2D" 32 128 -"CLSI 2017" "MIC" "B_ENTRC" "NOR" "Table 2D" 4 16 -"CLSI 2017" "MIC" "B_ENTRC" "ORI" "Table 2D" 0.125 -"CLSI 2017" "MIC" "B_ENTRC" "PEN" "Table 2D" 8 16 -"CLSI 2017" "MIC" "B_ENTRC" "QDA" "Table 2D" 1 4 -"CLSI 2017" "MIC" "B_ENTRC" "RIF" "Table 2D" 1 4 -"CLSI 2017" "MIC" "B_ENTRC" "STH" "Table 2D" 1024 1024 -"CLSI 2017" "MIC" "B_ENTRC" "STR" "Table 2D" 1024 1024 -"CLSI 2017" "MIC" "B_ENTRC" "TCY" "Table 2D" 4 16 -"CLSI 2017" "MIC" "B_ENTRC" "TEC" "Table 2D" 8 32 -"CLSI 2017" "MIC" "B_ENTRC" "TLV" "Table 2D" 0.125 -"CLSI 2017" "MIC" "B_ENTRC" "TZD" "Table 2D" 0.5 -"CLSI 2017" "MIC" "B_ENTRC" "VAN" "Table 2D" 4 32 -"CLSI 2017" "MIC" "B_ERYSP_RHSP" "AMP" "M45 Table 6" 0.25 -"CLSI 2017" "MIC" "B_ERYSP_RHSP" "CIP" "M45 Table 6" 1 -"CLSI 2017" "MIC" "B_ERYSP_RHSP" "CLI" "M45 Table 6" 0.25 1 -"CLSI 2017" "MIC" "B_ERYSP_RHSP" "CRO" "M45 Table 6" 1 -"CLSI 2017" "MIC" "B_ERYSP_RHSP" "CTX" "M45 Table 6" 1 -"CLSI 2017" "MIC" "B_ERYSP_RHSP" "ERY" "M45 Table 6" 0.25 1 -"CLSI 2017" "MIC" "B_ERYSP_RHSP" "FEP" "M45 Table 6" 1 -"CLSI 2017" "MIC" "B_ERYSP_RHSP" "IPM" "M45 Table 6" 0.5 -"CLSI 2017" "MIC" "B_ERYSP_RHSP" "LVX" "M45 Table 6" 2 -"CLSI 2017" "MIC" "B_ERYSP_RHSP" "MEM" "M45 Table 6" 0.5 -"CLSI 2017" "MIC" "B_ERYSP_RHSP" "PEN" "M45 Table 6" 0.125 -"CLSI 2017" "MIC" "B_FRNCS_TLRN" "CHL" "M45 Table 16" 8 -"CLSI 2017" "MIC" "B_FRNCS_TLRN" "CIP" "M45 Table 16" 0.5 -"CLSI 2017" "MIC" "B_FRNCS_TLRN" "DOX" "M45 Table 16" 4 -"CLSI 2017" "MIC" "B_FRNCS_TLRN" "GEN" "M45 Table 16" 4 -"CLSI 2017" "MIC" "B_FRNCS_TLRN" "LVX" "M45 Table 16" 0.5 -"CLSI 2017" "MIC" "B_FRNCS_TLRN" "STR" "M45 Table 16" 8 -"CLSI 2017" "MIC" "B_FRNCS_TLRN" "TCY" "M45 Table 16" 4 -"CLSI 2017" "MIC" "B_GRNLC" "AMP" "M45 Table 1" 0.25 8 -"CLSI 2017" "MIC" "B_GRNLC" "CHL" "M45 Table 1" 4 8 -"CLSI 2017" "MIC" "B_GRNLC" "CIP" "M45 Table 1" 1 4 -"CLSI 2017" "MIC" "B_GRNLC" "CLI" "M45 Table 1" 0.25 1 -"CLSI 2017" "MIC" "B_GRNLC" "CRO" "M45 Table 1" 1 4 -"CLSI 2017" "MIC" "B_GRNLC" "CTX" "M45 Table 1" 1 4 -"CLSI 2017" "MIC" "B_GRNLC" "ERY" "M45 Table 1" 0.25 1 -"CLSI 2017" "MIC" "B_GRNLC" "FEP" "M45 Table 1" 1 4 -"CLSI 2017" "MIC" "B_GRNLC" "GAT" "M45 Table 1" 1 4 -"CLSI 2017" "MIC" "B_GRNLC" "IPM" "M45 Table 1" 0.5 2 -"CLSI 2017" "MIC" "B_GRNLC" "LVX" "M45 Table 1" 2 8 -"CLSI 2017" "MIC" "B_GRNLC" "MEM" "M45 Table 1" 0.5 2 -"CLSI 2017" "MIC" "B_GRNLC" "PEN" "M45 Table 1" 0.125 4 -"CLSI 2017" "MIC" "B_GRNLC" "VAN" "M45 Table 1" 1 -"CLSI 2017" "MIC" "B_HLCBCT_PYLR" "CLR" "M45 Table 8" 0.25 1 -"CLSI 2017" "MIC" "B_HMPHL" "AMC" "Table 2E" 4 8 -"CLSI 2017" "MIC" "B_HMPHL" "AMP" "Table 2E" 1 4 -"CLSI 2017" "MIC" "B_HMPHL" "ATM" "Table 2E" 2 -"CLSI 2017" "MIC" "B_HMPHL" "AZM" "Table 2E" 4 -"CLSI 2017" "MIC" "B_HMPHL" "CAT" "Table 2E" 4 16 -"CLSI 2017" "MIC" "B_HMPHL" "CAZ" "Table 2E" 2 -"CLSI 2017" "MIC" "B_HMPHL" "CDR" "Table 2E" 1 -"CLSI 2017" "MIC" "B_HMPHL" "CEC" "Table 2E" 8 32 -"CLSI 2017" "MIC" "B_HMPHL" "CFM" "Table 2E" 1 -"CLSI 2017" "MIC" "B_HMPHL" "CHL" "Table 2E" 2 8 -"CLSI 2017" "MIC" "B_HMPHL" "CID" "Table 2E" 4 16 -"CLSI 2017" "MIC" "B_HMPHL" "CIP" "Table 2E" 1 -"CLSI 2017" "MIC" "B_HMPHL" "CLR" "Table 2E" 8 32 -"CLSI 2017" "MIC" "B_HMPHL" "CPD" "Table 2E" 2 -"CLSI 2017" "MIC" "B_HMPHL" "CPR" "Table 2E" 8 32 -"CLSI 2017" "MIC" "B_HMPHL" "CRO" "Table 2E" 2 -"CLSI 2017" "MIC" "B_HMPHL" "CTB" "Table 2E" 2 -"CLSI 2017" "MIC" "B_HMPHL" "CTX" "Table 2E" 2 -"CLSI 2017" "MIC" "B_HMPHL" "CXA" "Table 2E" 4 16 -"CLSI 2017" "MIC" "Oral" "B_HMPHL" "CXM" "Table 2E" 4 16 -"CLSI 2017" "MIC" "B_HMPHL" "CXM" "Table 2E" 4 16 -"CLSI 2017" "MIC" "B_HMPHL" "CZX" "Table 2E" 2 -"CLSI 2017" "MIC" "B_HMPHL" "DOR" "Table 2E" 1 -"CLSI 2017" "MIC" "B_HMPHL" "ETP" "Table 2E" 0.5 -"CLSI 2017" "MIC" "B_HMPHL" "FEP" "Table 2E" 2 -"CLSI 2017" "MIC" "B_HMPHL" "FLE" "Table 2E" 2 -"CLSI 2017" "MIC" "B_HMPHL" "GAT" "Table 2E" 1 -"CLSI 2017" "MIC" "B_HMPHL" "GEM" "Table 2E" 0.125 -"CLSI 2017" "MIC" "B_HMPHL" "GRX" "Table 2E" 0.5 -"CLSI 2017" "MIC" "B_HMPHL" "IPM" "Table 2E" 4 -"CLSI 2017" "MIC" "B_HMPHL" "LOM" "Table 2E" 2 -"CLSI 2017" "MIC" "B_HMPHL" "LOR" "Table 2E" 8 32 -"CLSI 2017" "MIC" "B_HMPHL" "LVX" "Table 2E" 2 -"CLSI 2017" "MIC" "B_HMPHL" "MAN" "Table 2E" 4 16 -"CLSI 2017" "MIC" "B_HMPHL" "MEM" "Table 2E" 0.5 -"CLSI 2017" "MIC" "B_HMPHL" "MFX" "Table 2E" 1 -"CLSI 2017" "MIC" "B_HMPHL" "OFX" "Table 2E" 2 -"CLSI 2017" "MIC" "B_HMPHL" "RIF" "Table 2E" 1 4 -"CLSI 2017" "MIC" "B_HMPHL" "SAM" "Table 2E" 2 4 -"CLSI 2017" "MIC" "B_HMPHL" "SPX" "Table 2E" 0.25 -"CLSI 2017" "MIC" "B_HMPHL" "SXT" "Table 2E" 0.5 4 -"CLSI 2017" "MIC" "B_HMPHL" "TCY" "Table 2E" 2 8 -"CLSI 2017" "MIC" "B_HMPHL" "TLT" "Table 2E" 4 16 -"CLSI 2017" "MIC" "B_HMPHL" "TVA" "Table 2E" 1 -"CLSI 2017" "MIC" "B_HMPHL" "TZP" "Table 2E" 1 2 -"CLSI 2017" "MIC" "B_HMPHL_INFL" "CPT" "Table 2E" 0.5 -"CLSI 2017" "MIC" "B_HSTPH_SOMN" "ENR" "Vet Table" 0.25 2 -"CLSI 2017" "MIC" "B_KGLLA" "AZM" "M45 Table 7" 4 -"CLSI 2017" "MIC" "B_KGLLA" "CHL" "M45 Table 7" 4 16 -"CLSI 2017" "MIC" "B_KGLLA" "CIP" "M45 Table 7" 1 4 -"CLSI 2017" "MIC" "B_KGLLA" "CLR" "M45 Table 7" 8 32 -"CLSI 2017" "MIC" "B_KGLLA" "CRO" "M45 Table 7" 2 -"CLSI 2017" "MIC" "B_KGLLA" "CTX" "M45 Table 7" 2 -"CLSI 2017" "MIC" "B_KGLLA" "IPM" "M45 Table 7" 0.5 2 -"CLSI 2017" "MIC" "B_KGLLA" "LVX" "M45 Table 7" 2 8 -"CLSI 2017" "MIC" "B_KGLLA" "MEM" "M45 Table 7" 0.5 2 -"CLSI 2017" "MIC" "B_KGLLA" "PEN" "M45 Table 7" 1 4 -"CLSI 2017" "MIC" "B_KGLLA" "RIF" "M45 Table 7" 1 4 -"CLSI 2017" "MIC" "B_KGLLA" "SXT" "M45 Table 7" 0.5 4 -"CLSI 2017" "MIC" "B_KGLLA" "TCY" "M45 Table 7" 2 8 -"CLSI 2017" "MIC" "B_LCNST" "AMP" "M45 Table 10" 8 -"CLSI 2017" "MIC" "B_LCNST" "CHL" "M45 Table 10" 8 32 -"CLSI 2017" "MIC" "B_LCNST" "GEN" "M45 Table 10" 4 16 -"CLSI 2017" "MIC" "B_LCNST" "MNO" "M45 Table 10" 4 16 -"CLSI 2017" "MIC" "B_LCNST" "PEN" "M45 Table 10" 8 -"CLSI 2017" "MIC" "B_LCTBC" "AMP" "M45 Table 9" 8 -"CLSI 2017" "MIC" "B_LCTBC" "CLI" "M45 Table 9" 0.5 2 -"CLSI 2017" "MIC" "B_LCTBC" "DAP" "M45 Table 9" 4 -"CLSI 2017" "MIC" "B_LCTBC" "ERY" "M45 Table 9" 0.5 8 -"CLSI 2017" "MIC" "B_LCTBC" "GEN" "M45 Table 9" 4 16 -"CLSI 2017" "MIC" "B_LCTBC" "IPM" "M45 Table 9" 0.5 2 -"CLSI 2017" "MIC" "B_LCTBC" "LNZ" "M45 Table 9" 4 -"CLSI 2017" "MIC" "B_LCTBC" "PEN" "M45 Table 9" 8 -"CLSI 2017" "MIC" "B_LCTBC" "VAN" "M45 Table 9" 2 16 -"CLSI 2017" "MIC" "B_LISTR_MNCY" "AMP" "M45 Table 11" 2 -"CLSI 2017" "MIC" "B_LISTR_MNCY" "PEN" "M45 Table 11" 2 -"CLSI 2017" "MIC" "B_LISTR_MNCY" "SXT" "M45 Table 11" 0.5 4 -"CLSI 2017" "MIC" "B_MRXLL_CTRR" "AMC" "M45 Table 12" 4 8 -"CLSI 2017" "MIC" "B_MRXLL_CTRR" "AZM" "M45 Table 12" 0.25 -"CLSI 2017" "MIC" "B_MRXLL_CTRR" "CAZ" "M45 Table 12" 2 -"CLSI 2017" "MIC" "B_MRXLL_CTRR" "CEC" "M45 Table 12" 8 32 -"CLSI 2017" "MIC" "B_MRXLL_CTRR" "CHL" "M45 Table 12" 2 8 -"CLSI 2017" "MIC" "B_MRXLL_CTRR" "CIP" "M45 Table 12" 1 -"CLSI 2017" "MIC" "B_MRXLL_CTRR" "CLI" "M45 Table 12" 0.5 4 -"CLSI 2017" "MIC" "B_MRXLL_CTRR" "CLR" "M45 Table 12" 1 -"CLSI 2017" "MIC" "B_MRXLL_CTRR" "CRO" "M45 Table 12" 2 -"CLSI 2017" "MIC" "B_MRXLL_CTRR" "CTX" "M45 Table 12" 2 -"CLSI 2017" "MIC" "B_MRXLL_CTRR" "CXM" "M45 Table 12" 4 16 -"CLSI 2017" "MIC" "B_MRXLL_CTRR" "ERY" "M45 Table 12" 2 -"CLSI 2017" "MIC" "B_MRXLL_CTRR" "LVX" "M45 Table 12" 2 -"CLSI 2017" "MIC" "B_MRXLL_CTRR" "RIF" "M45 Table 12" 1 4 -"CLSI 2017" "MIC" "B_MRXLL_CTRR" "SXT" "M45 Table 12" 0.5 4 -"CLSI 2017" "MIC" "B_MRXLL_CTRR" "TCY" "M45 Table 12" 2 8 -"CLSI 2017" "MIC" "B_NESSR_GNRR" "CAT" "Table 2F" 0.5 -"CLSI 2017" "MIC" "B_NESSR_GNRR" "CAZ" "Table 2F" 0.5 -"CLSI 2017" "MIC" "B_NESSR_GNRR" "CFM" "Table 2F" 0.25 -"CLSI 2017" "MIC" "B_NESSR_GNRR" "CIP" "Table 2F" 0.064 1 -"CLSI 2017" "MIC" "B_NESSR_GNRR" "CMZ" "Table 2F" 2 8 -"CLSI 2017" "MIC" "B_NESSR_GNRR" "CPD" "Table 2F" 0.5 -"CLSI 2017" "MIC" "B_NESSR_GNRR" "CRO" "Table 2F" 0.25 -"CLSI 2017" "MIC" "B_NESSR_GNRR" "CTT" "Table 2F" 2 8 -"CLSI 2017" "MIC" "B_NESSR_GNRR" "CTX" "Table 2F" 0.5 -"CLSI 2017" "MIC" "B_NESSR_GNRR" "CXM" "Table 2F" 1 4 -"CLSI 2017" "MIC" "B_NESSR_GNRR" "CZX" "Table 2F" 0.5 -"CLSI 2017" "MIC" "B_NESSR_GNRR" "ENX" "Table 2F" 0.5 2 -"CLSI 2017" "MIC" "B_NESSR_GNRR" "FEP" "Table 2F" 0.5 -"CLSI 2017" "MIC" "B_NESSR_GNRR" "FLE" "Table 2F" 0.25 1 -"CLSI 2017" "MIC" "B_NESSR_GNRR" "FOX" "Table 2F" 2 8 -"CLSI 2017" "MIC" "B_NESSR_GNRR" "GAT" "Table 2F" 0.125 0.5 -"CLSI 2017" "MIC" "B_NESSR_GNRR" "GRX" "Table 2F" 0.064 1 -"CLSI 2017" "MIC" "B_NESSR_GNRR" "LOM" "Table 2F" 0.125 2 -"CLSI 2017" "MIC" "B_NESSR_GNRR" "OFX" "Table 2F" 0.25 2 -"CLSI 2017" "MIC" "B_NESSR_GNRR" "PEN" "Table 2F" 0.064 2 -"CLSI 2017" "MIC" "B_NESSR_GNRR" "SPT" "Table 2F" 32 128 -"CLSI 2017" "MIC" "B_NESSR_GNRR" "TCY" "Table 2F" 0.25 2 -"CLSI 2017" "MIC" "B_NESSR_GNRR" "TVA" "Table 2F" 0.25 -"CLSI 2017" "MIC" "B_NESSR_MNNG" "AMP" "Table 2I" 0.125 2 -"CLSI 2017" "MIC" "B_NESSR_MNNG" "AZM" "Table 2I" 2 -"CLSI 2017" "MIC" "B_NESSR_MNNG" "CHL" "Table 2I" 2 8 -"CLSI 2017" "MIC" "B_NESSR_MNNG" "CIP" "Table 2I" 0.032 0.12 -"CLSI 2017" "MIC" "B_NESSR_MNNG" "CRO" "Table 2I" 0.125 -"CLSI 2017" "MIC" "B_NESSR_MNNG" "CTX" "Table 2I" 0.125 -"CLSI 2017" "MIC" "B_NESSR_MNNG" "LVX" "Table 2I" 0.032 0.12 -"CLSI 2017" "MIC" "B_NESSR_MNNG" "MEM" "Table 2I" 0.25 -"CLSI 2017" "MIC" "B_NESSR_MNNG" "MNO" "Table 2I" 2 -"CLSI 2017" "MIC" "B_NESSR_MNNG" "NAL" "Table 2I" 4 8 -"CLSI 2017" "MIC" "B_NESSR_MNNG" "PEN" "Table 2I" 0.064 0.5 -"CLSI 2017" "MIC" "B_NESSR_MNNG" "RIF" "Table 2I" 0.5 2 -"CLSI 2017" "MIC" "B_NESSR_MNNG" "SMX" "Table 2I" 2 8 -"CLSI 2017" "MIC" "B_NESSR_MNNG" "SOX" "Table 2I" 2 8 -"CLSI 2017" "MIC" "B_NESSR_MNNG" "SSS" "Table 2I" 2 8 -"CLSI 2017" "MIC" "B_NESSR_MNNG" "SXT" "Table 2I" 0.125 0.5 -"CLSI 2017" "MIC" "B_PDCCC" "AMP" "M45 Table 14" 8 -"CLSI 2017" "MIC" "B_PDCCC" "CHL" "M45 Table 14" 8 32 -"CLSI 2017" "MIC" "B_PDCCC" "GEN" "M45 Table 14" 4 16 -"CLSI 2017" "MIC" "B_PDCCC" "IPM" "M45 Table 14" 0.5 -"CLSI 2017" "MIC" "B_PDCCC" "PEN" "M45 Table 14" 8 -"CLSI 2017" "MIC" "B_PLSMN" "AMC" "M45 Table 2" 8 32 -"CLSI 2017" "MIC" "B_PLSMN" "AMK" "M45 Table 2" 16 64 -"CLSI 2017" "MIC" "B_PLSMN" "ATM" "M45 Table 2" 4 16 -"CLSI 2017" "MIC" "B_PLSMN" "CAZ" "M45 Table 2" 4 16 -"CLSI 2017" "MIC" "B_PLSMN" "CHL" "M45 Table 2" 8 32 -"CLSI 2017" "MIC" "B_PLSMN" "CIP" "M45 Table 2" 1 4 -"CLSI 2017" "MIC" "B_PLSMN" "CRO" "M45 Table 2" 1 4 -"CLSI 2017" "MIC" "B_PLSMN" "CTX" "M45 Table 2" 1 4 -"CLSI 2017" "MIC" "B_PLSMN" "CXM" "M45 Table 2" 8 32 -"CLSI 2017" "MIC" "B_PLSMN" "CZO" "M45 Table 2" 1 4 -"CLSI 2017" "MIC" "B_PLSMN" "ETP" "M45 Table 2" 2 8 -"CLSI 2017" "MIC" "B_PLSMN" "FEP" "M45 Table 2" 8 32 -"CLSI 2017" "MIC" "B_PLSMN" "FOX" "M45 Table 2" 8 32 -"CLSI 2017" "MIC" "B_PLSMN" "GEN" "M45 Table 2" 4 16 -"CLSI 2017" "MIC" "B_PLSMN" "IPM" "M45 Table 2" 4 16 -"CLSI 2017" "MIC" "B_PLSMN" "LVX" "M45 Table 2" 2 8 -"CLSI 2017" "MIC" "B_PLSMN" "MEM" "M45 Table 2" 4 16 -"CLSI 2017" "MIC" "B_PLSMN" "SAM" "M45 Table 2" 8 32 -"CLSI 2017" "MIC" "B_PLSMN" "SXT" "M45 Table 2" 2 4 -"CLSI 2017" "MIC" "B_PLSMN" "TCY" "M45 Table 2" 4 16 -"CLSI 2017" "MIC" "B_PLSMN" "TZP" "M45 Table 2" 16 128 -"CLSI 2017" "MIC" "B_PRPNB" "VAN" "Table 2J-2" 2 4 -"CLSI 2017" "MIC" "B_PSDMN" "ETP" -"CLSI 2017" "MIC" "B_PSDMN_AERG" "AMK" "Table 2B-1" 16 64 -"CLSI 2017" "MIC" "B_PSDMN_AERG" "ATM" "Table 2B-1" 8 32 -"CLSI 2017" "MIC" "B_PSDMN_AERG" "CAZ" "Table 2B-1" 8 32 -"CLSI 2017" "MIC" "B_PSDMN_AERG" "CIP" "Table 2B-1" 1 4 -"CLSI 2017" "MIC" "B_PSDMN_AERG" "COL" "Table 2B-1" 2 4 -"CLSI 2017" "MIC" "B_PSDMN_AERG" "CZT" 4 16 -"CLSI 2017" "MIC" "B_PSDMN_AERG" "DOR" "Table 2B-1" 2 8 -"CLSI 2017" "MIC" "B_PSDMN_AERG" "FEP" "Table 2B-1" 8 32 -"CLSI 2017" "MIC" "B_PSDMN_AERG" "GAT" "Table 2B-1" 2 8 -"CLSI 2017" "MIC" "B_PSDMN_AERG" "GEN" "Table 2B-1" 4 16 -"CLSI 2017" "MIC" "B_PSDMN_AERG" "IPM" "Table 2B-1" 2 8 -"CLSI 2017" "MIC" "B_PSDMN_AERG" "LOM" "Table 2B-1" 2 8 -"CLSI 2017" "MIC" "B_PSDMN_AERG" "LVX" "Table 2B-1" 2 8 -"CLSI 2017" "MIC" "B_PSDMN_AERG" "MEM" "Table 2B-1" 2 8 -"CLSI 2017" "MIC" "B_PSDMN_AERG" "NET" "Table 2B-1" 8 32 -"CLSI 2017" "MIC" "B_PSDMN_AERG" "NOR" "Table 2B-1" 4 16 -"CLSI 2017" "MIC" "B_PSDMN_AERG" "OFX" "Table 2B-1" 2 8 -"CLSI 2017" "MIC" "B_PSDMN_AERG" "PIP" "Table 2B-1" 16 128 -"CLSI 2017" "MIC" "B_PSDMN_AERG" "PLB" "Table 2B-1" 2 8 -"CLSI 2017" "MIC" "B_PSDMN_AERG" "TCC" "Table 2B-1" 16 128 -"CLSI 2017" "MIC" "B_PSDMN_AERG" "TOB" "Table 2B-1" 4 16 -"CLSI 2017" "MIC" "B_PSDMN_AERG" "TZP" "Table 2B-1" 16 128 -"CLSI 2017" "MIC" "B_PSTRL" "AMC" "M45 Table 13" 0.5 -"CLSI 2017" "MIC" "B_PSTRL" "AMP" "M45 Table 13" 0.5 -"CLSI 2017" "MIC" "B_PSTRL" "AMX" "M45 Table 13" 0.5 -"CLSI 2017" "MIC" "B_PSTRL" "AZM" "M45 Table 13" 1 -"CLSI 2017" "MIC" "B_PSTRL" "CHL" "M45 Table 13" 2 -"CLSI 2017" "MIC" "B_PSTRL" "CRO" "M45 Table 13" 0.125 -"CLSI 2017" "MIC" "B_PSTRL" "DOX" "M45 Table 13" 0.5 -"CLSI 2017" "MIC" "B_PSTRL" "ERY" "M45 Table 13" 0.5 2 -"CLSI 2017" "MIC" "B_PSTRL" "LVX" "M45 Table 13" 0.064 -"CLSI 2017" "MIC" "B_PSTRL" "MFX" "M45 Table 13" 0.064 -"CLSI 2017" "MIC" "B_PSTRL" "PEN" "M45 Table 13" 0.5 -"CLSI 2017" "MIC" "B_PSTRL" "SXT" "M45 Table 13" 0.5 -"CLSI 2017" "MIC" "B_PSTRL" "TCY" "M45 Table 13" 1 -"CLSI 2017" "MIC" "B_PSTRL_MLTC" "TIL" "Vet Table" 16 32 -"CLSI 2017" "MIC" "Extraintestinal" "B_SLMNL" "CIP" "Table 2A" 0.064 1 -"CLSI 2017" "MIC" "B_SLMNL" "CIP" "Table 2A" 0.064 1 -"CLSI 2017" "MIC" "B_SLMNL" "LVX" "Table 2A" 0.125 2 -"CLSI 2017" "MIC" "Extraintestinal" "B_SLMNL" "LVX" "Table 2A" 0.125 2 -"CLSI 2017" "MIC" "B_SLMNL" "OFX" "Table 2A" 0.125 2 -"CLSI 2017" "MIC" "Extraintestinal" "B_SLMNL" "OFX" "Table 2A" 0.125 2 -"CLSI 2017" "MIC" "B_SLMNL_ENTR" "AZM" "Table 2A" 16 32 -"CLSI 2017" "MIC" "B_STNTR_MLTP" "CAZ" "Table 2B-4" 8 32 -"CLSI 2017" "MIC" "B_STNTR_MLTP" "CHL" "Table 2B-4" 8 32 -"CLSI 2017" "MIC" "B_STNTR_MLTP" "LVX" "Table 2B-4" 2 8 -"CLSI 2017" "MIC" "B_STNTR_MLTP" "MNO" "Table 2B-4" 4 16 -"CLSI 2017" "MIC" "B_STNTR_MLTP" "SXT" "Table 2B-4" 2 4 -"CLSI 2017" "MIC" "B_STNTR_MLTP" "TCC" "Table 2B-4" 16 128 -"CLSI 2017" "MIC" "B_STPHY" "AMC" "Table 2C" 4 8 -"CLSI 2017" "MIC" "B_STPHY" "AMK" "Table 2C" 16 64 -"CLSI 2017" "MIC" "B_STPHY" "AMP" "Table 2C" 0.25 0.5 -"CLSI 2017" "MIC" "B_STPHY" "AZM" "Table 2C" 2 8 -"CLSI 2017" "MIC" "B_STPHY" "CAZ" "Table 2C" 8 32 -"CLSI 2017" "MIC" "B_STPHY" "CDR" "Table 2C" 1 4 -"CLSI 2017" "MIC" "B_STPHY" "CEC" "Table 2C" 8 32 -"CLSI 2017" "MIC" "B_STPHY" "CEP" "Table 2C" 8 32 -"CLSI 2017" "MIC" "B_STPHY" "CFP" "Table 2C" 16 64 -"CLSI 2017" "MIC" "B_STPHY" "CHL" "Table 2C" 8 32 -"CLSI 2017" "MIC" "B_STPHY" "CID" "Table 2C" 8 32 -"CLSI 2017" "MIC" "B_STPHY" "CIP" "Table 2C" 1 4 -"CLSI 2017" "MIC" "B_STPHY" "CLI" "Table 2C" 0.5 4 -"CLSI 2017" "MIC" "B_STPHY" "CLR" "Table 2C" 2 8 -"CLSI 2017" "MIC" "B_STPHY" "CMZ" "Table 2C" 16 64 -"CLSI 2017" "MIC" "B_STPHY" "CPD" "Table 2C" 2 8 -"CLSI 2017" "MIC" "B_STPHY" "CPR" "Table 2C" 8 32 -"CLSI 2017" "MIC" "B_STPHY" "CRO" "Table 2C" 8 64 -"CLSI 2017" "MIC" "B_STPHY" "CTT" "Table 2C" 16 64 -"CLSI 2017" "MIC" "B_STPHY" "CTX" "Table 2C" 8 64 -"CLSI 2017" "MIC" "B_STPHY" "CXA" "Table 2C" 4 32 -"CLSI 2017" "MIC" "Oral" "B_STPHY" "CXM" "Table 2C" 4 32 -"CLSI 2017" "MIC" "Intravenous" "B_STPHY" "CXM" "Table 2C" 8 32 -"CLSI 2017" "MIC" "Oral" "B_STPHY" "CXM" "Table 2C" 4 32 -"CLSI 2017" "MIC" "B_STPHY" "CZO" "Table 2C" 8 32 -"CLSI 2017" "MIC" "B_STPHY" "CZX" "Table 2C" 8 64 -"CLSI 2017" "MIC" "B_STPHY" "DAP" "Table 2C" 1 -"CLSI 2017" "MIC" "B_STPHY" "DIR" "Table 2C" 2 8 -"CLSI 2017" "MIC" "B_STPHY" "DOR" "Table 2C" 0.5 -"CLSI 2017" "MIC" "B_STPHY" "DOX" "Table 2C" 4 16 -"CLSI 2017" "MIC" "B_STPHY" "ENX" "Table 2C" 2 8 -"CLSI 2017" "MIC" "B_STPHY" "ERY" "Table 2C" 0.5 8 -"CLSI 2017" "MIC" "B_STPHY" "ETP" "Table 2C" 2 8 -"CLSI 2017" "MIC" "B_STPHY" "FEP" "Table 2C" 8 32 -"CLSI 2017" "MIC" "B_STPHY" "FLE" "Table 2C" 2 8 -"CLSI 2017" "MIC" "B_STPHY" "FOX" "Table 2C" 4 8 -"CLSI 2017" "MIC" "B_STPHY" "GAT" "Table 2C" 0.5 2 -"CLSI 2017" "MIC" "B_STPHY" "GEN" "Table 2C" 4 16 -"CLSI 2017" "MIC" "B_STPHY" "GRX" "Table 2C" 1 4 -"CLSI 2017" "MIC" "B_STPHY" "IPM" "Table 2C" 4 16 -"CLSI 2017" "MIC" "B_STPHY" "KAN" "Table 2C" 16 64 -"CLSI 2017" "MIC" "B_STPHY" "LNZ" "Table 2C" 4 8 -"CLSI 2017" "MIC" "B_STPHY" "LOM" "Table 2C" 2 8 -"CLSI 2017" "MIC" "B_STPHY" "LOR" "Table 2C" 8 32 -"CLSI 2017" "MIC" "B_STPHY" "LTM" "Table 2C" 8 64 -"CLSI 2017" "MIC" "B_STPHY" "LVX" "Table 2C" 1 4 -"CLSI 2017" "MIC" "B_STPHY" "MAN" "Table 2C" 8 32 -"CLSI 2017" "MIC" "B_STPHY" "MEM" "Table 2C" 4 16 -"CLSI 2017" "MIC" "B_STPHY" "MET" "Table 2C" 8 16 -"CLSI 2017" "MIC" "B_STPHY" "MFX" "Table 2C" 0.5 2 -"CLSI 2017" "MIC" "B_STPHY" "MNO" "Table 2C" 4 16 -"CLSI 2017" "MIC" "B_STPHY" "NAF" "Table 2C" 2 4 -"CLSI 2017" "MIC" "B_STPHY" "NET" "Table 2C" 8 32 -"CLSI 2017" "MIC" "B_STPHY" "NIT" "Table 2C" 32 128 -"CLSI 2017" "MIC" "B_STPHY" "NOR" "Table 2C" 4 16 -"CLSI 2017" "MIC" "B_STPHY" "OFX" "Table 2C" 1 4 -"CLSI 2017" "MIC" "B_STPHY" "ORI" "Table 2C" 0.125 -"CLSI 2017" "MIC" "B_STPHY" "OXA" "Table 2C" 2 4 -"CLSI 2017" "MIC" "B_STPHY" "PEN" "Table 2C" 0.125 0.25 -"CLSI 2017" "MIC" "B_STPHY" "QDA" "Table 2C" 1 4 -"CLSI 2017" "MIC" "B_STPHY" "RIF" "Table 2C" 1 4 -"CLSI 2017" "MIC" "B_STPHY" "SAM" "Table 2C" 8 32 -"CLSI 2017" "MIC" "B_STPHY" "SMX" "Table 2C" 256 512 -"CLSI 2017" "MIC" "B_STPHY" "SOX" "Table 2C" 256 512 -"CLSI 2017" "MIC" "B_STPHY" "SPX" "Table 2C" 0.5 2 -"CLSI 2017" "MIC" "B_STPHY" "SSS" "Table 2C" 256 512 -"CLSI 2017" "MIC" "B_STPHY" "SXT" "Table 2C" 2 4 -"CLSI 2017" "MIC" "B_STPHY" "TCC" "Table 2C" 8 16 -"CLSI 2017" "MIC" "B_STPHY" "TCY" "Table 2C" 4 16 -"CLSI 2017" "MIC" "B_STPHY" "TEC" "Table 2C" 8 32 -"CLSI 2017" "MIC" "B_STPHY" "TLT" "Table 2C" 1 4 -"CLSI 2017" "MIC" "B_STPHY" "TLV" "Table 2C" 0.125 -"CLSI 2017" "MIC" "B_STPHY" "TMP" "Table 2C" 8 16 -"CLSI 2017" "MIC" "B_STPHY" "TOB" "Table 2C" 4 16 -"CLSI 2017" "MIC" "B_STPHY" "TZD" "Table 2C" 0.5 2 -"CLSI 2017" "MIC" "B_STPHY" "TZP" "Table 2C" 8 16 -"CLSI 2017" "MIC" "B_STPHY" "VAN" "Table 2C" 4 32 -"CLSI 2017" "MIC" "B_STPHY_AURS" "CPT" "Table 2C" 1 4 -"CLSI 2017" "MIC" "B_STPHY_AURS" "FOX" "Table 2C" 4 8 -"CLSI 2017" "MIC" "B_STPHY_AURS" "OXA" "Table 2C" 2 4 -"CLSI 2017" "MIC" "B_STPHY_AURS" "VAN" "Table 2C" 2 16 -"CLSI 2017" "MIC" "B_STPHY_LGDN" "FOX" "Table 2C" 4 8 -"CLSI 2017" "MIC" "B_STPHY_LGDN" "OXA" "Table 2C" 2 4 -"CLSI 2017" "MIC" "B_STRPT" "AMC" "Table 2H-1" -"CLSI 2017" "MIC" "B_STRPT" "AMP" "M45 Table 1" 0.25 8 -"CLSI 2017" "MIC" "B_STRPT" "AMP" "Table 2H-1" 0.25 -"CLSI 2017" "MIC" "B_STRPT" "AMX" "Table 2H-1" -"CLSI 2017" "MIC" "B_STRPT" "AZM" "Table 2H-1" 0.5 2 -"CLSI 2017" "MIC" "B_STRPT" "CHL" "M45 Table 1" 4 8 -"CLSI 2017" "MIC" "B_STRPT" "CHL" "Table 2H-1" 4 16 -"CLSI 2017" "MIC" "B_STRPT" "CIP" "M45 Table 1" 1 4 -"CLSI 2017" "MIC" "B_STRPT" "CLI" "M45 Table 1" 0.25 1 -"CLSI 2017" "MIC" "B_STRPT" "CLI" "Table 2H-1" 0.25 1 -"CLSI 2017" "MIC" "B_STRPT" "CLR" "Table 2H-1" 0.25 1 -"CLSI 2017" "MIC" "B_STRPT" "CPT" "Table 2H-1" 0.5 -"CLSI 2017" "MIC" "B_STRPT" "CRO" "M45 Table 1" 1 4 -"CLSI 2017" "MIC" "B_STRPT" "CRO" "Table 2H-1" 0.5 -"CLSI 2017" "MIC" "B_STRPT" "CTX" "M45 Table 1" 1 4 -"CLSI 2017" "MIC" "B_STRPT" "CTX" "Table 2H-1" 0.5 -"CLSI 2017" "MIC" "B_STRPT" "CXM" "Table 2H-1" -"CLSI 2017" "MIC" "B_STRPT" "DAP" "Table 2H-1" -"CLSI 2017" "MIC" "B_STRPT" "DIR" "Table 2H-1" 0.5 2 -"CLSI 2017" "MIC" "B_STRPT" "DOR" "Table 2H-1" 0.125 -"CLSI 2017" "MIC" "B_STRPT" "ERY" "M45 Table 1" 0.25 1 -"CLSI 2017" "MIC" "B_STRPT" "ERY" "Table 2H-1" 0.25 1 -"CLSI 2017" "MIC" "B_STRPT" "ETP" "Table 2H-1" 1 -"CLSI 2017" "MIC" "B_STRPT" "FEP" "M45 Table 1" 1 4 -"CLSI 2017" "MIC" "B_STRPT" "FEP" "Table 2H-1" 0.5 -"CLSI 2017" "MIC" "B_STRPT" "GAT" "M45 Table 1" 1 4 -"CLSI 2017" "MIC" "B_STRPT" "GAT" "Table 2H-1" 1 4 -"CLSI 2017" "MIC" "B_STRPT" "GEM" "Table 2H-1" -"CLSI 2017" "MIC" "B_STRPT" "GRX" "Table 2H-1" 0.5 2 -"CLSI 2017" "MIC" "B_STRPT" "IPM" "M45 Table 1" 0.5 2 -"CLSI 2017" "MIC" "B_STRPT" "IPM" "Table 2H-1" -"CLSI 2017" "MIC" "B_STRPT" "LNZ" "Table 2H-1" 2 -"CLSI 2017" "MIC" "B_STRPT" "LVX" "M45 Table 1" 2 8 -"CLSI 2017" "MIC" "B_STRPT" "LVX" "Table 2H-1" 2 8 -"CLSI 2017" "MIC" "B_STRPT" "MEM" "M45 Table 1" 0.5 2 -"CLSI 2017" "MIC" "B_STRPT" "MEM" "Table 2H-1" 0.5 -"CLSI 2017" "MIC" "B_STRPT" "MFX" "Table 2H-1" -"CLSI 2017" "MIC" "B_STRPT" "OFX" "Table 2H-1" 2 8 -"CLSI 2017" "MIC" "B_STRPT" "ORI" "Table 2H-1" 0.25 -"CLSI 2017" "MIC" "B_STRPT" "PEN" "M45 Table 1" 0.125 4 -"CLSI 2017" "MIC" "B_STRPT" "PEN" "Table 2H-1" 0.125 -"CLSI 2017" "MIC" "B_STRPT" "QDA" "Table 2H-1" 1 4 -"CLSI 2017" "MIC" "B_STRPT" "RIF" "Table 2H-1" -"CLSI 2017" "MIC" "B_STRPT" "SPX" "Table 2H-1" -"CLSI 2017" "MIC" "B_STRPT" "SXT" "Table 2H-1" -"CLSI 2017" "MIC" "B_STRPT" "TCY" "Table 2H-1" 2 8 -"CLSI 2017" "MIC" "B_STRPT" "TLT" "Table 2H-1" -"CLSI 2017" "MIC" "B_STRPT" "TLV" "Table 2H-1" 0.125 -"CLSI 2017" "MIC" "B_STRPT" "TVA" "Table 2H-1" 1 4 -"CLSI 2017" "MIC" "B_STRPT" "TZD" "Table 2H-1" 0.5 -"CLSI 2017" "MIC" "B_STRPT" "VAN" "M45 Table 1" 1 -"CLSI 2017" "MIC" "B_STRPT" "VAN" "Table 2H-1" 1 -"CLSI 2017" "MIC" "Non-meningitis" "B_STRPT_PNMN" "AMC" "Table 2G" 2 8 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "AMP" "Table 2G" -"CLSI 2017" "MIC" "Non-meningitis" "B_STRPT_PNMN" "AMX" "Table 2G" 2 8 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "AZM" "Table 2G" 0.5 2 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "CDR" "Table 2G" 0.5 2 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "CEC" "Table 2G" 1 4 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "CHL" "Table 2G" 4 8 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "CIP" "Table 2G" -"CLSI 2017" "MIC" "B_STRPT_PNMN" "CLI" "Table 2G" 0.25 1 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "CLR" "Table 2G" 0.25 1 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "CPD" "Table 2G" 0.5 2 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "CPR" "Table 2G" 2 8 -"CLSI 2017" "MIC" "Non-meningitis" "B_STRPT_PNMN" "CPT" "Table 2G" 0.5 -"CLSI 2017" "MIC" "Meningitis" "B_STRPT_PNMN" "CRO" "Table 2G" 0.5 2 -"CLSI 2017" "MIC" "Non-meningitis" "B_STRPT_PNMN" "CRO" "Table 2G" 1 4 -"CLSI 2017" "MIC" "Meningitis" "B_STRPT_PNMN" "CTX" "Table 2G" 0.5 2 -"CLSI 2017" "MIC" "Non-meningitis" "B_STRPT_PNMN" "CTX" "Table 2G" 1 4 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "CXA" "Table 2G" 1 4 -"CLSI 2017" "MIC" "Oral" "B_STRPT_PNMN" "CXM" "Table 2G" 1 4 -"CLSI 2017" "MIC" "Parenteral" "B_STRPT_PNMN" "CXM" "Table 2G" 0.5 2 -"CLSI 2017" "MIC" "Oral" "B_STRPT_PNMN" "CXM" "Table 2G" 1 4 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "DIR" "Table 2G" 0.5 2 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "DOR" "Table 2G" 1 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "DOX" "Table 2G" 0.25 1 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "ERY" "Table 2G" 0.25 1 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "ETP" "Table 2G" 1 4 -"CLSI 2017" "MIC" "Meningitis" "B_STRPT_PNMN" "FEP" "Table 2G" 0.5 2 -"CLSI 2017" "MIC" "Non-meningitis" "B_STRPT_PNMN" "FEP" "Table 2G" 1 4 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "GAT" "Table 2G" 1 4 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "GEM" "Table 2G" 0.125 0.5 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "GRX" "Table 2G" 0.5 2 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "IPM" "Table 2G" 0.125 1 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "LNZ" "Table 2G" 2 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "LOR" "Table 2G" 2 8 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "LVX" "Table 2G" 2 8 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "MEM" "Table 2G" 0.25 1 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "MFX" "Table 2G" 1 4 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "NOR" "Table 2G" -"CLSI 2017" "MIC" "B_STRPT_PNMN" "OFX" "Table 2G" 2 8 -"CLSI 2017" "MIC" "Meningitis" "B_STRPT_PNMN" "PEN" "Table 2G" 0.064 0.12 -"CLSI 2017" "MIC" "Non-meningitis" "B_STRPT_PNMN" "PEN" "Table 2G" 2 8 -"CLSI 2017" "MIC" "Oral" "B_STRPT_PNMN" "PEN" "Table 2G" 0.064 2 -"CLSI 2017" "MIC" "Oral" "B_STRPT_PNMN" "PNV" "Table 2G" 0.064 2 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "QDA" "Table 2G" 1 4 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "RIF" "Table 2G" 1 4 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "SAM" "Table 2G" -"CLSI 2017" "MIC" "B_STRPT_PNMN" "SPX" "Table 2G" 0.5 2 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "SXT" "Table 2G" 0.5 4 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "TCY" "Table 2G" 1 4 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "TLT" "Table 2G" 1 4 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "TVA" "Table 2G" 1 4 -"CLSI 2017" "MIC" "B_STRPT_PNMN" "VAN" "Table 2G" 1 -"CLSI 2017" "MIC" "B_STRPT_VIRI" "AMP" "Table 2H-2" 0.25 8 -"CLSI 2017" "MIC" "B_STRPT_VIRI" "AZM" "Table 2H-2" 0.5 2 -"CLSI 2017" "MIC" "B_STRPT_VIRI" "CHL" "Table 2H-2" 4 16 -"CLSI 2017" "MIC" "B_STRPT_VIRI" "CLI" "Table 2H-2" 0.25 1 -"CLSI 2017" "MIC" "B_STRPT_VIRI" "CLR" "Table 2H-2" 0.25 1 -"CLSI 2017" "MIC" "B_STRPT_VIRI" "CRO" "Table 2H-2" 1 4 -"CLSI 2017" "MIC" "B_STRPT_VIRI" "CTX" "Table 2H-2" 1 4 -"CLSI 2017" "MIC" "B_STRPT_VIRI" "CZT" "Table 2H-2" 8 32 -"CLSI 2017" "MIC" "B_STRPT_VIRI" "DAP" "Table 2H-2" 1 -"CLSI 2017" "MIC" "B_STRPT_VIRI" "DIR" "Table 2H-2" 0.5 2 -"CLSI 2017" "MIC" "B_STRPT_VIRI" "DOR" "Table 2H-2" 1 -"CLSI 2017" "MIC" "B_STRPT_VIRI" "ERY" "Table 2H-2" 0.25 1 -"CLSI 2017" "MIC" "B_STRPT_VIRI" "ETP" "Table 2H-2" 1 -"CLSI 2017" "MIC" "B_STRPT_VIRI" "FEP" "Table 2H-2" 1 4 -"CLSI 2017" "MIC" "B_STRPT_VIRI" "GAT" "Table 2H-2" 1 4 -"CLSI 2017" "MIC" "B_STRPT_VIRI" "GRX" "Table 2H-2" 0.5 2 -"CLSI 2017" "MIC" "B_STRPT_VIRI" "LNZ" "Table 2H-2" 2 -"CLSI 2017" "MIC" "B_STRPT_VIRI" "LVX" "Table 2H-2" 2 8 -"CLSI 2017" "MIC" "B_STRPT_VIRI" "MEM" "Table 2H-2" 0.5 -"CLSI 2017" "MIC" "B_STRPT_VIRI" "OFX" "Table 2H-2" 2 8 -"CLSI 2017" "MIC" "B_STRPT_VIRI" "ORI" "Table 2H-2" 0.25 -"CLSI 2017" "MIC" "B_STRPT_VIRI" "PEN" "Table 2H-2" 0.125 4 -"CLSI 2017" "MIC" "B_STRPT_VIRI" "QDA" "Table 2H-2" 1 4 -"CLSI 2017" "MIC" "B_STRPT_VIRI" "TCY" "Table 2H-2" 2 8 -"CLSI 2017" "MIC" "B_STRPT_VIRI" "TLV" "Table 2H-2" 0.125 -"CLSI 2017" "MIC" "B_STRPT_VIRI" "TVA" "Table 2H-2" 1 4 -"CLSI 2017" "MIC" "B_STRPT_VIRI" "TZD" "Table 2H-2" 0.25 -"CLSI 2017" "MIC" "B_STRPT_VIRI" "VAN" "Table 2H-2" 1 -"CLSI 2017" "MIC" "B_VIBRI_CHLR" "AZM" "M45 Table 14" "30ug" 2 -"CLSI 2017" "MIC" "B_VIBRI_CHLR" "DOX" "M45 Table 14" "30ug" 4 16 -"CLSI 2017" "MIC" "B_YERSN_PSTS" "CHL" "M45 Table 16" 8 32 -"CLSI 2017" "MIC" "B_YERSN_PSTS" "CIP" "M45 Table 16" 0.25 -"CLSI 2017" "MIC" "B_YERSN_PSTS" "DOX" "M45 Table 16" 4 16 -"CLSI 2017" "MIC" "B_YERSN_PSTS" "GEN" "M45 Table 16" 4 16 -"CLSI 2017" "MIC" "B_YERSN_PSTS" "LVX" "M45 Table 16" 0.25 -"CLSI 2017" "MIC" "B_YERSN_PSTS" "STR" "M45 Table 16" 4 16 -"CLSI 2017" "MIC" "B_YERSN_PSTS" "SXT" "M45 Table 16" 2 4 -"CLSI 2017" "MIC" "B_YERSN_PSTS" "TCY" "M45 Table 16" 4 16 -"CLSI 2017" "MIC" "F_PSDLL" "OXA" "Table 2C" 0.25 0.5 -"CLSI 2016" "MIC" "Urine" "B_[FAM]_ENTRBCTR" "CZO" "Table 2A" 16 32 -"CLSI 2016" "MIC" "B_ABTRP" "FEP" "M45 Table 1" 1 4 -"CLSI 2016" "MIC" "B_ABTRP" "GAT" "M45 Table 1" 1 4 -"CLSI 2016" "MIC" "B_ABTRP" "IPM" "M45 Table 1" 0.5 2 -"CLSI 2016" "MIC" "B_ABTRP" "LVX" "M45 Table 1" 2 8 -"CLSI 2016" "MIC" "B_ABTRP" "MEM" "M45 Table 1" 0.5 2 -"CLSI 2016" "MIC" "B_ABTRP" "PEN" "M45 Table 1" 0.125 4 -"CLSI 2016" "MIC" "B_ABTRP" "VAN" "M45 Table 1" 1 -"CLSI 2016" "MIC" "B_ACNTB" "AMK" "Table 2B-2" 16 64 -"CLSI 2016" "MIC" "B_ACNTB" "CAZ" "Table 2B-2" 8 32 -"CLSI 2016" "MIC" "B_ACNTB" "CIP" "Table 2B-2" 1 4 -"CLSI 2016" "MIC" "B_ACNTB" "COL" "Table 2B-2" 2 4 -"CLSI 2016" "MIC" "B_ACNTB" "CRO" "Table 2B-2" 8 64 -"CLSI 2016" "MIC" "B_ACNTB" "CTX" "Table 2B-2" 8 64 -"CLSI 2016" "MIC" "B_ACNTB" "DOR" "Table 2B-2" 2 8 -"CLSI 2016" "MIC" "B_ACNTB" "DOX" "Table 2B-2" 4 16 -"CLSI 2016" "MIC" "B_ACNTB" "ETP" "Table 2B-2" -"CLSI 2016" "MIC" "B_ACNTB" "FEP" "Table 2B-2" 8 32 -"CLSI 2016" "MIC" "B_ACNTB" "GAT" "Table 2B-2" 2 8 -"CLSI 2016" "MIC" "B_ACNTB" "GEN" "Table 2B-2" 4 16 -"CLSI 2016" "MIC" "B_ACNTB" "IPM" "Table 2B-2" 2 8 -"CLSI 2016" "MIC" "B_ACNTB" "LVX" "Table 2B-2" 2 8 -"CLSI 2016" "MIC" "B_ACNTB" "MEM" "Table 2B-2" 2 8 -"CLSI 2016" "MIC" "B_ACNTB" "MNO" "Table 2B-2" 4 16 -"CLSI 2016" "MIC" "B_ACNTB" "NET" "Table 2B-2" 8 32 -"CLSI 2016" "MIC" "B_ACNTB" "PIP" "Table 2B-2" 16 128 -"CLSI 2016" "MIC" "B_ACNTB" "PLB" "Table 2B-2" 2 4 -"CLSI 2016" "MIC" "B_ACNTB" "SAM" "Table 2B-2" 8 32 -"CLSI 2016" "MIC" "B_ACNTB" "SXT" "Table 2B-2" 2 4 -"CLSI 2016" "MIC" "B_ACNTB" "TCC" "Table 2B-2" 16 128 -"CLSI 2016" "MIC" "B_ACNTB" "TCY" "Table 2B-2" 4 16 -"CLSI 2016" "MIC" "B_ACNTB" "TOB" "Table 2B-2" 4 16 -"CLSI 2016" "MIC" "B_ACNTB" "TZP" "Table 2B-2" 16 128 -"CLSI 2016" "MIC" "B_ACTNB_PLRP" "TIL" "Vet Table" 16 32 -"CLSI 2016" "MIC" "B_AERMN" "AMC" "M45 Table 2" 8 32 -"CLSI 2016" "MIC" "B_AERMN" "AMK" "M45 Table 2" 16 64 -"CLSI 2016" "MIC" "B_AERMN" "ATM" "M45 Table 2" 4 16 -"CLSI 2016" "MIC" "B_AERMN" "CAZ" "M45 Table 2" 4 16 -"CLSI 2016" "MIC" "B_AERMN" "CHL" "M45 Table 2" 8 32 -"CLSI 2016" "MIC" "B_AERMN" "CIP" "M45 Table 2" 1 4 -"CLSI 2016" "MIC" "B_AERMN" "CRO" "M45 Table 2" 1 4 -"CLSI 2016" "MIC" "B_AERMN" "CTX" "M45 Table 2" 1 4 -"CLSI 2016" "MIC" "B_AERMN" "CXM" "M45 Table 2" 8 32 -"CLSI 2016" "MIC" "B_AERMN" "CZO" "M45 Table 2" 1 4 -"CLSI 2016" "MIC" "B_AERMN" "ETP" "M45 Table 2" 2 8 -"CLSI 2016" "MIC" "B_AERMN" "FEP" "M45 Table 2" 8 32 -"CLSI 2016" "MIC" "B_AERMN" "FOX" "M45 Table 2" 8 32 -"CLSI 2016" "MIC" "B_AERMN" "GEN" "M45 Table 2" 4 16 -"CLSI 2016" "MIC" "B_AERMN" "IPM" "M45 Table 2" 4 16 -"CLSI 2016" "MIC" "B_AERMN" "LVX" "M45 Table 2" 2 8 -"CLSI 2016" "MIC" "B_AERMN" "MEM" "M45 Table 2" 4 16 -"CLSI 2016" "MIC" "B_AERMN" "SAM" "M45 Table 2" 8 32 -"CLSI 2016" "MIC" "B_AERMN" "SXT" "M45 Table 2" 2 4 -"CLSI 2016" "MIC" "B_AERMN" "TCY" "M45 Table 2" 4 16 -"CLSI 2016" "MIC" "B_AERMN" "TZP" "M45 Table 2" 16 128 -"CLSI 2016" "MIC" "B_AGGRG" "AMC" "M45 Table 7" 4 8 -"CLSI 2016" "MIC" "B_AGGRG" "AMP" "M45 Table 7" 1 4 -"CLSI 2016" "MIC" "B_AGGRG" "AZM" "M45 Table 7" 4 -"CLSI 2016" "MIC" "B_AGGRG" "CHL" "M45 Table 7" 4 16 -"CLSI 2016" "MIC" "B_AGGRG" "CIP" "M45 Table 7" 1 4 -"CLSI 2016" "MIC" "B_AGGRG" "CLR" "M45 Table 7" 8 32 -"CLSI 2016" "MIC" "B_AGGRG" "CRO" "M45 Table 7" 2 -"CLSI 2016" "MIC" "B_AGGRG" "CTX" "M45 Table 7" 2 -"CLSI 2016" "MIC" "B_AGGRG" "IPM" "M45 Table 7" 4 16 -"CLSI 2016" "MIC" "B_AGGRG" "LVX" "M45 Table 7" 2 8 -"CLSI 2016" "MIC" "B_AGGRG" "MEM" "M45 Table 7" 4 16 -"CLSI 2016" "MIC" "B_AGGRG" "PEN" "M45 Table 7" 1 4 -"CLSI 2016" "MIC" "B_AGGRG" "RIF" "M45 Table 7" 1 4 -"CLSI 2016" "MIC" "B_AGGRG" "SAM" "M45 Table 7" 2 4 -"CLSI 2016" "MIC" "B_AGGRG" "SXT" "M45 Table 7" 0.5 4 -"CLSI 2016" "MIC" "B_AGGRG" "TCY" "M45 Table 7" 2 8 -"CLSI 2016" "MIC" "Canine, feline" "B_ALLSC" "ENR" "Vet Table" 0.5 4 -"CLSI 2016" "MIC" "B_ANRSL" "AMC" "Table 2J" 4 16 -"CLSI 2016" "MIC" "B_ANRSL" "AMP" "Table 2J" 0.5 2 -"CLSI 2016" "MIC" "B_ANRSL" "CFP" "Table 2J" 16 64 -"CLSI 2016" "MIC" "B_ANRSL" "CHL" "Table 2J" 8 32 -"CLSI 2016" "MIC" "B_ANRSL" "CLI" "Table 2J" 2 8 -"CLSI 2016" "MIC" "B_ANRSL" "CMZ" "Table 2J" 16 64 -"CLSI 2016" "MIC" "B_ANRSL" "CRO" "Table 2J" 16 64 -"CLSI 2016" "MIC" "B_ANRSL" "CTT" "Table 2J" 16 64 -"CLSI 2016" "MIC" "B_ANRSL" "CTX" "Table 2J" 16 64 -"CLSI 2016" "MIC" "B_ANRSL" "CZX" "Table 2J" 32 128 -"CLSI 2016" "MIC" "B_ANRSL" "DOR" "Table 2J" 2 8 -"CLSI 2016" "MIC" "B_ANRSL" "ETP" "Table 2J" 4 16 -"CLSI 2016" "MIC" "B_ANRSL" "FOX" "Table 2J" 16 64 -"CLSI 2016" "MIC" "B_ANRSL" "IPM" "Table 2J" 4 16 -"CLSI 2016" "MIC" "B_ANRSL" "LTM" "Table 2J" 2 8 -"CLSI 2016" "MIC" "B_ANRSL" "MEM" "Table 2J" 4 16 -"CLSI 2016" "MIC" "B_ANRSL" "MTR" "Table 2J" 8 32 -"CLSI 2016" "MIC" "B_ANRSL" "PEN" "Table 2J" 0.5 2 -"CLSI 2016" "MIC" "B_ANRSL" "PIP" "Table 2J" 32 128 -"CLSI 2016" "MIC" "B_ANRSL" "SAM" "Table 2J" 8 32 -"CLSI 2016" "MIC" "B_ANRSL" "TCC" "Table 2J" 32 128 -"CLSI 2016" "MIC" "B_ANRSL" "TCY" "Table 2J" 4 16 -"CLSI 2016" "MIC" "B_ANRSL" "TZP" "Table 2J" 32 128 -"CLSI 2016" "MIC" "B_BCLLS" "AMK" "M45 Table 3" 16 64 -"CLSI 2016" "MIC" "B_BCLLS" "AMP" "M45 Table 3" 0.25 0.5 -"CLSI 2016" "MIC" "B_BCLLS" "CAZ" "M45 Table 3" 8 32 -"CLSI 2016" "MIC" "B_BCLLS" "CHL" "M45 Table 3" 8 32 -"CLSI 2016" "MIC" "B_BCLLS" "CIP" "M45 Table 3" 1 4 -"CLSI 2016" "MIC" "B_BCLLS" "CLI" "M45 Table 3" 0.5 4 -"CLSI 2016" "MIC" "B_BCLLS" "CRO" "M45 Table 3" 8 64 -"CLSI 2016" "MIC" "B_BCLLS" "CTX" "M45 Table 3" 8 64 -"CLSI 2016" "MIC" "B_BCLLS" "CZO" "M45 Table 3" 8 16 -"CLSI 2016" "MIC" "B_BCLLS" "ERY" "M45 Table 3" 0.5 8 -"CLSI 2016" "MIC" "B_BCLLS" "GEN" "M45 Table 3" 4 16 -"CLSI 2016" "MIC" "B_BCLLS" "IPM" "M45 Table 3" 4 16 -"CLSI 2016" "MIC" "B_BCLLS" "LVX" "M45 Table 3" 2 8 -"CLSI 2016" "MIC" "B_BCLLS" "PEN" "M45 Table 3" 0.125 0.25 -"CLSI 2016" "MIC" "B_BCLLS" "RIF" "M45 Table 3" 1 4 -"CLSI 2016" "MIC" "B_BCLLS" "SXT" "M45 Table 3" 2 4 -"CLSI 2016" "MIC" "B_BCLLS" "TCY" "M45 Table 3" 4 16 -"CLSI 2016" "MIC" "B_BCLLS" "VAN" "M45 Table 3" 4 -"CLSI 2016" "MIC" "B_BCLLS_ANTH" "AMK" "M45 Table 16" -"CLSI 2016" "MIC" "B_BCLLS_ANTH" "AMP" "M45 Table 16" -"CLSI 2016" "MIC" "B_BCLLS_ANTH" "CAZ" "M45 Table 16" -"CLSI 2016" "MIC" "B_BCLLS_ANTH" "CHL" "M45 Table 16" -"CLSI 2016" "MIC" "B_BCLLS_ANTH" "CIP" "M45 Table 16" 0.25 -"CLSI 2016" "MIC" "B_BCLLS_ANTH" "CLI" "M45 Table 16" -"CLSI 2016" "MIC" "B_BCLLS_ANTH" "CRO" "M45 Table 16" -"CLSI 2016" "MIC" "B_BCLLS_ANTH" "CTX" "M45 Table 16" -"CLSI 2016" "MIC" "B_BCLLS_ANTH" "CZO" "M45 Table 16" -"CLSI 2016" "MIC" "B_BCLLS_ANTH" "DOX" "M45 Table 16" 1 -"CLSI 2016" "MIC" "B_BCLLS_ANTH" "ERY" "M45 Table 16" -"CLSI 2016" "MIC" "B_BCLLS_ANTH" "GEN" "M45 Table 16" -"CLSI 2016" "MIC" "B_BCLLS_ANTH" "IPM" "M45 Table 16" -"CLSI 2016" "MIC" "B_BCLLS_ANTH" "LVX" "M45 Table 16" 0.25 -"CLSI 2016" "MIC" "B_BCLLS_ANTH" "PEN" "M45 Table 16" 0.125 0.25 -"CLSI 2016" "MIC" "B_BCLLS_ANTH" "RIF" "M45 Table 16" -"CLSI 2016" "MIC" "B_BCLLS_ANTH" "SXT" "M45 Table 16" -"CLSI 2016" "MIC" "B_BCLLS_ANTH" "TCY" "M45 Table 16" 1 -"CLSI 2016" "MIC" "B_BCLLS_ANTH" "VAN" "M45 Table 16" -"CLSI 2016" "MIC" "B_BRCLL" "DOX" "M45 Table 16" 1 -"CLSI 2016" "MIC" "B_BRCLL" "GEN" "M45 Table 16" 4 -"CLSI 2016" "MIC" "B_BRCLL" "STR" "M45 Table 16" 8 -"CLSI 2016" "MIC" "B_BRCLL" "SXT" "M45 Table 16" 2 -"CLSI 2016" "MIC" "B_BRCLL" "TCY" "M45 Table 16" 1 -"CLSI 2016" "MIC" "B_BRKHL_CEPC" "CAZ" "Table 2B-3" 8 32 -"CLSI 2016" "MIC" "B_BRKHL_CEPC" "CHL" "Table 2B-3" 8 32 -"CLSI 2016" "MIC" "B_BRKHL_CEPC" "LVX" "Table 2B-3" 2 8 -"CLSI 2016" "MIC" "B_BRKHL_CEPC" "MEM" "Table 2B-3" 4 16 -"CLSI 2016" "MIC" "B_BRKHL_CEPC" "MNO" "Table 2B-3" 4 16 -"CLSI 2016" "MIC" "B_BRKHL_CEPC" "SXT" "Table 2B-3" 2 4 -"CLSI 2016" "MIC" "B_BRKHL_CEPC" "TCC" "Table 2B-3" 16 128 -"CLSI 2016" "MIC" "B_BRKHL_MALL" "CAZ" "M45 Table 16" 8 32 -"CLSI 2016" "MIC" "B_BRKHL_MALL" "DOX" "M45 Table 16" 4 16 -"CLSI 2016" "MIC" "B_BRKHL_MALL" "IPM" "M45 Table 16" 4 16 -"CLSI 2016" "MIC" "B_BRKHL_MALL" "TCY" "M45 Table 16" 4 16 -"CLSI 2016" "MIC" "B_BRKHL_PSDM" "AMC" "M45 Table 16" 8 32 -"CLSI 2016" "MIC" "B_BRKHL_PSDM" "CAZ" "M45 Table 16" 8 32 -"CLSI 2016" "MIC" "B_BRKHL_PSDM" "DOX" "M45 Table 16" 4 16 -"CLSI 2016" "MIC" "B_BRKHL_PSDM" "IPM" "M45 Table 16" 4 16 -"CLSI 2016" "MIC" "B_BRKHL_PSDM" "SXT" "M45 Table 16" 2 4 -"CLSI 2016" "MIC" "B_BRKHL_PSDM" "TCY" "M45 Table 16" 4 16 -"CLSI 2016" "MIC" "B_CMPYL" "CIP" "M45 Table 3" 1 4 -"CLSI 2016" "MIC" "B_CMPYL" "DOX" "M45 Table 3" 2 8 -"CLSI 2016" "MIC" "B_CMPYL" "ERY" "M45 Table 3" 8 32 -"CLSI 2016" "MIC" "B_CMPYL" "TCY" "M45 Table 3" 4 16 -"CLSI 2016" "MIC" "B_CRDBC" "AMC" "M45 Table 7" 4 8 -"CLSI 2016" "MIC" "B_CRDBC" "AMP" "M45 Table 7" 1 4 -"CLSI 2016" "MIC" "B_CRDBC" "AZM" "M45 Table 7" 4 -"CLSI 2016" "MIC" "B_CRDBC" "CHL" "M45 Table 7" 4 16 -"CLSI 2016" "MIC" "B_CRDBC" "CIP" "M45 Table 7" 1 4 -"CLSI 2016" "MIC" "B_CRDBC" "CLR" "M45 Table 7" 8 32 -"CLSI 2016" "MIC" "B_CRDBC" "CRO" "M45 Table 7" 2 -"CLSI 2016" "MIC" "B_CRDBC" "CTX" "M45 Table 7" 2 -"CLSI 2016" "MIC" "B_CRDBC" "IPM" "M45 Table 7" 0.5 2 -"CLSI 2016" "MIC" "B_CRDBC" "LVX" "M45 Table 7" 2 8 -"CLSI 2016" "MIC" "B_CRDBC" "MEM" "M45 Table 7" 0.5 2 -"CLSI 2016" "MIC" "B_CRDBC" "PEN" "M45 Table 7" 1 4 -"CLSI 2016" "MIC" "B_CRDBC" "RIF" "M45 Table 7" 1 4 -"CLSI 2016" "MIC" "B_CRDBC" "SAM" "M45 Table 7" 2 4 -"CLSI 2016" "MIC" "B_CRDBC" "SXT" "M45 Table 7" 0.5 4 -"CLSI 2016" "MIC" "B_CRDBC" "TCY" "M45 Table 7" 2 8 -"CLSI 2016" "MIC" "B_EKNLL" "AMC" "M45 Table 7" 4 8 -"CLSI 2016" "MIC" "B_EKNLL" "AMP" "M45 Table 7" 1 4 -"CLSI 2016" "MIC" "B_EKNLL" "AZM" "M45 Table 7" 4 -"CLSI 2016" "MIC" "B_EKNLL" "CHL" "M45 Table 7" 4 16 -"CLSI 2016" "MIC" "B_EKNLL" "CIP" "M45 Table 7" 1 4 -"CLSI 2016" "MIC" "B_EKNLL" "CLR" "M45 Table 7" 8 32 -"CLSI 2016" "MIC" "B_EKNLL" "CRO" "M45 Table 7" 2 -"CLSI 2016" "MIC" "B_EKNLL" "CTX" "M45 Table 7" 2 -"CLSI 2016" "MIC" "B_EKNLL" "IPM" "M45 Table 7" 0.5 2 -"CLSI 2016" "MIC" "B_EKNLL" "LVX" "M45 Table 7" 2 8 -"CLSI 2016" "MIC" "B_EKNLL" "MEM" "M45 Table 7" 0.5 2 -"CLSI 2016" "MIC" "B_EKNLL" "PEN" "M45 Table 7" 1 4 -"CLSI 2016" "MIC" "B_EKNLL" "RIF" "M45 Table 7" 1 4 -"CLSI 2016" "MIC" "B_EKNLL" "SAM" "M45 Table 7" 2 4 -"CLSI 2016" "MIC" "B_EKNLL" "SXT" "M45 Table 7" 0.5 4 -"CLSI 2016" "MIC" "B_EKNLL" "TCY" "M45 Table 7" 2 8 -"CLSI 2016" "MIC" "B_ENTRC" "AMP" "Table 2D" 8 16 -"CLSI 2016" "MIC" "B_ENTRC" "CHL" "Table 2D" 8 32 -"CLSI 2016" "MIC" "B_ENTRC" "CIP" "Table 2D" 1 4 -"CLSI 2016" "MIC" "B_ENTRC" "DAP" "Table 2D" 4 -"CLSI 2016" "MIC" "B_ENTRC" "DOX" "Table 2D" 4 16 -"CLSI 2016" "MIC" "B_ENTRC" "ERY" "Table 2D" 0.5 8 -"CLSI 2016" "MIC" "B_ENTRC" "FOS" "Table 2D" 64 256 -"CLSI 2016" "MIC" "B_ENTRC" "GAT" "Table 2D" 2 8 -"CLSI 2016" "MIC" "B_ENTRC" "GEH" "Table 2D" 512 512 -"CLSI 2016" "MIC" "B_ENTRC" "GEN" "Table 2D" 512 512 -"CLSI 2016" "MIC" "B_ENTRC" "LNZ" "Table 2D" 2 8 -"CLSI 2016" "MIC" "B_ENTRC" "LVX" "Table 2D" 2 8 -"CLSI 2016" "MIC" "B_ENTRC" "MNO" "Table 2D" 4 16 -"CLSI 2016" "MIC" "B_ENTRC" "NIT" "Table 2D" 32 128 -"CLSI 2016" "MIC" "B_ENTRC" "NOR" "Table 2D" 4 16 -"CLSI 2016" "MIC" "B_ENTRC" "ORI" "Table 2D" 0.125 -"CLSI 2016" "MIC" "B_ENTRC" "PEN" "Table 2D" 8 16 -"CLSI 2016" "MIC" "B_ENTRC" "QDA" "Table 2D" 1 4 -"CLSI 2016" "MIC" "B_ENTRC" "RIF" "Table 2D" 1 4 -"CLSI 2016" "MIC" "B_ENTRC" "STH" "Table 2D" 1024 1024 -"CLSI 2016" "MIC" "B_ENTRC" "STR" "Table 2D" 1024 1024 -"CLSI 2016" "MIC" "B_ENTRC" "TCY" "Table 2D" 4 16 -"CLSI 2016" "MIC" "B_ENTRC" "TEC" "Table 2D" 8 32 -"CLSI 2016" "MIC" "B_ENTRC" "TLV" "Table 2D" 0.125 -"CLSI 2016" "MIC" "B_ENTRC" "TZD" "Table 2D" 0.5 -"CLSI 2016" "MIC" "B_ENTRC" "VAN" "Table 2D" 4 32 -"CLSI 2016" "MIC" "B_ERYSP_RHSP" "AMP" "M45 Table 6" 0.25 -"CLSI 2016" "MIC" "B_ERYSP_RHSP" "CIP" "M45 Table 6" 1 -"CLSI 2016" "MIC" "B_ERYSP_RHSP" "CLI" "M45 Table 6" 0.25 1 -"CLSI 2016" "MIC" "B_ERYSP_RHSP" "CRO" "M45 Table 6" 1 -"CLSI 2016" "MIC" "B_ERYSP_RHSP" "CTX" "M45 Table 6" 1 -"CLSI 2016" "MIC" "B_ERYSP_RHSP" "ERY" "M45 Table 6" 0.25 1 -"CLSI 2016" "MIC" "B_ERYSP_RHSP" "FEP" "M45 Table 6" 1 -"CLSI 2016" "MIC" "B_ERYSP_RHSP" "IPM" "M45 Table 6" 0.5 -"CLSI 2016" "MIC" "B_ERYSP_RHSP" "LVX" "M45 Table 6" 2 -"CLSI 2016" "MIC" "B_ERYSP_RHSP" "MEM" "M45 Table 6" 0.5 -"CLSI 2016" "MIC" "B_ERYSP_RHSP" "PEN" "M45 Table 6" 0.125 -"CLSI 2016" "MIC" "B_FRNCS_TLRN" "CHL" "M45 Table 16" 8 -"CLSI 2016" "MIC" "B_FRNCS_TLRN" "CIP" "M45 Table 16" 0.5 -"CLSI 2016" "MIC" "B_FRNCS_TLRN" "DOX" "M45 Table 16" 4 -"CLSI 2016" "MIC" "B_FRNCS_TLRN" "GEN" "M45 Table 16" 4 -"CLSI 2016" "MIC" "B_FRNCS_TLRN" "LVX" "M45 Table 16" 0.5 -"CLSI 2016" "MIC" "B_FRNCS_TLRN" "STR" "M45 Table 16" 8 -"CLSI 2016" "MIC" "B_FRNCS_TLRN" "TCY" "M45 Table 16" 4 -"CLSI 2016" "MIC" "B_GRNLC" "AMP" "M45 Table 1" 0.25 8 -"CLSI 2016" "MIC" "B_GRNLC" "CHL" "M45 Table 1" 4 8 -"CLSI 2016" "MIC" "B_GRNLC" "CIP" "M45 Table 1" 1 4 -"CLSI 2016" "MIC" "B_GRNLC" "CLI" "M45 Table 1" 0.25 1 -"CLSI 2016" "MIC" "B_GRNLC" "CRO" "M45 Table 1" 1 4 -"CLSI 2016" "MIC" "B_GRNLC" "CTX" "M45 Table 1" 1 4 -"CLSI 2016" "MIC" "B_GRNLC" "ERY" "M45 Table 1" 0.25 1 -"CLSI 2016" "MIC" "B_GRNLC" "FEP" "M45 Table 1" 1 4 -"CLSI 2016" "MIC" "B_GRNLC" "GAT" "M45 Table 1" 1 4 -"CLSI 2016" "MIC" "B_GRNLC" "IPM" "M45 Table 1" 0.5 2 -"CLSI 2016" "MIC" "B_GRNLC" "LVX" "M45 Table 1" 2 8 -"CLSI 2016" "MIC" "B_GRNLC" "MEM" "M45 Table 1" 0.5 2 -"CLSI 2016" "MIC" "B_GRNLC" "PEN" "M45 Table 1" 0.125 4 -"CLSI 2016" "MIC" "B_GRNLC" "VAN" "M45 Table 1" 1 -"CLSI 2016" "MIC" "B_HLCBCT_PYLR" "CLR" "M45 Table 8" 0.25 1 -"CLSI 2016" "MIC" "B_HMPHL" "AMC" "Table 2E" 4 8 -"CLSI 2016" "MIC" "B_HMPHL" "AMP" "Table 2E" 1 4 -"CLSI 2016" "MIC" "B_HMPHL" "ATM" "Table 2E" 2 -"CLSI 2016" "MIC" "B_HMPHL" "AZM" "Table 2E" 4 -"CLSI 2016" "MIC" "B_HMPHL" "CAT" "Table 2E" 4 16 -"CLSI 2016" "MIC" "B_HMPHL" "CAZ" "Table 2E" 2 -"CLSI 2016" "MIC" "B_HMPHL" "CDR" "Table 2E" 1 -"CLSI 2016" "MIC" "B_HMPHL" "CEC" "Table 2E" 8 32 -"CLSI 2016" "MIC" "B_HMPHL" "CFM" "Table 2E" 1 -"CLSI 2016" "MIC" "B_HMPHL" "CHL" "Table 2E" 2 8 -"CLSI 2016" "MIC" "B_HMPHL" "CID" "Table 2E" 4 16 -"CLSI 2016" "MIC" "B_HMPHL" "CIP" "Table 2E" 1 -"CLSI 2016" "MIC" "B_HMPHL" "CLR" "Table 2E" 8 32 -"CLSI 2016" "MIC" "B_HMPHL" "CPD" "Table 2E" 2 -"CLSI 2016" "MIC" "B_HMPHL" "CPR" "Table 2E" 8 32 -"CLSI 2016" "MIC" "B_HMPHL" "CRO" "Table 2E" 2 -"CLSI 2016" "MIC" "B_HMPHL" "CTB" "Table 2E" 2 -"CLSI 2016" "MIC" "B_HMPHL" "CTX" "Table 2E" 2 -"CLSI 2016" "MIC" "B_HMPHL" "CXA" "Table 2E" 4 16 -"CLSI 2016" "MIC" "Oral" "B_HMPHL" "CXM" "Table 2E" 4 16 -"CLSI 2016" "MIC" "B_HMPHL" "CXM" "Table 2E" 4 16 -"CLSI 2016" "MIC" "B_HMPHL" "CZX" "Table 2E" 2 -"CLSI 2016" "MIC" "B_HMPHL" "DOR" "Table 2E" 1 -"CLSI 2016" "MIC" "B_HMPHL" "ETP" "Table 2E" 0.5 -"CLSI 2016" "MIC" "B_HMPHL" "FEP" "Table 2E" 2 -"CLSI 2016" "MIC" "B_HMPHL" "FLE" "Table 2E" 2 -"CLSI 2016" "MIC" "B_HMPHL" "GAT" "Table 2E" 1 -"CLSI 2016" "MIC" "B_HMPHL" "GEM" "Table 2E" 0.125 -"CLSI 2016" "MIC" "B_HMPHL" "GRX" "Table 2E" 0.5 -"CLSI 2016" "MIC" "B_HMPHL" "IPM" "Table 2E" 4 -"CLSI 2016" "MIC" "B_HMPHL" "LOM" "Table 2E" 2 -"CLSI 2016" "MIC" "B_HMPHL" "LOR" "Table 2E" 8 32 -"CLSI 2016" "MIC" "B_HMPHL" "LVX" "Table 2E" 2 -"CLSI 2016" "MIC" "B_HMPHL" "MAN" "Table 2E" 4 16 -"CLSI 2016" "MIC" "B_HMPHL" "MEM" "Table 2E" 0.5 -"CLSI 2016" "MIC" "B_HMPHL" "MFX" "Table 2E" 1 -"CLSI 2016" "MIC" "B_HMPHL" "OFX" "Table 2E" 2 -"CLSI 2016" "MIC" "B_HMPHL" "RIF" "Table 2E" 1 4 -"CLSI 2016" "MIC" "B_HMPHL" "SAM" "Table 2E" 2 4 -"CLSI 2016" "MIC" "B_HMPHL" "SPX" "Table 2E" 0.25 -"CLSI 2016" "MIC" "B_HMPHL" "SXT" "Table 2E" 0.5 4 -"CLSI 2016" "MIC" "B_HMPHL" "TCY" "Table 2E" 2 8 -"CLSI 2016" "MIC" "B_HMPHL" "TLT" "Table 2E" 4 16 -"CLSI 2016" "MIC" "B_HMPHL" "TVA" "Table 2E" 1 -"CLSI 2016" "MIC" "B_HMPHL" "TZP" "Table 2E" 1 2 -"CLSI 2016" "MIC" "B_HMPHL_INFL" "CPT" "Table 2E" 0.5 -"CLSI 2016" "MIC" "B_HSTPH_SOMN" "ENR" "Vet Table" 0.25 2 -"CLSI 2016" "MIC" "B_KGLLA" "AZM" "M45 Table 7" 4 -"CLSI 2016" "MIC" "B_KGLLA" "CHL" "M45 Table 7" 4 16 -"CLSI 2016" "MIC" "B_KGLLA" "CIP" "M45 Table 7" 1 4 -"CLSI 2016" "MIC" "B_KGLLA" "CLR" "M45 Table 7" 8 32 -"CLSI 2016" "MIC" "B_KGLLA" "CRO" "M45 Table 7" 2 -"CLSI 2016" "MIC" "B_KGLLA" "CTX" "M45 Table 7" 2 -"CLSI 2016" "MIC" "B_KGLLA" "IPM" "M45 Table 7" 0.5 2 -"CLSI 2016" "MIC" "B_KGLLA" "LVX" "M45 Table 7" 2 8 -"CLSI 2016" "MIC" "B_KGLLA" "MEM" "M45 Table 7" 0.5 2 -"CLSI 2016" "MIC" "B_KGLLA" "PEN" "M45 Table 7" 1 4 -"CLSI 2016" "MIC" "B_KGLLA" "RIF" "M45 Table 7" 1 4 -"CLSI 2016" "MIC" "B_KGLLA" "SXT" "M45 Table 7" 0.5 4 -"CLSI 2016" "MIC" "B_KGLLA" "TCY" "M45 Table 7" 2 8 -"CLSI 2016" "MIC" "B_LCNST" "AMP" "M45 Table 10" 8 -"CLSI 2016" "MIC" "B_LCNST" "CHL" "M45 Table 10" 8 32 -"CLSI 2016" "MIC" "B_LCNST" "GEN" "M45 Table 10" 4 16 -"CLSI 2016" "MIC" "B_LCNST" "MNO" "M45 Table 10" 4 16 -"CLSI 2016" "MIC" "B_LCNST" "PEN" "M45 Table 10" 8 -"CLSI 2016" "MIC" "B_LCTBC" "AMP" "M45 Table 9" 8 -"CLSI 2016" "MIC" "B_LCTBC" "CLI" "M45 Table 9" 0.5 2 -"CLSI 2016" "MIC" "B_LCTBC" "DAP" "M45 Table 9" 4 -"CLSI 2016" "MIC" "B_LCTBC" "ERY" "M45 Table 9" 0.5 8 -"CLSI 2016" "MIC" "B_LCTBC" "GEN" "M45 Table 9" 4 16 -"CLSI 2016" "MIC" "B_LCTBC" "IPM" "M45 Table 9" 0.5 2 -"CLSI 2016" "MIC" "B_LCTBC" "LNZ" "M45 Table 9" 4 -"CLSI 2016" "MIC" "B_LCTBC" "PEN" "M45 Table 9" 8 -"CLSI 2016" "MIC" "B_LCTBC" "VAN" "M45 Table 9" 2 16 -"CLSI 2016" "MIC" "B_LISTR_MNCY" "AMP" "M45 Table 11" 2 -"CLSI 2016" "MIC" "B_LISTR_MNCY" "PEN" "M45 Table 11" 2 -"CLSI 2016" "MIC" "B_LISTR_MNCY" "SXT" "M45 Table 11" 0.5 4 -"CLSI 2016" "MIC" "B_MRXLL_CTRR" "AMC" "M45 Table 12" 4 8 -"CLSI 2016" "MIC" "B_MRXLL_CTRR" "AZM" "M45 Table 12" 0.25 -"CLSI 2016" "MIC" "B_MRXLL_CTRR" "CAZ" "M45 Table 12" 2 -"CLSI 2016" "MIC" "B_MRXLL_CTRR" "CEC" "M45 Table 12" 8 32 -"CLSI 2016" "MIC" "B_MRXLL_CTRR" "CHL" "M45 Table 12" 2 8 -"CLSI 2016" "MIC" "B_MRXLL_CTRR" "CIP" "M45 Table 12" 1 -"CLSI 2016" "MIC" "B_MRXLL_CTRR" "CLI" "M45 Table 12" 0.5 4 -"CLSI 2016" "MIC" "B_MRXLL_CTRR" "CLR" "M45 Table 12" 1 -"CLSI 2016" "MIC" "B_MRXLL_CTRR" "CRO" "M45 Table 12" 2 -"CLSI 2016" "MIC" "B_MRXLL_CTRR" "CTX" "M45 Table 12" 2 -"CLSI 2016" "MIC" "B_MRXLL_CTRR" "CXM" "M45 Table 12" 4 16 -"CLSI 2016" "MIC" "B_MRXLL_CTRR" "ERY" "M45 Table 12" 2 -"CLSI 2016" "MIC" "B_MRXLL_CTRR" "LVX" "M45 Table 12" 2 -"CLSI 2016" "MIC" "B_MRXLL_CTRR" "RIF" "M45 Table 12" 1 4 -"CLSI 2016" "MIC" "B_MRXLL_CTRR" "SXT" "M45 Table 12" 0.5 4 -"CLSI 2016" "MIC" "B_MRXLL_CTRR" "TCY" "M45 Table 12" 2 8 -"CLSI 2016" "MIC" "B_NESSR_GNRR" "CAT" "Table 2F" 0.5 -"CLSI 2016" "MIC" "B_NESSR_GNRR" "CAZ" "Table 2F" 0.5 -"CLSI 2016" "MIC" "B_NESSR_GNRR" "CFM" "Table 2F" 0.25 -"CLSI 2016" "MIC" "B_NESSR_GNRR" "CIP" "Table 2F" 0.064 1 -"CLSI 2016" "MIC" "B_NESSR_GNRR" "CMZ" "Table 2F" 2 8 -"CLSI 2016" "MIC" "B_NESSR_GNRR" "CPD" "Table 2F" 0.5 -"CLSI 2016" "MIC" "B_NESSR_GNRR" "CRO" "Table 2F" 0.25 -"CLSI 2016" "MIC" "B_NESSR_GNRR" "CTT" "Table 2F" 2 8 -"CLSI 2016" "MIC" "B_NESSR_GNRR" "CTX" "Table 2F" 0.5 -"CLSI 2016" "MIC" "B_NESSR_GNRR" "CXM" "Table 2F" 1 4 -"CLSI 2016" "MIC" "B_NESSR_GNRR" "CZX" "Table 2F" 0.5 -"CLSI 2016" "MIC" "B_NESSR_GNRR" "ENX" "Table 2F" 0.5 2 -"CLSI 2016" "MIC" "B_NESSR_GNRR" "FEP" "Table 2F" 0.5 -"CLSI 2016" "MIC" "B_NESSR_GNRR" "FLE" "Table 2F" 0.25 1 -"CLSI 2016" "MIC" "B_NESSR_GNRR" "FOX" "Table 2F" 2 8 -"CLSI 2016" "MIC" "B_NESSR_GNRR" "GAT" "Table 2F" 0.125 0.5 -"CLSI 2016" "MIC" "B_NESSR_GNRR" "GRX" "Table 2F" 0.064 1 -"CLSI 2016" "MIC" "B_NESSR_GNRR" "LOM" "Table 2F" 0.125 2 -"CLSI 2016" "MIC" "B_NESSR_GNRR" "OFX" "Table 2F" 0.25 2 -"CLSI 2016" "MIC" "B_NESSR_GNRR" "PEN" "Table 2F" 0.064 2 -"CLSI 2016" "MIC" "B_NESSR_GNRR" "SPT" "Table 2F" 32 128 -"CLSI 2016" "MIC" "B_NESSR_GNRR" "TCY" "Table 2F" 0.25 2 -"CLSI 2016" "MIC" "B_NESSR_GNRR" "TVA" "Table 2F" 0.25 -"CLSI 2016" "MIC" "B_NESSR_MNNG" "AMP" "Table 2I" 0.125 2 -"CLSI 2016" "MIC" "B_NESSR_MNNG" "AZM" "Table 2I" 2 -"CLSI 2016" "MIC" "B_NESSR_MNNG" "CHL" "Table 2I" 2 8 -"CLSI 2016" "MIC" "B_NESSR_MNNG" "CIP" "Table 2I" 0.032 0.12 -"CLSI 2016" "MIC" "B_NESSR_MNNG" "CRO" "Table 2I" 0.125 -"CLSI 2016" "MIC" "B_NESSR_MNNG" "CTX" "Table 2I" 0.125 -"CLSI 2016" "MIC" "B_NESSR_MNNG" "LVX" "Table 2I" 0.032 0.12 -"CLSI 2016" "MIC" "B_NESSR_MNNG" "MEM" "Table 2I" 0.25 -"CLSI 2016" "MIC" "B_NESSR_MNNG" "MNO" "Table 2I" 2 -"CLSI 2016" "MIC" "B_NESSR_MNNG" "NAL" "Table 2I" 4 8 -"CLSI 2016" "MIC" "B_NESSR_MNNG" "PEN" "Table 2I" 0.064 0.5 -"CLSI 2016" "MIC" "B_NESSR_MNNG" "RIF" "Table 2I" 0.5 2 -"CLSI 2016" "MIC" "B_NESSR_MNNG" "SMX" "Table 2I" 2 8 -"CLSI 2016" "MIC" "B_NESSR_MNNG" "SOX" "Table 2I" 2 8 -"CLSI 2016" "MIC" "B_NESSR_MNNG" "SSS" "Table 2I" 2 8 -"CLSI 2016" "MIC" "B_NESSR_MNNG" "SXT" "Table 2I" 0.125 0.5 -"CLSI 2016" "MIC" "B_PDCCC" "AMP" "M45 Table 14" 8 -"CLSI 2016" "MIC" "B_PDCCC" "CHL" "M45 Table 14" 8 32 -"CLSI 2016" "MIC" "B_PDCCC" "GEN" "M45 Table 14" 4 16 -"CLSI 2016" "MIC" "B_PDCCC" "IPM" "M45 Table 14" 0.5 -"CLSI 2016" "MIC" "B_PDCCC" "PEN" "M45 Table 14" 8 -"CLSI 2016" "MIC" "B_PLSMN" "AMC" "M45 Table 2" 8 32 -"CLSI 2016" "MIC" "B_PLSMN" "AMK" "M45 Table 2" 16 64 -"CLSI 2016" "MIC" "B_PLSMN" "ATM" "M45 Table 2" 4 16 -"CLSI 2016" "MIC" "B_PLSMN" "CAZ" "M45 Table 2" 4 16 -"CLSI 2016" "MIC" "B_PLSMN" "CHL" "M45 Table 2" 8 32 -"CLSI 2016" "MIC" "B_PLSMN" "CIP" "M45 Table 2" 1 4 -"CLSI 2016" "MIC" "B_PLSMN" "CRO" "M45 Table 2" 1 4 -"CLSI 2016" "MIC" "B_PLSMN" "CTX" "M45 Table 2" 1 4 -"CLSI 2016" "MIC" "B_PLSMN" "CXM" "M45 Table 2" 8 32 -"CLSI 2016" "MIC" "B_PLSMN" "CZO" "M45 Table 2" 1 4 -"CLSI 2016" "MIC" "B_PLSMN" "ETP" "M45 Table 2" 2 8 -"CLSI 2016" "MIC" "B_PLSMN" "FEP" "M45 Table 2" 8 32 -"CLSI 2016" "MIC" "B_PLSMN" "FOX" "M45 Table 2" 8 32 -"CLSI 2016" "MIC" "B_PLSMN" "GEN" "M45 Table 2" 4 16 -"CLSI 2016" "MIC" "B_PLSMN" "IPM" "M45 Table 2" 4 16 -"CLSI 2016" "MIC" "B_PLSMN" "LVX" "M45 Table 2" 2 8 -"CLSI 2016" "MIC" "B_PLSMN" "MEM" "M45 Table 2" 4 16 -"CLSI 2016" "MIC" "B_PLSMN" "SAM" "M45 Table 2" 8 32 -"CLSI 2016" "MIC" "B_PLSMN" "SXT" "M45 Table 2" 2 4 -"CLSI 2016" "MIC" "B_PLSMN" "TCY" "M45 Table 2" 4 16 -"CLSI 2016" "MIC" "B_PLSMN" "TZP" "M45 Table 2" 16 128 -"CLSI 2016" "MIC" "B_PRPNB" "VAN" "Table 2J-2" 2 4 -"CLSI 2016" "MIC" "B_PSDMN" "ETP" -"CLSI 2016" "MIC" "B_PSDMN_AERG" "AMK" "Table 2B-1" 16 64 -"CLSI 2016" "MIC" "B_PSDMN_AERG" "ATM" "Table 2B-1" 8 32 -"CLSI 2016" "MIC" "B_PSDMN_AERG" "CAZ" "Table 2B-1" 8 32 -"CLSI 2016" "MIC" "B_PSDMN_AERG" "CIP" "Table 2B-1" 1 4 -"CLSI 2016" "MIC" "B_PSDMN_AERG" "COL" "Table 2B-1" 2 8 -"CLSI 2016" "MIC" "B_PSDMN_AERG" "CZT" 4 16 -"CLSI 2016" "MIC" "B_PSDMN_AERG" "DOR" "Table 2B-1" 2 8 -"CLSI 2016" "MIC" "B_PSDMN_AERG" "FEP" "Table 2B-1" 8 32 -"CLSI 2016" "MIC" "B_PSDMN_AERG" "GAT" "Table 2B-1" 2 8 -"CLSI 2016" "MIC" "B_PSDMN_AERG" "GEN" "Table 2B-1" 4 16 -"CLSI 2016" "MIC" "B_PSDMN_AERG" "IPM" "Table 2B-1" 2 8 -"CLSI 2016" "MIC" "B_PSDMN_AERG" "LOM" "Table 2B-1" 2 8 -"CLSI 2016" "MIC" "B_PSDMN_AERG" "LVX" "Table 2B-1" 2 8 -"CLSI 2016" "MIC" "B_PSDMN_AERG" "MEM" "Table 2B-1" 2 8 -"CLSI 2016" "MIC" "B_PSDMN_AERG" "NET" "Table 2B-1" 8 32 -"CLSI 2016" "MIC" "B_PSDMN_AERG" "NOR" "Table 2B-1" 4 16 -"CLSI 2016" "MIC" "B_PSDMN_AERG" "OFX" "Table 2B-1" 2 8 -"CLSI 2016" "MIC" "B_PSDMN_AERG" "PIP" "Table 2B-1" 16 128 -"CLSI 2016" "MIC" "B_PSDMN_AERG" "PLB" "Table 2B-1" 2 8 -"CLSI 2016" "MIC" "B_PSDMN_AERG" "TCC" "Table 2B-1" 16 128 -"CLSI 2016" "MIC" "B_PSDMN_AERG" "TOB" "Table 2B-1" 4 16 -"CLSI 2016" "MIC" "B_PSDMN_AERG" "TZP" "Table 2B-1" 16 128 -"CLSI 2016" "MIC" "B_PSTRL" "AMC" "M45 Table 13" 0.5 -"CLSI 2016" "MIC" "B_PSTRL" "AMP" "M45 Table 13" 0.5 -"CLSI 2016" "MIC" "B_PSTRL" "AMX" "M45 Table 13" 0.5 -"CLSI 2016" "MIC" "B_PSTRL" "AZM" "M45 Table 13" 1 -"CLSI 2016" "MIC" "B_PSTRL" "CHL" "M45 Table 13" 2 -"CLSI 2016" "MIC" "B_PSTRL" "CRO" "M45 Table 13" 0.125 -"CLSI 2016" "MIC" "B_PSTRL" "DOX" "M45 Table 13" 0.5 -"CLSI 2016" "MIC" "B_PSTRL" "ERY" "M45 Table 13" 0.5 2 -"CLSI 2016" "MIC" "B_PSTRL" "LVX" "M45 Table 13" 0.064 -"CLSI 2016" "MIC" "B_PSTRL" "MFX" "M45 Table 13" 0.064 -"CLSI 2016" "MIC" "B_PSTRL" "PEN" "M45 Table 13" 0.5 -"CLSI 2016" "MIC" "B_PSTRL" "SXT" "M45 Table 13" 0.5 -"CLSI 2016" "MIC" "B_PSTRL" "TCY" "M45 Table 13" 1 -"CLSI 2016" "MIC" "B_PSTRL_MLTC" "TIL" "Vet Table" 16 32 -"CLSI 2016" "MIC" "Extraintestinal" "B_SLMNL" "CIP" "Table 2A" 0.064 1 -"CLSI 2016" "MIC" "B_SLMNL" "CIP" "Table 2A" 0.064 1 -"CLSI 2016" "MIC" "B_SLMNL" "LVX" "Table 2A" 0.125 2 -"CLSI 2016" "MIC" "Extraintestinal" "B_SLMNL" "LVX" "Table 2A" 0.125 2 -"CLSI 2016" "MIC" "B_SLMNL" "OFX" "Table 2A" 0.125 2 -"CLSI 2016" "MIC" "Extraintestinal" "B_SLMNL" "OFX" "Table 2A" 0.125 2 -"CLSI 2016" "MIC" "B_SLMNL_ENTR" "AZM" "Table 2A" 16 32 -"CLSI 2016" "MIC" "B_STNTR_MLTP" "CAZ" "Table 2B-4" 8 32 -"CLSI 2016" "MIC" "B_STNTR_MLTP" "CHL" "Table 2B-4" 8 32 -"CLSI 2016" "MIC" "B_STNTR_MLTP" "LVX" "Table 2B-4" 2 8 -"CLSI 2016" "MIC" "B_STNTR_MLTP" "MNO" "Table 2B-4" 4 16 -"CLSI 2016" "MIC" "B_STNTR_MLTP" "SXT" "Table 2B-4" 2 4 -"CLSI 2016" "MIC" "B_STNTR_MLTP" "TCC" "Table 2B-4" 16 128 -"CLSI 2016" "MIC" "B_STPHY" "AMC" "Table 2C" 4 8 -"CLSI 2016" "MIC" "B_STPHY" "AMK" "Table 2C" 16 64 -"CLSI 2016" "MIC" "B_STPHY" "AMP" "Table 2C" 0.25 0.5 -"CLSI 2016" "MIC" "B_STPHY" "AZM" "Table 2C" 2 8 -"CLSI 2016" "MIC" "B_STPHY" "CAZ" "Table 2C" 8 32 -"CLSI 2016" "MIC" "B_STPHY" "CDR" "Table 2C" 1 4 -"CLSI 2016" "MIC" "B_STPHY" "CEC" "Table 2C" 8 32 -"CLSI 2016" "MIC" "B_STPHY" "CEP" "Table 2C" 8 32 -"CLSI 2016" "MIC" "B_STPHY" "CFP" "Table 2C" 16 64 -"CLSI 2016" "MIC" "B_STPHY" "CHL" "Table 2C" 8 32 -"CLSI 2016" "MIC" "B_STPHY" "CID" "Table 2C" 8 32 -"CLSI 2016" "MIC" "B_STPHY" "CIP" "Table 2C" 1 4 -"CLSI 2016" "MIC" "B_STPHY" "CLI" "Table 2C" 0.5 4 -"CLSI 2016" "MIC" "B_STPHY" "CLR" "Table 2C" 2 8 -"CLSI 2016" "MIC" "B_STPHY" "CMZ" "Table 2C" 16 64 -"CLSI 2016" "MIC" "B_STPHY" "CPD" "Table 2C" 2 8 -"CLSI 2016" "MIC" "B_STPHY" "CPR" "Table 2C" 8 32 -"CLSI 2016" "MIC" "B_STPHY" "CRO" "Table 2C" 8 64 -"CLSI 2016" "MIC" "B_STPHY" "CTT" "Table 2C" 16 64 -"CLSI 2016" "MIC" "B_STPHY" "CTX" "Table 2C" 8 64 -"CLSI 2016" "MIC" "B_STPHY" "CXA" "Table 2C" 4 32 -"CLSI 2016" "MIC" "Oral" "B_STPHY" "CXM" "Table 2C" 4 32 -"CLSI 2016" "MIC" "Intravenous" "B_STPHY" "CXM" "Table 2C" 8 32 -"CLSI 2016" "MIC" "Oral" "B_STPHY" "CXM" "Table 2C" 4 32 -"CLSI 2016" "MIC" "B_STPHY" "CZO" "Table 2C" 8 32 -"CLSI 2016" "MIC" "B_STPHY" "CZX" "Table 2C" 8 64 -"CLSI 2016" "MIC" "B_STPHY" "DAP" "Table 2C" 1 -"CLSI 2016" "MIC" "B_STPHY" "DIR" "Table 2C" 2 8 -"CLSI 2016" "MIC" "B_STPHY" "DOR" "Table 2C" 0.5 -"CLSI 2016" "MIC" "B_STPHY" "DOX" "Table 2C" 4 16 -"CLSI 2016" "MIC" "B_STPHY" "ENX" "Table 2C" 2 8 -"CLSI 2016" "MIC" "B_STPHY" "ERY" "Table 2C" 0.5 8 -"CLSI 2016" "MIC" "B_STPHY" "ETP" "Table 2C" 2 8 -"CLSI 2016" "MIC" "B_STPHY" "FEP" "Table 2C" 8 32 -"CLSI 2016" "MIC" "B_STPHY" "FLE" "Table 2C" 2 8 -"CLSI 2016" "MIC" "B_STPHY" "FOX" "Table 2C" 4 8 -"CLSI 2016" "MIC" "B_STPHY" "GAT" "Table 2C" 0.5 2 -"CLSI 2016" "MIC" "B_STPHY" "GEN" "Table 2C" 4 16 -"CLSI 2016" "MIC" "B_STPHY" "GRX" "Table 2C" 1 4 -"CLSI 2016" "MIC" "B_STPHY" "IPM" "Table 2C" 4 16 -"CLSI 2016" "MIC" "B_STPHY" "KAN" "Table 2C" 16 64 -"CLSI 2016" "MIC" "B_STPHY" "LNZ" "Table 2C" 4 8 -"CLSI 2016" "MIC" "B_STPHY" "LOM" "Table 2C" 2 8 -"CLSI 2016" "MIC" "B_STPHY" "LOR" "Table 2C" 8 32 -"CLSI 2016" "MIC" "B_STPHY" "LTM" "Table 2C" 8 64 -"CLSI 2016" "MIC" "B_STPHY" "LVX" "Table 2C" 1 4 -"CLSI 2016" "MIC" "B_STPHY" "MAN" "Table 2C" 8 32 -"CLSI 2016" "MIC" "B_STPHY" "MEM" "Table 2C" 4 16 -"CLSI 2016" "MIC" "B_STPHY" "MET" "Table 2C" 8 16 -"CLSI 2016" "MIC" "B_STPHY" "MFX" "Table 2C" 0.5 2 -"CLSI 2016" "MIC" "B_STPHY" "MNO" "Table 2C" 4 16 -"CLSI 2016" "MIC" "B_STPHY" "NAF" "Table 2C" 2 4 -"CLSI 2016" "MIC" "B_STPHY" "NET" "Table 2C" 8 32 -"CLSI 2016" "MIC" "B_STPHY" "NIT" "Table 2C" 32 128 -"CLSI 2016" "MIC" "B_STPHY" "NOR" "Table 2C" 4 16 -"CLSI 2016" "MIC" "B_STPHY" "OFX" "Table 2C" 1 4 -"CLSI 2016" "MIC" "B_STPHY" "ORI" "Table 2C" 0.125 -"CLSI 2016" "MIC" "B_STPHY" "OXA" "Table 2C" 2 4 -"CLSI 2016" "MIC" "B_STPHY" "PEN" "Table 2C" 0.125 0.25 -"CLSI 2016" "MIC" "B_STPHY" "QDA" "Table 2C" 1 4 -"CLSI 2016" "MIC" "B_STPHY" "RIF" "Table 2C" 1 4 -"CLSI 2016" "MIC" "B_STPHY" "SAM" "Table 2C" 8 32 -"CLSI 2016" "MIC" "B_STPHY" "SMX" "Table 2C" 256 512 -"CLSI 2016" "MIC" "B_STPHY" "SOX" "Table 2C" 256 512 -"CLSI 2016" "MIC" "B_STPHY" "SPX" "Table 2C" 0.5 2 -"CLSI 2016" "MIC" "B_STPHY" "SSS" "Table 2C" 256 512 -"CLSI 2016" "MIC" "B_STPHY" "SXT" "Table 2C" 2 4 -"CLSI 2016" "MIC" "B_STPHY" "TCC" "Table 2C" 8 16 -"CLSI 2016" "MIC" "B_STPHY" "TCY" "Table 2C" 4 16 -"CLSI 2016" "MIC" "B_STPHY" "TEC" "Table 2C" 8 32 -"CLSI 2016" "MIC" "B_STPHY" "TLT" "Table 2C" 1 4 -"CLSI 2016" "MIC" "B_STPHY" "TLV" "Table 2C" 0.125 -"CLSI 2016" "MIC" "B_STPHY" "TMP" "Table 2C" 8 16 -"CLSI 2016" "MIC" "B_STPHY" "TOB" "Table 2C" 4 16 -"CLSI 2016" "MIC" "B_STPHY" "TZD" "Table 2C" 0.5 2 -"CLSI 2016" "MIC" "B_STPHY" "TZP" "Table 2C" 8 16 -"CLSI 2016" "MIC" "B_STPHY" "VAN" "Table 2C" 4 32 -"CLSI 2016" "MIC" "B_STPHY_AURS" "CPT" "Table 2C" 1 4 -"CLSI 2016" "MIC" "B_STPHY_AURS" "FOX" "Table 2C" 4 8 -"CLSI 2016" "MIC" "B_STPHY_AURS" "OXA" "Table 2C" 2 4 -"CLSI 2016" "MIC" "B_STPHY_AURS" "VAN" "Table 2C" 2 16 -"CLSI 2016" "MIC" "B_STPHY_LGDN" "FOX" "Table 2C" 4 8 -"CLSI 2016" "MIC" "B_STPHY_LGDN" "OXA" "Table 2C" 2 4 -"CLSI 2016" "MIC" "B_STRPT" "AMC" "Table 2H-1" -"CLSI 2016" "MIC" "B_STRPT" "AMP" "M45 Table 1" 0.25 8 -"CLSI 2016" "MIC" "B_STRPT" "AMP" "Table 2H-1" 0.25 -"CLSI 2016" "MIC" "B_STRPT" "AMX" "Table 2H-1" -"CLSI 2016" "MIC" "B_STRPT" "AZM" "Table 2H-1" 0.5 2 -"CLSI 2016" "MIC" "B_STRPT" "CHL" "M45 Table 1" 4 8 -"CLSI 2016" "MIC" "B_STRPT" "CHL" "Table 2H-1" 4 16 -"CLSI 2016" "MIC" "B_STRPT" "CIP" "M45 Table 1" 1 4 -"CLSI 2016" "MIC" "B_STRPT" "CLI" "M45 Table 1" 0.25 1 -"CLSI 2016" "MIC" "B_STRPT" "CLI" "Table 2H-1" 0.25 1 -"CLSI 2016" "MIC" "B_STRPT" "CLR" "Table 2H-1" 0.25 1 -"CLSI 2016" "MIC" "B_STRPT" "CPT" "Table 2H-1" 0.5 -"CLSI 2016" "MIC" "B_STRPT" "CRO" "M45 Table 1" 1 4 -"CLSI 2016" "MIC" "B_STRPT" "CRO" "Table 2H-1" 0.5 -"CLSI 2016" "MIC" "B_STRPT" "CTX" "M45 Table 1" 1 4 -"CLSI 2016" "MIC" "B_STRPT" "CTX" "Table 2H-1" 0.5 -"CLSI 2016" "MIC" "B_STRPT" "CXM" "Table 2H-1" -"CLSI 2016" "MIC" "B_STRPT" "DAP" "Table 2H-1" -"CLSI 2016" "MIC" "B_STRPT" "DIR" "Table 2H-1" 0.5 2 -"CLSI 2016" "MIC" "B_STRPT" "DOR" "Table 2H-1" 0.125 -"CLSI 2016" "MIC" "B_STRPT" "ERY" "M45 Table 1" 0.25 1 -"CLSI 2016" "MIC" "B_STRPT" "ERY" "Table 2H-1" 0.25 1 -"CLSI 2016" "MIC" "B_STRPT" "ETP" "Table 2H-1" 1 -"CLSI 2016" "MIC" "B_STRPT" "FEP" "M45 Table 1" 1 4 -"CLSI 2016" "MIC" "B_STRPT" "FEP" "Table 2H-1" 0.5 -"CLSI 2016" "MIC" "B_STRPT" "GAT" "M45 Table 1" 1 4 -"CLSI 2016" "MIC" "B_STRPT" "GAT" "Table 2H-1" 1 4 -"CLSI 2016" "MIC" "B_STRPT" "GEM" "Table 2H-1" -"CLSI 2016" "MIC" "B_STRPT" "GRX" "Table 2H-1" 0.5 2 -"CLSI 2016" "MIC" "B_STRPT" "IPM" "M45 Table 1" 0.5 2 -"CLSI 2016" "MIC" "B_STRPT" "IPM" "Table 2H-1" -"CLSI 2016" "MIC" "B_STRPT" "LNZ" "Table 2H-1" 2 -"CLSI 2016" "MIC" "B_STRPT" "LVX" "M45 Table 1" 2 8 -"CLSI 2016" "MIC" "B_STRPT" "LVX" "Table 2H-1" 2 8 -"CLSI 2016" "MIC" "B_STRPT" "MEM" "M45 Table 1" 0.5 2 -"CLSI 2016" "MIC" "B_STRPT" "MEM" "Table 2H-1" 0.5 -"CLSI 2016" "MIC" "B_STRPT" "MFX" "Table 2H-1" -"CLSI 2016" "MIC" "B_STRPT" "OFX" "Table 2H-1" 2 8 -"CLSI 2016" "MIC" "B_STRPT" "ORI" "Table 2H-1" 0.25 -"CLSI 2016" "MIC" "B_STRPT" "PEN" "M45 Table 1" 0.125 4 -"CLSI 2016" "MIC" "B_STRPT" "PEN" "Table 2H-1" 0.125 -"CLSI 2016" "MIC" "B_STRPT" "QDA" "Table 2H-1" 1 4 -"CLSI 2016" "MIC" "B_STRPT" "RIF" "Table 2H-1" -"CLSI 2016" "MIC" "B_STRPT" "SPX" "Table 2H-1" -"CLSI 2016" "MIC" "B_STRPT" "SXT" "Table 2H-1" -"CLSI 2016" "MIC" "B_STRPT" "TCY" "Table 2H-1" 2 8 -"CLSI 2016" "MIC" "B_STRPT" "TLT" "Table 2H-1" -"CLSI 2016" "MIC" "B_STRPT" "TLV" "Table 2H-1" 0.125 -"CLSI 2016" "MIC" "B_STRPT" "TVA" "Table 2H-1" 1 4 -"CLSI 2016" "MIC" "B_STRPT" "TZD" "Table 2H-1" 0.5 -"CLSI 2016" "MIC" "B_STRPT" "VAN" "M45 Table 1" 1 -"CLSI 2016" "MIC" "B_STRPT" "VAN" "Table 2H-1" 1 -"CLSI 2016" "MIC" "Non-meningitis" "B_STRPT_PNMN" "AMC" "Table 2G" 2 8 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "AMP" "Table 2G" -"CLSI 2016" "MIC" "Non-meningitis" "B_STRPT_PNMN" "AMX" "Table 2G" 2 8 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "AZM" "Table 2G" 0.5 2 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "CDR" "Table 2G" 0.5 2 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "CEC" "Table 2G" 1 4 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "CHL" "Table 2G" 4 8 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "CIP" "Table 2G" -"CLSI 2016" "MIC" "B_STRPT_PNMN" "CLI" "Table 2G" 0.25 1 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "CLR" "Table 2G" 0.25 1 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "CPD" "Table 2G" 0.5 2 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "CPR" "Table 2G" 2 8 -"CLSI 2016" "MIC" "Non-meningitis" "B_STRPT_PNMN" "CPT" "Table 2G" 0.5 -"CLSI 2016" "MIC" "Meningitis" "B_STRPT_PNMN" "CRO" "Table 2G" 0.5 2 -"CLSI 2016" "MIC" "Non-meningitis" "B_STRPT_PNMN" "CRO" "Table 2G" 1 4 -"CLSI 2016" "MIC" "Meningitis" "B_STRPT_PNMN" "CTX" "Table 2G" 0.5 2 -"CLSI 2016" "MIC" "Non-meningitis" "B_STRPT_PNMN" "CTX" "Table 2G" 1 4 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "CXA" "Table 2G" 1 4 -"CLSI 2016" "MIC" "Oral" "B_STRPT_PNMN" "CXM" "Table 2G" 1 4 -"CLSI 2016" "MIC" "Parenteral" "B_STRPT_PNMN" "CXM" "Table 2G" 0.5 2 -"CLSI 2016" "MIC" "Oral" "B_STRPT_PNMN" "CXM" "Table 2G" 1 4 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "DIR" "Table 2G" 0.5 2 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "DOR" "Table 2G" 1 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "DOX" "Table 2G" 0.25 1 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "ERY" "Table 2G" 0.25 1 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "ETP" "Table 2G" 1 4 -"CLSI 2016" "MIC" "Meningitis" "B_STRPT_PNMN" "FEP" "Table 2G" 0.5 2 -"CLSI 2016" "MIC" "Non-meningitis" "B_STRPT_PNMN" "FEP" "Table 2G" 1 4 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "GAT" "Table 2G" 1 4 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "GEM" "Table 2G" 0.125 0.5 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "GRX" "Table 2G" 0.5 2 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "IPM" "Table 2G" 0.125 1 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "LNZ" "Table 2G" 2 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "LOR" "Table 2G" 2 8 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "LVX" "Table 2G" 2 8 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "MEM" "Table 2G" 0.25 1 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "MFX" "Table 2G" 1 4 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "NOR" "Table 2G" -"CLSI 2016" "MIC" "B_STRPT_PNMN" "OFX" "Table 2G" 2 8 -"CLSI 2016" "MIC" "Meningitis" "B_STRPT_PNMN" "PEN" "Table 2G" 0.064 0.12 -"CLSI 2016" "MIC" "Non-meningitis" "B_STRPT_PNMN" "PEN" "Table 2G" 2 8 -"CLSI 2016" "MIC" "Oral" "B_STRPT_PNMN" "PEN" "Table 2G" 0.064 2 -"CLSI 2016" "MIC" "Oral" "B_STRPT_PNMN" "PNV" "Table 2G" 0.064 2 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "QDA" "Table 2G" 1 4 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "RIF" "Table 2G" 1 4 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "SAM" "Table 2G" -"CLSI 2016" "MIC" "B_STRPT_PNMN" "SPX" "Table 2G" 0.5 2 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "SXT" "Table 2G" 0.5 4 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "TCY" "Table 2G" 1 4 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "TLT" "Table 2G" 1 4 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "TVA" "Table 2G" 1 4 -"CLSI 2016" "MIC" "B_STRPT_PNMN" "VAN" "Table 2G" 1 -"CLSI 2016" "MIC" "B_STRPT_VIRI" "AMP" "Table 2H-2" 0.25 8 -"CLSI 2016" "MIC" "B_STRPT_VIRI" "AZM" "Table 2H-2" 0.5 2 -"CLSI 2016" "MIC" "B_STRPT_VIRI" "CHL" "Table 2H-2" 4 16 -"CLSI 2016" "MIC" "B_STRPT_VIRI" "CLI" "Table 2H-2" 0.25 1 -"CLSI 2016" "MIC" "B_STRPT_VIRI" "CLR" "Table 2H-2" 0.25 1 -"CLSI 2016" "MIC" "B_STRPT_VIRI" "CRO" "Table 2H-2" 1 4 -"CLSI 2016" "MIC" "B_STRPT_VIRI" "CTX" "Table 2H-2" 1 4 -"CLSI 2016" "MIC" "B_STRPT_VIRI" "CZT" "Table 2H-2" 8 32 -"CLSI 2016" "MIC" "B_STRPT_VIRI" "DAP" "Table 2H-2" 1 -"CLSI 2016" "MIC" "B_STRPT_VIRI" "DIR" "Table 2H-2" 0.5 2 -"CLSI 2016" "MIC" "B_STRPT_VIRI" "DOR" "Table 2H-2" 1 -"CLSI 2016" "MIC" "B_STRPT_VIRI" "ERY" "Table 2H-2" 0.25 1 -"CLSI 2016" "MIC" "B_STRPT_VIRI" "ETP" "Table 2H-2" 1 -"CLSI 2016" "MIC" "B_STRPT_VIRI" "FEP" "Table 2H-2" 1 4 -"CLSI 2016" "MIC" "B_STRPT_VIRI" "GAT" "Table 2H-2" 1 4 -"CLSI 2016" "MIC" "B_STRPT_VIRI" "GRX" "Table 2H-2" 0.5 2 -"CLSI 2016" "MIC" "B_STRPT_VIRI" "LNZ" "Table 2H-2" 2 -"CLSI 2016" "MIC" "B_STRPT_VIRI" "LVX" "Table 2H-2" 2 8 -"CLSI 2016" "MIC" "B_STRPT_VIRI" "MEM" "Table 2H-2" 0.5 -"CLSI 2016" "MIC" "B_STRPT_VIRI" "OFX" "Table 2H-2" 2 8 -"CLSI 2016" "MIC" "B_STRPT_VIRI" "ORI" "Table 2H-2" 0.25 -"CLSI 2016" "MIC" "B_STRPT_VIRI" "PEN" "Table 2H-2" 0.125 4 -"CLSI 2016" "MIC" "B_STRPT_VIRI" "QDA" "Table 2H-2" 1 4 -"CLSI 2016" "MIC" "B_STRPT_VIRI" "TCY" "Table 2H-2" 2 8 -"CLSI 2016" "MIC" "B_STRPT_VIRI" "TLV" "Table 2H-2" 0.125 -"CLSI 2016" "MIC" "B_STRPT_VIRI" "TVA" "Table 2H-2" 1 4 -"CLSI 2016" "MIC" "B_STRPT_VIRI" "TZD" "Table 2H-2" 0.25 -"CLSI 2016" "MIC" "B_STRPT_VIRI" "VAN" "Table 2H-2" 1 -"CLSI 2016" "MIC" "B_VIBRI_CHLR" "AZM" "M45 Table 14" "30ug" 2 -"CLSI 2016" "MIC" "B_VIBRI_CHLR" "DOX" "M45 Table 14" "30ug" 4 16 -"CLSI 2016" "MIC" "B_YERSN_PSTS" "CHL" "M45 Table 16" 8 32 -"CLSI 2016" "MIC" "B_YERSN_PSTS" "CIP" "M45 Table 16" 0.25 -"CLSI 2016" "MIC" "B_YERSN_PSTS" "DOX" "M45 Table 16" 4 16 -"CLSI 2016" "MIC" "B_YERSN_PSTS" "GEN" "M45 Table 16" 4 16 -"CLSI 2016" "MIC" "B_YERSN_PSTS" "LVX" "M45 Table 16" 0.25 -"CLSI 2016" "MIC" "B_YERSN_PSTS" "STR" "M45 Table 16" 4 16 -"CLSI 2016" "MIC" "B_YERSN_PSTS" "SXT" "M45 Table 16" 2 4 -"CLSI 2016" "MIC" "B_YERSN_PSTS" "TCY" "M45 Table 16" 4 16 -"CLSI 2016" "MIC" "F_PSDLL" "OXA" "Table 2C" 0.25 0.5 -"CLSI 2015" "MIC" "Urine" "B_[FAM]_ENTRBCTR" "CZO" "Table 2A" 16 32 -"CLSI 2015" "MIC" "B_ABTRP" "FEP" "M45 Table 1" 1 4 -"CLSI 2015" "MIC" "B_ABTRP" "GAT" "M45 Table 1" 1 4 -"CLSI 2015" "MIC" "B_ABTRP" "IPM" "M45 Table 1" 0.5 2 -"CLSI 2015" "MIC" "B_ABTRP" "LVX" "M45 Table 1" 2 8 -"CLSI 2015" "MIC" "B_ABTRP" "MEM" "M45 Table 1" 0.5 2 -"CLSI 2015" "MIC" "B_ABTRP" "PEN" "M45 Table 1" 0.125 4 -"CLSI 2015" "MIC" "B_ABTRP" "VAN" "M45 Table 1" 1 -"CLSI 2015" "MIC" "B_ACNTB" "AMK" "Table 2B-2" 16 64 -"CLSI 2015" "MIC" "B_ACNTB" "CAZ" "Table 2B-2" 8 32 -"CLSI 2015" "MIC" "B_ACNTB" "CIP" "Table 2B-2" 1 4 -"CLSI 2015" "MIC" "B_ACNTB" "COL" "Table 2B-2" 2 4 -"CLSI 2015" "MIC" "B_ACNTB" "CRO" "Table 2B-2" 8 64 -"CLSI 2015" "MIC" "B_ACNTB" "CTX" "Table 2B-2" 8 64 -"CLSI 2015" "MIC" "B_ACNTB" "DOR" "Table 2B-2" 2 8 -"CLSI 2015" "MIC" "B_ACNTB" "DOX" "Table 2B-2" 4 16 -"CLSI 2015" "MIC" "B_ACNTB" "ETP" "Table 2B-2" -"CLSI 2015" "MIC" "B_ACNTB" "FEP" "Table 2B-2" 8 32 -"CLSI 2015" "MIC" "B_ACNTB" "GAT" "Table 2B-2" 2 8 -"CLSI 2015" "MIC" "B_ACNTB" "GEN" "Table 2B-2" 4 16 -"CLSI 2015" "MIC" "B_ACNTB" "IPM" "Table 2B-2" 2 8 -"CLSI 2015" "MIC" "B_ACNTB" "LVX" "Table 2B-2" 2 8 -"CLSI 2015" "MIC" "B_ACNTB" "MEM" "Table 2B-2" 2 8 -"CLSI 2015" "MIC" "B_ACNTB" "MEZ" "Table 2B-2" 16 128 -"CLSI 2015" "MIC" "B_ACNTB" "MNO" "Table 2B-2" 4 16 -"CLSI 2015" "MIC" "B_ACNTB" "NET" "Table 2B-2" 8 32 -"CLSI 2015" "MIC" "B_ACNTB" "PIP" "Table 2B-2" 16 128 -"CLSI 2015" "MIC" "B_ACNTB" "PLB" "Table 2B-2" 2 4 -"CLSI 2015" "MIC" "B_ACNTB" "SAM" "Table 2B-2" 8 32 -"CLSI 2015" "MIC" "B_ACNTB" "SXT" "Table 2B-2" 2 4 -"CLSI 2015" "MIC" "B_ACNTB" "TCC" "Table 2B-2" 16 128 -"CLSI 2015" "MIC" "B_ACNTB" "TCY" "Table 2B-2" 4 16 -"CLSI 2015" "MIC" "B_ACNTB" "TIC" "Table 2B-2" 16 128 -"CLSI 2015" "MIC" "B_ACNTB" "TOB" "Table 2B-2" 4 16 -"CLSI 2015" "MIC" "B_ACNTB" "TZP" "Table 2B-2" 16 128 -"CLSI 2015" "MIC" "B_ACTNB_PLRP" "TIL" "Vet Table" 16 32 -"CLSI 2015" "MIC" "B_AERMN" "AMC" "M45 Table 2" 8 32 -"CLSI 2015" "MIC" "B_AERMN" "AMK" "M45 Table 2" 16 64 -"CLSI 2015" "MIC" "B_AERMN" "ATM" "M45 Table 2" 4 16 -"CLSI 2015" "MIC" "B_AERMN" "CAZ" "M45 Table 2" 4 16 -"CLSI 2015" "MIC" "B_AERMN" "CHL" "M45 Table 2" 8 32 -"CLSI 2015" "MIC" "B_AERMN" "CIP" "M45 Table 2" 1 4 -"CLSI 2015" "MIC" "B_AERMN" "CRO" "M45 Table 2" 1 4 -"CLSI 2015" "MIC" "B_AERMN" "CTX" "M45 Table 2" 1 4 -"CLSI 2015" "MIC" "B_AERMN" "CXM" "M45 Table 2" 8 32 -"CLSI 2015" "MIC" "B_AERMN" "CZO" "M45 Table 2" 1 4 -"CLSI 2015" "MIC" "B_AERMN" "ETP" "M45 Table 2" 2 8 -"CLSI 2015" "MIC" "B_AERMN" "FEP" "M45 Table 2" 8 32 -"CLSI 2015" "MIC" "B_AERMN" "FOX" "M45 Table 2" 8 32 -"CLSI 2015" "MIC" "B_AERMN" "GEN" "M45 Table 2" 4 16 -"CLSI 2015" "MIC" "B_AERMN" "IPM" "M45 Table 2" 4 16 -"CLSI 2015" "MIC" "B_AERMN" "LVX" "M45 Table 2" 2 8 -"CLSI 2015" "MIC" "B_AERMN" "MEM" "M45 Table 2" 4 16 -"CLSI 2015" "MIC" "B_AERMN" "SAM" "M45 Table 2" 8 32 -"CLSI 2015" "MIC" "B_AERMN" "SXT" "M45 Table 2" 2 4 -"CLSI 2015" "MIC" "B_AERMN" "TCY" "M45 Table 2" 4 16 -"CLSI 2015" "MIC" "B_AERMN" "TZP" "M45 Table 2" 16 128 -"CLSI 2015" "MIC" "B_AGGRG" "AMC" "M45 Table 7" 4 8 -"CLSI 2015" "MIC" "B_AGGRG" "AMP" "M45 Table 7" 1 4 -"CLSI 2015" "MIC" "B_AGGRG" "AZM" "M45 Table 7" 4 -"CLSI 2015" "MIC" "B_AGGRG" "CHL" "M45 Table 7" 4 16 -"CLSI 2015" "MIC" "B_AGGRG" "CIP" "M45 Table 7" 1 4 -"CLSI 2015" "MIC" "B_AGGRG" "CLR" "M45 Table 7" 8 32 -"CLSI 2015" "MIC" "B_AGGRG" "CRO" "M45 Table 7" 2 -"CLSI 2015" "MIC" "B_AGGRG" "CTX" "M45 Table 7" 2 -"CLSI 2015" "MIC" "B_AGGRG" "IPM" "M45 Table 7" 4 16 -"CLSI 2015" "MIC" "B_AGGRG" "LVX" "M45 Table 7" 2 8 -"CLSI 2015" "MIC" "B_AGGRG" "MEM" "M45 Table 7" 4 16 -"CLSI 2015" "MIC" "B_AGGRG" "PEN" "M45 Table 7" 1 4 -"CLSI 2015" "MIC" "B_AGGRG" "RIF" "M45 Table 7" 1 4 -"CLSI 2015" "MIC" "B_AGGRG" "SAM" "M45 Table 7" 2 4 -"CLSI 2015" "MIC" "B_AGGRG" "SXT" "M45 Table 7" 0.5 4 -"CLSI 2015" "MIC" "B_AGGRG" "TCY" "M45 Table 7" 2 8 -"CLSI 2015" "MIC" "Canine, feline" "B_ALLSC" "ENR" "Vet Table" 0.5 4 -"CLSI 2015" "MIC" "B_ANRSL" "AMC" "Table 2J" 4 16 -"CLSI 2015" "MIC" "B_ANRSL" "AMP" "Table 2J" 0.5 2 -"CLSI 2015" "MIC" "B_ANRSL" "CFP" "Table 2J" 16 64 -"CLSI 2015" "MIC" "B_ANRSL" "CHL" "Table 2J" 8 32 -"CLSI 2015" "MIC" "B_ANRSL" "CLI" "Table 2J" 2 8 -"CLSI 2015" "MIC" "B_ANRSL" "CMZ" "Table 2J" 16 64 -"CLSI 2015" "MIC" "B_ANRSL" "CRO" "Table 2J" 16 64 -"CLSI 2015" "MIC" "B_ANRSL" "CTT" "Table 2J" 16 64 -"CLSI 2015" "MIC" "B_ANRSL" "CTX" "Table 2J" 16 64 -"CLSI 2015" "MIC" "B_ANRSL" "CZX" "Table 2J" 32 128 -"CLSI 2015" "MIC" "B_ANRSL" "DOR" "Table 2J" 2 8 -"CLSI 2015" "MIC" "B_ANRSL" "ETP" "Table 2J" 4 16 -"CLSI 2015" "MIC" "B_ANRSL" "FOX" "Table 2J" 16 64 -"CLSI 2015" "MIC" "B_ANRSL" "IPM" "Table 2J" 4 16 -"CLSI 2015" "MIC" "B_ANRSL" "LTM" "Table 2J" 2 8 -"CLSI 2015" "MIC" "B_ANRSL" "MEM" "Table 2J" 4 16 -"CLSI 2015" "MIC" "B_ANRSL" "MEZ" "Table 2J" 32 128 -"CLSI 2015" "MIC" "B_ANRSL" "MTR" "Table 2J" 8 32 -"CLSI 2015" "MIC" "B_ANRSL" "PEN" "Table 2J" 0.5 2 -"CLSI 2015" "MIC" "B_ANRSL" "PIP" "Table 2J" 32 128 -"CLSI 2015" "MIC" "B_ANRSL" "SAM" "Table 2J" 8 32 -"CLSI 2015" "MIC" "B_ANRSL" "TCC" "Table 2J" 32 128 -"CLSI 2015" "MIC" "B_ANRSL" "TCY" "Table 2J" 4 16 -"CLSI 2015" "MIC" "B_ANRSL" "TIC" "Table 2J" 32 128 -"CLSI 2015" "MIC" "B_ANRSL" "TZP" "Table 2J" 32 128 -"CLSI 2015" "MIC" "B_BCLLS" "AMK" "M45 Table 3" 16 64 -"CLSI 2015" "MIC" "B_BCLLS" "AMP" "M45 Table 3" 0.25 0.5 -"CLSI 2015" "MIC" "B_BCLLS" "CAZ" "M45 Table 3" 8 32 -"CLSI 2015" "MIC" "B_BCLLS" "CHL" "M45 Table 3" 8 32 -"CLSI 2015" "MIC" "B_BCLLS" "CIP" "M45 Table 3" 1 4 -"CLSI 2015" "MIC" "B_BCLLS" "CLI" "M45 Table 3" 0.5 4 -"CLSI 2015" "MIC" "B_BCLLS" "CRO" "M45 Table 3" 8 64 -"CLSI 2015" "MIC" "B_BCLLS" "CTX" "M45 Table 3" 8 64 -"CLSI 2015" "MIC" "B_BCLLS" "CZO" "M45 Table 3" 8 16 -"CLSI 2015" "MIC" "B_BCLLS" "ERY" "M45 Table 3" 0.5 8 -"CLSI 2015" "MIC" "B_BCLLS" "GEN" "M45 Table 3" 4 16 -"CLSI 2015" "MIC" "B_BCLLS" "IPM" "M45 Table 3" 4 16 -"CLSI 2015" "MIC" "B_BCLLS" "LVX" "M45 Table 3" 2 8 -"CLSI 2015" "MIC" "B_BCLLS" "PEN" "M45 Table 3" 0.125 0.25 -"CLSI 2015" "MIC" "B_BCLLS" "RIF" "M45 Table 3" 1 4 -"CLSI 2015" "MIC" "B_BCLLS" "SXT" "M45 Table 3" 2 4 -"CLSI 2015" "MIC" "B_BCLLS" "TCY" "M45 Table 3" 4 16 -"CLSI 2015" "MIC" "B_BCLLS" "VAN" "M45 Table 3" 4 -"CLSI 2015" "MIC" "B_BCLLS_ANTH" "AMK" "M45 Table 16" -"CLSI 2015" "MIC" "B_BCLLS_ANTH" "AMP" "M45 Table 16" -"CLSI 2015" "MIC" "B_BCLLS_ANTH" "CAZ" "M45 Table 16" -"CLSI 2015" "MIC" "B_BCLLS_ANTH" "CHL" "M45 Table 16" -"CLSI 2015" "MIC" "B_BCLLS_ANTH" "CIP" "M45 Table 16" 0.25 -"CLSI 2015" "MIC" "B_BCLLS_ANTH" "CLI" "M45 Table 16" -"CLSI 2015" "MIC" "B_BCLLS_ANTH" "CRO" "M45 Table 16" -"CLSI 2015" "MIC" "B_BCLLS_ANTH" "CTX" "M45 Table 16" -"CLSI 2015" "MIC" "B_BCLLS_ANTH" "CZO" "M45 Table 16" -"CLSI 2015" "MIC" "B_BCLLS_ANTH" "DOX" "M45 Table 16" 1 -"CLSI 2015" "MIC" "B_BCLLS_ANTH" "ERY" "M45 Table 16" -"CLSI 2015" "MIC" "B_BCLLS_ANTH" "GEN" "M45 Table 16" -"CLSI 2015" "MIC" "B_BCLLS_ANTH" "IPM" "M45 Table 16" -"CLSI 2015" "MIC" "B_BCLLS_ANTH" "LVX" "M45 Table 16" 0.25 -"CLSI 2015" "MIC" "B_BCLLS_ANTH" "PEN" "M45 Table 16" 0.125 0.25 -"CLSI 2015" "MIC" "B_BCLLS_ANTH" "RIF" "M45 Table 16" -"CLSI 2015" "MIC" "B_BCLLS_ANTH" "SXT" "M45 Table 16" -"CLSI 2015" "MIC" "B_BCLLS_ANTH" "TCY" "M45 Table 16" 1 -"CLSI 2015" "MIC" "B_BCLLS_ANTH" "VAN" "M45 Table 16" -"CLSI 2015" "MIC" "B_BRCLL" "DOX" "M45 Table 16" 1 -"CLSI 2015" "MIC" "B_BRCLL" "GEN" "M45 Table 16" 4 -"CLSI 2015" "MIC" "B_BRCLL" "STR" "M45 Table 16" 8 -"CLSI 2015" "MIC" "B_BRCLL" "SXT" "M45 Table 16" 2 -"CLSI 2015" "MIC" "B_BRCLL" "TCY" "M45 Table 16" 1 -"CLSI 2015" "MIC" "B_BRKHL_CEPC" "CAZ" "Table 2B-3" 8 32 -"CLSI 2015" "MIC" "B_BRKHL_CEPC" "CHL" "Table 2B-3" 8 32 -"CLSI 2015" "MIC" "B_BRKHL_CEPC" "LVX" "Table 2B-3" 2 8 -"CLSI 2015" "MIC" "B_BRKHL_CEPC" "MEM" "Table 2B-3" 4 16 -"CLSI 2015" "MIC" "B_BRKHL_CEPC" "MNO" "Table 2B-3" 4 16 -"CLSI 2015" "MIC" "B_BRKHL_CEPC" "SXT" "Table 2B-3" 2 4 -"CLSI 2015" "MIC" "B_BRKHL_CEPC" "TCC" "Table 2B-3" 16 128 -"CLSI 2015" "MIC" "B_BRKHL_MALL" "CAZ" "M45 Table 16" 8 32 -"CLSI 2015" "MIC" "B_BRKHL_MALL" "DOX" "M45 Table 16" 4 16 -"CLSI 2015" "MIC" "B_BRKHL_MALL" "IPM" "M45 Table 16" 4 16 -"CLSI 2015" "MIC" "B_BRKHL_MALL" "TCY" "M45 Table 16" 4 16 -"CLSI 2015" "MIC" "B_BRKHL_PSDM" "AMC" "M45 Table 16" 8 32 -"CLSI 2015" "MIC" "B_BRKHL_PSDM" "CAZ" "M45 Table 16" 8 32 -"CLSI 2015" "MIC" "B_BRKHL_PSDM" "DOX" "M45 Table 16" 4 16 -"CLSI 2015" "MIC" "B_BRKHL_PSDM" "IPM" "M45 Table 16" 4 16 -"CLSI 2015" "MIC" "B_BRKHL_PSDM" "SXT" "M45 Table 16" 2 4 -"CLSI 2015" "MIC" "B_BRKHL_PSDM" "TCY" "M45 Table 16" 4 16 -"CLSI 2015" "MIC" "B_CMPYL" "CIP" "M45 Table 3" 1 4 -"CLSI 2015" "MIC" "B_CMPYL" "DOX" "M45 Table 3" 2 8 -"CLSI 2015" "MIC" "B_CMPYL" "ERY" "M45 Table 3" 8 32 -"CLSI 2015" "MIC" "B_CMPYL" "TCY" "M45 Table 3" 4 16 -"CLSI 2015" "MIC" "B_CRDBC" "AMC" "M45 Table 7" 4 8 -"CLSI 2015" "MIC" "B_CRDBC" "AMP" "M45 Table 7" 1 4 -"CLSI 2015" "MIC" "B_CRDBC" "AZM" "M45 Table 7" 4 -"CLSI 2015" "MIC" "B_CRDBC" "CHL" "M45 Table 7" 4 16 -"CLSI 2015" "MIC" "B_CRDBC" "CIP" "M45 Table 7" 1 4 -"CLSI 2015" "MIC" "B_CRDBC" "CLR" "M45 Table 7" 8 32 -"CLSI 2015" "MIC" "B_CRDBC" "CRO" "M45 Table 7" 2 -"CLSI 2015" "MIC" "B_CRDBC" "CTX" "M45 Table 7" 2 -"CLSI 2015" "MIC" "B_CRDBC" "IPM" "M45 Table 7" 0.5 2 -"CLSI 2015" "MIC" "B_CRDBC" "LVX" "M45 Table 7" 2 8 -"CLSI 2015" "MIC" "B_CRDBC" "MEM" "M45 Table 7" 0.5 2 -"CLSI 2015" "MIC" "B_CRDBC" "PEN" "M45 Table 7" 1 4 -"CLSI 2015" "MIC" "B_CRDBC" "RIF" "M45 Table 7" 1 4 -"CLSI 2015" "MIC" "B_CRDBC" "SAM" "M45 Table 7" 2 4 -"CLSI 2015" "MIC" "B_CRDBC" "SXT" "M45 Table 7" 0.5 4 -"CLSI 2015" "MIC" "B_CRDBC" "TCY" "M45 Table 7" 2 8 -"CLSI 2015" "MIC" "B_EKNLL" "AMC" "M45 Table 7" 4 8 -"CLSI 2015" "MIC" "B_EKNLL" "AMP" "M45 Table 7" 1 4 -"CLSI 2015" "MIC" "B_EKNLL" "AZM" "M45 Table 7" 4 -"CLSI 2015" "MIC" "B_EKNLL" "CHL" "M45 Table 7" 4 16 -"CLSI 2015" "MIC" "B_EKNLL" "CIP" "M45 Table 7" 1 4 -"CLSI 2015" "MIC" "B_EKNLL" "CLR" "M45 Table 7" 8 32 -"CLSI 2015" "MIC" "B_EKNLL" "CRO" "M45 Table 7" 2 -"CLSI 2015" "MIC" "B_EKNLL" "CTX" "M45 Table 7" 2 -"CLSI 2015" "MIC" "B_EKNLL" "IPM" "M45 Table 7" 0.5 2 -"CLSI 2015" "MIC" "B_EKNLL" "LVX" "M45 Table 7" 2 8 -"CLSI 2015" "MIC" "B_EKNLL" "MEM" "M45 Table 7" 0.5 2 -"CLSI 2015" "MIC" "B_EKNLL" "PEN" "M45 Table 7" 1 4 -"CLSI 2015" "MIC" "B_EKNLL" "RIF" "M45 Table 7" 1 4 -"CLSI 2015" "MIC" "B_EKNLL" "SAM" "M45 Table 7" 2 4 -"CLSI 2015" "MIC" "B_EKNLL" "SXT" "M45 Table 7" 0.5 4 -"CLSI 2015" "MIC" "B_EKNLL" "TCY" "M45 Table 7" 2 8 -"CLSI 2015" "MIC" "B_ENTRC" "AMP" "Table 2D" 8 16 -"CLSI 2015" "MIC" "B_ENTRC" "CHL" "Table 2D" 8 32 -"CLSI 2015" "MIC" "B_ENTRC" "CIP" "Table 2D" 1 4 -"CLSI 2015" "MIC" "B_ENTRC" "DAP" "Table 2D" 4 -"CLSI 2015" "MIC" "B_ENTRC" "DOX" "Table 2D" 4 16 -"CLSI 2015" "MIC" "B_ENTRC" "ERY" "Table 2D" 0.5 8 -"CLSI 2015" "MIC" "B_ENTRC" "FOS" "Table 2D" 64 256 -"CLSI 2015" "MIC" "B_ENTRC" "GAT" "Table 2D" 2 8 -"CLSI 2015" "MIC" "B_ENTRC" "GEH" "Table 2D" 512 512 -"CLSI 2015" "MIC" "B_ENTRC" "GEN" "Table 2D" 512 512 -"CLSI 2015" "MIC" "B_ENTRC" "LNZ" "Table 2D" 2 8 -"CLSI 2015" "MIC" "B_ENTRC" "LVX" "Table 2D" 2 8 -"CLSI 2015" "MIC" "B_ENTRC" "MNO" "Table 2D" 4 16 -"CLSI 2015" "MIC" "B_ENTRC" "NIT" "Table 2D" 32 128 -"CLSI 2015" "MIC" "B_ENTRC" "NOR" "Table 2D" 4 16 -"CLSI 2015" "MIC" "B_ENTRC" "PEN" "Table 2D" 8 16 -"CLSI 2015" "MIC" "B_ENTRC" "QDA" "Table 2D" 1 4 -"CLSI 2015" "MIC" "B_ENTRC" "RIF" "Table 2D" 1 4 -"CLSI 2015" "MIC" "B_ENTRC" "STH" "Table 2D" 1024 1024 -"CLSI 2015" "MIC" "B_ENTRC" "STR" "Table 2D" 1024 1024 -"CLSI 2015" "MIC" "B_ENTRC" "TCY" "Table 2D" 4 16 -"CLSI 2015" "MIC" "B_ENTRC" "TEC" "Table 2D" 8 32 -"CLSI 2015" "MIC" "B_ENTRC" "VAN" "Table 2D" 4 32 -"CLSI 2015" "MIC" "B_ERYSP_RHSP" "AMP" "M45 Table 6" 0.25 -"CLSI 2015" "MIC" "B_ERYSP_RHSP" "CIP" "M45 Table 6" 1 -"CLSI 2015" "MIC" "B_ERYSP_RHSP" "CLI" "M45 Table 6" 0.25 1 -"CLSI 2015" "MIC" "B_ERYSP_RHSP" "CRO" "M45 Table 6" 1 -"CLSI 2015" "MIC" "B_ERYSP_RHSP" "CTX" "M45 Table 6" 1 -"CLSI 2015" "MIC" "B_ERYSP_RHSP" "ERY" "M45 Table 6" 0.25 1 -"CLSI 2015" "MIC" "B_ERYSP_RHSP" "FEP" "M45 Table 6" 1 -"CLSI 2015" "MIC" "B_ERYSP_RHSP" "IPM" "M45 Table 6" 0.5 -"CLSI 2015" "MIC" "B_ERYSP_RHSP" "LVX" "M45 Table 6" 2 -"CLSI 2015" "MIC" "B_ERYSP_RHSP" "MEM" "M45 Table 6" 0.5 -"CLSI 2015" "MIC" "B_ERYSP_RHSP" "PEN" "M45 Table 6" 0.125 -"CLSI 2015" "MIC" "B_FRNCS_TLRN" "CHL" "M45 Table 16" 8 -"CLSI 2015" "MIC" "B_FRNCS_TLRN" "CIP" "M45 Table 16" 0.5 -"CLSI 2015" "MIC" "B_FRNCS_TLRN" "DOX" "M45 Table 16" 4 -"CLSI 2015" "MIC" "B_FRNCS_TLRN" "GEN" "M45 Table 16" 4 -"CLSI 2015" "MIC" "B_FRNCS_TLRN" "LVX" "M45 Table 16" 0.5 -"CLSI 2015" "MIC" "B_FRNCS_TLRN" "STR" "M45 Table 16" 8 -"CLSI 2015" "MIC" "B_FRNCS_TLRN" "TCY" "M45 Table 16" 4 -"CLSI 2015" "MIC" "B_GRNLC" "AMP" "M45 Table 1" 0.25 8 -"CLSI 2015" "MIC" "B_GRNLC" "CHL" "M45 Table 1" 4 8 -"CLSI 2015" "MIC" "B_GRNLC" "CIP" "M45 Table 1" 1 4 -"CLSI 2015" "MIC" "B_GRNLC" "CLI" "M45 Table 1" 0.25 1 -"CLSI 2015" "MIC" "B_GRNLC" "CRO" "M45 Table 1" 1 4 -"CLSI 2015" "MIC" "B_GRNLC" "CTX" "M45 Table 1" 1 4 -"CLSI 2015" "MIC" "B_GRNLC" "ERY" "M45 Table 1" 0.25 1 -"CLSI 2015" "MIC" "B_GRNLC" "FEP" "M45 Table 1" 1 4 -"CLSI 2015" "MIC" "B_GRNLC" "GAT" "M45 Table 1" 1 4 -"CLSI 2015" "MIC" "B_GRNLC" "IPM" "M45 Table 1" 0.5 2 -"CLSI 2015" "MIC" "B_GRNLC" "LVX" "M45 Table 1" 2 8 -"CLSI 2015" "MIC" "B_GRNLC" "MEM" "M45 Table 1" 0.5 2 -"CLSI 2015" "MIC" "B_GRNLC" "PEN" "M45 Table 1" 0.125 4 -"CLSI 2015" "MIC" "B_GRNLC" "VAN" "M45 Table 1" 1 -"CLSI 2015" "MIC" "B_HLCBCT_PYLR" "CLR" "M45 Table 8" 0.25 1 -"CLSI 2015" "MIC" "B_HMPHL" "AMC" "Table 2E" 4 8 -"CLSI 2015" "MIC" "B_HMPHL" "AMP" "Table 2E" 1 4 -"CLSI 2015" "MIC" "B_HMPHL" "ATM" "Table 2E" 2 -"CLSI 2015" "MIC" "B_HMPHL" "AZM" "Table 2E" 4 -"CLSI 2015" "MIC" "B_HMPHL" "CAT" "Table 2E" 4 16 -"CLSI 2015" "MIC" "B_HMPHL" "CAZ" "Table 2E" 2 -"CLSI 2015" "MIC" "B_HMPHL" "CDR" "Table 2E" 1 -"CLSI 2015" "MIC" "B_HMPHL" "CEC" "Table 2E" 8 32 -"CLSI 2015" "MIC" "B_HMPHL" "CFM" "Table 2E" 1 -"CLSI 2015" "MIC" "B_HMPHL" "CHL" "Table 2E" 2 8 -"CLSI 2015" "MIC" "B_HMPHL" "CID" "Table 2E" 4 16 -"CLSI 2015" "MIC" "B_HMPHL" "CIP" "Table 2E" 1 -"CLSI 2015" "MIC" "B_HMPHL" "CLR" "Table 2E" 8 32 -"CLSI 2015" "MIC" "B_HMPHL" "CPD" "Table 2E" 2 -"CLSI 2015" "MIC" "B_HMPHL" "CPR" "Table 2E" 8 32 -"CLSI 2015" "MIC" "B_HMPHL" "CRO" "Table 2E" 2 -"CLSI 2015" "MIC" "B_HMPHL" "CTB" "Table 2E" 2 -"CLSI 2015" "MIC" "B_HMPHL" "CTX" "Table 2E" 2 -"CLSI 2015" "MIC" "B_HMPHL" "CXA" "Table 2E" 4 16 -"CLSI 2015" "MIC" "Oral" "B_HMPHL" "CXM" "Table 2E" 4 16 -"CLSI 2015" "MIC" "B_HMPHL" "CXM" "Table 2E" 4 16 -"CLSI 2015" "MIC" "B_HMPHL" "CZX" "Table 2E" 2 -"CLSI 2015" "MIC" "B_HMPHL" "DOR" "Table 2E" 1 -"CLSI 2015" "MIC" "B_HMPHL" "ETP" "Table 2E" 0.5 -"CLSI 2015" "MIC" "B_HMPHL" "FEP" "Table 2E" 2 -"CLSI 2015" "MIC" "B_HMPHL" "FLE" "Table 2E" 2 -"CLSI 2015" "MIC" "B_HMPHL" "GAT" "Table 2E" 1 -"CLSI 2015" "MIC" "B_HMPHL" "GEM" "Table 2E" 0.125 -"CLSI 2015" "MIC" "B_HMPHL" "GRX" "Table 2E" 0.5 -"CLSI 2015" "MIC" "B_HMPHL" "IPM" "Table 2E" 4 -"CLSI 2015" "MIC" "B_HMPHL" "LOM" "Table 2E" 2 -"CLSI 2015" "MIC" "B_HMPHL" "LOR" "Table 2E" 8 32 -"CLSI 2015" "MIC" "B_HMPHL" "LVX" "Table 2E" 2 -"CLSI 2015" "MIC" "B_HMPHL" "MAN" "Table 2E" 4 16 -"CLSI 2015" "MIC" "B_HMPHL" "MEM" "Table 2E" 0.5 -"CLSI 2015" "MIC" "B_HMPHL" "MFX" "Table 2E" 1 -"CLSI 2015" "MIC" "B_HMPHL" "OFX" "Table 2E" 2 -"CLSI 2015" "MIC" "B_HMPHL" "RIF" "Table 2E" 1 4 -"CLSI 2015" "MIC" "B_HMPHL" "SAM" "Table 2E" 2 4 -"CLSI 2015" "MIC" "B_HMPHL" "SPX" "Table 2E" 0.25 -"CLSI 2015" "MIC" "B_HMPHL" "SXT" "Table 2E" 0.5 4 -"CLSI 2015" "MIC" "B_HMPHL" "TCY" "Table 2E" 2 8 -"CLSI 2015" "MIC" "B_HMPHL" "TLT" "Table 2E" 4 16 -"CLSI 2015" "MIC" "B_HMPHL" "TVA" "Table 2E" 1 -"CLSI 2015" "MIC" "B_HMPHL" "TZP" "Table 2E" 1 2 -"CLSI 2015" "MIC" "B_HMPHL_INFL" "CPT" "Table 2E" 0.5 -"CLSI 2015" "MIC" "B_HSTPH_SOMN" "ENR" "Vet Table" 0.25 2 -"CLSI 2015" "MIC" "B_KGLLA" "AZM" "M45 Table 7" 4 -"CLSI 2015" "MIC" "B_KGLLA" "CHL" "M45 Table 7" 4 16 -"CLSI 2015" "MIC" "B_KGLLA" "CIP" "M45 Table 7" 1 4 -"CLSI 2015" "MIC" "B_KGLLA" "CLR" "M45 Table 7" 8 32 -"CLSI 2015" "MIC" "B_KGLLA" "CRO" "M45 Table 7" 2 -"CLSI 2015" "MIC" "B_KGLLA" "CTX" "M45 Table 7" 2 -"CLSI 2015" "MIC" "B_KGLLA" "IPM" "M45 Table 7" 0.5 2 -"CLSI 2015" "MIC" "B_KGLLA" "LVX" "M45 Table 7" 2 8 -"CLSI 2015" "MIC" "B_KGLLA" "MEM" "M45 Table 7" 0.5 2 -"CLSI 2015" "MIC" "B_KGLLA" "PEN" "M45 Table 7" 1 4 -"CLSI 2015" "MIC" "B_KGLLA" "RIF" "M45 Table 7" 1 4 -"CLSI 2015" "MIC" "B_KGLLA" "SXT" "M45 Table 7" 0.5 4 -"CLSI 2015" "MIC" "B_KGLLA" "TCY" "M45 Table 7" 2 8 -"CLSI 2015" "MIC" "B_LCNST" "AMP" "M45 Table 10" 8 -"CLSI 2015" "MIC" "B_LCNST" "CHL" "M45 Table 10" 8 32 -"CLSI 2015" "MIC" "B_LCNST" "GEN" "M45 Table 10" 4 16 -"CLSI 2015" "MIC" "B_LCNST" "MNO" "M45 Table 10" 4 16 -"CLSI 2015" "MIC" "B_LCNST" "PEN" "M45 Table 10" 8 -"CLSI 2015" "MIC" "B_LCTBC" "AMP" "M45 Table 9" 8 -"CLSI 2015" "MIC" "B_LCTBC" "CLI" "M45 Table 9" 0.5 2 -"CLSI 2015" "MIC" "B_LCTBC" "DAP" "M45 Table 9" 4 -"CLSI 2015" "MIC" "B_LCTBC" "ERY" "M45 Table 9" 0.5 8 -"CLSI 2015" "MIC" "B_LCTBC" "GEN" "M45 Table 9" 4 16 -"CLSI 2015" "MIC" "B_LCTBC" "IPM" "M45 Table 9" 0.5 2 -"CLSI 2015" "MIC" "B_LCTBC" "LNZ" "M45 Table 9" 4 -"CLSI 2015" "MIC" "B_LCTBC" "PEN" "M45 Table 9" 8 -"CLSI 2015" "MIC" "B_LCTBC" "VAN" "M45 Table 9" 2 16 -"CLSI 2015" "MIC" "B_LISTR_MNCY" "AMP" "M45 Table 11" 2 -"CLSI 2015" "MIC" "B_LISTR_MNCY" "PEN" "M45 Table 11" 2 -"CLSI 2015" "MIC" "B_LISTR_MNCY" "SXT" "M45 Table 11" 0.5 4 -"CLSI 2015" "MIC" "B_MRXLL_CTRR" "AMC" "M45 Table 12" 4 8 -"CLSI 2015" "MIC" "B_MRXLL_CTRR" "AZM" "M45 Table 12" 0.25 -"CLSI 2015" "MIC" "B_MRXLL_CTRR" "CAZ" "M45 Table 12" 2 -"CLSI 2015" "MIC" "B_MRXLL_CTRR" "CEC" "M45 Table 12" 8 32 -"CLSI 2015" "MIC" "B_MRXLL_CTRR" "CHL" "M45 Table 12" 2 8 -"CLSI 2015" "MIC" "B_MRXLL_CTRR" "CIP" "M45 Table 12" 1 -"CLSI 2015" "MIC" "B_MRXLL_CTRR" "CLI" "M45 Table 12" 0.5 4 -"CLSI 2015" "MIC" "B_MRXLL_CTRR" "CLR" "M45 Table 12" 1 -"CLSI 2015" "MIC" "B_MRXLL_CTRR" "CRO" "M45 Table 12" 2 -"CLSI 2015" "MIC" "B_MRXLL_CTRR" "CTX" "M45 Table 12" 2 -"CLSI 2015" "MIC" "B_MRXLL_CTRR" "CXM" "M45 Table 12" 4 16 -"CLSI 2015" "MIC" "B_MRXLL_CTRR" "ERY" "M45 Table 12" 2 -"CLSI 2015" "MIC" "B_MRXLL_CTRR" "LVX" "M45 Table 12" 2 -"CLSI 2015" "MIC" "B_MRXLL_CTRR" "RIF" "M45 Table 12" 1 4 -"CLSI 2015" "MIC" "B_MRXLL_CTRR" "SXT" "M45 Table 12" 0.5 4 -"CLSI 2015" "MIC" "B_MRXLL_CTRR" "TCY" "M45 Table 12" 2 8 -"CLSI 2015" "MIC" "B_NESSR_GNRR" "CAT" "Table 2F" 0.5 -"CLSI 2015" "MIC" "B_NESSR_GNRR" "CAZ" "Table 2F" 0.5 -"CLSI 2015" "MIC" "B_NESSR_GNRR" "CFM" "Table 2F" 0.25 -"CLSI 2015" "MIC" "B_NESSR_GNRR" "CIP" "Table 2F" 0.064 1 -"CLSI 2015" "MIC" "B_NESSR_GNRR" "CMZ" "Table 2F" 2 8 -"CLSI 2015" "MIC" "B_NESSR_GNRR" "CPD" "Table 2F" 0.5 -"CLSI 2015" "MIC" "B_NESSR_GNRR" "CRO" "Table 2F" 0.25 -"CLSI 2015" "MIC" "B_NESSR_GNRR" "CTT" "Table 2F" 2 8 -"CLSI 2015" "MIC" "B_NESSR_GNRR" "CTX" "Table 2F" 0.5 -"CLSI 2015" "MIC" "B_NESSR_GNRR" "CXM" "Table 2F" 1 4 -"CLSI 2015" "MIC" "B_NESSR_GNRR" "CZX" "Table 2F" 0.5 -"CLSI 2015" "MIC" "B_NESSR_GNRR" "ENX" "Table 2F" 0.5 2 -"CLSI 2015" "MIC" "B_NESSR_GNRR" "FEP" "Table 2F" 0.5 -"CLSI 2015" "MIC" "B_NESSR_GNRR" "FLE" "Table 2F" 0.25 1 -"CLSI 2015" "MIC" "B_NESSR_GNRR" "FOX" "Table 2F" 2 8 -"CLSI 2015" "MIC" "B_NESSR_GNRR" "GAT" "Table 2F" 0.125 0.5 -"CLSI 2015" "MIC" "B_NESSR_GNRR" "GRX" "Table 2F" 0.064 1 -"CLSI 2015" "MIC" "B_NESSR_GNRR" "LOM" "Table 2F" 0.125 2 -"CLSI 2015" "MIC" "B_NESSR_GNRR" "OFX" "Table 2F" 0.25 2 -"CLSI 2015" "MIC" "B_NESSR_GNRR" "PEN" "Table 2F" 0.064 2 -"CLSI 2015" "MIC" "B_NESSR_GNRR" "SPT" "Table 2F" 32 128 -"CLSI 2015" "MIC" "B_NESSR_GNRR" "TCY" "Table 2F" 0.25 2 -"CLSI 2015" "MIC" "B_NESSR_GNRR" "TVA" "Table 2F" 0.25 -"CLSI 2015" "MIC" "B_NESSR_MNNG" "AMP" "Table 2I" 0.125 2 -"CLSI 2015" "MIC" "B_NESSR_MNNG" "AZM" "Table 2I" 2 -"CLSI 2015" "MIC" "B_NESSR_MNNG" "CHL" "Table 2I" 2 8 -"CLSI 2015" "MIC" "B_NESSR_MNNG" "CIP" "Table 2I" 0.032 0.12 -"CLSI 2015" "MIC" "B_NESSR_MNNG" "CRO" "Table 2I" 0.125 -"CLSI 2015" "MIC" "B_NESSR_MNNG" "CTX" "Table 2I" 0.125 -"CLSI 2015" "MIC" "B_NESSR_MNNG" "LVX" "Table 2I" 0.032 0.12 -"CLSI 2015" "MIC" "B_NESSR_MNNG" "MEM" "Table 2I" 0.25 -"CLSI 2015" "MIC" "B_NESSR_MNNG" "MNO" "Table 2I" 2 -"CLSI 2015" "MIC" "B_NESSR_MNNG" "NAL" "Table 2I" 4 8 -"CLSI 2015" "MIC" "B_NESSR_MNNG" "PEN" "Table 2I" 0.064 0.5 -"CLSI 2015" "MIC" "B_NESSR_MNNG" "RIF" "Table 2I" 0.5 2 -"CLSI 2015" "MIC" "B_NESSR_MNNG" "SMX" "Table 2I" 2 8 -"CLSI 2015" "MIC" "B_NESSR_MNNG" "SOX" "Table 2I" 2 8 -"CLSI 2015" "MIC" "B_NESSR_MNNG" "SSS" "Table 2I" 2 8 -"CLSI 2015" "MIC" "B_NESSR_MNNG" "SXT" "Table 2I" 0.125 0.5 -"CLSI 2015" "MIC" "B_PDCCC" "AMP" "M45 Table 14" 8 -"CLSI 2015" "MIC" "B_PDCCC" "CHL" "M45 Table 14" 8 32 -"CLSI 2015" "MIC" "B_PDCCC" "GEN" "M45 Table 14" 4 16 -"CLSI 2015" "MIC" "B_PDCCC" "IPM" "M45 Table 14" 0.5 -"CLSI 2015" "MIC" "B_PDCCC" "PEN" "M45 Table 14" 8 -"CLSI 2015" "MIC" "B_PLSMN" "AMC" "M45 Table 2" 8 32 -"CLSI 2015" "MIC" "B_PLSMN" "AMK" "M45 Table 2" 16 64 -"CLSI 2015" "MIC" "B_PLSMN" "ATM" "M45 Table 2" 4 16 -"CLSI 2015" "MIC" "B_PLSMN" "CAZ" "M45 Table 2" 4 16 -"CLSI 2015" "MIC" "B_PLSMN" "CHL" "M45 Table 2" 8 32 -"CLSI 2015" "MIC" "B_PLSMN" "CIP" "M45 Table 2" 1 4 -"CLSI 2015" "MIC" "B_PLSMN" "CRO" "M45 Table 2" 1 4 -"CLSI 2015" "MIC" "B_PLSMN" "CTX" "M45 Table 2" 1 4 -"CLSI 2015" "MIC" "B_PLSMN" "CXM" "M45 Table 2" 8 32 -"CLSI 2015" "MIC" "B_PLSMN" "CZO" "M45 Table 2" 1 4 -"CLSI 2015" "MIC" "B_PLSMN" "ETP" "M45 Table 2" 2 8 -"CLSI 2015" "MIC" "B_PLSMN" "FEP" "M45 Table 2" 8 32 -"CLSI 2015" "MIC" "B_PLSMN" "FOX" "M45 Table 2" 8 32 -"CLSI 2015" "MIC" "B_PLSMN" "GEN" "M45 Table 2" 4 16 -"CLSI 2015" "MIC" "B_PLSMN" "IPM" "M45 Table 2" 4 16 -"CLSI 2015" "MIC" "B_PLSMN" "LVX" "M45 Table 2" 2 8 -"CLSI 2015" "MIC" "B_PLSMN" "MEM" "M45 Table 2" 4 16 -"CLSI 2015" "MIC" "B_PLSMN" "SAM" "M45 Table 2" 8 32 -"CLSI 2015" "MIC" "B_PLSMN" "SXT" "M45 Table 2" 2 4 -"CLSI 2015" "MIC" "B_PLSMN" "TCY" "M45 Table 2" 4 16 -"CLSI 2015" "MIC" "B_PLSMN" "TZP" "M45 Table 2" 16 128 -"CLSI 2015" "MIC" "B_PRPNB" "VAN" "Table 2J-2" 2 4 -"CLSI 2015" "MIC" "B_PSDMN" "ETP" -"CLSI 2015" "MIC" "B_PSDMN_AERG" "AMK" "Table 2B-1" 16 64 -"CLSI 2015" "MIC" "B_PSDMN_AERG" "ATM" "Table 2B-1" 8 32 -"CLSI 2015" "MIC" "B_PSDMN_AERG" "CAZ" "Table 2B-1" 8 32 -"CLSI 2015" "MIC" "B_PSDMN_AERG" "CIP" "Table 2B-1" 1 4 -"CLSI 2015" "MIC" "B_PSDMN_AERG" "COL" "Table 2B-1" 2 8 -"CLSI 2015" "MIC" "B_PSDMN_AERG" "DOR" "Table 2B-1" 2 8 -"CLSI 2015" "MIC" "B_PSDMN_AERG" "FEP" "Table 2B-1" 8 32 -"CLSI 2015" "MIC" "B_PSDMN_AERG" "GAT" "Table 2B-1" 2 8 -"CLSI 2015" "MIC" "B_PSDMN_AERG" "GEN" "Table 2B-1" 4 16 -"CLSI 2015" "MIC" "B_PSDMN_AERG" "IPM" "Table 2B-1" 2 8 -"CLSI 2015" "MIC" "B_PSDMN_AERG" "LOM" "Table 2B-1" 2 8 -"CLSI 2015" "MIC" "B_PSDMN_AERG" "LVX" "Table 2B-1" 2 8 -"CLSI 2015" "MIC" "B_PSDMN_AERG" "MEM" "Table 2B-1" 2 8 -"CLSI 2015" "MIC" "B_PSDMN_AERG" "NET" "Table 2B-1" 8 32 -"CLSI 2015" "MIC" "B_PSDMN_AERG" "NOR" "Table 2B-1" 4 16 -"CLSI 2015" "MIC" "B_PSDMN_AERG" "OFX" "Table 2B-1" 2 8 -"CLSI 2015" "MIC" "B_PSDMN_AERG" "PIP" "Table 2B-1" 16 128 -"CLSI 2015" "MIC" "B_PSDMN_AERG" "PLB" "Table 2B-1" 2 8 -"CLSI 2015" "MIC" "B_PSDMN_AERG" "TCC" "Table 2B-1" 16 128 -"CLSI 2015" "MIC" "B_PSDMN_AERG" "TIC" "Table 2B-1" 16 128 -"CLSI 2015" "MIC" "B_PSDMN_AERG" "TOB" "Table 2B-1" 4 16 -"CLSI 2015" "MIC" "B_PSDMN_AERG" "TZP" "Table 2B-1" 16 128 -"CLSI 2015" "MIC" "B_PSTRL" "AMC" "M45 Table 13" 0.5 -"CLSI 2015" "MIC" "B_PSTRL" "AMP" "M45 Table 13" 0.5 -"CLSI 2015" "MIC" "B_PSTRL" "AMX" "M45 Table 13" 0.5 -"CLSI 2015" "MIC" "B_PSTRL" "AZM" "M45 Table 13" 1 -"CLSI 2015" "MIC" "B_PSTRL" "CHL" "M45 Table 13" 2 -"CLSI 2015" "MIC" "B_PSTRL" "CRO" "M45 Table 13" 0.125 -"CLSI 2015" "MIC" "B_PSTRL" "DOX" "M45 Table 13" 0.5 -"CLSI 2015" "MIC" "B_PSTRL" "ERY" "M45 Table 13" 0.5 2 -"CLSI 2015" "MIC" "B_PSTRL" "LVX" "M45 Table 13" 0.064 -"CLSI 2015" "MIC" "B_PSTRL" "MFX" "M45 Table 13" 0.064 -"CLSI 2015" "MIC" "B_PSTRL" "PEN" "M45 Table 13" 0.5 -"CLSI 2015" "MIC" "B_PSTRL" "SXT" "M45 Table 13" 0.5 -"CLSI 2015" "MIC" "B_PSTRL" "TCY" "M45 Table 13" 1 -"CLSI 2015" "MIC" "B_PSTRL_MLTC" "TIL" "Vet Table" 16 32 -"CLSI 2015" "MIC" "Extraintestinal" "B_SLMNL" "CIP" "Table 2A" 0.064 1 -"CLSI 2015" "MIC" "B_SLMNL" "CIP" "Table 2A" 0.064 1 -"CLSI 2015" "MIC" "B_SLMNL" "LVX" "Table 2A" 0.125 2 -"CLSI 2015" "MIC" "Extraintestinal" "B_SLMNL" "LVX" "Table 2A" 0.125 2 -"CLSI 2015" "MIC" "B_SLMNL" "OFX" "Table 2A" 0.125 2 -"CLSI 2015" "MIC" "Extraintestinal" "B_SLMNL" "OFX" "Table 2A" 0.125 2 -"CLSI 2015" "MIC" "B_SLMNL_ENTR" "AZM" "Table 2A" 16 32 -"CLSI 2015" "MIC" "B_STNTR_MLTP" "CAZ" "Table 2B-4" 8 32 -"CLSI 2015" "MIC" "B_STNTR_MLTP" "CHL" "Table 2B-4" 8 32 -"CLSI 2015" "MIC" "B_STNTR_MLTP" "LVX" "Table 2B-4" 2 8 -"CLSI 2015" "MIC" "B_STNTR_MLTP" "MNO" "Table 2B-4" 4 16 -"CLSI 2015" "MIC" "B_STNTR_MLTP" "SXT" "Table 2B-4" 2 4 -"CLSI 2015" "MIC" "B_STNTR_MLTP" "TCC" "Table 2B-4" 16 128 -"CLSI 2015" "MIC" "B_STPHY" "AMC" "Table 2C" 4 8 -"CLSI 2015" "MIC" "B_STPHY" "AMK" "Table 2C" 16 64 -"CLSI 2015" "MIC" "B_STPHY" "AMP" "Table 2C" 0.25 0.5 -"CLSI 2015" "MIC" "B_STPHY" "AZM" "Table 2C" 2 8 -"CLSI 2015" "MIC" "B_STPHY" "CAZ" "Table 2C" 8 32 -"CLSI 2015" "MIC" "B_STPHY" "CDR" "Table 2C" 1 4 -"CLSI 2015" "MIC" "B_STPHY" "CEC" "Table 2C" 8 32 -"CLSI 2015" "MIC" "B_STPHY" "CEP" "Table 2C" 8 32 -"CLSI 2015" "MIC" "B_STPHY" "CFP" "Table 2C" 16 64 -"CLSI 2015" "MIC" "B_STPHY" "CHL" "Table 2C" 8 32 -"CLSI 2015" "MIC" "B_STPHY" "CID" "Table 2C" 8 32 -"CLSI 2015" "MIC" "B_STPHY" "CIP" "Table 2C" 1 4 -"CLSI 2015" "MIC" "B_STPHY" "CLI" "Table 2C" 0.5 4 -"CLSI 2015" "MIC" "B_STPHY" "CLR" "Table 2C" 2 8 -"CLSI 2015" "MIC" "B_STPHY" "CMZ" "Table 2C" 16 64 -"CLSI 2015" "MIC" "B_STPHY" "CPD" "Table 2C" 2 8 -"CLSI 2015" "MIC" "B_STPHY" "CPR" "Table 2C" 8 32 -"CLSI 2015" "MIC" "B_STPHY" "CRO" "Table 2C" 8 64 -"CLSI 2015" "MIC" "B_STPHY" "CTT" "Table 2C" 16 64 -"CLSI 2015" "MIC" "B_STPHY" "CTX" "Table 2C" 8 64 -"CLSI 2015" "MIC" "B_STPHY" "CXA" "Table 2C" 4 32 -"CLSI 2015" "MIC" "Oral" "B_STPHY" "CXM" "Table 2C" 4 32 -"CLSI 2015" "MIC" "Intravenous" "B_STPHY" "CXM" "Table 2C" 8 32 -"CLSI 2015" "MIC" "Oral" "B_STPHY" "CXM" "Table 2C" 4 32 -"CLSI 2015" "MIC" "B_STPHY" "CZO" "Table 2C" 8 32 -"CLSI 2015" "MIC" "B_STPHY" "CZX" "Table 2C" 8 64 -"CLSI 2015" "MIC" "B_STPHY" "DAP" "Table 2C" 1 -"CLSI 2015" "MIC" "B_STPHY" "DIR" "Table 2C" 2 8 -"CLSI 2015" "MIC" "B_STPHY" "DOR" "Table 2C" 0.5 -"CLSI 2015" "MIC" "B_STPHY" "DOX" "Table 2C" 4 16 -"CLSI 2015" "MIC" "B_STPHY" "ENX" "Table 2C" 2 8 -"CLSI 2015" "MIC" "B_STPHY" "ERY" "Table 2C" 0.5 8 -"CLSI 2015" "MIC" "B_STPHY" "ETP" "Table 2C" 2 8 -"CLSI 2015" "MIC" "B_STPHY" "FEP" "Table 2C" 8 32 -"CLSI 2015" "MIC" "B_STPHY" "FLE" "Table 2C" 2 8 -"CLSI 2015" "MIC" "B_STPHY" "FOX" "Table 2C" 4 8 -"CLSI 2015" "MIC" "B_STPHY" "GAT" "Table 2C" 0.5 2 -"CLSI 2015" "MIC" "B_STPHY" "GEN" "Table 2C" 4 16 -"CLSI 2015" "MIC" "B_STPHY" "GRX" "Table 2C" 1 4 -"CLSI 2015" "MIC" "B_STPHY" "IPM" "Table 2C" 4 16 -"CLSI 2015" "MIC" "B_STPHY" "KAN" "Table 2C" 16 64 -"CLSI 2015" "MIC" "B_STPHY" "LNZ" "Table 2C" 4 8 -"CLSI 2015" "MIC" "B_STPHY" "LOM" "Table 2C" 2 8 -"CLSI 2015" "MIC" "B_STPHY" "LOR" "Table 2C" 8 32 -"CLSI 2015" "MIC" "B_STPHY" "LTM" "Table 2C" 8 64 -"CLSI 2015" "MIC" "B_STPHY" "LVX" "Table 2C" 1 4 -"CLSI 2015" "MIC" "B_STPHY" "MAN" "Table 2C" 8 32 -"CLSI 2015" "MIC" "B_STPHY" "MEM" "Table 2C" 4 16 -"CLSI 2015" "MIC" "B_STPHY" "MET" "Table 2C" 8 16 -"CLSI 2015" "MIC" "B_STPHY" "MFX" "Table 2C" 0.5 2 -"CLSI 2015" "MIC" "B_STPHY" "MNO" "Table 2C" 4 16 -"CLSI 2015" "MIC" "B_STPHY" "NAF" "Table 2C" 2 4 -"CLSI 2015" "MIC" "B_STPHY" "NET" "Table 2C" 8 32 -"CLSI 2015" "MIC" "B_STPHY" "NIT" "Table 2C" 32 128 -"CLSI 2015" "MIC" "B_STPHY" "NOR" "Table 2C" 4 16 -"CLSI 2015" "MIC" "B_STPHY" "OFX" "Table 2C" 1 4 -"CLSI 2015" "MIC" "B_STPHY" "OXA" "Table 2C" 2 4 -"CLSI 2015" "MIC" "B_STPHY" "PEN" "Table 2C" 0.125 0.25 -"CLSI 2015" "MIC" "B_STPHY" "QDA" "Table 2C" 1 4 -"CLSI 2015" "MIC" "B_STPHY" "RIF" "Table 2C" 1 4 -"CLSI 2015" "MIC" "B_STPHY" "SAM" "Table 2C" 8 32 -"CLSI 2015" "MIC" "B_STPHY" "SMX" "Table 2C" 256 512 -"CLSI 2015" "MIC" "B_STPHY" "SOX" "Table 2C" 256 512 -"CLSI 2015" "MIC" "B_STPHY" "SPX" "Table 2C" 0.5 2 -"CLSI 2015" "MIC" "B_STPHY" "SSS" "Table 2C" 256 512 -"CLSI 2015" "MIC" "B_STPHY" "SXT" "Table 2C" 2 4 -"CLSI 2015" "MIC" "B_STPHY" "TCC" "Table 2C" 8 16 -"CLSI 2015" "MIC" "B_STPHY" "TCY" "Table 2C" 4 16 -"CLSI 2015" "MIC" "B_STPHY" "TEC" "Table 2C" 8 32 -"CLSI 2015" "MIC" "B_STPHY" "TLT" "Table 2C" 1 4 -"CLSI 2015" "MIC" "B_STPHY" "TMP" "Table 2C" 8 16 -"CLSI 2015" "MIC" "B_STPHY" "TOB" "Table 2C" 4 16 -"CLSI 2015" "MIC" "B_STPHY" "TZP" "Table 2C" 8 16 -"CLSI 2015" "MIC" "B_STPHY" "VAN" "Table 2C" 4 32 -"CLSI 2015" "MIC" "B_STPHY_AURS" "CPT" "Table 2C" 1 4 -"CLSI 2015" "MIC" "B_STPHY_AURS" "FOX" "Table 2C" 4 8 -"CLSI 2015" "MIC" "B_STPHY_AURS" "OXA" "Table 2C" 2 4 -"CLSI 2015" "MIC" "B_STPHY_AURS" "VAN" "Table 2C" 2 16 -"CLSI 2015" "MIC" "B_STPHY_LGDN" "FOX" "Table 2C" 4 8 -"CLSI 2015" "MIC" "B_STPHY_LGDN" "OXA" "Table 2C" 2 4 -"CLSI 2015" "MIC" "B_STRPT" "AMC" "Table 2H-1" -"CLSI 2015" "MIC" "B_STRPT" "AMP" "M45 Table 1" 0.25 8 -"CLSI 2015" "MIC" "B_STRPT" "AMP" "Table 2H-1" 0.25 -"CLSI 2015" "MIC" "B_STRPT" "AMX" "Table 2H-1" -"CLSI 2015" "MIC" "B_STRPT" "AZM" "Table 2H-1" 0.5 2 -"CLSI 2015" "MIC" "B_STRPT" "CHL" "M45 Table 1" 4 8 -"CLSI 2015" "MIC" "B_STRPT" "CHL" "Table 2H-1" 4 16 -"CLSI 2015" "MIC" "B_STRPT" "CIP" "M45 Table 1" 1 4 -"CLSI 2015" "MIC" "B_STRPT" "CLI" "M45 Table 1" 0.25 1 -"CLSI 2015" "MIC" "B_STRPT" "CLI" "Table 2H-1" 0.25 1 -"CLSI 2015" "MIC" "B_STRPT" "CLR" "Table 2H-1" 0.25 1 -"CLSI 2015" "MIC" "B_STRPT" "CPT" "Table 2H-1" 0.5 -"CLSI 2015" "MIC" "B_STRPT" "CRO" "M45 Table 1" 1 4 -"CLSI 2015" "MIC" "B_STRPT" "CRO" "Table 2H-1" 0.5 -"CLSI 2015" "MIC" "B_STRPT" "CTX" "M45 Table 1" 1 4 -"CLSI 2015" "MIC" "B_STRPT" "CTX" "Table 2H-1" 0.5 -"CLSI 2015" "MIC" "B_STRPT" "CXM" "Table 2H-1" -"CLSI 2015" "MIC" "B_STRPT" "DAP" "Table 2H-1" -"CLSI 2015" "MIC" "B_STRPT" "DIR" "Table 2H-1" 0.5 2 -"CLSI 2015" "MIC" "B_STRPT" "DOR" "Table 2H-1" 0.125 -"CLSI 2015" "MIC" "B_STRPT" "ERY" "M45 Table 1" 0.25 1 -"CLSI 2015" "MIC" "B_STRPT" "ERY" "Table 2H-1" 0.25 1 -"CLSI 2015" "MIC" "B_STRPT" "ETP" "Table 2H-1" 1 -"CLSI 2015" "MIC" "B_STRPT" "FEP" "M45 Table 1" 1 4 -"CLSI 2015" "MIC" "B_STRPT" "FEP" "Table 2H-1" 0.5 -"CLSI 2015" "MIC" "B_STRPT" "GAT" "M45 Table 1" 1 4 -"CLSI 2015" "MIC" "B_STRPT" "GAT" "Table 2H-1" 1 4 -"CLSI 2015" "MIC" "B_STRPT" "GEM" "Table 2H-1" -"CLSI 2015" "MIC" "B_STRPT" "GRX" "Table 2H-1" 0.5 2 -"CLSI 2015" "MIC" "B_STRPT" "IPM" "M45 Table 1" 0.5 2 -"CLSI 2015" "MIC" "B_STRPT" "IPM" "Table 2H-1" -"CLSI 2015" "MIC" "B_STRPT" "LNZ" "Table 2H-1" 2 -"CLSI 2015" "MIC" "B_STRPT" "LVX" "M45 Table 1" 2 8 -"CLSI 2015" "MIC" "B_STRPT" "LVX" "Table 2H-1" 2 8 -"CLSI 2015" "MIC" "B_STRPT" "MEM" "M45 Table 1" 0.5 2 -"CLSI 2015" "MIC" "B_STRPT" "MEM" "Table 2H-1" 0.5 -"CLSI 2015" "MIC" "B_STRPT" "MFX" "Table 2H-1" -"CLSI 2015" "MIC" "B_STRPT" "OFX" "Table 2H-1" 2 8 -"CLSI 2015" "MIC" "B_STRPT" "PEN" "M45 Table 1" 0.125 4 -"CLSI 2015" "MIC" "B_STRPT" "PEN" "Table 2H-1" 0.125 -"CLSI 2015" "MIC" "B_STRPT" "QDA" "Table 2H-1" 1 4 -"CLSI 2015" "MIC" "B_STRPT" "RIF" "Table 2H-1" -"CLSI 2015" "MIC" "B_STRPT" "SPX" "Table 2H-1" -"CLSI 2015" "MIC" "B_STRPT" "SXT" "Table 2H-1" -"CLSI 2015" "MIC" "B_STRPT" "TCY" "Table 2H-1" 2 8 -"CLSI 2015" "MIC" "B_STRPT" "TLT" "Table 2H-1" -"CLSI 2015" "MIC" "B_STRPT" "TVA" "Table 2H-1" 1 4 -"CLSI 2015" "MIC" "B_STRPT" "VAN" "M45 Table 1" 1 -"CLSI 2015" "MIC" "B_STRPT" "VAN" "Table 2H-1" 1 -"CLSI 2015" "MIC" "Non-meningitis" "B_STRPT_PNMN" "AMC" "Table 2G" 2 8 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "AMP" "Table 2G" -"CLSI 2015" "MIC" "Non-meningitis" "B_STRPT_PNMN" "AMX" "Table 2G" 2 8 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "AZM" "Table 2G" 0.5 2 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "CDR" "Table 2G" 0.5 2 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "CEC" "Table 2G" 1 4 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "CHL" "Table 2G" 4 8 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "CIP" "Table 2G" -"CLSI 2015" "MIC" "B_STRPT_PNMN" "CLI" "Table 2G" 0.25 1 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "CLR" "Table 2G" 0.25 1 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "CPD" "Table 2G" 0.5 2 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "CPR" "Table 2G" 2 8 -"CLSI 2015" "MIC" "Non-meningitis" "B_STRPT_PNMN" "CPT" "Table 2G" 0.5 -"CLSI 2015" "MIC" "Meningitis" "B_STRPT_PNMN" "CRO" "Table 2G" 0.5 2 -"CLSI 2015" "MIC" "Non-meningitis" "B_STRPT_PNMN" "CRO" "Table 2G" 1 4 -"CLSI 2015" "MIC" "Meningitis" "B_STRPT_PNMN" "CTX" "Table 2G" 0.5 2 -"CLSI 2015" "MIC" "Non-meningitis" "B_STRPT_PNMN" "CTX" "Table 2G" 1 4 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "CXA" "Table 2G" 1 4 -"CLSI 2015" "MIC" "Oral" "B_STRPT_PNMN" "CXM" "Table 2G" 1 4 -"CLSI 2015" "MIC" "Parenteral" "B_STRPT_PNMN" "CXM" "Table 2G" 0.5 2 -"CLSI 2015" "MIC" "Oral" "B_STRPT_PNMN" "CXM" "Table 2G" 1 4 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "DIR" "Table 2G" 0.5 2 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "DOR" "Table 2G" 1 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "DOX" "Table 2G" 0.25 1 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "ERY" "Table 2G" 0.25 1 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "ETP" "Table 2G" 1 4 -"CLSI 2015" "MIC" "Meningitis" "B_STRPT_PNMN" "FEP" "Table 2G" 0.5 2 -"CLSI 2015" "MIC" "Non-meningitis" "B_STRPT_PNMN" "FEP" "Table 2G" 1 4 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "GAT" "Table 2G" 1 4 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "GEM" "Table 2G" 0.125 0.5 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "GRX" "Table 2G" 0.5 2 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "IPM" "Table 2G" 0.125 1 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "LNZ" "Table 2G" 2 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "LOR" "Table 2G" 2 8 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "LVX" "Table 2G" 2 8 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "MEM" "Table 2G" 0.25 1 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "MFX" "Table 2G" 1 4 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "NOR" "Table 2G" -"CLSI 2015" "MIC" "B_STRPT_PNMN" "OFX" "Table 2G" 2 8 -"CLSI 2015" "MIC" "Meningitis" "B_STRPT_PNMN" "PEN" "Table 2G" 0.064 0.12 -"CLSI 2015" "MIC" "Non-meningitis" "B_STRPT_PNMN" "PEN" "Table 2G" 2 8 -"CLSI 2015" "MIC" "Oral" "B_STRPT_PNMN" "PEN" "Table 2G" 0.064 2 -"CLSI 2015" "MIC" "Oral" "B_STRPT_PNMN" "PNV" "Table 2G" 0.064 2 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "QDA" "Table 2G" 1 4 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "RIF" "Table 2G" 1 4 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "SAM" "Table 2G" -"CLSI 2015" "MIC" "B_STRPT_PNMN" "SPX" "Table 2G" 0.5 2 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "SXT" "Table 2G" 0.5 4 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "TCY" "Table 2G" 1 4 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "TLT" "Table 2G" 1 4 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "TVA" "Table 2G" 1 4 -"CLSI 2015" "MIC" "B_STRPT_PNMN" "VAN" "Table 2G" 1 -"CLSI 2015" "MIC" "B_STRPT_VIRI" "AMP" "Table 2H-2" 0.25 8 -"CLSI 2015" "MIC" "B_STRPT_VIRI" "AZM" "Table 2H-2" 0.5 2 -"CLSI 2015" "MIC" "B_STRPT_VIRI" "CHL" "Table 2H-2" 4 16 -"CLSI 2015" "MIC" "B_STRPT_VIRI" "CLI" "Table 2H-2" 0.25 1 -"CLSI 2015" "MIC" "B_STRPT_VIRI" "CLR" "Table 2H-2" 0.25 1 -"CLSI 2015" "MIC" "B_STRPT_VIRI" "CRO" "Table 2H-2" 1 4 -"CLSI 2015" "MIC" "B_STRPT_VIRI" "CTX" "Table 2H-2" 1 4 -"CLSI 2015" "MIC" "B_STRPT_VIRI" "DAP" "Table 2H-2" 1 -"CLSI 2015" "MIC" "B_STRPT_VIRI" "DIR" "Table 2H-2" 0.5 2 -"CLSI 2015" "MIC" "B_STRPT_VIRI" "DOR" "Table 2H-2" 1 -"CLSI 2015" "MIC" "B_STRPT_VIRI" "ERY" "Table 2H-2" 0.25 1 -"CLSI 2015" "MIC" "B_STRPT_VIRI" "ETP" "Table 2H-2" 1 -"CLSI 2015" "MIC" "B_STRPT_VIRI" "FEP" "Table 2H-2" 1 4 -"CLSI 2015" "MIC" "B_STRPT_VIRI" "GAT" "Table 2H-2" 1 4 -"CLSI 2015" "MIC" "B_STRPT_VIRI" "GRX" "Table 2H-2" 0.5 2 -"CLSI 2015" "MIC" "B_STRPT_VIRI" "LNZ" "Table 2H-2" 2 -"CLSI 2015" "MIC" "B_STRPT_VIRI" "LVX" "Table 2H-2" 2 8 -"CLSI 2015" "MIC" "B_STRPT_VIRI" "MEM" "Table 2H-2" 0.5 -"CLSI 2015" "MIC" "B_STRPT_VIRI" "OFX" "Table 2H-2" 2 8 -"CLSI 2015" "MIC" "B_STRPT_VIRI" "PEN" "Table 2H-2" 0.125 4 -"CLSI 2015" "MIC" "B_STRPT_VIRI" "QDA" "Table 2H-2" 1 4 -"CLSI 2015" "MIC" "B_STRPT_VIRI" "TCY" "Table 2H-2" 2 8 -"CLSI 2015" "MIC" "B_STRPT_VIRI" "TVA" "Table 2H-2" 1 4 -"CLSI 2015" "MIC" "B_STRPT_VIRI" "VAN" "Table 2H-2" 1 -"CLSI 2015" "MIC" "B_VIBRI_CHLR" "AZM" "M45 Table 14" "30ug" 2 -"CLSI 2015" "MIC" "B_VIBRI_CHLR" "DOX" "M45 Table 14" "30ug" 4 16 -"CLSI 2015" "MIC" "B_YERSN_PSTS" "CHL" "M45 Table 16" 8 32 -"CLSI 2015" "MIC" "B_YERSN_PSTS" "CIP" "M45 Table 16" 0.25 -"CLSI 2015" "MIC" "B_YERSN_PSTS" "DOX" "M45 Table 16" 4 16 -"CLSI 2015" "MIC" "B_YERSN_PSTS" "GEN" "M45 Table 16" 4 16 -"CLSI 2015" "MIC" "B_YERSN_PSTS" "LVX" "M45 Table 16" 0.25 -"CLSI 2015" "MIC" "B_YERSN_PSTS" "STR" "M45 Table 16" 4 16 -"CLSI 2015" "MIC" "B_YERSN_PSTS" "SXT" "M45 Table 16" 2 4 -"CLSI 2015" "MIC" "B_YERSN_PSTS" "TCY" "M45 Table 16" 4 16 -"CLSI 2014" "MIC" "Urine" "B_[FAM]_ENTRBCTR" "CZO" "Table 2A" 16 32 -"CLSI 2014" "MIC" "B_ABTRP" "FEP" "M45 Table 1" 1 4 -"CLSI 2014" "MIC" "B_ABTRP" "GAT" "M45 Table 1" 1 4 -"CLSI 2014" "MIC" "B_ABTRP" "IPM" "M45 Table 1" 0.5 2 -"CLSI 2014" "MIC" "B_ABTRP" "LVX" "M45 Table 1" 2 8 -"CLSI 2014" "MIC" "B_ABTRP" "MEM" "M45 Table 1" 0.5 2 -"CLSI 2014" "MIC" "B_ABTRP" "PEN" "M45 Table 1" 0.125 4 -"CLSI 2014" "MIC" "B_ABTRP" "VAN" "M45 Table 1" 1 -"CLSI 2014" "MIC" "B_ACNTB" "AMK" "Table 2B-2" 16 64 -"CLSI 2014" "MIC" "B_ACNTB" "CAZ" "Table 2B-2" 8 32 -"CLSI 2014" "MIC" "B_ACNTB" "CIP" "Table 2B-2" 1 4 -"CLSI 2014" "MIC" "B_ACNTB" "COL" "Table 2B-2" 2 4 -"CLSI 2014" "MIC" "B_ACNTB" "CRO" "Table 2B-2" 8 64 -"CLSI 2014" "MIC" "B_ACNTB" "CTX" "Table 2B-2" 8 64 -"CLSI 2014" "MIC" "B_ACNTB" "DOR" "Table 2B-2" 2 8 -"CLSI 2014" "MIC" "B_ACNTB" "DOX" "Table 2B-2" 4 16 -"CLSI 2014" "MIC" "B_ACNTB" "ETP" "Table 2B-2" -"CLSI 2014" "MIC" "B_ACNTB" "FEP" "Table 2B-2" 8 32 -"CLSI 2014" "MIC" "B_ACNTB" "GAT" "Table 2B-2" 2 8 -"CLSI 2014" "MIC" "B_ACNTB" "GEN" "Table 2B-2" 4 16 -"CLSI 2014" "MIC" "B_ACNTB" "IPM" "Table 2B-2" 2 8 -"CLSI 2014" "MIC" "B_ACNTB" "LVX" "Table 2B-2" 2 8 -"CLSI 2014" "MIC" "B_ACNTB" "MEM" "Table 2B-2" 2 8 -"CLSI 2014" "MIC" "B_ACNTB" "MEZ" "Table 2B-2" 16 128 -"CLSI 2014" "MIC" "B_ACNTB" "MNO" "Table 2B-2" 4 16 -"CLSI 2014" "MIC" "B_ACNTB" "NET" "Table 2B-2" 8 32 -"CLSI 2014" "MIC" "B_ACNTB" "PIP" "Table 2B-2" 16 128 -"CLSI 2014" "MIC" "B_ACNTB" "PLB" "Table 2B-2" 2 4 -"CLSI 2014" "MIC" "B_ACNTB" "SAM" "Table 2B-2" 8 32 -"CLSI 2014" "MIC" "B_ACNTB" "SXT" "Table 2B-2" 2 4 -"CLSI 2014" "MIC" "B_ACNTB" "TCC" "Table 2B-2" 16 128 -"CLSI 2014" "MIC" "B_ACNTB" "TCY" "Table 2B-2" 4 16 -"CLSI 2014" "MIC" "B_ACNTB" "TIC" "Table 2B-2" 16 128 -"CLSI 2014" "MIC" "B_ACNTB" "TOB" "Table 2B-2" 4 16 -"CLSI 2014" "MIC" "B_ACNTB" "TZP" "Table 2B-2" 16 128 -"CLSI 2014" "MIC" "B_ACTNB_PLRP" "TIL" "Vet Table" 16 32 -"CLSI 2014" "MIC" "B_AERMN" "AMC" "M45 Table 2" 8 32 -"CLSI 2014" "MIC" "B_AERMN" "AMK" "M45 Table 2" 16 64 -"CLSI 2014" "MIC" "B_AERMN" "ATM" "M45 Table 2" 4 16 -"CLSI 2014" "MIC" "B_AERMN" "CAZ" "M45 Table 2" 4 16 -"CLSI 2014" "MIC" "B_AERMN" "CHL" "M45 Table 2" 8 32 -"CLSI 2014" "MIC" "B_AERMN" "CIP" "M45 Table 2" 1 4 -"CLSI 2014" "MIC" "B_AERMN" "CRO" "M45 Table 2" 1 4 -"CLSI 2014" "MIC" "B_AERMN" "CTX" "M45 Table 2" 1 4 -"CLSI 2014" "MIC" "B_AERMN" "CXM" "M45 Table 2" 8 32 -"CLSI 2014" "MIC" "B_AERMN" "CZO" "M45 Table 2" 1 4 -"CLSI 2014" "MIC" "B_AERMN" "ETP" "M45 Table 2" 2 8 -"CLSI 2014" "MIC" "B_AERMN" "FEP" "M45 Table 2" 8 32 -"CLSI 2014" "MIC" "B_AERMN" "FOX" "M45 Table 2" 8 32 -"CLSI 2014" "MIC" "B_AERMN" "GEN" "M45 Table 2" 4 16 -"CLSI 2014" "MIC" "B_AERMN" "IPM" "M45 Table 2" 4 16 -"CLSI 2014" "MIC" "B_AERMN" "LVX" "M45 Table 2" 2 8 -"CLSI 2014" "MIC" "B_AERMN" "MEM" "M45 Table 2" 4 16 -"CLSI 2014" "MIC" "B_AERMN" "SAM" "M45 Table 2" 8 32 -"CLSI 2014" "MIC" "B_AERMN" "SXT" "M45 Table 2" 2 4 -"CLSI 2014" "MIC" "B_AERMN" "TCY" "M45 Table 2" 4 16 -"CLSI 2014" "MIC" "B_AERMN" "TZP" "M45 Table 2" 16 128 -"CLSI 2014" "MIC" "B_AGGRG" "AMC" "M45 Table 7" 4 8 -"CLSI 2014" "MIC" "B_AGGRG" "AMP" "M45 Table 7" 1 4 -"CLSI 2014" "MIC" "B_AGGRG" "AZM" "M45 Table 7" 4 -"CLSI 2014" "MIC" "B_AGGRG" "CHL" "M45 Table 7" 4 16 -"CLSI 2014" "MIC" "B_AGGRG" "CIP" "M45 Table 7" 1 4 -"CLSI 2014" "MIC" "B_AGGRG" "CLR" "M45 Table 7" 8 32 -"CLSI 2014" "MIC" "B_AGGRG" "CRO" "M45 Table 7" 2 -"CLSI 2014" "MIC" "B_AGGRG" "CTX" "M45 Table 7" 2 -"CLSI 2014" "MIC" "B_AGGRG" "IPM" "M45 Table 7" 4 16 -"CLSI 2014" "MIC" "B_AGGRG" "LVX" "M45 Table 7" 2 8 -"CLSI 2014" "MIC" "B_AGGRG" "MEM" "M45 Table 7" 4 16 -"CLSI 2014" "MIC" "B_AGGRG" "PEN" "M45 Table 7" 1 4 -"CLSI 2014" "MIC" "B_AGGRG" "RIF" "M45 Table 7" 1 4 -"CLSI 2014" "MIC" "B_AGGRG" "SAM" "M45 Table 7" 2 4 -"CLSI 2014" "MIC" "B_AGGRG" "SXT" "M45 Table 7" 0.5 4 -"CLSI 2014" "MIC" "B_AGGRG" "TCY" "M45 Table 7" 2 8 -"CLSI 2014" "MIC" "Canine, feline" "B_ALLSC" "ENR" "Vet Table" 0.5 4 -"CLSI 2014" "MIC" "B_ANRSL" "AMC" "Table 2J" 4 16 -"CLSI 2014" "MIC" "B_ANRSL" "AMP" "Table 2J" 0.5 2 -"CLSI 2014" "MIC" "B_ANRSL" "CFP" "Table 2J" 16 64 -"CLSI 2014" "MIC" "B_ANRSL" "CHL" "Table 2J" 8 32 -"CLSI 2014" "MIC" "B_ANRSL" "CLI" "Table 2J" 2 8 -"CLSI 2014" "MIC" "B_ANRSL" "CMZ" "Table 2J" 16 64 -"CLSI 2014" "MIC" "B_ANRSL" "CRO" "Table 2J" 16 64 -"CLSI 2014" "MIC" "B_ANRSL" "CTT" "Table 2J" 16 64 -"CLSI 2014" "MIC" "B_ANRSL" "CTX" "Table 2J" 16 64 -"CLSI 2014" "MIC" "B_ANRSL" "CZX" "Table 2J" 32 128 -"CLSI 2014" "MIC" "B_ANRSL" "DOR" "Table 2J" 2 8 -"CLSI 2014" "MIC" "B_ANRSL" "ETP" "Table 2J" 4 16 -"CLSI 2014" "MIC" "B_ANRSL" "FOX" "Table 2J" 16 64 -"CLSI 2014" "MIC" "B_ANRSL" "IPM" "Table 2J" 4 16 -"CLSI 2014" "MIC" "B_ANRSL" "LTM" "Table 2J" 2 8 -"CLSI 2014" "MIC" "B_ANRSL" "MEM" "Table 2J" 4 16 -"CLSI 2014" "MIC" "B_ANRSL" "MEZ" "Table 2J" 32 128 -"CLSI 2014" "MIC" "B_ANRSL" "MTR" "Table 2J" 8 32 -"CLSI 2014" "MIC" "B_ANRSL" "PEN" "Table 2J" 0.5 2 -"CLSI 2014" "MIC" "B_ANRSL" "PIP" "Table 2J" 32 128 -"CLSI 2014" "MIC" "B_ANRSL" "SAM" "Table 2J" 8 32 -"CLSI 2014" "MIC" "B_ANRSL" "TCC" "Table 2J" 32 128 -"CLSI 2014" "MIC" "B_ANRSL" "TCY" "Table 2J" 4 16 -"CLSI 2014" "MIC" "B_ANRSL" "TIC" "Table 2J" 32 128 -"CLSI 2014" "MIC" "B_ANRSL" "TZP" "Table 2J" 32 128 -"CLSI 2014" "MIC" "B_BCLLS" "AMK" "M45 Table 3" 16 64 -"CLSI 2014" "MIC" "B_BCLLS" "AMP" "M45 Table 3" 0.25 0.5 -"CLSI 2014" "MIC" "B_BCLLS" "CAZ" "M45 Table 3" 8 32 -"CLSI 2014" "MIC" "B_BCLLS" "CHL" "M45 Table 3" 8 32 -"CLSI 2014" "MIC" "B_BCLLS" "CIP" "M45 Table 3" 1 4 -"CLSI 2014" "MIC" "B_BCLLS" "CLI" "M45 Table 3" 0.5 4 -"CLSI 2014" "MIC" "B_BCLLS" "CRO" "M45 Table 3" 8 64 -"CLSI 2014" "MIC" "B_BCLLS" "CTX" "M45 Table 3" 8 64 -"CLSI 2014" "MIC" "B_BCLLS" "CZO" "M45 Table 3" 8 16 -"CLSI 2014" "MIC" "B_BCLLS" "ERY" "M45 Table 3" 0.5 8 -"CLSI 2014" "MIC" "B_BCLLS" "GEN" "M45 Table 3" 4 16 -"CLSI 2014" "MIC" "B_BCLLS" "IPM" "M45 Table 3" 4 16 -"CLSI 2014" "MIC" "B_BCLLS" "LVX" "M45 Table 3" 2 8 -"CLSI 2014" "MIC" "B_BCLLS" "PEN" "M45 Table 3" 0.125 0.25 -"CLSI 2014" "MIC" "B_BCLLS" "RIF" "M45 Table 3" 1 4 -"CLSI 2014" "MIC" "B_BCLLS" "SXT" "M45 Table 3" 2 4 -"CLSI 2014" "MIC" "B_BCLLS" "TCY" "M45 Table 3" 4 16 -"CLSI 2014" "MIC" "B_BCLLS" "VAN" "M45 Table 3" 4 -"CLSI 2014" "MIC" "B_BCLLS_ANTH" "AMK" "M45 Table 16" -"CLSI 2014" "MIC" "B_BCLLS_ANTH" "AMP" "M45 Table 16" -"CLSI 2014" "MIC" "B_BCLLS_ANTH" "CAZ" "M45 Table 16" -"CLSI 2014" "MIC" "B_BCLLS_ANTH" "CHL" "M45 Table 16" -"CLSI 2014" "MIC" "B_BCLLS_ANTH" "CIP" "M45 Table 16" 0.25 -"CLSI 2014" "MIC" "B_BCLLS_ANTH" "CLI" "M45 Table 16" -"CLSI 2014" "MIC" "B_BCLLS_ANTH" "CRO" "M45 Table 16" -"CLSI 2014" "MIC" "B_BCLLS_ANTH" "CTX" "M45 Table 16" -"CLSI 2014" "MIC" "B_BCLLS_ANTH" "CZO" "M45 Table 16" -"CLSI 2014" "MIC" "B_BCLLS_ANTH" "DOX" "M45 Table 16" 1 -"CLSI 2014" "MIC" "B_BCLLS_ANTH" "ERY" "M45 Table 16" -"CLSI 2014" "MIC" "B_BCLLS_ANTH" "GEN" "M45 Table 16" -"CLSI 2014" "MIC" "B_BCLLS_ANTH" "IPM" "M45 Table 16" -"CLSI 2014" "MIC" "B_BCLLS_ANTH" "LVX" "M45 Table 16" 0.25 -"CLSI 2014" "MIC" "B_BCLLS_ANTH" "PEN" "M45 Table 16" 0.125 0.25 -"CLSI 2014" "MIC" "B_BCLLS_ANTH" "RIF" "M45 Table 16" -"CLSI 2014" "MIC" "B_BCLLS_ANTH" "SXT" "M45 Table 16" -"CLSI 2014" "MIC" "B_BCLLS_ANTH" "TCY" "M45 Table 16" 1 -"CLSI 2014" "MIC" "B_BCLLS_ANTH" "VAN" "M45 Table 16" -"CLSI 2014" "MIC" "B_BRCLL" "DOX" "M45 Table 16" 1 -"CLSI 2014" "MIC" "B_BRCLL" "GEN" "M45 Table 16" 4 -"CLSI 2014" "MIC" "B_BRCLL" "STR" "M45 Table 16" 8 -"CLSI 2014" "MIC" "B_BRCLL" "SXT" "M45 Table 16" 2 -"CLSI 2014" "MIC" "B_BRCLL" "TCY" "M45 Table 16" 1 -"CLSI 2014" "MIC" "B_BRKHL_CEPC" "CAZ" "Table 2B-3" 8 32 -"CLSI 2014" "MIC" "B_BRKHL_CEPC" "CHL" "Table 2B-3" 8 32 -"CLSI 2014" "MIC" "B_BRKHL_CEPC" "LVX" "Table 2B-3" 2 8 -"CLSI 2014" "MIC" "B_BRKHL_CEPC" "MEM" "Table 2B-3" 4 16 -"CLSI 2014" "MIC" "B_BRKHL_CEPC" "MNO" "Table 2B-3" 4 16 -"CLSI 2014" "MIC" "B_BRKHL_CEPC" "SXT" "Table 2B-3" 2 4 -"CLSI 2014" "MIC" "B_BRKHL_CEPC" "TCC" "Table 2B-3" 16 128 -"CLSI 2014" "MIC" "B_BRKHL_MALL" "CAZ" "M45 Table 16" 8 32 -"CLSI 2014" "MIC" "B_BRKHL_MALL" "DOX" "M45 Table 16" 4 16 -"CLSI 2014" "MIC" "B_BRKHL_MALL" "IPM" "M45 Table 16" 4 16 -"CLSI 2014" "MIC" "B_BRKHL_MALL" "TCY" "M45 Table 16" 4 16 -"CLSI 2014" "MIC" "B_BRKHL_PSDM" "AMC" "M45 Table 16" 8 32 -"CLSI 2014" "MIC" "B_BRKHL_PSDM" "CAZ" "M45 Table 16" 8 32 -"CLSI 2014" "MIC" "B_BRKHL_PSDM" "DOX" "M45 Table 16" 4 16 -"CLSI 2014" "MIC" "B_BRKHL_PSDM" "IPM" "M45 Table 16" 4 16 -"CLSI 2014" "MIC" "B_BRKHL_PSDM" "SXT" "M45 Table 16" 2 4 -"CLSI 2014" "MIC" "B_BRKHL_PSDM" "TCY" "M45 Table 16" 4 16 -"CLSI 2014" "MIC" "B_CMPYL" "CIP" "M45 Table 3" 1 4 -"CLSI 2014" "MIC" "B_CMPYL" "DOX" "M45 Table 3" 2 8 -"CLSI 2014" "MIC" "B_CMPYL" "ERY" "M45 Table 3" 8 32 -"CLSI 2014" "MIC" "B_CMPYL" "TCY" "M45 Table 3" 4 16 -"CLSI 2014" "MIC" "B_CRDBC" "AMC" "M45 Table 7" 4 8 -"CLSI 2014" "MIC" "B_CRDBC" "AMP" "M45 Table 7" 1 4 -"CLSI 2014" "MIC" "B_CRDBC" "AZM" "M45 Table 7" 4 -"CLSI 2014" "MIC" "B_CRDBC" "CHL" "M45 Table 7" 4 16 -"CLSI 2014" "MIC" "B_CRDBC" "CIP" "M45 Table 7" 1 4 -"CLSI 2014" "MIC" "B_CRDBC" "CLR" "M45 Table 7" 8 32 -"CLSI 2014" "MIC" "B_CRDBC" "CRO" "M45 Table 7" 2 -"CLSI 2014" "MIC" "B_CRDBC" "CTX" "M45 Table 7" 2 -"CLSI 2014" "MIC" "B_CRDBC" "IPM" "M45 Table 7" 0.5 2 -"CLSI 2014" "MIC" "B_CRDBC" "LVX" "M45 Table 7" 2 8 -"CLSI 2014" "MIC" "B_CRDBC" "MEM" "M45 Table 7" 0.5 2 -"CLSI 2014" "MIC" "B_CRDBC" "PEN" "M45 Table 7" 1 4 -"CLSI 2014" "MIC" "B_CRDBC" "RIF" "M45 Table 7" 1 4 -"CLSI 2014" "MIC" "B_CRDBC" "SAM" "M45 Table 7" 2 4 -"CLSI 2014" "MIC" "B_CRDBC" "SXT" "M45 Table 7" 0.5 4 -"CLSI 2014" "MIC" "B_CRDBC" "TCY" "M45 Table 7" 2 8 -"CLSI 2014" "MIC" "B_EKNLL" "AMC" "M45 Table 7" 4 8 -"CLSI 2014" "MIC" "B_EKNLL" "AMP" "M45 Table 7" 1 4 -"CLSI 2014" "MIC" "B_EKNLL" "AZM" "M45 Table 7" 4 -"CLSI 2014" "MIC" "B_EKNLL" "CHL" "M45 Table 7" 4 16 -"CLSI 2014" "MIC" "B_EKNLL" "CIP" "M45 Table 7" 1 4 -"CLSI 2014" "MIC" "B_EKNLL" "CLR" "M45 Table 7" 8 32 -"CLSI 2014" "MIC" "B_EKNLL" "CRO" "M45 Table 7" 2 -"CLSI 2014" "MIC" "B_EKNLL" "CTX" "M45 Table 7" 2 -"CLSI 2014" "MIC" "B_EKNLL" "IPM" "M45 Table 7" 0.5 2 -"CLSI 2014" "MIC" "B_EKNLL" "LVX" "M45 Table 7" 2 8 -"CLSI 2014" "MIC" "B_EKNLL" "MEM" "M45 Table 7" 0.5 2 -"CLSI 2014" "MIC" "B_EKNLL" "PEN" "M45 Table 7" 1 4 -"CLSI 2014" "MIC" "B_EKNLL" "RIF" "M45 Table 7" 1 4 -"CLSI 2014" "MIC" "B_EKNLL" "SAM" "M45 Table 7" 2 4 -"CLSI 2014" "MIC" "B_EKNLL" "SXT" "M45 Table 7" 0.5 4 -"CLSI 2014" "MIC" "B_EKNLL" "TCY" "M45 Table 7" 2 8 -"CLSI 2014" "MIC" "B_ENTRC" "AMP" "Table 2D" 8 16 -"CLSI 2014" "MIC" "B_ENTRC" "CHL" "Table 2D" 8 32 -"CLSI 2014" "MIC" "B_ENTRC" "CIP" "Table 2D" 1 4 -"CLSI 2014" "MIC" "B_ENTRC" "DAP" "Table 2D" 4 -"CLSI 2014" "MIC" "B_ENTRC" "DOX" "Table 2D" 4 16 -"CLSI 2014" "MIC" "B_ENTRC" "ERY" "Table 2D" 0.5 8 -"CLSI 2014" "MIC" "B_ENTRC" "FOS" "Table 2D" 64 256 -"CLSI 2014" "MIC" "B_ENTRC" "GAT" "Table 2D" 2 8 -"CLSI 2014" "MIC" "B_ENTRC" "GEH" "Table 2D" 512 512 -"CLSI 2014" "MIC" "B_ENTRC" "GEN" "Table 2D" 512 512 -"CLSI 2014" "MIC" "B_ENTRC" "LNZ" "Table 2D" 2 8 -"CLSI 2014" "MIC" "B_ENTRC" "LVX" "Table 2D" 2 8 -"CLSI 2014" "MIC" "B_ENTRC" "MNO" "Table 2D" 4 16 -"CLSI 2014" "MIC" "B_ENTRC" "NIT" "Table 2D" 32 128 -"CLSI 2014" "MIC" "B_ENTRC" "NOR" "Table 2D" 4 16 -"CLSI 2014" "MIC" "B_ENTRC" "PEN" "Table 2D" 8 16 -"CLSI 2014" "MIC" "B_ENTRC" "QDA" "Table 2D" 1 4 -"CLSI 2014" "MIC" "B_ENTRC" "RIF" "Table 2D" 1 4 -"CLSI 2014" "MIC" "B_ENTRC" "STH" "Table 2D" 1024 1024 -"CLSI 2014" "MIC" "B_ENTRC" "STR" "Table 2D" 1024 1024 -"CLSI 2014" "MIC" "B_ENTRC" "TCY" "Table 2D" 4 16 -"CLSI 2014" "MIC" "B_ENTRC" "TEC" "Table 2D" 8 32 -"CLSI 2014" "MIC" "B_ENTRC" "VAN" "Table 2D" 4 32 -"CLSI 2014" "MIC" "B_ERYSP_RHSP" "AMP" "M45 Table 6" 0.25 -"CLSI 2014" "MIC" "B_ERYSP_RHSP" "CIP" "M45 Table 6" 1 -"CLSI 2014" "MIC" "B_ERYSP_RHSP" "CLI" "M45 Table 6" 0.25 1 -"CLSI 2014" "MIC" "B_ERYSP_RHSP" "CRO" "M45 Table 6" 1 -"CLSI 2014" "MIC" "B_ERYSP_RHSP" "CTX" "M45 Table 6" 1 -"CLSI 2014" "MIC" "B_ERYSP_RHSP" "ERY" "M45 Table 6" 0.25 1 -"CLSI 2014" "MIC" "B_ERYSP_RHSP" "FEP" "M45 Table 6" 1 -"CLSI 2014" "MIC" "B_ERYSP_RHSP" "IPM" "M45 Table 6" 0.5 -"CLSI 2014" "MIC" "B_ERYSP_RHSP" "LVX" "M45 Table 6" 2 -"CLSI 2014" "MIC" "B_ERYSP_RHSP" "MEM" "M45 Table 6" 0.5 -"CLSI 2014" "MIC" "B_ERYSP_RHSP" "PEN" "M45 Table 6" 0.125 -"CLSI 2014" "MIC" "B_FRNCS_TLRN" "CHL" "M45 Table 16" 8 -"CLSI 2014" "MIC" "B_FRNCS_TLRN" "CIP" "M45 Table 16" 0.5 -"CLSI 2014" "MIC" "B_FRNCS_TLRN" "DOX" "M45 Table 16" 4 -"CLSI 2014" "MIC" "B_FRNCS_TLRN" "GEN" "M45 Table 16" 4 -"CLSI 2014" "MIC" "B_FRNCS_TLRN" "LVX" "M45 Table 16" 0.5 -"CLSI 2014" "MIC" "B_FRNCS_TLRN" "STR" "M45 Table 16" 8 -"CLSI 2014" "MIC" "B_FRNCS_TLRN" "TCY" "M45 Table 16" 4 -"CLSI 2014" "MIC" "B_GRNLC" "AMP" "M45 Table 1" 0.25 8 -"CLSI 2014" "MIC" "B_GRNLC" "CHL" "M45 Table 1" 4 8 -"CLSI 2014" "MIC" "B_GRNLC" "CIP" "M45 Table 1" 1 4 -"CLSI 2014" "MIC" "B_GRNLC" "CLI" "M45 Table 1" 0.25 1 -"CLSI 2014" "MIC" "B_GRNLC" "CRO" "M45 Table 1" 1 4 -"CLSI 2014" "MIC" "B_GRNLC" "CTX" "M45 Table 1" 1 4 -"CLSI 2014" "MIC" "B_GRNLC" "ERY" "M45 Table 1" 0.25 1 -"CLSI 2014" "MIC" "B_GRNLC" "FEP" "M45 Table 1" 1 4 -"CLSI 2014" "MIC" "B_GRNLC" "GAT" "M45 Table 1" 1 4 -"CLSI 2014" "MIC" "B_GRNLC" "IPM" "M45 Table 1" 0.5 2 -"CLSI 2014" "MIC" "B_GRNLC" "LVX" "M45 Table 1" 2 8 -"CLSI 2014" "MIC" "B_GRNLC" "MEM" "M45 Table 1" 0.5 2 -"CLSI 2014" "MIC" "B_GRNLC" "PEN" "M45 Table 1" 0.125 4 -"CLSI 2014" "MIC" "B_GRNLC" "VAN" "M45 Table 1" 1 -"CLSI 2014" "MIC" "B_HLCBCT_PYLR" "CLR" "M45 Table 8" 0.25 1 -"CLSI 2014" "MIC" "B_HMPHL" "AMC" "Table 2E" 4 8 -"CLSI 2014" "MIC" "B_HMPHL" "AMP" "Table 2E" 1 4 -"CLSI 2014" "MIC" "B_HMPHL" "ATM" "Table 2E" 2 -"CLSI 2014" "MIC" "B_HMPHL" "AZM" "Table 2E" 4 -"CLSI 2014" "MIC" "B_HMPHL" "CAT" "Table 2E" 4 16 -"CLSI 2014" "MIC" "B_HMPHL" "CAZ" "Table 2E" 2 -"CLSI 2014" "MIC" "B_HMPHL" "CDR" "Table 2E" 1 -"CLSI 2014" "MIC" "B_HMPHL" "CEC" "Table 2E" 8 32 -"CLSI 2014" "MIC" "B_HMPHL" "CFM" "Table 2E" 1 -"CLSI 2014" "MIC" "B_HMPHL" "CHL" "Table 2E" 2 8 -"CLSI 2014" "MIC" "B_HMPHL" "CID" "Table 2E" 4 16 -"CLSI 2014" "MIC" "B_HMPHL" "CIP" "Table 2E" 1 -"CLSI 2014" "MIC" "B_HMPHL" "CLR" "Table 2E" 8 32 -"CLSI 2014" "MIC" "B_HMPHL" "CPD" "Table 2E" 2 -"CLSI 2014" "MIC" "B_HMPHL" "CPR" "Table 2E" 8 32 -"CLSI 2014" "MIC" "B_HMPHL" "CRO" "Table 2E" 2 -"CLSI 2014" "MIC" "B_HMPHL" "CTB" "Table 2E" 2 -"CLSI 2014" "MIC" "B_HMPHL" "CTX" "Table 2E" 2 -"CLSI 2014" "MIC" "B_HMPHL" "CXA" "Table 2E" 4 16 -"CLSI 2014" "MIC" "Oral" "B_HMPHL" "CXM" "Table 2E" 4 16 -"CLSI 2014" "MIC" "B_HMPHL" "CXM" "Table 2E" 4 16 -"CLSI 2014" "MIC" "B_HMPHL" "CZX" "Table 2E" 2 -"CLSI 2014" "MIC" "B_HMPHL" "DOR" "Table 2E" 1 -"CLSI 2014" "MIC" "B_HMPHL" "ETP" "Table 2E" 0.5 -"CLSI 2014" "MIC" "B_HMPHL" "FEP" "Table 2E" 2 -"CLSI 2014" "MIC" "B_HMPHL" "FLE" "Table 2E" 2 -"CLSI 2014" "MIC" "B_HMPHL" "GAT" "Table 2E" 1 -"CLSI 2014" "MIC" "B_HMPHL" "GEM" "Table 2E" 0.125 -"CLSI 2014" "MIC" "B_HMPHL" "GRX" "Table 2E" 0.5 -"CLSI 2014" "MIC" "B_HMPHL" "IPM" "Table 2E" 4 -"CLSI 2014" "MIC" "B_HMPHL" "LOM" "Table 2E" 2 -"CLSI 2014" "MIC" "B_HMPHL" "LOR" "Table 2E" 8 32 -"CLSI 2014" "MIC" "B_HMPHL" "LVX" "Table 2E" 2 -"CLSI 2014" "MIC" "B_HMPHL" "MAN" "Table 2E" 4 16 -"CLSI 2014" "MIC" "B_HMPHL" "MEM" "Table 2E" 0.5 -"CLSI 2014" "MIC" "B_HMPHL" "MFX" "Table 2E" 1 -"CLSI 2014" "MIC" "B_HMPHL" "OFX" "Table 2E" 2 -"CLSI 2014" "MIC" "B_HMPHL" "RIF" "Table 2E" 1 4 -"CLSI 2014" "MIC" "B_HMPHL" "SAM" "Table 2E" 2 4 -"CLSI 2014" "MIC" "B_HMPHL" "SPX" "Table 2E" 0.25 -"CLSI 2014" "MIC" "B_HMPHL" "SXT" "Table 2E" 0.5 4 -"CLSI 2014" "MIC" "B_HMPHL" "TCY" "Table 2E" 2 8 -"CLSI 2014" "MIC" "B_HMPHL" "TLT" "Table 2E" 4 16 -"CLSI 2014" "MIC" "B_HMPHL" "TVA" "Table 2E" 1 -"CLSI 2014" "MIC" "B_HMPHL" "TZP" "Table 2E" 1 2 -"CLSI 2014" "MIC" "B_HMPHL_INFL" "CPT" "Table 2E" 0.5 -"CLSI 2014" "MIC" "B_HSTPH_SOMN" "ENR" "Vet Table" 0.25 2 -"CLSI 2014" "MIC" "B_KGLLA" "AZM" "M45 Table 7" 4 -"CLSI 2014" "MIC" "B_KGLLA" "CHL" "M45 Table 7" 4 16 -"CLSI 2014" "MIC" "B_KGLLA" "CIP" "M45 Table 7" 1 4 -"CLSI 2014" "MIC" "B_KGLLA" "CLR" "M45 Table 7" 8 32 -"CLSI 2014" "MIC" "B_KGLLA" "CRO" "M45 Table 7" 2 -"CLSI 2014" "MIC" "B_KGLLA" "CTX" "M45 Table 7" 2 -"CLSI 2014" "MIC" "B_KGLLA" "IPM" "M45 Table 7" 0.5 2 -"CLSI 2014" "MIC" "B_KGLLA" "LVX" "M45 Table 7" 2 8 -"CLSI 2014" "MIC" "B_KGLLA" "MEM" "M45 Table 7" 0.5 2 -"CLSI 2014" "MIC" "B_KGLLA" "PEN" "M45 Table 7" 1 4 -"CLSI 2014" "MIC" "B_KGLLA" "RIF" "M45 Table 7" 1 4 -"CLSI 2014" "MIC" "B_KGLLA" "SXT" "M45 Table 7" 0.5 4 -"CLSI 2014" "MIC" "B_KGLLA" "TCY" "M45 Table 7" 2 8 -"CLSI 2014" "MIC" "B_LCNST" "AMP" "M45 Table 10" 8 -"CLSI 2014" "MIC" "B_LCNST" "CHL" "M45 Table 10" 8 32 -"CLSI 2014" "MIC" "B_LCNST" "GEN" "M45 Table 10" 4 16 -"CLSI 2014" "MIC" "B_LCNST" "MNO" "M45 Table 10" 4 16 -"CLSI 2014" "MIC" "B_LCNST" "PEN" "M45 Table 10" 8 -"CLSI 2014" "MIC" "B_LCTBC" "AMP" "M45 Table 9" 8 -"CLSI 2014" "MIC" "B_LCTBC" "CLI" "M45 Table 9" 0.5 2 -"CLSI 2014" "MIC" "B_LCTBC" "DAP" "M45 Table 9" 4 -"CLSI 2014" "MIC" "B_LCTBC" "ERY" "M45 Table 9" 0.5 8 -"CLSI 2014" "MIC" "B_LCTBC" "GEN" "M45 Table 9" 4 16 -"CLSI 2014" "MIC" "B_LCTBC" "IPM" "M45 Table 9" 0.5 2 -"CLSI 2014" "MIC" "B_LCTBC" "LNZ" "M45 Table 9" 4 -"CLSI 2014" "MIC" "B_LCTBC" "PEN" "M45 Table 9" 8 -"CLSI 2014" "MIC" "B_LCTBC" "VAN" "M45 Table 9" 2 16 -"CLSI 2014" "MIC" "B_LISTR_MNCY" "AMP" "M45 Table 11" 2 -"CLSI 2014" "MIC" "B_LISTR_MNCY" "PEN" "M45 Table 11" 2 -"CLSI 2014" "MIC" "B_LISTR_MNCY" "SXT" "M45 Table 11" 0.5 4 -"CLSI 2014" "MIC" "B_MRXLL_CTRR" "AMC" "M45 Table 12" 4 8 -"CLSI 2014" "MIC" "B_MRXLL_CTRR" "AZM" "M45 Table 12" 0.25 -"CLSI 2014" "MIC" "B_MRXLL_CTRR" "CAZ" "M45 Table 12" 2 -"CLSI 2014" "MIC" "B_MRXLL_CTRR" "CEC" "M45 Table 12" 8 32 -"CLSI 2014" "MIC" "B_MRXLL_CTRR" "CHL" "M45 Table 12" 2 8 -"CLSI 2014" "MIC" "B_MRXLL_CTRR" "CIP" "M45 Table 12" 1 -"CLSI 2014" "MIC" "B_MRXLL_CTRR" "CLI" "M45 Table 12" 0.5 4 -"CLSI 2014" "MIC" "B_MRXLL_CTRR" "CLR" "M45 Table 12" 1 -"CLSI 2014" "MIC" "B_MRXLL_CTRR" "CRO" "M45 Table 12" 2 -"CLSI 2014" "MIC" "B_MRXLL_CTRR" "CTX" "M45 Table 12" 2 -"CLSI 2014" "MIC" "B_MRXLL_CTRR" "CXM" "M45 Table 12" 4 16 -"CLSI 2014" "MIC" "B_MRXLL_CTRR" "ERY" "M45 Table 12" 2 -"CLSI 2014" "MIC" "B_MRXLL_CTRR" "LVX" "M45 Table 12" 2 -"CLSI 2014" "MIC" "B_MRXLL_CTRR" "RIF" "M45 Table 12" 1 4 -"CLSI 2014" "MIC" "B_MRXLL_CTRR" "SXT" "M45 Table 12" 0.5 4 -"CLSI 2014" "MIC" "B_MRXLL_CTRR" "TCY" "M45 Table 12" 2 8 -"CLSI 2014" "MIC" "B_NESSR_GNRR" "CAT" "Table 2F" 0.5 -"CLSI 2014" "MIC" "B_NESSR_GNRR" "CAZ" "Table 2F" 0.5 -"CLSI 2014" "MIC" "B_NESSR_GNRR" "CFM" "Table 2F" 0.25 -"CLSI 2014" "MIC" "B_NESSR_GNRR" "CIP" "Table 2F" 0.064 1 -"CLSI 2014" "MIC" "B_NESSR_GNRR" "CMZ" "Table 2F" 2 8 -"CLSI 2014" "MIC" "B_NESSR_GNRR" "CPD" "Table 2F" 0.5 -"CLSI 2014" "MIC" "B_NESSR_GNRR" "CRO" "Table 2F" 0.25 -"CLSI 2014" "MIC" "B_NESSR_GNRR" "CTT" "Table 2F" 2 8 -"CLSI 2014" "MIC" "B_NESSR_GNRR" "CTX" "Table 2F" 0.5 -"CLSI 2014" "MIC" "B_NESSR_GNRR" "CXM" "Table 2F" 1 4 -"CLSI 2014" "MIC" "B_NESSR_GNRR" "CZX" "Table 2F" 0.5 -"CLSI 2014" "MIC" "B_NESSR_GNRR" "ENX" "Table 2F" 0.5 2 -"CLSI 2014" "MIC" "B_NESSR_GNRR" "FEP" "Table 2F" 0.5 -"CLSI 2014" "MIC" "B_NESSR_GNRR" "FLE" "Table 2F" 0.25 1 -"CLSI 2014" "MIC" "B_NESSR_GNRR" "FOX" "Table 2F" 2 8 -"CLSI 2014" "MIC" "B_NESSR_GNRR" "GAT" "Table 2F" 0.125 0.5 -"CLSI 2014" "MIC" "B_NESSR_GNRR" "GRX" "Table 2F" 0.064 1 -"CLSI 2014" "MIC" "B_NESSR_GNRR" "LOM" "Table 2F" 0.125 2 -"CLSI 2014" "MIC" "B_NESSR_GNRR" "OFX" "Table 2F" 0.25 2 -"CLSI 2014" "MIC" "B_NESSR_GNRR" "PEN" "Table 2F" 0.064 2 -"CLSI 2014" "MIC" "B_NESSR_GNRR" "SPT" "Table 2F" 32 128 -"CLSI 2014" "MIC" "B_NESSR_GNRR" "TCY" "Table 2F" 0.25 2 -"CLSI 2014" "MIC" "B_NESSR_GNRR" "TVA" "Table 2F" 0.25 -"CLSI 2014" "MIC" "B_NESSR_MNNG" "AMP" "Table 2I" 0.125 2 -"CLSI 2014" "MIC" "B_NESSR_MNNG" "AZM" "Table 2I" 2 -"CLSI 2014" "MIC" "B_NESSR_MNNG" "CHL" "Table 2I" 2 8 -"CLSI 2014" "MIC" "B_NESSR_MNNG" "CIP" "Table 2I" 0.032 0.12 -"CLSI 2014" "MIC" "B_NESSR_MNNG" "CRO" "Table 2I" 0.125 -"CLSI 2014" "MIC" "B_NESSR_MNNG" "CTX" "Table 2I" 0.125 -"CLSI 2014" "MIC" "B_NESSR_MNNG" "LVX" "Table 2I" 0.032 0.12 -"CLSI 2014" "MIC" "B_NESSR_MNNG" "MEM" "Table 2I" 0.25 -"CLSI 2014" "MIC" "B_NESSR_MNNG" "MNO" "Table 2I" 2 -"CLSI 2014" "MIC" "B_NESSR_MNNG" "NAL" "Table 2I" 4 8 -"CLSI 2014" "MIC" "B_NESSR_MNNG" "PEN" "Table 2I" 0.064 0.5 -"CLSI 2014" "MIC" "B_NESSR_MNNG" "RIF" "Table 2I" 0.5 2 -"CLSI 2014" "MIC" "B_NESSR_MNNG" "SMX" "Table 2I" 2 8 -"CLSI 2014" "MIC" "B_NESSR_MNNG" "SOX" "Table 2I" 2 8 -"CLSI 2014" "MIC" "B_NESSR_MNNG" "SSS" "Table 2I" 2 8 -"CLSI 2014" "MIC" "B_NESSR_MNNG" "SXT" "Table 2I" 0.125 0.5 -"CLSI 2014" "MIC" "B_PDCCC" "AMP" "M45 Table 14" 8 -"CLSI 2014" "MIC" "B_PDCCC" "CHL" "M45 Table 14" 8 32 -"CLSI 2014" "MIC" "B_PDCCC" "GEN" "M45 Table 14" 4 16 -"CLSI 2014" "MIC" "B_PDCCC" "IPM" "M45 Table 14" 0.5 -"CLSI 2014" "MIC" "B_PDCCC" "PEN" "M45 Table 14" 8 -"CLSI 2014" "MIC" "B_PLSMN" "AMC" "M45 Table 2" 8 32 -"CLSI 2014" "MIC" "B_PLSMN" "AMK" "M45 Table 2" 16 64 -"CLSI 2014" "MIC" "B_PLSMN" "ATM" "M45 Table 2" 4 16 -"CLSI 2014" "MIC" "B_PLSMN" "CAZ" "M45 Table 2" 4 16 -"CLSI 2014" "MIC" "B_PLSMN" "CHL" "M45 Table 2" 8 32 -"CLSI 2014" "MIC" "B_PLSMN" "CIP" "M45 Table 2" 1 4 -"CLSI 2014" "MIC" "B_PLSMN" "CRO" "M45 Table 2" 1 4 -"CLSI 2014" "MIC" "B_PLSMN" "CTX" "M45 Table 2" 1 4 -"CLSI 2014" "MIC" "B_PLSMN" "CXM" "M45 Table 2" 8 32 -"CLSI 2014" "MIC" "B_PLSMN" "CZO" "M45 Table 2" 1 4 -"CLSI 2014" "MIC" "B_PLSMN" "ETP" "M45 Table 2" 2 8 -"CLSI 2014" "MIC" "B_PLSMN" "FEP" "M45 Table 2" 8 32 -"CLSI 2014" "MIC" "B_PLSMN" "FOX" "M45 Table 2" 8 32 -"CLSI 2014" "MIC" "B_PLSMN" "GEN" "M45 Table 2" 4 16 -"CLSI 2014" "MIC" "B_PLSMN" "IPM" "M45 Table 2" 4 16 -"CLSI 2014" "MIC" "B_PLSMN" "LVX" "M45 Table 2" 2 8 -"CLSI 2014" "MIC" "B_PLSMN" "MEM" "M45 Table 2" 4 16 -"CLSI 2014" "MIC" "B_PLSMN" "SAM" "M45 Table 2" 8 32 -"CLSI 2014" "MIC" "B_PLSMN" "SXT" "M45 Table 2" 2 4 -"CLSI 2014" "MIC" "B_PLSMN" "TCY" "M45 Table 2" 4 16 -"CLSI 2014" "MIC" "B_PLSMN" "TZP" "M45 Table 2" 16 128 -"CLSI 2014" "MIC" "B_PSDMN" "ETP" -"CLSI 2014" "MIC" "B_PSDMN_AERG" "AMK" "Table 2B-1" 16 64 -"CLSI 2014" "MIC" "B_PSDMN_AERG" "ATM" "Table 2B-1" 8 32 -"CLSI 2014" "MIC" "B_PSDMN_AERG" "CAZ" "Table 2B-1" 8 32 -"CLSI 2014" "MIC" "B_PSDMN_AERG" "CIP" "Table 2B-1" 1 4 -"CLSI 2014" "MIC" "B_PSDMN_AERG" "COL" "Table 2B-1" 2 8 -"CLSI 2014" "MIC" "B_PSDMN_AERG" "DOR" "Table 2B-1" 2 8 -"CLSI 2014" "MIC" "B_PSDMN_AERG" "FEP" "Table 2B-1" 8 32 -"CLSI 2014" "MIC" "B_PSDMN_AERG" "GAT" "Table 2B-1" 2 8 -"CLSI 2014" "MIC" "B_PSDMN_AERG" "GEN" "Table 2B-1" 4 16 -"CLSI 2014" "MIC" "B_PSDMN_AERG" "IPM" "Table 2B-1" 2 8 -"CLSI 2014" "MIC" "B_PSDMN_AERG" "LOM" "Table 2B-1" 2 8 -"CLSI 2014" "MIC" "B_PSDMN_AERG" "LVX" "Table 2B-1" 2 8 -"CLSI 2014" "MIC" "B_PSDMN_AERG" "MEM" "Table 2B-1" 2 8 -"CLSI 2014" "MIC" "B_PSDMN_AERG" "NET" "Table 2B-1" 8 32 -"CLSI 2014" "MIC" "B_PSDMN_AERG" "NOR" "Table 2B-1" 4 16 -"CLSI 2014" "MIC" "B_PSDMN_AERG" "OFX" "Table 2B-1" 2 8 -"CLSI 2014" "MIC" "B_PSDMN_AERG" "PIP" "Table 2B-1" 16 128 -"CLSI 2014" "MIC" "B_PSDMN_AERG" "PLB" "Table 2B-1" 2 8 -"CLSI 2014" "MIC" "B_PSDMN_AERG" "TCC" "Table 2B-1" 16 128 -"CLSI 2014" "MIC" "B_PSDMN_AERG" "TIC" "Table 2B-1" 16 128 -"CLSI 2014" "MIC" "B_PSDMN_AERG" "TOB" "Table 2B-1" 4 16 -"CLSI 2014" "MIC" "B_PSDMN_AERG" "TZP" "Table 2B-1" 16 128 -"CLSI 2014" "MIC" "B_PSTRL" "AMC" "M45 Table 13" 0.5 -"CLSI 2014" "MIC" "B_PSTRL" "AMP" "M45 Table 13" 0.5 -"CLSI 2014" "MIC" "B_PSTRL" "AMX" "M45 Table 13" 0.5 -"CLSI 2014" "MIC" "B_PSTRL" "AZM" "M45 Table 13" 1 -"CLSI 2014" "MIC" "B_PSTRL" "CHL" "M45 Table 13" 2 -"CLSI 2014" "MIC" "B_PSTRL" "CRO" "M45 Table 13" 0.125 -"CLSI 2014" "MIC" "B_PSTRL" "DOX" "M45 Table 13" 0.5 -"CLSI 2014" "MIC" "B_PSTRL" "ERY" "M45 Table 13" 0.5 2 -"CLSI 2014" "MIC" "B_PSTRL" "LVX" "M45 Table 13" 0.064 -"CLSI 2014" "MIC" "B_PSTRL" "MFX" "M45 Table 13" 0.064 -"CLSI 2014" "MIC" "B_PSTRL" "PEN" "M45 Table 13" 0.5 -"CLSI 2014" "MIC" "B_PSTRL" "SXT" "M45 Table 13" 0.5 -"CLSI 2014" "MIC" "B_PSTRL" "TCY" "M45 Table 13" 1 -"CLSI 2014" "MIC" "B_PSTRL_MLTC" "TIL" "Vet Table" 16 32 -"CLSI 2014" "MIC" "Extraintestinal" "B_SLMNL" "CIP" "Table 2A" 0.064 1 -"CLSI 2014" "MIC" "B_SLMNL" "CIP" "Table 2A" 0.064 1 -"CLSI 2014" "MIC" "B_SLMNL" "LVX" "Table 2A" 0.125 2 -"CLSI 2014" "MIC" "Extraintestinal" "B_SLMNL" "LVX" "Table 2A" 0.125 2 -"CLSI 2014" "MIC" "B_SLMNL" "OFX" "Table 2A" 0.125 2 -"CLSI 2014" "MIC" "Extraintestinal" "B_SLMNL" "OFX" "Table 2A" 0.125 2 -"CLSI 2014" "MIC" "B_STNTR_MLTP" "CAZ" "Table 2B-4" 8 32 -"CLSI 2014" "MIC" "B_STNTR_MLTP" "CHL" "Table 2B-4" 8 32 -"CLSI 2014" "MIC" "B_STNTR_MLTP" "LVX" "Table 2B-4" 2 8 -"CLSI 2014" "MIC" "B_STNTR_MLTP" "MNO" "Table 2B-4" 4 16 -"CLSI 2014" "MIC" "B_STNTR_MLTP" "SXT" "Table 2B-4" 2 4 -"CLSI 2014" "MIC" "B_STNTR_MLTP" "TCC" "Table 2B-4" 16 128 -"CLSI 2014" "MIC" "B_STPHY" "AMC" "Table 2C" 4 8 -"CLSI 2014" "MIC" "B_STPHY" "AMK" "Table 2C" 16 64 -"CLSI 2014" "MIC" "B_STPHY" "AMP" "Table 2C" 0.25 0.5 -"CLSI 2014" "MIC" "B_STPHY" "AZM" "Table 2C" 2 8 -"CLSI 2014" "MIC" "B_STPHY" "CAZ" "Table 2C" 8 32 -"CLSI 2014" "MIC" "B_STPHY" "CDR" "Table 2C" 1 4 -"CLSI 2014" "MIC" "B_STPHY" "CEC" "Table 2C" 8 32 -"CLSI 2014" "MIC" "B_STPHY" "CEP" "Table 2C" 8 32 -"CLSI 2014" "MIC" "B_STPHY" "CFP" "Table 2C" 16 64 -"CLSI 2014" "MIC" "B_STPHY" "CHL" "Table 2C" 8 32 -"CLSI 2014" "MIC" "B_STPHY" "CID" "Table 2C" 8 32 -"CLSI 2014" "MIC" "B_STPHY" "CIP" "Table 2C" 1 4 -"CLSI 2014" "MIC" "B_STPHY" "CLI" "Table 2C" 0.5 4 -"CLSI 2014" "MIC" "B_STPHY" "CLR" "Table 2C" 2 8 -"CLSI 2014" "MIC" "B_STPHY" "CMZ" "Table 2C" 16 64 -"CLSI 2014" "MIC" "B_STPHY" "CPD" "Table 2C" 2 8 -"CLSI 2014" "MIC" "B_STPHY" "CPR" "Table 2C" 8 32 -"CLSI 2014" "MIC" "B_STPHY" "CRO" "Table 2C" 8 64 -"CLSI 2014" "MIC" "B_STPHY" "CTT" "Table 2C" 16 64 -"CLSI 2014" "MIC" "B_STPHY" "CTX" "Table 2C" 8 64 -"CLSI 2014" "MIC" "B_STPHY" "CXA" "Table 2C" 4 32 -"CLSI 2014" "MIC" "Oral" "B_STPHY" "CXM" "Table 2C" 4 32 -"CLSI 2014" "MIC" "Intravenous" "B_STPHY" "CXM" "Table 2C" 8 32 -"CLSI 2014" "MIC" "Oral" "B_STPHY" "CXM" "Table 2C" 4 32 -"CLSI 2014" "MIC" "B_STPHY" "CZO" "Table 2C" 8 32 -"CLSI 2014" "MIC" "B_STPHY" "CZX" "Table 2C" 8 64 -"CLSI 2014" "MIC" "B_STPHY" "DAP" "Table 2C" 1 -"CLSI 2014" "MIC" "B_STPHY" "DIR" "Table 2C" 2 8 -"CLSI 2014" "MIC" "B_STPHY" "DOR" "Table 2C" 0.5 -"CLSI 2014" "MIC" "B_STPHY" "DOX" "Table 2C" 4 16 -"CLSI 2014" "MIC" "B_STPHY" "ENX" "Table 2C" 2 8 -"CLSI 2014" "MIC" "B_STPHY" "ERY" "Table 2C" 0.5 8 -"CLSI 2014" "MIC" "B_STPHY" "ETP" "Table 2C" 2 8 -"CLSI 2014" "MIC" "B_STPHY" "FEP" "Table 2C" 8 32 -"CLSI 2014" "MIC" "B_STPHY" "FLE" "Table 2C" 2 8 -"CLSI 2014" "MIC" "B_STPHY" "FOX" "Table 2C" 4 8 -"CLSI 2014" "MIC" "B_STPHY" "GAT" "Table 2C" 0.5 2 -"CLSI 2014" "MIC" "B_STPHY" "GEN" "Table 2C" 4 16 -"CLSI 2014" "MIC" "B_STPHY" "GRX" "Table 2C" 1 4 -"CLSI 2014" "MIC" "B_STPHY" "IPM" "Table 2C" 4 16 -"CLSI 2014" "MIC" "B_STPHY" "KAN" "Table 2C" 16 64 -"CLSI 2014" "MIC" "B_STPHY" "LNZ" "Table 2C" 4 8 -"CLSI 2014" "MIC" "B_STPHY" "LOM" "Table 2C" 2 8 -"CLSI 2014" "MIC" "B_STPHY" "LOR" "Table 2C" 8 32 -"CLSI 2014" "MIC" "B_STPHY" "LTM" "Table 2C" 8 64 -"CLSI 2014" "MIC" "B_STPHY" "LVX" "Table 2C" 1 4 -"CLSI 2014" "MIC" "B_STPHY" "MAN" "Table 2C" 8 32 -"CLSI 2014" "MIC" "B_STPHY" "MEM" "Table 2C" 4 16 -"CLSI 2014" "MIC" "B_STPHY" "MET" "Table 2C" 8 16 -"CLSI 2014" "MIC" "B_STPHY" "MFX" "Table 2C" 0.5 2 -"CLSI 2014" "MIC" "B_STPHY" "MNO" "Table 2C" 4 16 -"CLSI 2014" "MIC" "B_STPHY" "NAF" "Table 2C" 2 4 -"CLSI 2014" "MIC" "B_STPHY" "NET" "Table 2C" 8 32 -"CLSI 2014" "MIC" "B_STPHY" "NIT" "Table 2C" 32 128 -"CLSI 2014" "MIC" "B_STPHY" "NOR" "Table 2C" 4 16 -"CLSI 2014" "MIC" "B_STPHY" "OFX" "Table 2C" 1 4 -"CLSI 2014" "MIC" "B_STPHY" "OXA" "Table 2C" 2 4 -"CLSI 2014" "MIC" "B_STPHY" "PEN" "Table 2C" 0.125 0.25 -"CLSI 2014" "MIC" "B_STPHY" "QDA" "Table 2C" 1 4 -"CLSI 2014" "MIC" "B_STPHY" "RIF" "Table 2C" 1 4 -"CLSI 2014" "MIC" "B_STPHY" "SAM" "Table 2C" 8 32 -"CLSI 2014" "MIC" "B_STPHY" "SMX" "Table 2C" 256 512 -"CLSI 2014" "MIC" "B_STPHY" "SOX" "Table 2C" 256 512 -"CLSI 2014" "MIC" "B_STPHY" "SPX" "Table 2C" 0.5 2 -"CLSI 2014" "MIC" "B_STPHY" "SSS" "Table 2C" 256 512 -"CLSI 2014" "MIC" "B_STPHY" "SXT" "Table 2C" 2 4 -"CLSI 2014" "MIC" "B_STPHY" "TCC" "Table 2C" 8 16 -"CLSI 2014" "MIC" "B_STPHY" "TCY" "Table 2C" 4 16 -"CLSI 2014" "MIC" "B_STPHY" "TEC" "Table 2C" 8 32 -"CLSI 2014" "MIC" "B_STPHY" "TLT" "Table 2C" 1 4 -"CLSI 2014" "MIC" "B_STPHY" "TMP" "Table 2C" 8 16 -"CLSI 2014" "MIC" "B_STPHY" "TOB" "Table 2C" 4 16 -"CLSI 2014" "MIC" "B_STPHY" "TZP" "Table 2C" 8 16 -"CLSI 2014" "MIC" "B_STPHY" "VAN" "Table 2C" 4 32 -"CLSI 2014" "MIC" "B_STPHY_AURS" "CPT" "Table 2C" 1 4 -"CLSI 2014" "MIC" "B_STPHY_AURS" "FOX" "Table 2C" 4 8 -"CLSI 2014" "MIC" "B_STPHY_AURS" "OXA" "Table 2C" 2 4 -"CLSI 2014" "MIC" "B_STPHY_AURS" "VAN" "Table 2C" 2 16 -"CLSI 2014" "MIC" "B_STPHY_LGDN" "FOX" "Table 2C" 4 8 -"CLSI 2014" "MIC" "B_STPHY_LGDN" "OXA" "Table 2C" 2 4 -"CLSI 2014" "MIC" "B_STRPT" "AMC" "Table 2H-1" -"CLSI 2014" "MIC" "B_STRPT" "AMP" "M45 Table 1" 0.25 8 -"CLSI 2014" "MIC" "B_STRPT" "AMP" "Table 2H-1" 0.25 -"CLSI 2014" "MIC" "B_STRPT" "AMX" "Table 2H-1" -"CLSI 2014" "MIC" "B_STRPT" "AZM" "Table 2H-1" 0.5 2 -"CLSI 2014" "MIC" "B_STRPT" "CHL" "M45 Table 1" 4 8 -"CLSI 2014" "MIC" "B_STRPT" "CHL" "Table 2H-1" 4 16 -"CLSI 2014" "MIC" "B_STRPT" "CIP" "M45 Table 1" 1 4 -"CLSI 2014" "MIC" "B_STRPT" "CLI" "M45 Table 1" 0.25 1 -"CLSI 2014" "MIC" "B_STRPT" "CLI" "Table 2H-1" 0.25 1 -"CLSI 2014" "MIC" "B_STRPT" "CLR" "Table 2H-1" 0.25 1 -"CLSI 2014" "MIC" "B_STRPT" "CPT" "Table 2H-1" 0.5 -"CLSI 2014" "MIC" "B_STRPT" "CRO" "M45 Table 1" 1 4 -"CLSI 2014" "MIC" "B_STRPT" "CRO" "Table 2H-1" 0.5 -"CLSI 2014" "MIC" "B_STRPT" "CTX" "M45 Table 1" 1 4 -"CLSI 2014" "MIC" "B_STRPT" "CTX" "Table 2H-1" 0.5 -"CLSI 2014" "MIC" "B_STRPT" "CXM" "Table 2H-1" -"CLSI 2014" "MIC" "B_STRPT" "DAP" "Table 2H-1" -"CLSI 2014" "MIC" "B_STRPT" "DIR" "Table 2H-1" 0.5 2 -"CLSI 2014" "MIC" "B_STRPT" "DOR" "Table 2H-1" 0.125 -"CLSI 2014" "MIC" "B_STRPT" "ERY" "M45 Table 1" 0.25 1 -"CLSI 2014" "MIC" "B_STRPT" "ERY" "Table 2H-1" 0.25 1 -"CLSI 2014" "MIC" "B_STRPT" "ETP" "Table 2H-1" 1 -"CLSI 2014" "MIC" "B_STRPT" "FEP" "M45 Table 1" 1 4 -"CLSI 2014" "MIC" "B_STRPT" "FEP" "Table 2H-1" 0.5 -"CLSI 2014" "MIC" "B_STRPT" "GAT" "M45 Table 1" 1 4 -"CLSI 2014" "MIC" "B_STRPT" "GAT" "Table 2H-1" 1 4 -"CLSI 2014" "MIC" "B_STRPT" "GEM" "Table 2H-1" -"CLSI 2014" "MIC" "B_STRPT" "GRX" "Table 2H-1" 0.5 2 -"CLSI 2014" "MIC" "B_STRPT" "IPM" "M45 Table 1" 0.5 2 -"CLSI 2014" "MIC" "B_STRPT" "IPM" "Table 2H-1" -"CLSI 2014" "MIC" "B_STRPT" "LNZ" "Table 2H-1" 2 -"CLSI 2014" "MIC" "B_STRPT" "LVX" "M45 Table 1" 2 8 -"CLSI 2014" "MIC" "B_STRPT" "LVX" "Table 2H-1" 2 8 -"CLSI 2014" "MIC" "B_STRPT" "MEM" "M45 Table 1" 0.5 2 -"CLSI 2014" "MIC" "B_STRPT" "MEM" "Table 2H-1" 0.5 -"CLSI 2014" "MIC" "B_STRPT" "MFX" "Table 2H-1" -"CLSI 2014" "MIC" "B_STRPT" "OFX" "Table 2H-1" 2 8 -"CLSI 2014" "MIC" "B_STRPT" "PEN" "M45 Table 1" 0.125 4 -"CLSI 2014" "MIC" "B_STRPT" "PEN" "Table 2H-1" 0.125 -"CLSI 2014" "MIC" "B_STRPT" "QDA" "Table 2H-1" 1 4 -"CLSI 2014" "MIC" "B_STRPT" "RIF" "Table 2H-1" -"CLSI 2014" "MIC" "B_STRPT" "SPX" "Table 2H-1" -"CLSI 2014" "MIC" "B_STRPT" "SXT" "Table 2H-1" -"CLSI 2014" "MIC" "B_STRPT" "TCY" "Table 2H-1" 2 8 -"CLSI 2014" "MIC" "B_STRPT" "TLT" "Table 2H-1" -"CLSI 2014" "MIC" "B_STRPT" "TVA" "Table 2H-1" 1 4 -"CLSI 2014" "MIC" "B_STRPT" "VAN" "M45 Table 1" 1 -"CLSI 2014" "MIC" "B_STRPT" "VAN" "Table 2H-1" 1 -"CLSI 2014" "MIC" "Non-meningitis" "B_STRPT_PNMN" "AMC" "Table 2G" 2 8 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "AMP" "Table 2G" -"CLSI 2014" "MIC" "Non-meningitis" "B_STRPT_PNMN" "AMX" "Table 2G" 2 8 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "AZM" "Table 2G" 0.5 2 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "CDR" "Table 2G" 0.5 2 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "CEC" "Table 2G" 1 4 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "CHL" "Table 2G" 4 8 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "CIP" "Table 2G" -"CLSI 2014" "MIC" "B_STRPT_PNMN" "CLI" "Table 2G" 0.25 1 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "CLR" "Table 2G" 0.25 1 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "CPD" "Table 2G" 0.5 2 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "CPR" "Table 2G" 2 8 -"CLSI 2014" "MIC" "Non-meningitis" "B_STRPT_PNMN" "CPT" "Table 2G" 0.5 -"CLSI 2014" "MIC" "Meningitis" "B_STRPT_PNMN" "CRO" "Table 2G" 0.5 2 -"CLSI 2014" "MIC" "Non-meningitis" "B_STRPT_PNMN" "CRO" "Table 2G" 1 4 -"CLSI 2014" "MIC" "Meningitis" "B_STRPT_PNMN" "CTX" "Table 2G" 0.5 2 -"CLSI 2014" "MIC" "Non-meningitis" "B_STRPT_PNMN" "CTX" "Table 2G" 1 4 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "CXA" "Table 2G" 1 4 -"CLSI 2014" "MIC" "Oral" "B_STRPT_PNMN" "CXM" "Table 2G" 1 4 -"CLSI 2014" "MIC" "Parenteral" "B_STRPT_PNMN" "CXM" "Table 2G" 0.5 2 -"CLSI 2014" "MIC" "Oral" "B_STRPT_PNMN" "CXM" "Table 2G" 1 4 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "DIR" "Table 2G" 0.5 2 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "DOR" "Table 2G" 1 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "DOX" "Table 2G" 0.25 1 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "ERY" "Table 2G" 0.25 1 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "ETP" "Table 2G" 1 4 -"CLSI 2014" "MIC" "Meningitis" "B_STRPT_PNMN" "FEP" "Table 2G" 0.5 2 -"CLSI 2014" "MIC" "Non-meningitis" "B_STRPT_PNMN" "FEP" "Table 2G" 1 4 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "GAT" "Table 2G" 1 4 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "GEM" "Table 2G" 0.125 0.5 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "GRX" "Table 2G" 0.5 2 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "IPM" "Table 2G" 0.125 1 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "LNZ" "Table 2G" 2 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "LOR" "Table 2G" 2 8 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "LVX" "Table 2G" 2 8 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "MEM" "Table 2G" 0.25 1 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "MFX" "Table 2G" 1 4 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "NOR" "Table 2G" -"CLSI 2014" "MIC" "B_STRPT_PNMN" "OFX" "Table 2G" 2 8 -"CLSI 2014" "MIC" "Meningitis" "B_STRPT_PNMN" "PEN" "Table 2G" 0.064 0.12 -"CLSI 2014" "MIC" "Non-meningitis" "B_STRPT_PNMN" "PEN" "Table 2G" 2 8 -"CLSI 2014" "MIC" "Oral" "B_STRPT_PNMN" "PEN" "Table 2G" 0.064 2 -"CLSI 2014" "MIC" "Oral" "B_STRPT_PNMN" "PNV" "Table 2G" 0.064 2 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "QDA" "Table 2G" 1 4 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "RIF" "Table 2G" 1 4 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "SAM" "Table 2G" -"CLSI 2014" "MIC" "B_STRPT_PNMN" "SPX" "Table 2G" 0.5 2 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "SXT" "Table 2G" 0.5 4 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "TCY" "Table 2G" 1 4 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "TLT" "Table 2G" 1 4 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "TVA" "Table 2G" 1 4 -"CLSI 2014" "MIC" "B_STRPT_PNMN" "VAN" "Table 2G" 1 -"CLSI 2014" "MIC" "B_STRPT_VIRI" "AMP" "Table 2H-2" 0.25 8 -"CLSI 2014" "MIC" "B_STRPT_VIRI" "AZM" "Table 2H-2" 0.5 2 -"CLSI 2014" "MIC" "B_STRPT_VIRI" "CHL" "Table 2H-2" 4 16 -"CLSI 2014" "MIC" "B_STRPT_VIRI" "CLI" "Table 2H-2" 0.25 1 -"CLSI 2014" "MIC" "B_STRPT_VIRI" "CLR" "Table 2H-2" 0.25 1 -"CLSI 2014" "MIC" "B_STRPT_VIRI" "CRO" "Table 2H-2" 1 4 -"CLSI 2014" "MIC" "B_STRPT_VIRI" "CTX" "Table 2H-2" 1 4 -"CLSI 2014" "MIC" "B_STRPT_VIRI" "DAP" "Table 2H-2" 1 -"CLSI 2014" "MIC" "B_STRPT_VIRI" "DIR" "Table 2H-2" 0.5 2 -"CLSI 2014" "MIC" "B_STRPT_VIRI" "DOR" "Table 2H-2" 1 -"CLSI 2014" "MIC" "B_STRPT_VIRI" "ERY" "Table 2H-2" 0.25 1 -"CLSI 2014" "MIC" "B_STRPT_VIRI" "ETP" "Table 2H-2" 1 -"CLSI 2014" "MIC" "B_STRPT_VIRI" "FEP" "Table 2H-2" 1 4 -"CLSI 2014" "MIC" "B_STRPT_VIRI" "GAT" "Table 2H-2" 1 4 -"CLSI 2014" "MIC" "B_STRPT_VIRI" "GRX" "Table 2H-2" 0.5 2 -"CLSI 2014" "MIC" "B_STRPT_VIRI" "LNZ" "Table 2H-2" 2 -"CLSI 2014" "MIC" "B_STRPT_VIRI" "LVX" "Table 2H-2" 2 8 -"CLSI 2014" "MIC" "B_STRPT_VIRI" "MEM" "Table 2H-2" 0.5 -"CLSI 2014" "MIC" "B_STRPT_VIRI" "OFX" "Table 2H-2" 2 8 -"CLSI 2014" "MIC" "B_STRPT_VIRI" "PEN" "Table 2H-2" 0.125 4 -"CLSI 2014" "MIC" "B_STRPT_VIRI" "QDA" "Table 2H-2" 1 4 -"CLSI 2014" "MIC" "B_STRPT_VIRI" "TCY" "Table 2H-2" 2 8 -"CLSI 2014" "MIC" "B_STRPT_VIRI" "TVA" "Table 2H-2" 1 4 -"CLSI 2014" "MIC" "B_STRPT_VIRI" "VAN" "Table 2H-2" 1 -"CLSI 2014" "MIC" "B_VIBRI_CHLR" "AZM" "M45 Table 14" "30ug" 2 -"CLSI 2014" "MIC" "B_VIBRI_CHLR" "DOX" "M45 Table 14" "30ug" 4 16 -"CLSI 2014" "MIC" "B_YERSN_PSTS" "CHL" "M45 Table 16" 8 32 -"CLSI 2014" "MIC" "B_YERSN_PSTS" "CIP" "M45 Table 16" 0.25 -"CLSI 2014" "MIC" "B_YERSN_PSTS" "DOX" "M45 Table 16" 4 16 -"CLSI 2014" "MIC" "B_YERSN_PSTS" "GEN" "M45 Table 16" 4 16 -"CLSI 2014" "MIC" "B_YERSN_PSTS" "LVX" "M45 Table 16" 0.25 -"CLSI 2014" "MIC" "B_YERSN_PSTS" "STR" "M45 Table 16" 4 16 -"CLSI 2014" "MIC" "B_YERSN_PSTS" "SXT" "M45 Table 16" 2 4 -"CLSI 2014" "MIC" "B_YERSN_PSTS" "TCY" "M45 Table 16" 4 16 -"CLSI 2013" "MIC" "B_ABTRP" "GAT" "M45 Table 1" 1 4 -"CLSI 2013" "MIC" "B_ABTRP" "IPM" "M45 Table 1" 0.5 2 -"CLSI 2013" "MIC" "B_ABTRP" "LVX" "M45 Table 1" 2 8 -"CLSI 2013" "MIC" "B_ABTRP" "MEM" "M45 Table 1" 0.5 2 -"CLSI 2013" "MIC" "B_ABTRP" "PEN" "M45 Table 1" 0.125 4 -"CLSI 2013" "MIC" "B_ABTRP" "VAN" "M45 Table 1" 1 -"CLSI 2013" "MIC" "B_ACNTB" "AMK" "Table 2B-2" 16 64 -"CLSI 2013" "MIC" "B_ACNTB" "CAZ" "Table 2B-2" 8 32 -"CLSI 2013" "MIC" "B_ACNTB" "CIP" "Table 2B-2" 1 4 -"CLSI 2013" "MIC" "B_ACNTB" "COL" "Table 2B-2" 2 4 -"CLSI 2013" "MIC" "B_ACNTB" "CRO" "Table 2B-2" 8 64 -"CLSI 2013" "MIC" "B_ACNTB" "CTX" "Table 2B-2" 8 64 -"CLSI 2013" "MIC" "B_ACNTB" "DOX" "Table 2B-2" 4 16 -"CLSI 2013" "MIC" "B_ACNTB" "ETP" "Table 2B-2" -"CLSI 2013" "MIC" "B_ACNTB" "FEP" "Table 2B-2" 8 32 -"CLSI 2013" "MIC" "B_ACNTB" "GAT" "Table 2B-2" 2 8 -"CLSI 2013" "MIC" "B_ACNTB" "GEN" "Table 2B-2" 4 16 -"CLSI 2013" "MIC" "B_ACNTB" "IPM" "Table 2B-2" 4 16 -"CLSI 2013" "MIC" "B_ACNTB" "LVX" "Table 2B-2" 2 8 -"CLSI 2013" "MIC" "B_ACNTB" "MEM" "Table 2B-2" 4 16 -"CLSI 2013" "MIC" "B_ACNTB" "MEZ" "Table 2B-2" 16 128 -"CLSI 2013" "MIC" "B_ACNTB" "MNO" "Table 2B-2" 4 16 -"CLSI 2013" "MIC" "B_ACNTB" "NET" "Table 2B-2" 8 32 -"CLSI 2013" "MIC" "B_ACNTB" "PIP" "Table 2B-2" 16 128 -"CLSI 2013" "MIC" "B_ACNTB" "PLB" "Table 2B-2" 2 4 -"CLSI 2013" "MIC" "B_ACNTB" "SAM" "Table 2B-2" 8 32 -"CLSI 2013" "MIC" "B_ACNTB" "SXT" "Table 2B-2" 2 4 -"CLSI 2013" "MIC" "B_ACNTB" "TCC" "Table 2B-2" 16 128 -"CLSI 2013" "MIC" "B_ACNTB" "TCY" "Table 2B-2" 4 16 -"CLSI 2013" "MIC" "B_ACNTB" "TIC" "Table 2B-2" 16 128 -"CLSI 2013" "MIC" "B_ACNTB" "TOB" "Table 2B-2" 4 16 -"CLSI 2013" "MIC" "B_ACNTB" "TZP" "Table 2B-2" 16 128 -"CLSI 2013" "MIC" "B_ACTNB_PLRP" "TIL" "Vet Table" 16 32 -"CLSI 2013" "MIC" "B_AERMN" "AMC" "M45 Table 2" 8 32 -"CLSI 2013" "MIC" "B_AERMN" "AMK" "M45 Table 2" 16 64 -"CLSI 2013" "MIC" "B_AERMN" "ATM" "M45 Table 2" 4 16 -"CLSI 2013" "MIC" "B_AERMN" "CAZ" "M45 Table 2" 4 16 -"CLSI 2013" "MIC" "B_AERMN" "CHL" "M45 Table 2" 8 32 -"CLSI 2013" "MIC" "B_AERMN" "CIP" "M45 Table 2" 1 4 -"CLSI 2013" "MIC" "B_AERMN" "CRO" "M45 Table 2" 1 4 -"CLSI 2013" "MIC" "B_AERMN" "CTX" "M45 Table 2" 1 4 -"CLSI 2013" "MIC" "B_AERMN" "CXM" "M45 Table 2" 8 32 -"CLSI 2013" "MIC" "B_AERMN" "CZO" "M45 Table 2" 1 4 -"CLSI 2013" "MIC" "B_AERMN" "ETP" "M45 Table 2" 2 8 -"CLSI 2013" "MIC" "B_AERMN" "FEP" "M45 Table 2" 8 32 -"CLSI 2013" "MIC" "B_AERMN" "FOX" "M45 Table 2" 8 32 -"CLSI 2013" "MIC" "B_AERMN" "GEN" "M45 Table 2" 4 16 -"CLSI 2013" "MIC" "B_AERMN" "IPM" "M45 Table 2" 4 16 -"CLSI 2013" "MIC" "B_AERMN" "LVX" "M45 Table 2" 2 8 -"CLSI 2013" "MIC" "B_AERMN" "MEM" "M45 Table 2" 4 16 -"CLSI 2013" "MIC" "B_AERMN" "SAM" "M45 Table 2" 8 32 -"CLSI 2013" "MIC" "B_AERMN" "SXT" "M45 Table 2" 2 4 -"CLSI 2013" "MIC" "B_AERMN" "TCY" "M45 Table 2" 4 16 -"CLSI 2013" "MIC" "B_AERMN" "TZP" "M45 Table 2" 16 128 -"CLSI 2013" "MIC" "B_AGGRG" "AMC" "M45 Table 7" 4 8 -"CLSI 2013" "MIC" "B_AGGRG" "AMP" "M45 Table 7" 1 4 -"CLSI 2013" "MIC" "B_AGGRG" "AZM" "M45 Table 7" 4 -"CLSI 2013" "MIC" "B_AGGRG" "CHL" "M45 Table 7" 4 16 -"CLSI 2013" "MIC" "B_AGGRG" "CIP" "M45 Table 7" 1 4 -"CLSI 2013" "MIC" "B_AGGRG" "CLR" "M45 Table 7" 8 32 -"CLSI 2013" "MIC" "B_AGGRG" "CRO" "M45 Table 7" 2 -"CLSI 2013" "MIC" "B_AGGRG" "CTX" "M45 Table 7" 2 -"CLSI 2013" "MIC" "B_AGGRG" "IPM" "M45 Table 7" 4 16 -"CLSI 2013" "MIC" "B_AGGRG" "LVX" "M45 Table 7" 2 8 -"CLSI 2013" "MIC" "B_AGGRG" "MEM" "M45 Table 7" 4 16 -"CLSI 2013" "MIC" "B_AGGRG" "PEN" "M45 Table 7" 1 4 -"CLSI 2013" "MIC" "B_AGGRG" "RIF" "M45 Table 7" 1 4 -"CLSI 2013" "MIC" "B_AGGRG" "SAM" "M45 Table 7" 2 4 -"CLSI 2013" "MIC" "B_AGGRG" "SXT" "M45 Table 7" 0.5 4 -"CLSI 2013" "MIC" "B_AGGRG" "TCY" "M45 Table 7" 2 8 -"CLSI 2013" "MIC" "Canine, feline" "B_ALLSC" "ENR" "Vet Table" 0.5 4 -"CLSI 2013" "MIC" "B_ANRSL" "AMC" "Table 2J" 4 16 -"CLSI 2013" "MIC" "B_ANRSL" "AMP" "Table 2J" 0.5 2 -"CLSI 2013" "MIC" "B_ANRSL" "CFP" "Table 2J" 16 64 -"CLSI 2013" "MIC" "B_ANRSL" "CHL" "Table 2J" 8 32 -"CLSI 2013" "MIC" "B_ANRSL" "CLI" "Table 2J" 2 8 -"CLSI 2013" "MIC" "B_ANRSL" "CMZ" "Table 2J" 16 64 -"CLSI 2013" "MIC" "B_ANRSL" "CRO" "Table 2J" 16 64 -"CLSI 2013" "MIC" "B_ANRSL" "CTT" "Table 2J" 16 64 -"CLSI 2013" "MIC" "B_ANRSL" "CTX" "Table 2J" 16 64 -"CLSI 2013" "MIC" "B_ANRSL" "CZX" "Table 2J" 32 128 -"CLSI 2013" "MIC" "B_ANRSL" "DOR" "Table 2J" 2 8 -"CLSI 2013" "MIC" "B_ANRSL" "ETP" "Table 2J" 4 16 -"CLSI 2013" "MIC" "B_ANRSL" "FOX" "Table 2J" 16 64 -"CLSI 2013" "MIC" "B_ANRSL" "IPM" "Table 2J" 4 16 -"CLSI 2013" "MIC" "B_ANRSL" "LTM" "Table 2J" 2 8 -"CLSI 2013" "MIC" "B_ANRSL" "MEM" "Table 2J" 4 16 -"CLSI 2013" "MIC" "B_ANRSL" "MEZ" "Table 2J" 32 128 -"CLSI 2013" "MIC" "B_ANRSL" "MTR" "Table 2J" 8 32 -"CLSI 2013" "MIC" "B_ANRSL" "PEN" "Table 2J" 0.5 2 -"CLSI 2013" "MIC" "B_ANRSL" "PIP" "Table 2J" 32 128 -"CLSI 2013" "MIC" "B_ANRSL" "SAM" "Table 2J" 8 32 -"CLSI 2013" "MIC" "B_ANRSL" "TCC" "Table 2J" 32 128 -"CLSI 2013" "MIC" "B_ANRSL" "TCY" "Table 2J" 4 16 -"CLSI 2013" "MIC" "B_ANRSL" "TIC" "Table 2J" 32 128 -"CLSI 2013" "MIC" "B_ANRSL" "TZP" "Table 2J" 32 128 -"CLSI 2013" "MIC" "B_BCLLS" "AMK" "M45 Table 3" 16 64 -"CLSI 2013" "MIC" "B_BCLLS" "AMP" "M45 Table 3" 0.25 0.5 -"CLSI 2013" "MIC" "B_BCLLS" "CAZ" "M45 Table 3" 8 32 -"CLSI 2013" "MIC" "B_BCLLS" "CHL" "M45 Table 3" 8 32 -"CLSI 2013" "MIC" "B_BCLLS" "CIP" "M45 Table 3" 1 4 -"CLSI 2013" "MIC" "B_BCLLS" "CLI" "M45 Table 3" 0.5 4 -"CLSI 2013" "MIC" "B_BCLLS" "CRO" "M45 Table 3" 8 64 -"CLSI 2013" "MIC" "B_BCLLS" "CTX" "M45 Table 3" 8 64 -"CLSI 2013" "MIC" "B_BCLLS" "CZO" "M45 Table 3" 8 16 -"CLSI 2013" "MIC" "B_BCLLS" "ERY" "M45 Table 3" 0.5 8 -"CLSI 2013" "MIC" "B_BCLLS" "GEN" "M45 Table 3" 4 16 -"CLSI 2013" "MIC" "B_BCLLS" "IPM" "M45 Table 3" 4 16 -"CLSI 2013" "MIC" "B_BCLLS" "LVX" "M45 Table 3" 2 8 -"CLSI 2013" "MIC" "B_BCLLS" "PEN" "M45 Table 3" 0.125 0.25 -"CLSI 2013" "MIC" "B_BCLLS" "RIF" "M45 Table 3" 1 4 -"CLSI 2013" "MIC" "B_BCLLS" "SXT" "M45 Table 3" 2 4 -"CLSI 2013" "MIC" "B_BCLLS" "TCY" "M45 Table 3" 4 16 -"CLSI 2013" "MIC" "B_BCLLS" "VAN" "M45 Table 3" 4 -"CLSI 2013" "MIC" "B_BCLLS_ANTH" "AMK" "M45 Table 16" -"CLSI 2013" "MIC" "B_BCLLS_ANTH" "AMP" "M45 Table 16" -"CLSI 2013" "MIC" "B_BCLLS_ANTH" "CAZ" "M45 Table 16" -"CLSI 2013" "MIC" "B_BCLLS_ANTH" "CHL" "M45 Table 16" -"CLSI 2013" "MIC" "B_BCLLS_ANTH" "CIP" "M45 Table 16" 0.25 -"CLSI 2013" "MIC" "B_BCLLS_ANTH" "CLI" "M45 Table 16" -"CLSI 2013" "MIC" "B_BCLLS_ANTH" "CRO" "M45 Table 16" -"CLSI 2013" "MIC" "B_BCLLS_ANTH" "CTX" "M45 Table 16" -"CLSI 2013" "MIC" "B_BCLLS_ANTH" "CZO" "M45 Table 16" -"CLSI 2013" "MIC" "B_BCLLS_ANTH" "DOX" "M45 Table 16" 1 -"CLSI 2013" "MIC" "B_BCLLS_ANTH" "ERY" "M45 Table 16" -"CLSI 2013" "MIC" "B_BCLLS_ANTH" "GEN" "M45 Table 16" -"CLSI 2013" "MIC" "B_BCLLS_ANTH" "IPM" "M45 Table 16" -"CLSI 2013" "MIC" "B_BCLLS_ANTH" "LVX" "M45 Table 16" 0.25 -"CLSI 2013" "MIC" "B_BCLLS_ANTH" "PEN" "M45 Table 16" 0.125 0.25 -"CLSI 2013" "MIC" "B_BCLLS_ANTH" "RIF" "M45 Table 16" -"CLSI 2013" "MIC" "B_BCLLS_ANTH" "SXT" "M45 Table 16" -"CLSI 2013" "MIC" "B_BCLLS_ANTH" "TCY" "M45 Table 16" 1 -"CLSI 2013" "MIC" "B_BCLLS_ANTH" "VAN" "M45 Table 16" -"CLSI 2013" "MIC" "B_BRCLL" "DOX" "M45 Table 16" 1 -"CLSI 2013" "MIC" "B_BRCLL" "GEN" "M45 Table 16" 4 -"CLSI 2013" "MIC" "B_BRCLL" "STR" "M45 Table 16" 8 -"CLSI 2013" "MIC" "B_BRCLL" "SXT" "M45 Table 16" 2 -"CLSI 2013" "MIC" "B_BRCLL" "TCY" "M45 Table 16" 1 -"CLSI 2013" "MIC" "B_BRKHL_CEPC" "CAZ" "Table 2B-3" 8 32 -"CLSI 2013" "MIC" "B_BRKHL_CEPC" "CHL" "Table 2B-3" 8 32 -"CLSI 2013" "MIC" "B_BRKHL_CEPC" "LVX" "Table 2B-3" 2 8 -"CLSI 2013" "MIC" "B_BRKHL_CEPC" "MEM" "Table 2B-3" 4 16 -"CLSI 2013" "MIC" "B_BRKHL_CEPC" "MNO" "Table 2B-3" 4 16 -"CLSI 2013" "MIC" "B_BRKHL_CEPC" "SXT" "Table 2B-3" 2 4 -"CLSI 2013" "MIC" "B_BRKHL_CEPC" "TCC" "Table 2B-3" 16 128 -"CLSI 2013" "MIC" "B_BRKHL_MALL" "CAZ" "M45 Table 16" 8 32 -"CLSI 2013" "MIC" "B_BRKHL_MALL" "DOX" "M45 Table 16" 4 16 -"CLSI 2013" "MIC" "B_BRKHL_MALL" "IPM" "M45 Table 16" 4 16 -"CLSI 2013" "MIC" "B_BRKHL_MALL" "TCY" "M45 Table 16" 4 16 -"CLSI 2013" "MIC" "B_BRKHL_PSDM" "AMC" "M45 Table 16" 8 32 -"CLSI 2013" "MIC" "B_BRKHL_PSDM" "CAZ" "M45 Table 16" 8 32 -"CLSI 2013" "MIC" "B_BRKHL_PSDM" "DOX" "M45 Table 16" 4 16 -"CLSI 2013" "MIC" "B_BRKHL_PSDM" "IPM" "M45 Table 16" 4 16 -"CLSI 2013" "MIC" "B_BRKHL_PSDM" "SXT" "M45 Table 16" 2 4 -"CLSI 2013" "MIC" "B_BRKHL_PSDM" "TCY" "M45 Table 16" 4 16 -"CLSI 2013" "MIC" "B_CMPYL" "CIP" "M45 Table 3" 1 4 -"CLSI 2013" "MIC" "B_CMPYL" "DOX" "M45 Table 3" 2 8 -"CLSI 2013" "MIC" "B_CMPYL" "ERY" "M45 Table 3" 8 32 -"CLSI 2013" "MIC" "B_CMPYL" "TCY" "M45 Table 3" 4 16 -"CLSI 2013" "MIC" "B_CRDBC" "AMC" "M45 Table 7" 4 8 -"CLSI 2013" "MIC" "B_CRDBC" "AMP" "M45 Table 7" 1 4 -"CLSI 2013" "MIC" "B_CRDBC" "AZM" "M45 Table 7" 4 -"CLSI 2013" "MIC" "B_CRDBC" "CHL" "M45 Table 7" 4 16 -"CLSI 2013" "MIC" "B_CRDBC" "CIP" "M45 Table 7" 1 4 -"CLSI 2013" "MIC" "B_CRDBC" "CLR" "M45 Table 7" 8 32 -"CLSI 2013" "MIC" "B_CRDBC" "CRO" "M45 Table 7" 2 -"CLSI 2013" "MIC" "B_CRDBC" "CTX" "M45 Table 7" 2 -"CLSI 2013" "MIC" "B_CRDBC" "IPM" "M45 Table 7" 0.5 2 -"CLSI 2013" "MIC" "B_CRDBC" "LVX" "M45 Table 7" 2 8 -"CLSI 2013" "MIC" "B_CRDBC" "MEM" "M45 Table 7" 0.5 2 -"CLSI 2013" "MIC" "B_CRDBC" "PEN" "M45 Table 7" 1 4 -"CLSI 2013" "MIC" "B_CRDBC" "RIF" "M45 Table 7" 1 4 -"CLSI 2013" "MIC" "B_CRDBC" "SAM" "M45 Table 7" 2 4 -"CLSI 2013" "MIC" "B_CRDBC" "SXT" "M45 Table 7" 0.5 4 -"CLSI 2013" "MIC" "B_CRDBC" "TCY" "M45 Table 7" 2 8 -"CLSI 2013" "MIC" "B_EKNLL" "AMC" "M45 Table 7" 4 8 -"CLSI 2013" "MIC" "B_EKNLL" "AMP" "M45 Table 7" 1 4 -"CLSI 2013" "MIC" "B_EKNLL" "AZM" "M45 Table 7" 4 -"CLSI 2013" "MIC" "B_EKNLL" "CHL" "M45 Table 7" 4 16 -"CLSI 2013" "MIC" "B_EKNLL" "CIP" "M45 Table 7" 1 4 -"CLSI 2013" "MIC" "B_EKNLL" "CLR" "M45 Table 7" 8 32 -"CLSI 2013" "MIC" "B_EKNLL" "CRO" "M45 Table 7" 2 -"CLSI 2013" "MIC" "B_EKNLL" "CTX" "M45 Table 7" 2 -"CLSI 2013" "MIC" "B_EKNLL" "IPM" "M45 Table 7" 0.5 2 -"CLSI 2013" "MIC" "B_EKNLL" "LVX" "M45 Table 7" 2 8 -"CLSI 2013" "MIC" "B_EKNLL" "MEM" "M45 Table 7" 0.5 2 -"CLSI 2013" "MIC" "B_EKNLL" "PEN" "M45 Table 7" 1 4 -"CLSI 2013" "MIC" "B_EKNLL" "RIF" "M45 Table 7" 1 4 -"CLSI 2013" "MIC" "B_EKNLL" "SAM" "M45 Table 7" 2 4 -"CLSI 2013" "MIC" "B_EKNLL" "SXT" "M45 Table 7" 0.5 4 -"CLSI 2013" "MIC" "B_EKNLL" "TCY" "M45 Table 7" 2 8 -"CLSI 2013" "MIC" "B_ENTRC" "AMP" "Table 2D" 8 16 -"CLSI 2013" "MIC" "B_ENTRC" "CHL" "Table 2D" 8 32 -"CLSI 2013" "MIC" "B_ENTRC" "CIP" "Table 2D" 1 4 -"CLSI 2013" "MIC" "B_ENTRC" "DAP" "Table 2D" 4 -"CLSI 2013" "MIC" "B_ENTRC" "DOX" "Table 2D" 4 16 -"CLSI 2013" "MIC" "B_ENTRC" "ERY" "Table 2D" 0.5 8 -"CLSI 2013" "MIC" "B_ENTRC" "FOS" "Table 2D" 64 256 -"CLSI 2013" "MIC" "B_ENTRC" "GAT" "Table 2D" 2 8 -"CLSI 2013" "MIC" "B_ENTRC" "GEH" "Table 2D" 512 512 -"CLSI 2013" "MIC" "B_ENTRC" "GEN" "Table 2D" 512 512 -"CLSI 2013" "MIC" "B_ENTRC" "LNZ" "Table 2D" 2 8 -"CLSI 2013" "MIC" "B_ENTRC" "LVX" "Table 2D" 2 8 -"CLSI 2013" "MIC" "B_ENTRC" "MNO" "Table 2D" 4 16 -"CLSI 2013" "MIC" "B_ENTRC" "NIT" "Table 2D" 32 128 -"CLSI 2013" "MIC" "B_ENTRC" "NOR" "Table 2D" 4 16 -"CLSI 2013" "MIC" "B_ENTRC" "PEN" "Table 2D" 8 16 -"CLSI 2013" "MIC" "B_ENTRC" "QDA" "Table 2D" 1 4 -"CLSI 2013" "MIC" "B_ENTRC" "RIF" "Table 2D" 1 4 -"CLSI 2013" "MIC" "B_ENTRC" "STH" "Table 2D" 1024 1024 -"CLSI 2013" "MIC" "B_ENTRC" "STR" "Table 2D" 1024 1024 -"CLSI 2013" "MIC" "B_ENTRC" "TCY" "Table 2D" 4 16 -"CLSI 2013" "MIC" "B_ENTRC" "TEC" "Table 2D" 8 32 -"CLSI 2013" "MIC" "B_ENTRC" "VAN" "Table 2D" 4 32 -"CLSI 2013" "MIC" "B_ERYSP_RHSP" "AMP" "M45 Table 6" 0.25 -"CLSI 2013" "MIC" "B_ERYSP_RHSP" "CIP" "M45 Table 6" 1 -"CLSI 2013" "MIC" "B_ERYSP_RHSP" "CLI" "M45 Table 6" 0.25 1 -"CLSI 2013" "MIC" "B_ERYSP_RHSP" "CRO" "M45 Table 6" 1 -"CLSI 2013" "MIC" "B_ERYSP_RHSP" "CTX" "M45 Table 6" 1 -"CLSI 2013" "MIC" "B_ERYSP_RHSP" "ERY" "M45 Table 6" 0.25 1 -"CLSI 2013" "MIC" "B_ERYSP_RHSP" "FEP" "M45 Table 6" 1 -"CLSI 2013" "MIC" "B_ERYSP_RHSP" "IPM" "M45 Table 6" 0.5 -"CLSI 2013" "MIC" "B_ERYSP_RHSP" "LVX" "M45 Table 6" 2 -"CLSI 2013" "MIC" "B_ERYSP_RHSP" "MEM" "M45 Table 6" 0.5 -"CLSI 2013" "MIC" "B_ERYSP_RHSP" "PEN" "M45 Table 6" 0.125 -"CLSI 2013" "MIC" "B_FRNCS_TLRN" "CHL" "M45 Table 16" 8 -"CLSI 2013" "MIC" "B_FRNCS_TLRN" "CIP" "M45 Table 16" 0.5 -"CLSI 2013" "MIC" "B_FRNCS_TLRN" "DOX" "M45 Table 16" 4 -"CLSI 2013" "MIC" "B_FRNCS_TLRN" "GEN" "M45 Table 16" 4 -"CLSI 2013" "MIC" "B_FRNCS_TLRN" "LVX" "M45 Table 16" 0.5 -"CLSI 2013" "MIC" "B_FRNCS_TLRN" "STR" "M45 Table 16" 8 -"CLSI 2013" "MIC" "B_FRNCS_TLRN" "TCY" "M45 Table 16" 4 -"CLSI 2013" "MIC" "B_GRNLC" "AMP" "M45 Table 1" 0.25 8 -"CLSI 2013" "MIC" "B_GRNLC" "CHL" "M45 Table 1" 4 8 -"CLSI 2013" "MIC" "B_GRNLC" "CIP" "M45 Table 1" 1 4 -"CLSI 2013" "MIC" "B_GRNLC" "CLI" "M45 Table 1" 0.25 1 -"CLSI 2013" "MIC" "B_GRNLC" "CRO" "M45 Table 1" 1 4 -"CLSI 2013" "MIC" "B_GRNLC" "CTX" "M45 Table 1" 1 4 -"CLSI 2013" "MIC" "B_GRNLC" "ERY" "M45 Table 1" 0.25 1 -"CLSI 2013" "MIC" "B_GRNLC" "FEP" "M45 Table 1" 1 4 -"CLSI 2013" "MIC" "B_GRNLC" "GAT" "M45 Table 1" 1 4 -"CLSI 2013" "MIC" "B_GRNLC" "IPM" "M45 Table 1" 0.5 2 -"CLSI 2013" "MIC" "B_GRNLC" "LVX" "M45 Table 1" 2 8 -"CLSI 2013" "MIC" "B_GRNLC" "MEM" "M45 Table 1" 0.5 2 -"CLSI 2013" "MIC" "B_GRNLC" "PEN" "M45 Table 1" 0.125 4 -"CLSI 2013" "MIC" "B_GRNLC" "VAN" "M45 Table 1" 1 -"CLSI 2013" "MIC" "B_HLCBCT_PYLR" "CLR" "M45 Table 8" 0.25 1 -"CLSI 2013" "MIC" "B_HMPHL" "AMC" "Table 2E" 4 8 -"CLSI 2013" "MIC" "B_HMPHL" "AMP" "Table 2E" 1 4 -"CLSI 2013" "MIC" "B_HMPHL" "ATM" "Table 2E" 2 -"CLSI 2013" "MIC" "B_HMPHL" "AZM" "Table 2E" 4 -"CLSI 2013" "MIC" "B_HMPHL" "CAT" "Table 2E" 4 16 -"CLSI 2013" "MIC" "B_HMPHL" "CAZ" "Table 2E" 2 -"CLSI 2013" "MIC" "B_HMPHL" "CDR" "Table 2E" 1 -"CLSI 2013" "MIC" "B_HMPHL" "CEC" "Table 2E" 8 32 -"CLSI 2013" "MIC" "B_HMPHL" "CFM" "Table 2E" 1 -"CLSI 2013" "MIC" "B_HMPHL" "CHL" "Table 2E" 2 8 -"CLSI 2013" "MIC" "B_HMPHL" "CID" "Table 2E" 4 16 -"CLSI 2013" "MIC" "B_HMPHL" "CIP" "Table 2E" 1 -"CLSI 2013" "MIC" "B_HMPHL" "CLR" "Table 2E" 8 32 -"CLSI 2013" "MIC" "B_HMPHL" "CPD" "Table 2E" 2 -"CLSI 2013" "MIC" "B_HMPHL" "CPR" "Table 2E" 8 32 -"CLSI 2013" "MIC" "B_HMPHL" "CRO" "Table 2E" 2 -"CLSI 2013" "MIC" "B_HMPHL" "CTB" "Table 2E" 2 -"CLSI 2013" "MIC" "B_HMPHL" "CTX" "Table 2E" 2 -"CLSI 2013" "MIC" "B_HMPHL" "CXA" "Table 2E" 4 16 -"CLSI 2013" "MIC" "Oral" "B_HMPHL" "CXM" "Table 2E" 4 16 -"CLSI 2013" "MIC" "B_HMPHL" "CXM" "Table 2E" 4 16 -"CLSI 2013" "MIC" "B_HMPHL" "CZX" "Table 2E" 2 -"CLSI 2013" "MIC" "B_HMPHL" "DOR" "Table 2E" 1 -"CLSI 2013" "MIC" "B_HMPHL" "ETP" "Table 2E" 0.5 -"CLSI 2013" "MIC" "B_HMPHL" "FEP" "Table 2E" 2 -"CLSI 2013" "MIC" "B_HMPHL" "FLE" "Table 2E" 2 -"CLSI 2013" "MIC" "B_HMPHL" "GAT" "Table 2E" 1 -"CLSI 2013" "MIC" "B_HMPHL" "GEM" "Table 2E" 0.125 -"CLSI 2013" "MIC" "B_HMPHL" "GRX" "Table 2E" 0.5 -"CLSI 2013" "MIC" "B_HMPHL" "IPM" "Table 2E" 4 -"CLSI 2013" "MIC" "B_HMPHL" "LOM" "Table 2E" 2 -"CLSI 2013" "MIC" "B_HMPHL" "LOR" "Table 2E" 8 32 -"CLSI 2013" "MIC" "B_HMPHL" "LVX" "Table 2E" 2 -"CLSI 2013" "MIC" "B_HMPHL" "MAN" "Table 2E" 4 16 -"CLSI 2013" "MIC" "B_HMPHL" "MEM" "Table 2E" 0.5 -"CLSI 2013" "MIC" "B_HMPHL" "MFX" "Table 2E" 1 -"CLSI 2013" "MIC" "B_HMPHL" "OFX" "Table 2E" 2 -"CLSI 2013" "MIC" "B_HMPHL" "RIF" "Table 2E" 1 4 -"CLSI 2013" "MIC" "B_HMPHL" "SAM" "Table 2E" 2 4 -"CLSI 2013" "MIC" "B_HMPHL" "SPX" "Table 2E" 0.25 -"CLSI 2013" "MIC" "B_HMPHL" "SXT" "Table 2E" 0.5 4 -"CLSI 2013" "MIC" "B_HMPHL" "TCY" "Table 2E" 2 8 -"CLSI 2013" "MIC" "B_HMPHL" "TLT" "Table 2E" 4 16 -"CLSI 2013" "MIC" "B_HMPHL" "TVA" "Table 2E" 1 -"CLSI 2013" "MIC" "B_HMPHL" "TZP" "Table 2E" 1 2 -"CLSI 2013" "MIC" "B_HMPHL_INFL" "CPT" "Table 2E" 0.5 -"CLSI 2013" "MIC" "B_HSTPH_SOMN" "ENR" "Vet Table" 0.25 2 -"CLSI 2013" "MIC" "B_KGLLA" "AZM" "M45 Table 7" 4 -"CLSI 2013" "MIC" "B_KGLLA" "CHL" "M45 Table 7" 4 16 -"CLSI 2013" "MIC" "B_KGLLA" "CIP" "M45 Table 7" 1 4 -"CLSI 2013" "MIC" "B_KGLLA" "CLR" "M45 Table 7" 8 32 -"CLSI 2013" "MIC" "B_KGLLA" "CRO" "M45 Table 7" 2 -"CLSI 2013" "MIC" "B_KGLLA" "CTX" "M45 Table 7" 2 -"CLSI 2013" "MIC" "B_KGLLA" "IPM" "M45 Table 7" 0.5 2 -"CLSI 2013" "MIC" "B_KGLLA" "LVX" "M45 Table 7" 2 8 -"CLSI 2013" "MIC" "B_KGLLA" "MEM" "M45 Table 7" 0.5 2 -"CLSI 2013" "MIC" "B_KGLLA" "PEN" "M45 Table 7" 1 4 -"CLSI 2013" "MIC" "B_KGLLA" "RIF" "M45 Table 7" 1 4 -"CLSI 2013" "MIC" "B_KGLLA" "SXT" "M45 Table 7" 0.5 4 -"CLSI 2013" "MIC" "B_KGLLA" "TCY" "M45 Table 7" 2 8 -"CLSI 2013" "MIC" "B_LCNST" "AMP" "M45 Table 10" 8 -"CLSI 2013" "MIC" "B_LCNST" "CHL" "M45 Table 10" 8 32 -"CLSI 2013" "MIC" "B_LCNST" "GEN" "M45 Table 10" 4 16 -"CLSI 2013" "MIC" "B_LCNST" "MNO" "M45 Table 10" 4 16 -"CLSI 2013" "MIC" "B_LCNST" "PEN" "M45 Table 10" 8 -"CLSI 2013" "MIC" "B_LCTBC" "AMP" "M45 Table 9" 8 -"CLSI 2013" "MIC" "B_LCTBC" "CLI" "M45 Table 9" 0.5 2 -"CLSI 2013" "MIC" "B_LCTBC" "DAP" "M45 Table 9" 4 -"CLSI 2013" "MIC" "B_LCTBC" "ERY" "M45 Table 9" 0.5 8 -"CLSI 2013" "MIC" "B_LCTBC" "GEN" "M45 Table 9" 4 16 -"CLSI 2013" "MIC" "B_LCTBC" "IPM" "M45 Table 9" 0.5 2 -"CLSI 2013" "MIC" "B_LCTBC" "LNZ" "M45 Table 9" 4 -"CLSI 2013" "MIC" "B_LCTBC" "PEN" "M45 Table 9" 8 -"CLSI 2013" "MIC" "B_LCTBC" "VAN" "M45 Table 9" 2 16 -"CLSI 2013" "MIC" "B_LISTR_MNCY" "AMP" "M45 Table 11" 2 -"CLSI 2013" "MIC" "B_LISTR_MNCY" "PEN" "M45 Table 11" 2 -"CLSI 2013" "MIC" "B_LISTR_MNCY" "SXT" "M45 Table 11" 0.5 4 -"CLSI 2013" "MIC" "B_MRXLL_CTRR" "AMC" "M45 Table 12" 4 8 -"CLSI 2013" "MIC" "B_MRXLL_CTRR" "AZM" "M45 Table 12" 0.25 -"CLSI 2013" "MIC" "B_MRXLL_CTRR" "CAZ" "M45 Table 12" 2 -"CLSI 2013" "MIC" "B_MRXLL_CTRR" "CEC" "M45 Table 12" 8 32 -"CLSI 2013" "MIC" "B_MRXLL_CTRR" "CHL" "M45 Table 12" 2 8 -"CLSI 2013" "MIC" "B_MRXLL_CTRR" "CIP" "M45 Table 12" 1 -"CLSI 2013" "MIC" "B_MRXLL_CTRR" "CLI" "M45 Table 12" 0.5 4 -"CLSI 2013" "MIC" "B_MRXLL_CTRR" "CLR" "M45 Table 12" 1 -"CLSI 2013" "MIC" "B_MRXLL_CTRR" "CRO" "M45 Table 12" 2 -"CLSI 2013" "MIC" "B_MRXLL_CTRR" "CTX" "M45 Table 12" 2 -"CLSI 2013" "MIC" "B_MRXLL_CTRR" "CXM" "M45 Table 12" 4 16 -"CLSI 2013" "MIC" "B_MRXLL_CTRR" "ERY" "M45 Table 12" 2 -"CLSI 2013" "MIC" "B_MRXLL_CTRR" "LVX" "M45 Table 12" 2 -"CLSI 2013" "MIC" "B_MRXLL_CTRR" "RIF" "M45 Table 12" 1 4 -"CLSI 2013" "MIC" "B_MRXLL_CTRR" "SXT" "M45 Table 12" 0.5 4 -"CLSI 2013" "MIC" "B_MRXLL_CTRR" "TCY" "M45 Table 12" 2 8 -"CLSI 2013" "MIC" "B_NESSR_GNRR" "CAT" "Table 2F" 0.5 -"CLSI 2013" "MIC" "B_NESSR_GNRR" "CAZ" "Table 2F" 0.5 -"CLSI 2013" "MIC" "B_NESSR_GNRR" "CFM" "Table 2F" 0.25 -"CLSI 2013" "MIC" "B_NESSR_GNRR" "CIP" "Table 2F" 0.064 1 -"CLSI 2013" "MIC" "B_NESSR_GNRR" "CMZ" "Table 2F" 2 8 -"CLSI 2013" "MIC" "B_NESSR_GNRR" "CPD" "Table 2F" 0.5 -"CLSI 2013" "MIC" "B_NESSR_GNRR" "CRO" "Table 2F" 0.25 -"CLSI 2013" "MIC" "B_NESSR_GNRR" "CTT" "Table 2F" 2 8 -"CLSI 2013" "MIC" "B_NESSR_GNRR" "CTX" "Table 2F" 0.5 -"CLSI 2013" "MIC" "B_NESSR_GNRR" "CXM" "Table 2F" 1 4 -"CLSI 2013" "MIC" "B_NESSR_GNRR" "CZX" "Table 2F" 0.5 -"CLSI 2013" "MIC" "B_NESSR_GNRR" "ENX" "Table 2F" 0.5 2 -"CLSI 2013" "MIC" "B_NESSR_GNRR" "FEP" "Table 2F" 0.5 -"CLSI 2013" "MIC" "B_NESSR_GNRR" "FLE" "Table 2F" 0.25 1 -"CLSI 2013" "MIC" "B_NESSR_GNRR" "FOX" "Table 2F" 2 8 -"CLSI 2013" "MIC" "B_NESSR_GNRR" "GAT" "Table 2F" 0.125 0.5 -"CLSI 2013" "MIC" "B_NESSR_GNRR" "GRX" "Table 2F" 0.064 1 -"CLSI 2013" "MIC" "B_NESSR_GNRR" "LOM" "Table 2F" 0.125 2 -"CLSI 2013" "MIC" "B_NESSR_GNRR" "OFX" "Table 2F" 0.25 2 -"CLSI 2013" "MIC" "B_NESSR_GNRR" "PEN" "Table 2F" 0.064 2 -"CLSI 2013" "MIC" "B_NESSR_GNRR" "SPT" "Table 2F" 32 128 -"CLSI 2013" "MIC" "B_NESSR_GNRR" "TCY" "Table 2F" 0.25 2 -"CLSI 2013" "MIC" "B_NESSR_GNRR" "TVA" "Table 2F" 0.25 -"CLSI 2013" "MIC" "B_NESSR_MNNG" "AMP" "Table 2I" 0.125 2 -"CLSI 2013" "MIC" "B_NESSR_MNNG" "AZM" "Table 2I" 2 -"CLSI 2013" "MIC" "B_NESSR_MNNG" "CHL" "Table 2I" 2 8 -"CLSI 2013" "MIC" "B_NESSR_MNNG" "CIP" "Table 2I" 0.032 0.12 -"CLSI 2013" "MIC" "B_NESSR_MNNG" "CRO" "Table 2I" 0.125 -"CLSI 2013" "MIC" "B_NESSR_MNNG" "CTX" "Table 2I" 0.125 -"CLSI 2013" "MIC" "B_NESSR_MNNG" "LVX" "Table 2I" 0.032 0.12 -"CLSI 2013" "MIC" "B_NESSR_MNNG" "MEM" "Table 2I" 0.25 -"CLSI 2013" "MIC" "B_NESSR_MNNG" "MNO" "Table 2I" 2 -"CLSI 2013" "MIC" "B_NESSR_MNNG" "NAL" "Table 2I" 4 8 -"CLSI 2013" "MIC" "B_NESSR_MNNG" "PEN" "Table 2I" 0.064 0.5 -"CLSI 2013" "MIC" "B_NESSR_MNNG" "RIF" "Table 2I" 0.5 2 -"CLSI 2013" "MIC" "B_NESSR_MNNG" "SMX" "Table 2I" 2 8 -"CLSI 2013" "MIC" "B_NESSR_MNNG" "SOX" "Table 2I" 2 8 -"CLSI 2013" "MIC" "B_NESSR_MNNG" "SSS" "Table 2I" 2 8 -"CLSI 2013" "MIC" "B_NESSR_MNNG" "SXT" "Table 2I" 0.125 0.5 -"CLSI 2013" "MIC" "B_PDCCC" "AMP" "M45 Table 14" 8 -"CLSI 2013" "MIC" "B_PDCCC" "CHL" "M45 Table 14" 8 32 -"CLSI 2013" "MIC" "B_PDCCC" "GEN" "M45 Table 14" 4 16 -"CLSI 2013" "MIC" "B_PDCCC" "IPM" "M45 Table 14" 0.5 -"CLSI 2013" "MIC" "B_PDCCC" "PEN" "M45 Table 14" 8 -"CLSI 2013" "MIC" "B_PLSMN" "AMC" "M45 Table 2" 8 32 -"CLSI 2013" "MIC" "B_PLSMN" "AMK" "M45 Table 2" 16 64 -"CLSI 2013" "MIC" "B_PLSMN" "ATM" "M45 Table 2" 4 16 -"CLSI 2013" "MIC" "B_PLSMN" "CAZ" "M45 Table 2" 4 16 -"CLSI 2013" "MIC" "B_PLSMN" "CHL" "M45 Table 2" 8 32 -"CLSI 2013" "MIC" "B_PLSMN" "CIP" "M45 Table 2" 1 4 -"CLSI 2013" "MIC" "B_PLSMN" "CRO" "M45 Table 2" 1 4 -"CLSI 2013" "MIC" "B_PLSMN" "CTX" "M45 Table 2" 1 4 -"CLSI 2013" "MIC" "B_PLSMN" "CXM" "M45 Table 2" 8 32 -"CLSI 2013" "MIC" "B_PLSMN" "CZO" "M45 Table 2" 1 4 -"CLSI 2013" "MIC" "B_PLSMN" "ETP" "M45 Table 2" 2 8 -"CLSI 2013" "MIC" "B_PLSMN" "FEP" "M45 Table 2" 8 32 -"CLSI 2013" "MIC" "B_PLSMN" "FOX" "M45 Table 2" 8 32 -"CLSI 2013" "MIC" "B_PLSMN" "GEN" "M45 Table 2" 4 16 -"CLSI 2013" "MIC" "B_PLSMN" "IPM" "M45 Table 2" 4 16 -"CLSI 2013" "MIC" "B_PLSMN" "LVX" "M45 Table 2" 2 8 -"CLSI 2013" "MIC" "B_PLSMN" "MEM" "M45 Table 2" 4 16 -"CLSI 2013" "MIC" "B_PLSMN" "SAM" "M45 Table 2" 8 32 -"CLSI 2013" "MIC" "B_PLSMN" "SXT" "M45 Table 2" 2 4 -"CLSI 2013" "MIC" "B_PLSMN" "TCY" "M45 Table 2" 4 16 -"CLSI 2013" "MIC" "B_PLSMN" "TZP" "M45 Table 2" 16 128 -"CLSI 2013" "MIC" "B_PSDMN" "ETP" -"CLSI 2013" "MIC" "B_PSDMN_AERG" "AMK" "Table 2B-1" 16 64 -"CLSI 2013" "MIC" "B_PSDMN_AERG" "ATM" "Table 2B-1" 8 32 -"CLSI 2013" "MIC" "B_PSDMN_AERG" "CAZ" "Table 2B-1" 8 32 -"CLSI 2013" "MIC" "B_PSDMN_AERG" "CIP" "Table 2B-1" 1 4 -"CLSI 2013" "MIC" "B_PSDMN_AERG" "COL" "Table 2B-1" 2 8 -"CLSI 2013" "MIC" "B_PSDMN_AERG" "DOR" "Table 2B-1" 2 8 -"CLSI 2013" "MIC" "B_PSDMN_AERG" "FEP" "Table 2B-1" 8 32 -"CLSI 2013" "MIC" "B_PSDMN_AERG" "GAT" "Table 2B-1" 2 8 -"CLSI 2013" "MIC" "B_PSDMN_AERG" "GEN" "Table 2B-1" 4 16 -"CLSI 2013" "MIC" "B_PSDMN_AERG" "IPM" "Table 2B-1" 2 8 -"CLSI 2013" "MIC" "B_PSDMN_AERG" "LOM" "Table 2B-1" 2 8 -"CLSI 2013" "MIC" "B_PSDMN_AERG" "LVX" "Table 2B-1" 2 8 -"CLSI 2013" "MIC" "B_PSDMN_AERG" "MEM" "Table 2B-1" 2 8 -"CLSI 2013" "MIC" "B_PSDMN_AERG" "NET" "Table 2B-1" 8 32 -"CLSI 2013" "MIC" "B_PSDMN_AERG" "NOR" "Table 2B-1" 4 16 -"CLSI 2013" "MIC" "B_PSDMN_AERG" "OFX" "Table 2B-1" 2 8 -"CLSI 2013" "MIC" "B_PSDMN_AERG" "PIP" "Table 2B-1" 16 128 -"CLSI 2013" "MIC" "B_PSDMN_AERG" "PLB" "Table 2B-1" 2 8 -"CLSI 2013" "MIC" "B_PSDMN_AERG" "TCC" "Table 2B-1" 16 128 -"CLSI 2013" "MIC" "B_PSDMN_AERG" "TIC" "Table 2B-1" 16 128 -"CLSI 2013" "MIC" "B_PSDMN_AERG" "TOB" "Table 2B-1" 4 16 -"CLSI 2013" "MIC" "B_PSDMN_AERG" "TZP" "Table 2B-1" 16 128 -"CLSI 2013" "MIC" "B_PSTRL" "AMC" "M45 Table 13" 0.5 -"CLSI 2013" "MIC" "B_PSTRL" "AMP" "M45 Table 13" 0.5 -"CLSI 2013" "MIC" "B_PSTRL" "AMX" "M45 Table 13" 0.5 -"CLSI 2013" "MIC" "B_PSTRL" "AZM" "M45 Table 13" 1 -"CLSI 2013" "MIC" "B_PSTRL" "CHL" "M45 Table 13" 2 -"CLSI 2013" "MIC" "B_PSTRL" "CRO" "M45 Table 13" 0.125 -"CLSI 2013" "MIC" "B_PSTRL" "DOX" "M45 Table 13" 0.5 -"CLSI 2013" "MIC" "B_PSTRL" "ERY" "M45 Table 13" 0.5 2 -"CLSI 2013" "MIC" "B_PSTRL" "LVX" "M45 Table 13" 0.064 -"CLSI 2013" "MIC" "B_PSTRL" "MFX" "M45 Table 13" 0.064 -"CLSI 2013" "MIC" "B_PSTRL" "PEN" "M45 Table 13" 0.5 -"CLSI 2013" "MIC" "B_PSTRL" "SXT" "M45 Table 13" 0.5 -"CLSI 2013" "MIC" "B_PSTRL" "TCY" "M45 Table 13" 1 -"CLSI 2013" "MIC" "B_PSTRL_MLTC" "TIL" "Vet Table" 16 32 -"CLSI 2013" "MIC" "Intestinal" "B_SLMNL" "CIP" "Table 2A" 1 4 -"CLSI 2013" "MIC" "Extraintestinal" "B_SLMNL" "CIP" "Table 2A" 0.064 1 -"CLSI 2013" "MIC" "B_SLMNL" "CIP" "Table 2A" 0.064 1 -"CLSI 2013" "MIC" "B_SLMNL" "LVX" "Table 2A" 0.125 2 -"CLSI 2013" "MIC" "B_SLMNL" "OFX" "Table 2A" 0.125 2 -"CLSI 2013" "MIC" "B_STNTR_MLTP" "CAZ" "Table 2B-4" 8 32 -"CLSI 2013" "MIC" "B_STNTR_MLTP" "CHL" "Table 2B-4" 8 32 -"CLSI 2013" "MIC" "B_STNTR_MLTP" "LVX" "Table 2B-4" 2 8 -"CLSI 2013" "MIC" "B_STNTR_MLTP" "MNO" "Table 2B-4" 4 16 -"CLSI 2013" "MIC" "B_STNTR_MLTP" "SXT" "Table 2B-4" 2 4 -"CLSI 2013" "MIC" "B_STNTR_MLTP" "TCC" "Table 2B-4" 16 128 -"CLSI 2013" "MIC" "B_STPHY" "AMC" "Table 2C" 4 8 -"CLSI 2013" "MIC" "B_STPHY" "AMK" "Table 2C" 16 64 -"CLSI 2013" "MIC" "B_STPHY" "AMP" "Table 2C" 0.25 0.5 -"CLSI 2013" "MIC" "B_STPHY" "AZM" "Table 2C" 2 8 -"CLSI 2013" "MIC" "B_STPHY" "CAZ" "Table 2C" 8 32 -"CLSI 2013" "MIC" "B_STPHY" "CDR" "Table 2C" 1 4 -"CLSI 2013" "MIC" "B_STPHY" "CEC" "Table 2C" 8 32 -"CLSI 2013" "MIC" "B_STPHY" "CEP" "Table 2C" 8 32 -"CLSI 2013" "MIC" "B_STPHY" "CFP" "Table 2C" 16 64 -"CLSI 2013" "MIC" "B_STPHY" "CHL" "Table 2C" 8 32 -"CLSI 2013" "MIC" "B_STPHY" "CID" "Table 2C" 8 32 -"CLSI 2013" "MIC" "B_STPHY" "CIP" "Table 2C" 1 4 -"CLSI 2013" "MIC" "B_STPHY" "CLI" "Table 2C" 0.5 4 -"CLSI 2013" "MIC" "B_STPHY" "CLR" "Table 2C" 2 8 -"CLSI 2013" "MIC" "B_STPHY" "CMZ" "Table 2C" 16 64 -"CLSI 2013" "MIC" "B_STPHY" "CPD" "Table 2C" 2 8 -"CLSI 2013" "MIC" "B_STPHY" "CPR" "Table 2C" 8 32 -"CLSI 2013" "MIC" "B_STPHY" "CRO" "Table 2C" 8 64 -"CLSI 2013" "MIC" "B_STPHY" "CTT" "Table 2C" 16 64 -"CLSI 2013" "MIC" "B_STPHY" "CTX" "Table 2C" 8 64 -"CLSI 2013" "MIC" "B_STPHY" "CXA" "Table 2C" 4 32 -"CLSI 2013" "MIC" "Oral" "B_STPHY" "CXM" "Table 2C" 4 32 -"CLSI 2013" "MIC" "Intravenous" "B_STPHY" "CXM" "Table 2C" 8 32 -"CLSI 2013" "MIC" "Oral" "B_STPHY" "CXM" "Table 2C" 4 32 -"CLSI 2013" "MIC" "B_STPHY" "CZO" "Table 2C" 8 32 -"CLSI 2013" "MIC" "B_STPHY" "CZX" "Table 2C" 8 64 -"CLSI 2013" "MIC" "B_STPHY" "DAP" "Table 2C" 1 -"CLSI 2013" "MIC" "B_STPHY" "DIR" "Table 2C" 2 8 -"CLSI 2013" "MIC" "B_STPHY" "DOR" "Table 2C" 0.5 -"CLSI 2013" "MIC" "B_STPHY" "DOX" "Table 2C" 4 16 -"CLSI 2013" "MIC" "B_STPHY" "ENX" "Table 2C" 2 8 -"CLSI 2013" "MIC" "B_STPHY" "ERY" "Table 2C" 0.5 8 -"CLSI 2013" "MIC" "B_STPHY" "ETP" "Table 2C" 2 8 -"CLSI 2013" "MIC" "B_STPHY" "FEP" "Table 2C" 8 32 -"CLSI 2013" "MIC" "B_STPHY" "FLE" "Table 2C" 2 8 -"CLSI 2013" "MIC" "B_STPHY" "FOX" "Table 2C" 4 8 -"CLSI 2013" "MIC" "B_STPHY" "GAT" "Table 2C" 0.5 2 -"CLSI 2013" "MIC" "B_STPHY" "GEN" "Table 2C" 4 16 -"CLSI 2013" "MIC" "B_STPHY" "GRX" "Table 2C" 1 4 -"CLSI 2013" "MIC" "B_STPHY" "IPM" "Table 2C" 4 16 -"CLSI 2013" "MIC" "B_STPHY" "KAN" "Table 2C" 16 64 -"CLSI 2013" "MIC" "B_STPHY" "LNZ" "Table 2C" 4 8 -"CLSI 2013" "MIC" "B_STPHY" "LOM" "Table 2C" 2 8 -"CLSI 2013" "MIC" "B_STPHY" "LOR" "Table 2C" 8 32 -"CLSI 2013" "MIC" "B_STPHY" "LTM" "Table 2C" 8 64 -"CLSI 2013" "MIC" "B_STPHY" "LVX" "Table 2C" 1 4 -"CLSI 2013" "MIC" "B_STPHY" "MAN" "Table 2C" 8 32 -"CLSI 2013" "MIC" "B_STPHY" "MEM" "Table 2C" 4 16 -"CLSI 2013" "MIC" "B_STPHY" "MET" "Table 2C" 8 16 -"CLSI 2013" "MIC" "B_STPHY" "MFX" "Table 2C" 0.5 2 -"CLSI 2013" "MIC" "B_STPHY" "MNO" "Table 2C" 4 16 -"CLSI 2013" "MIC" "B_STPHY" "NAF" "Table 2C" 2 4 -"CLSI 2013" "MIC" "B_STPHY" "NET" "Table 2C" 8 32 -"CLSI 2013" "MIC" "B_STPHY" "NIT" "Table 2C" 32 128 -"CLSI 2013" "MIC" "B_STPHY" "NOR" "Table 2C" 4 16 -"CLSI 2013" "MIC" "B_STPHY" "OFX" "Table 2C" 1 4 -"CLSI 2013" "MIC" "B_STPHY" "OXA" "Table 2C" 2 4 -"CLSI 2013" "MIC" "B_STPHY" "PEN" "Table 2C" 0.125 0.25 -"CLSI 2013" "MIC" "B_STPHY" "QDA" "Table 2C" 1 4 -"CLSI 2013" "MIC" "B_STPHY" "RIF" "Table 2C" 1 4 -"CLSI 2013" "MIC" "B_STPHY" "SAM" "Table 2C" 8 32 -"CLSI 2013" "MIC" "B_STPHY" "SMX" "Table 2C" 256 512 -"CLSI 2013" "MIC" "B_STPHY" "SOX" "Table 2C" 256 512 -"CLSI 2013" "MIC" "B_STPHY" "SPX" "Table 2C" 0.5 2 -"CLSI 2013" "MIC" "B_STPHY" "SSS" "Table 2C" 256 512 -"CLSI 2013" "MIC" "B_STPHY" "SXT" "Table 2C" 2 4 -"CLSI 2013" "MIC" "B_STPHY" "TCC" "Table 2C" 8 16 -"CLSI 2013" "MIC" "B_STPHY" "TCY" "Table 2C" 4 16 -"CLSI 2013" "MIC" "B_STPHY" "TEC" "Table 2C" 8 32 -"CLSI 2013" "MIC" "B_STPHY" "TLT" "Table 2C" 1 4 -"CLSI 2013" "MIC" "B_STPHY" "TMP" "Table 2C" 8 16 -"CLSI 2013" "MIC" "B_STPHY" "TOB" "Table 2C" 4 16 -"CLSI 2013" "MIC" "B_STPHY" "TZP" "Table 2C" 8 16 -"CLSI 2013" "MIC" "B_STPHY" "VAN" "Table 2C" 4 32 -"CLSI 2013" "MIC" "B_STPHY_AURS" "CPT" "Table 2C" 1 4 -"CLSI 2013" "MIC" "B_STPHY_AURS" "FOX" "Table 2C" 4 8 -"CLSI 2013" "MIC" "B_STPHY_AURS" "OXA" "Table 2C" 2 4 -"CLSI 2013" "MIC" "B_STPHY_AURS" "VAN" "Table 2C" 2 16 -"CLSI 2013" "MIC" "B_STPHY_LGDN" "FOX" "Table 2C" 4 8 -"CLSI 2013" "MIC" "B_STPHY_LGDN" "OXA" "Table 2C" 2 4 -"CLSI 2013" "MIC" "B_STRPT" "AMC" "Table 2H-1" -"CLSI 2013" "MIC" "B_STRPT" "AMP" "M45 Table 1" 0.25 8 -"CLSI 2013" "MIC" "B_STRPT" "AMP" "Table 2H-1" 0.25 -"CLSI 2013" "MIC" "B_STRPT" "AMX" "Table 2H-1" -"CLSI 2013" "MIC" "B_STRPT" "AZM" "Table 2H-1" 0.5 2 -"CLSI 2013" "MIC" "B_STRPT" "CHL" "M45 Table 1" 4 8 -"CLSI 2013" "MIC" "B_STRPT" "CHL" "Table 2H-1" 4 16 -"CLSI 2013" "MIC" "B_STRPT" "CIP" "M45 Table 1" 1 4 -"CLSI 2013" "MIC" "B_STRPT" "CLI" "M45 Table 1" 0.25 1 -"CLSI 2013" "MIC" "B_STRPT" "CLI" "Table 2H-1" 0.25 1 -"CLSI 2013" "MIC" "B_STRPT" "CLR" "Table 2H-1" 0.25 1 -"CLSI 2013" "MIC" "B_STRPT" "CPT" "Table 2H-1" 0.5 -"CLSI 2013" "MIC" "B_STRPT" "CRO" "M45 Table 1" 1 4 -"CLSI 2013" "MIC" "B_STRPT" "CRO" "Table 2H-1" 0.5 -"CLSI 2013" "MIC" "B_STRPT" "CTX" "M45 Table 1" 1 4 -"CLSI 2013" "MIC" "B_STRPT" "CTX" "Table 2H-1" 0.5 -"CLSI 2013" "MIC" "B_STRPT" "CXM" "Table 2H-1" -"CLSI 2013" "MIC" "B_STRPT" "DAP" "Table 2H-1" -"CLSI 2013" "MIC" "B_STRPT" "DIR" "Table 2H-1" 0.5 2 -"CLSI 2013" "MIC" "B_STRPT" "DOR" "Table 2H-1" 0.125 -"CLSI 2013" "MIC" "B_STRPT" "ERY" "M45 Table 1" 0.25 1 -"CLSI 2013" "MIC" "B_STRPT" "ERY" "Table 2H-1" 0.25 1 -"CLSI 2013" "MIC" "B_STRPT" "ETP" "Table 2H-1" 1 -"CLSI 2013" "MIC" "B_STRPT" "FEP" "M45 Table 1" 1 4 -"CLSI 2013" "MIC" "B_STRPT" "FEP" "Table 2H-1" 0.5 -"CLSI 2013" "MIC" "B_STRPT" "GAT" "M45 Table 1" 1 4 -"CLSI 2013" "MIC" "B_STRPT" "GAT" "Table 2H-1" 1 4 -"CLSI 2013" "MIC" "B_STRPT" "GEM" "Table 2H-1" -"CLSI 2013" "MIC" "B_STRPT" "GRX" "Table 2H-1" 0.5 2 -"CLSI 2013" "MIC" "B_STRPT" "IPM" "M45 Table 1" 0.5 2 -"CLSI 2013" "MIC" "B_STRPT" "IPM" "Table 2H-1" -"CLSI 2013" "MIC" "B_STRPT" "LNZ" "Table 2H-1" 2 -"CLSI 2013" "MIC" "B_STRPT" "LVX" "M45 Table 1" 2 8 -"CLSI 2013" "MIC" "B_STRPT" "LVX" "Table 2H-1" 2 8 -"CLSI 2013" "MIC" "B_STRPT" "MEM" "M45 Table 1" 0.5 2 -"CLSI 2013" "MIC" "B_STRPT" "MEM" "Table 2H-1" 0.5 -"CLSI 2013" "MIC" "B_STRPT" "MFX" "Table 2H-1" -"CLSI 2013" "MIC" "B_STRPT" "OFX" "Table 2H-1" 2 8 -"CLSI 2013" "MIC" "B_STRPT" "PEN" "M45 Table 1" 0.125 4 -"CLSI 2013" "MIC" "B_STRPT" "PEN" "Table 2H-1" 0.125 -"CLSI 2013" "MIC" "B_STRPT" "QDA" "Table 2H-1" 1 4 -"CLSI 2013" "MIC" "B_STRPT" "RIF" "Table 2H-1" -"CLSI 2013" "MIC" "B_STRPT" "SPX" "Table 2H-1" -"CLSI 2013" "MIC" "B_STRPT" "SXT" "Table 2H-1" -"CLSI 2013" "MIC" "B_STRPT" "TCY" "Table 2H-1" 2 8 -"CLSI 2013" "MIC" "B_STRPT" "TLT" "Table 2H-1" -"CLSI 2013" "MIC" "B_STRPT" "TVA" "Table 2H-1" 1 4 -"CLSI 2013" "MIC" "B_STRPT" "VAN" "M45 Table 1" 1 -"CLSI 2013" "MIC" "B_STRPT" "VAN" "Table 2H-1" 1 -"CLSI 2013" "MIC" "Non-meningitis" "B_STRPT_PNMN" "AMC" "Table 2G" 2 8 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "AMP" "Table 2G" -"CLSI 2013" "MIC" "Non-meningitis" "B_STRPT_PNMN" "AMX" "Table 2G" 2 8 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "AZM" "Table 2G" 0.5 2 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "CDR" "Table 2G" 0.5 2 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "CEC" "Table 2G" 1 4 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "CHL" "Table 2G" 4 8 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "CIP" "Table 2G" -"CLSI 2013" "MIC" "B_STRPT_PNMN" "CLI" "Table 2G" 0.25 1 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "CLR" "Table 2G" 0.25 1 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "CPD" "Table 2G" 0.5 2 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "CPR" "Table 2G" 2 8 -"CLSI 2013" "MIC" "Non-meningitis" "B_STRPT_PNMN" "CPT" "Table 2G" 0.5 -"CLSI 2013" "MIC" "Meningitis" "B_STRPT_PNMN" "CRO" "Table 2G" 0.5 2 -"CLSI 2013" "MIC" "Non-meningitis" "B_STRPT_PNMN" "CRO" "Table 2G" 1 4 -"CLSI 2013" "MIC" "Meningitis" "B_STRPT_PNMN" "CTX" "Table 2G" 0.5 2 -"CLSI 2013" "MIC" "Non-meningitis" "B_STRPT_PNMN" "CTX" "Table 2G" 1 4 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "CXA" "Table 2G" 1 4 -"CLSI 2013" "MIC" "Oral" "B_STRPT_PNMN" "CXM" "Table 2G" 1 4 -"CLSI 2013" "MIC" "Parenteral" "B_STRPT_PNMN" "CXM" "Table 2G" 0.5 2 -"CLSI 2013" "MIC" "Oral" "B_STRPT_PNMN" "CXM" "Table 2G" 1 4 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "DIR" "Table 2G" 0.5 2 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "DOR" "Table 2G" 1 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "DOX" "Table 2G" 0.25 1 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "ERY" "Table 2G" 0.25 1 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "ETP" "Table 2G" 1 4 -"CLSI 2013" "MIC" "Meningitis" "B_STRPT_PNMN" "FEP" "Table 2G" 0.5 2 -"CLSI 2013" "MIC" "Non-meningitis" "B_STRPT_PNMN" "FEP" "Table 2G" 1 4 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "GAT" "Table 2G" 1 4 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "GEM" "Table 2G" 0.125 0.5 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "GRX" "Table 2G" 0.5 2 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "IPM" "Table 2G" 0.125 1 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "LNZ" "Table 2G" 2 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "LOR" "Table 2G" 2 8 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "LVX" "Table 2G" 2 8 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "MEM" "Table 2G" 0.25 1 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "MFX" "Table 2G" 1 4 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "NOR" "Table 2G" -"CLSI 2013" "MIC" "B_STRPT_PNMN" "OFX" "Table 2G" 2 8 -"CLSI 2013" "MIC" "Meningitis" "B_STRPT_PNMN" "PEN" "Table 2G" 0.064 0.12 -"CLSI 2013" "MIC" "Non-meningitis" "B_STRPT_PNMN" "PEN" "Table 2G" 2 8 -"CLSI 2013" "MIC" "Oral" "B_STRPT_PNMN" "PEN" "Table 2G" 0.064 2 -"CLSI 2013" "MIC" "Oral" "B_STRPT_PNMN" "PNV" "Table 2G" 0.064 2 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "QDA" "Table 2G" 1 4 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "RIF" "Table 2G" 1 4 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "SAM" "Table 2G" -"CLSI 2013" "MIC" "B_STRPT_PNMN" "SPX" "Table 2G" 0.5 2 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "SXT" "Table 2G" 0.5 4 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "TCY" "Table 2G" 1 4 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "TLT" "Table 2G" 1 4 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "TVA" "Table 2G" 1 4 -"CLSI 2013" "MIC" "B_STRPT_PNMN" "VAN" "Table 2G" 1 -"CLSI 2013" "MIC" "B_STRPT_VIRI" "AMP" "Table 2H-2" 0.25 8 -"CLSI 2013" "MIC" "B_STRPT_VIRI" "AZM" "Table 2H-2" 0.5 2 -"CLSI 2013" "MIC" "B_STRPT_VIRI" "CHL" "Table 2H-2" 4 16 -"CLSI 2013" "MIC" "B_STRPT_VIRI" "CLI" "Table 2H-2" 0.25 1 -"CLSI 2013" "MIC" "B_STRPT_VIRI" "CLR" "Table 2H-2" 0.25 1 -"CLSI 2013" "MIC" "B_STRPT_VIRI" "CRO" "Table 2H-2" 1 4 -"CLSI 2013" "MIC" "B_STRPT_VIRI" "CTX" "Table 2H-2" 1 4 -"CLSI 2013" "MIC" "B_STRPT_VIRI" "DAP" "Table 2H-2" 1 -"CLSI 2013" "MIC" "B_STRPT_VIRI" "DIR" "Table 2H-2" 0.5 2 -"CLSI 2013" "MIC" "B_STRPT_VIRI" "DOR" "Table 2H-2" 1 -"CLSI 2013" "MIC" "B_STRPT_VIRI" "ERY" "Table 2H-2" 0.25 1 -"CLSI 2013" "MIC" "B_STRPT_VIRI" "ETP" "Table 2H-2" 1 -"CLSI 2013" "MIC" "B_STRPT_VIRI" "FEP" "Table 2H-2" 1 4 -"CLSI 2013" "MIC" "B_STRPT_VIRI" "GAT" "Table 2H-2" 1 4 -"CLSI 2013" "MIC" "B_STRPT_VIRI" "GRX" "Table 2H-2" 0.5 2 -"CLSI 2013" "MIC" "B_STRPT_VIRI" "LNZ" "Table 2H-2" 2 -"CLSI 2013" "MIC" "B_STRPT_VIRI" "LVX" "Table 2H-2" 2 8 -"CLSI 2013" "MIC" "B_STRPT_VIRI" "MEM" "Table 2H-2" 0.5 -"CLSI 2013" "MIC" "B_STRPT_VIRI" "OFX" "Table 2H-2" 2 8 -"CLSI 2013" "MIC" "B_STRPT_VIRI" "PEN" "Table 2H-2" 0.125 4 -"CLSI 2013" "MIC" "B_STRPT_VIRI" "QDA" "Table 2H-2" 1 4 -"CLSI 2013" "MIC" "B_STRPT_VIRI" "TCY" "Table 2H-2" 2 8 -"CLSI 2013" "MIC" "B_STRPT_VIRI" "TVA" "Table 2H-2" 1 4 -"CLSI 2013" "MIC" "B_STRPT_VIRI" "VAN" "Table 2H-2" 1 -"CLSI 2013" "MIC" "B_VIBRI_CHLR" "AZM" "M45 Table 14" "30ug" 2 -"CLSI 2013" "MIC" "B_VIBRI_CHLR" "DOX" "M45 Table 14" "30ug" 4 16 -"CLSI 2013" "MIC" "B_YERSN_PSTS" "CHL" "M45 Table 16" 8 32 -"CLSI 2013" "MIC" "B_YERSN_PSTS" "CIP" "M45 Table 16" 0.25 -"CLSI 2013" "MIC" "B_YERSN_PSTS" "DOX" "M45 Table 16" 4 16 -"CLSI 2013" "MIC" "B_YERSN_PSTS" "GEN" "M45 Table 16" 4 16 -"CLSI 2013" "MIC" "B_YERSN_PSTS" "LVX" "M45 Table 16" 0.25 -"CLSI 2013" "MIC" "B_YERSN_PSTS" "STR" "M45 Table 16" 4 16 -"CLSI 2013" "MIC" "B_YERSN_PSTS" "SXT" "M45 Table 16" 2 4 -"CLSI 2013" "MIC" "B_YERSN_PSTS" "TCY" "M45 Table 16" 4 16 -"CLSI 2012" "MIC" "B_ABTRP" "GAT" "M45 Table 1" 1 4 -"CLSI 2012" "MIC" "B_ABTRP" "IPM" "M45 Table 1" 0.5 2 -"CLSI 2012" "MIC" "B_ABTRP" "LVX" "M45 Table 1" 2 8 -"CLSI 2012" "MIC" "B_ABTRP" "MEM" "M45 Table 1" 0.5 2 -"CLSI 2012" "MIC" "B_ABTRP" "PEN" "M45 Table 1" 0.125 4 -"CLSI 2012" "MIC" "B_ABTRP" "VAN" "M45 Table 1" 1 -"CLSI 2012" "MIC" "B_ACNTB" "AMK" "Table 2B-2" 16 64 -"CLSI 2012" "MIC" "B_ACNTB" "CAZ" "Table 2B-2" 8 32 -"CLSI 2012" "MIC" "B_ACNTB" "CIP" "Table 2B-2" 1 4 -"CLSI 2012" "MIC" "B_ACNTB" "COL" "Table 2B-2" 2 4 -"CLSI 2012" "MIC" "B_ACNTB" "CRO" "Table 2B-2" 8 64 -"CLSI 2012" "MIC" "B_ACNTB" "CTX" "Table 2B-2" 8 64 -"CLSI 2012" "MIC" "B_ACNTB" "DOX" "Table 2B-2" 4 16 -"CLSI 2012" "MIC" "B_ACNTB" "ETP" "Table 2B-2" -"CLSI 2012" "MIC" "B_ACNTB" "FEP" "Table 2B-2" 8 32 -"CLSI 2012" "MIC" "B_ACNTB" "GAT" "Table 2B-2" 2 8 -"CLSI 2012" "MIC" "B_ACNTB" "GEN" "Table 2B-2" 4 16 -"CLSI 2012" "MIC" "B_ACNTB" "IPM" "Table 2B-2" 4 16 -"CLSI 2012" "MIC" "B_ACNTB" "LVX" "Table 2B-2" 2 8 -"CLSI 2012" "MIC" "B_ACNTB" "MEM" "Table 2B-2" 4 16 -"CLSI 2012" "MIC" "B_ACNTB" "MEZ" "Table 2B-2" 16 128 -"CLSI 2012" "MIC" "B_ACNTB" "MNO" "Table 2B-2" 4 16 -"CLSI 2012" "MIC" "B_ACNTB" "NET" "Table 2B-2" 8 32 -"CLSI 2012" "MIC" "B_ACNTB" "PIP" "Table 2B-2" 16 128 -"CLSI 2012" "MIC" "B_ACNTB" "PLB" "Table 2B-2" 2 4 -"CLSI 2012" "MIC" "B_ACNTB" "SAM" "Table 2B-2" 8 32 -"CLSI 2012" "MIC" "B_ACNTB" "SXT" "Table 2B-2" 2 4 -"CLSI 2012" "MIC" "B_ACNTB" "TCC" "Table 2B-2" 16 128 -"CLSI 2012" "MIC" "B_ACNTB" "TCY" "Table 2B-2" 4 16 -"CLSI 2012" "MIC" "B_ACNTB" "TIC" "Table 2B-2" 16 128 -"CLSI 2012" "MIC" "B_ACNTB" "TOB" "Table 2B-2" 4 16 -"CLSI 2012" "MIC" "B_ACNTB" "TZP" "Table 2B-2" 16 128 -"CLSI 2012" "MIC" "B_ACTNB_PLRP" "TIL" "Vet Table" 16 32 -"CLSI 2012" "MIC" "B_AERMN" "AMC" "M45 Table 2" 8 32 -"CLSI 2012" "MIC" "B_AERMN" "AMK" "M45 Table 2" 16 64 -"CLSI 2012" "MIC" "B_AERMN" "ATM" "M45 Table 2" 4 16 -"CLSI 2012" "MIC" "B_AERMN" "CAZ" "M45 Table 2" 4 16 -"CLSI 2012" "MIC" "B_AERMN" "CHL" "M45 Table 2" 8 32 -"CLSI 2012" "MIC" "B_AERMN" "CIP" "M45 Table 2" 1 4 -"CLSI 2012" "MIC" "B_AERMN" "CRO" "M45 Table 2" 1 4 -"CLSI 2012" "MIC" "B_AERMN" "CTX" "M45 Table 2" 1 4 -"CLSI 2012" "MIC" "B_AERMN" "CXM" "M45 Table 2" 8 32 -"CLSI 2012" "MIC" "B_AERMN" "CZO" "M45 Table 2" 1 4 -"CLSI 2012" "MIC" "B_AERMN" "ETP" "M45 Table 2" 2 8 -"CLSI 2012" "MIC" "B_AERMN" "FEP" "M45 Table 2" 8 32 -"CLSI 2012" "MIC" "B_AERMN" "FOX" "M45 Table 2" 8 32 -"CLSI 2012" "MIC" "B_AERMN" "GEN" "M45 Table 2" 4 16 -"CLSI 2012" "MIC" "B_AERMN" "IPM" "M45 Table 2" 4 16 -"CLSI 2012" "MIC" "B_AERMN" "LVX" "M45 Table 2" 2 8 -"CLSI 2012" "MIC" "B_AERMN" "MEM" "M45 Table 2" 4 16 -"CLSI 2012" "MIC" "B_AERMN" "SAM" "M45 Table 2" 8 32 -"CLSI 2012" "MIC" "B_AERMN" "SXT" "M45 Table 2" 2 4 -"CLSI 2012" "MIC" "B_AERMN" "TCY" "M45 Table 2" 4 16 -"CLSI 2012" "MIC" "B_AERMN" "TZP" "M45 Table 2" 16 128 -"CLSI 2012" "MIC" "B_AGGRG" "AMC" "M45 Table 7" 4 8 -"CLSI 2012" "MIC" "B_AGGRG" "AMP" "M45 Table 7" 1 4 -"CLSI 2012" "MIC" "B_AGGRG" "AZM" "M45 Table 7" 4 -"CLSI 2012" "MIC" "B_AGGRG" "CHL" "M45 Table 7" 4 16 -"CLSI 2012" "MIC" "B_AGGRG" "CIP" "M45 Table 7" 1 4 -"CLSI 2012" "MIC" "B_AGGRG" "CLR" "M45 Table 7" 8 32 -"CLSI 2012" "MIC" "B_AGGRG" "CRO" "M45 Table 7" 2 -"CLSI 2012" "MIC" "B_AGGRG" "CTX" "M45 Table 7" 2 -"CLSI 2012" "MIC" "B_AGGRG" "IPM" "M45 Table 7" 4 16 -"CLSI 2012" "MIC" "B_AGGRG" "LVX" "M45 Table 7" 2 8 -"CLSI 2012" "MIC" "B_AGGRG" "MEM" "M45 Table 7" 4 16 -"CLSI 2012" "MIC" "B_AGGRG" "PEN" "M45 Table 7" 1 4 -"CLSI 2012" "MIC" "B_AGGRG" "RIF" "M45 Table 7" 1 4 -"CLSI 2012" "MIC" "B_AGGRG" "SAM" "M45 Table 7" 2 4 -"CLSI 2012" "MIC" "B_AGGRG" "SXT" "M45 Table 7" 0.5 4 -"CLSI 2012" "MIC" "B_AGGRG" "TCY" "M45 Table 7" 2 8 -"CLSI 2012" "MIC" "Canine, feline" "B_ALLSC" "ENR" "Vet Table" 0.5 4 -"CLSI 2012" "MIC" "B_ANRSL" "AMC" "Table 2J" 4 16 -"CLSI 2012" "MIC" "B_ANRSL" "AMP" "Table 2J" 0.5 2 -"CLSI 2012" "MIC" "B_ANRSL" "CFP" "Table 2J" 16 64 -"CLSI 2012" "MIC" "B_ANRSL" "CHL" "Table 2J" 8 32 -"CLSI 2012" "MIC" "B_ANRSL" "CLI" "Table 2J" 2 8 -"CLSI 2012" "MIC" "B_ANRSL" "CMZ" "Table 2J" 16 64 -"CLSI 2012" "MIC" "B_ANRSL" "CRO" "Table 2J" 16 64 -"CLSI 2012" "MIC" "B_ANRSL" "CTT" "Table 2J" 16 64 -"CLSI 2012" "MIC" "B_ANRSL" "CTX" "Table 2J" 16 64 -"CLSI 2012" "MIC" "B_ANRSL" "CZX" "Table 2J" 32 128 -"CLSI 2012" "MIC" "B_ANRSL" "DOR" "Table 2J" 2 8 -"CLSI 2012" "MIC" "B_ANRSL" "ETP" "Table 2J" 4 16 -"CLSI 2012" "MIC" "B_ANRSL" "FOX" "Table 2J" 16 64 -"CLSI 2012" "MIC" "B_ANRSL" "IPM" "Table 2J" 4 16 -"CLSI 2012" "MIC" "B_ANRSL" "LTM" "Table 2J" 2 8 -"CLSI 2012" "MIC" "B_ANRSL" "MEM" "Table 2J" 4 16 -"CLSI 2012" "MIC" "B_ANRSL" "MEZ" "Table 2J" 32 128 -"CLSI 2012" "MIC" "B_ANRSL" "MTR" "Table 2J" 8 32 -"CLSI 2012" "MIC" "B_ANRSL" "PEN" "Table 2J" 0.5 2 -"CLSI 2012" "MIC" "B_ANRSL" "PIP" "Table 2J" 32 128 -"CLSI 2012" "MIC" "B_ANRSL" "SAM" "Table 2J" 8 32 -"CLSI 2012" "MIC" "B_ANRSL" "TCC" "Table 2J" 32 128 -"CLSI 2012" "MIC" "B_ANRSL" "TCY" "Table 2J" 4 16 -"CLSI 2012" "MIC" "B_ANRSL" "TIC" "Table 2J" 32 128 -"CLSI 2012" "MIC" "B_ANRSL" "TZP" "Table 2J" 32 128 -"CLSI 2012" "MIC" "B_BCLLS" "AMK" "M45 Table 3" 16 64 -"CLSI 2012" "MIC" "B_BCLLS" "AMP" "M45 Table 3" 0.25 0.5 -"CLSI 2012" "MIC" "B_BCLLS" "CAZ" "M45 Table 3" 8 32 -"CLSI 2012" "MIC" "B_BCLLS" "CHL" "M45 Table 3" 8 32 -"CLSI 2012" "MIC" "B_BCLLS" "CIP" "M45 Table 3" 1 4 -"CLSI 2012" "MIC" "B_BCLLS" "CLI" "M45 Table 3" 0.5 4 -"CLSI 2012" "MIC" "B_BCLLS" "CRO" "M45 Table 3" 8 64 -"CLSI 2012" "MIC" "B_BCLLS" "CTX" "M45 Table 3" 8 64 -"CLSI 2012" "MIC" "B_BCLLS" "CZO" "M45 Table 3" 8 16 -"CLSI 2012" "MIC" "B_BCLLS" "ERY" "M45 Table 3" 0.5 8 -"CLSI 2012" "MIC" "B_BCLLS" "GEN" "M45 Table 3" 4 16 -"CLSI 2012" "MIC" "B_BCLLS" "IPM" "M45 Table 3" 4 16 -"CLSI 2012" "MIC" "B_BCLLS" "LVX" "M45 Table 3" 2 8 -"CLSI 2012" "MIC" "B_BCLLS" "PEN" "M45 Table 3" 0.125 0.25 -"CLSI 2012" "MIC" "B_BCLLS" "RIF" "M45 Table 3" 1 4 -"CLSI 2012" "MIC" "B_BCLLS" "SXT" "M45 Table 3" 2 4 -"CLSI 2012" "MIC" "B_BCLLS" "TCY" "M45 Table 3" 4 16 -"CLSI 2012" "MIC" "B_BCLLS" "VAN" "M45 Table 3" 4 -"CLSI 2012" "MIC" "B_BCLLS_ANTH" "AMK" "M45 Table 16" -"CLSI 2012" "MIC" "B_BCLLS_ANTH" "AMP" "M45 Table 16" -"CLSI 2012" "MIC" "B_BCLLS_ANTH" "CAZ" "M45 Table 16" -"CLSI 2012" "MIC" "B_BCLLS_ANTH" "CHL" "M45 Table 16" -"CLSI 2012" "MIC" "B_BCLLS_ANTH" "CIP" "M45 Table 16" 0.25 -"CLSI 2012" "MIC" "B_BCLLS_ANTH" "CLI" "M45 Table 16" -"CLSI 2012" "MIC" "B_BCLLS_ANTH" "CRO" "M45 Table 16" -"CLSI 2012" "MIC" "B_BCLLS_ANTH" "CTX" "M45 Table 16" -"CLSI 2012" "MIC" "B_BCLLS_ANTH" "CZO" "M45 Table 16" -"CLSI 2012" "MIC" "B_BCLLS_ANTH" "DOX" "M45 Table 16" 1 -"CLSI 2012" "MIC" "B_BCLLS_ANTH" "ERY" "M45 Table 16" -"CLSI 2012" "MIC" "B_BCLLS_ANTH" "GEN" "M45 Table 16" -"CLSI 2012" "MIC" "B_BCLLS_ANTH" "IPM" "M45 Table 16" -"CLSI 2012" "MIC" "B_BCLLS_ANTH" "LVX" "M45 Table 16" 0.25 -"CLSI 2012" "MIC" "B_BCLLS_ANTH" "PEN" "M45 Table 16" 0.125 0.25 -"CLSI 2012" "MIC" "B_BCLLS_ANTH" "RIF" "M45 Table 16" -"CLSI 2012" "MIC" "B_BCLLS_ANTH" "SXT" "M45 Table 16" -"CLSI 2012" "MIC" "B_BCLLS_ANTH" "TCY" "M45 Table 16" 1 -"CLSI 2012" "MIC" "B_BCLLS_ANTH" "VAN" "M45 Table 16" -"CLSI 2012" "MIC" "B_BRCLL" "DOX" "M45 Table 16" 1 -"CLSI 2012" "MIC" "B_BRCLL" "GEN" "M45 Table 16" 4 -"CLSI 2012" "MIC" "B_BRCLL" "STR" "M45 Table 16" 8 -"CLSI 2012" "MIC" "B_BRCLL" "SXT" "M45 Table 16" 2 -"CLSI 2012" "MIC" "B_BRCLL" "TCY" "M45 Table 16" 1 -"CLSI 2012" "MIC" "B_BRKHL_CEPC" "CAZ" "Table 2B-3" 8 32 -"CLSI 2012" "MIC" "B_BRKHL_CEPC" "CHL" "Table 2B-3" 8 32 -"CLSI 2012" "MIC" "B_BRKHL_CEPC" "LVX" "Table 2B-3" 2 8 -"CLSI 2012" "MIC" "B_BRKHL_CEPC" "MEM" "Table 2B-3" 4 16 -"CLSI 2012" "MIC" "B_BRKHL_CEPC" "MNO" "Table 2B-3" 4 16 -"CLSI 2012" "MIC" "B_BRKHL_CEPC" "SXT" "Table 2B-3" 2 4 -"CLSI 2012" "MIC" "B_BRKHL_CEPC" "TCC" "Table 2B-3" 16 128 -"CLSI 2012" "MIC" "B_BRKHL_MALL" "CAZ" "M45 Table 16" 8 32 -"CLSI 2012" "MIC" "B_BRKHL_MALL" "DOX" "M45 Table 16" 4 16 -"CLSI 2012" "MIC" "B_BRKHL_MALL" "IPM" "M45 Table 16" 4 16 -"CLSI 2012" "MIC" "B_BRKHL_MALL" "TCY" "M45 Table 16" 4 16 -"CLSI 2012" "MIC" "B_BRKHL_PSDM" "AMC" "M45 Table 16" 8 32 -"CLSI 2012" "MIC" "B_BRKHL_PSDM" "CAZ" "M45 Table 16" 8 32 -"CLSI 2012" "MIC" "B_BRKHL_PSDM" "DOX" "M45 Table 16" 4 16 -"CLSI 2012" "MIC" "B_BRKHL_PSDM" "IPM" "M45 Table 16" 4 16 -"CLSI 2012" "MIC" "B_BRKHL_PSDM" "SXT" "M45 Table 16" 2 4 -"CLSI 2012" "MIC" "B_BRKHL_PSDM" "TCY" "M45 Table 16" 4 16 -"CLSI 2012" "MIC" "B_CMPYL" "CIP" "M45 Table 3" 1 4 -"CLSI 2012" "MIC" "B_CMPYL" "DOX" "M45 Table 3" 2 8 -"CLSI 2012" "MIC" "B_CMPYL" "ERY" "M45 Table 3" 8 32 -"CLSI 2012" "MIC" "B_CMPYL" "TCY" "M45 Table 3" 4 16 -"CLSI 2012" "MIC" "B_CRDBC" "AMC" "M45 Table 7" 4 8 -"CLSI 2012" "MIC" "B_CRDBC" "AMP" "M45 Table 7" 1 4 -"CLSI 2012" "MIC" "B_CRDBC" "AZM" "M45 Table 7" 4 -"CLSI 2012" "MIC" "B_CRDBC" "CHL" "M45 Table 7" 4 16 -"CLSI 2012" "MIC" "B_CRDBC" "CIP" "M45 Table 7" 1 4 -"CLSI 2012" "MIC" "B_CRDBC" "CLR" "M45 Table 7" 8 32 -"CLSI 2012" "MIC" "B_CRDBC" "CRO" "M45 Table 7" 2 -"CLSI 2012" "MIC" "B_CRDBC" "CTX" "M45 Table 7" 2 -"CLSI 2012" "MIC" "B_CRDBC" "IPM" "M45 Table 7" 0.5 2 -"CLSI 2012" "MIC" "B_CRDBC" "LVX" "M45 Table 7" 2 8 -"CLSI 2012" "MIC" "B_CRDBC" "MEM" "M45 Table 7" 0.5 2 -"CLSI 2012" "MIC" "B_CRDBC" "PEN" "M45 Table 7" 1 4 -"CLSI 2012" "MIC" "B_CRDBC" "RIF" "M45 Table 7" 1 4 -"CLSI 2012" "MIC" "B_CRDBC" "SAM" "M45 Table 7" 2 4 -"CLSI 2012" "MIC" "B_CRDBC" "SXT" "M45 Table 7" 0.5 4 -"CLSI 2012" "MIC" "B_CRDBC" "TCY" "M45 Table 7" 2 8 -"CLSI 2012" "MIC" "B_EKNLL" "AMC" "M45 Table 7" 4 8 -"CLSI 2012" "MIC" "B_EKNLL" "AMP" "M45 Table 7" 1 4 -"CLSI 2012" "MIC" "B_EKNLL" "AZM" "M45 Table 7" 4 -"CLSI 2012" "MIC" "B_EKNLL" "CHL" "M45 Table 7" 4 16 -"CLSI 2012" "MIC" "B_EKNLL" "CIP" "M45 Table 7" 1 4 -"CLSI 2012" "MIC" "B_EKNLL" "CLR" "M45 Table 7" 8 32 -"CLSI 2012" "MIC" "B_EKNLL" "CRO" "M45 Table 7" 2 -"CLSI 2012" "MIC" "B_EKNLL" "CTX" "M45 Table 7" 2 -"CLSI 2012" "MIC" "B_EKNLL" "IPM" "M45 Table 7" 0.5 2 -"CLSI 2012" "MIC" "B_EKNLL" "LVX" "M45 Table 7" 2 8 -"CLSI 2012" "MIC" "B_EKNLL" "MEM" "M45 Table 7" 0.5 2 -"CLSI 2012" "MIC" "B_EKNLL" "PEN" "M45 Table 7" 1 4 -"CLSI 2012" "MIC" "B_EKNLL" "RIF" "M45 Table 7" 1 4 -"CLSI 2012" "MIC" "B_EKNLL" "SAM" "M45 Table 7" 2 4 -"CLSI 2012" "MIC" "B_EKNLL" "SXT" "M45 Table 7" 0.5 4 -"CLSI 2012" "MIC" "B_EKNLL" "TCY" "M45 Table 7" 2 8 -"CLSI 2012" "MIC" "B_ENTRC" "AMP" "Table 2D" 8 16 -"CLSI 2012" "MIC" "B_ENTRC" "CHL" "Table 2D" 8 32 -"CLSI 2012" "MIC" "B_ENTRC" "CIP" "Table 2D" 1 4 -"CLSI 2012" "MIC" "B_ENTRC" "DAP" "Table 2D" 4 -"CLSI 2012" "MIC" "B_ENTRC" "DOX" "Table 2D" 4 16 -"CLSI 2012" "MIC" "B_ENTRC" "ERY" "Table 2D" 0.5 8 -"CLSI 2012" "MIC" "B_ENTRC" "FOS" "Table 2D" 64 256 -"CLSI 2012" "MIC" "B_ENTRC" "GAT" "Table 2D" 2 8 -"CLSI 2012" "MIC" "B_ENTRC" "GEH" "Table 2D" 512 512 -"CLSI 2012" "MIC" "B_ENTRC" "GEN" "Table 2D" 512 512 -"CLSI 2012" "MIC" "B_ENTRC" "LNZ" "Table 2D" 2 8 -"CLSI 2012" "MIC" "B_ENTRC" "LVX" "Table 2D" 2 8 -"CLSI 2012" "MIC" "B_ENTRC" "MNO" "Table 2D" 4 16 -"CLSI 2012" "MIC" "B_ENTRC" "NIT" "Table 2D" 32 128 -"CLSI 2012" "MIC" "B_ENTRC" "NOR" "Table 2D" 4 16 -"CLSI 2012" "MIC" "B_ENTRC" "PEN" "Table 2D" 8 16 -"CLSI 2012" "MIC" "B_ENTRC" "QDA" "Table 2D" 1 4 -"CLSI 2012" "MIC" "B_ENTRC" "RIF" "Table 2D" 1 4 -"CLSI 2012" "MIC" "B_ENTRC" "STH" "Table 2D" 1024 1024 -"CLSI 2012" "MIC" "B_ENTRC" "STR" "Table 2D" 1024 1024 -"CLSI 2012" "MIC" "B_ENTRC" "TCY" "Table 2D" 4 16 -"CLSI 2012" "MIC" "B_ENTRC" "TEC" "Table 2D" 8 32 -"CLSI 2012" "MIC" "B_ENTRC" "VAN" "Table 2D" 4 32 -"CLSI 2012" "MIC" "B_ERYSP_RHSP" "AMP" "M45 Table 6" 0.25 -"CLSI 2012" "MIC" "B_ERYSP_RHSP" "CIP" "M45 Table 6" 1 -"CLSI 2012" "MIC" "B_ERYSP_RHSP" "CLI" "M45 Table 6" 0.25 1 -"CLSI 2012" "MIC" "B_ERYSP_RHSP" "CRO" "M45 Table 6" 1 -"CLSI 2012" "MIC" "B_ERYSP_RHSP" "CTX" "M45 Table 6" 1 -"CLSI 2012" "MIC" "B_ERYSP_RHSP" "ERY" "M45 Table 6" 0.25 1 -"CLSI 2012" "MIC" "B_ERYSP_RHSP" "FEP" "M45 Table 6" 1 -"CLSI 2012" "MIC" "B_ERYSP_RHSP" "IPM" "M45 Table 6" 0.5 -"CLSI 2012" "MIC" "B_ERYSP_RHSP" "LVX" "M45 Table 6" 2 -"CLSI 2012" "MIC" "B_ERYSP_RHSP" "MEM" "M45 Table 6" 0.5 -"CLSI 2012" "MIC" "B_ERYSP_RHSP" "PEN" "M45 Table 6" 0.125 -"CLSI 2012" "MIC" "B_FRNCS_TLRN" "CHL" "M45 Table 16" 8 -"CLSI 2012" "MIC" "B_FRNCS_TLRN" "CIP" "M45 Table 16" 0.5 -"CLSI 2012" "MIC" "B_FRNCS_TLRN" "DOX" "M45 Table 16" 4 -"CLSI 2012" "MIC" "B_FRNCS_TLRN" "GEN" "M45 Table 16" 4 -"CLSI 2012" "MIC" "B_FRNCS_TLRN" "LVX" "M45 Table 16" 0.5 -"CLSI 2012" "MIC" "B_FRNCS_TLRN" "STR" "M45 Table 16" 8 -"CLSI 2012" "MIC" "B_FRNCS_TLRN" "TCY" "M45 Table 16" 4 -"CLSI 2012" "MIC" "B_GRNLC" "AMP" "M45 Table 1" 0.25 8 -"CLSI 2012" "MIC" "B_GRNLC" "CHL" "M45 Table 1" 4 8 -"CLSI 2012" "MIC" "B_GRNLC" "CIP" "M45 Table 1" 1 4 -"CLSI 2012" "MIC" "B_GRNLC" "CLI" "M45 Table 1" 0.25 1 -"CLSI 2012" "MIC" "B_GRNLC" "CRO" "M45 Table 1" 1 4 -"CLSI 2012" "MIC" "B_GRNLC" "CTX" "M45 Table 1" 1 4 -"CLSI 2012" "MIC" "B_GRNLC" "ERY" "M45 Table 1" 0.25 1 -"CLSI 2012" "MIC" "B_GRNLC" "FEP" "M45 Table 1" 1 4 -"CLSI 2012" "MIC" "B_GRNLC" "GAT" "M45 Table 1" 1 4 -"CLSI 2012" "MIC" "B_GRNLC" "IPM" "M45 Table 1" 0.5 2 -"CLSI 2012" "MIC" "B_GRNLC" "LVX" "M45 Table 1" 2 8 -"CLSI 2012" "MIC" "B_GRNLC" "MEM" "M45 Table 1" 0.5 2 -"CLSI 2012" "MIC" "B_GRNLC" "PEN" "M45 Table 1" 0.125 4 -"CLSI 2012" "MIC" "B_GRNLC" "VAN" "M45 Table 1" 1 -"CLSI 2012" "MIC" "B_HLCBCT_PYLR" "CLR" "M45 Table 8" 0.25 1 -"CLSI 2012" "MIC" "B_HMPHL" "AMC" "Table 2E" 4 8 -"CLSI 2012" "MIC" "B_HMPHL" "AMP" "Table 2E" 1 4 -"CLSI 2012" "MIC" "B_HMPHL" "ATM" "Table 2E" 2 -"CLSI 2012" "MIC" "B_HMPHL" "AZM" "Table 2E" 4 -"CLSI 2012" "MIC" "B_HMPHL" "CAT" "Table 2E" 4 16 -"CLSI 2012" "MIC" "B_HMPHL" "CAZ" "Table 2E" 2 -"CLSI 2012" "MIC" "B_HMPHL" "CDR" "Table 2E" 1 -"CLSI 2012" "MIC" "B_HMPHL" "CEC" "Table 2E" 8 32 -"CLSI 2012" "MIC" "B_HMPHL" "CFM" "Table 2E" 1 -"CLSI 2012" "MIC" "B_HMPHL" "CHL" "Table 2E" 2 8 -"CLSI 2012" "MIC" "B_HMPHL" "CID" "Table 2E" 4 16 -"CLSI 2012" "MIC" "B_HMPHL" "CIP" "Table 2E" 1 -"CLSI 2012" "MIC" "B_HMPHL" "CLR" "Table 2E" 8 32 -"CLSI 2012" "MIC" "B_HMPHL" "CPD" "Table 2E" 2 -"CLSI 2012" "MIC" "B_HMPHL" "CPR" "Table 2E" 8 32 -"CLSI 2012" "MIC" "B_HMPHL" "CRO" "Table 2E" 2 -"CLSI 2012" "MIC" "B_HMPHL" "CTB" "Table 2E" 2 -"CLSI 2012" "MIC" "B_HMPHL" "CTX" "Table 2E" 2 -"CLSI 2012" "MIC" "B_HMPHL" "CXA" "Table 2E" 4 16 -"CLSI 2012" "MIC" "B_HMPHL" "CXM" "Table 2E" 4 16 -"CLSI 2012" "MIC" "B_HMPHL" "CZX" "Table 2E" 2 -"CLSI 2012" "MIC" "B_HMPHL" "DOR" "Table 2E" 1 -"CLSI 2012" "MIC" "B_HMPHL" "ETP" "Table 2E" 0.5 -"CLSI 2012" "MIC" "B_HMPHL" "FEP" "Table 2E" 2 -"CLSI 2012" "MIC" "B_HMPHL" "FLE" "Table 2E" 2 -"CLSI 2012" "MIC" "B_HMPHL" "GAT" "Table 2E" 1 -"CLSI 2012" "MIC" "B_HMPHL" "GEM" "Table 2E" 0.125 -"CLSI 2012" "MIC" "B_HMPHL" "GRX" "Table 2E" 0.5 -"CLSI 2012" "MIC" "B_HMPHL" "IPM" "Table 2E" 4 -"CLSI 2012" "MIC" "B_HMPHL" "LOM" "Table 2E" 2 -"CLSI 2012" "MIC" "B_HMPHL" "LOR" "Table 2E" 8 32 -"CLSI 2012" "MIC" "B_HMPHL" "LVX" "Table 2E" 2 -"CLSI 2012" "MIC" "B_HMPHL" "MAN" "Table 2E" 4 16 -"CLSI 2012" "MIC" "B_HMPHL" "MEM" "Table 2E" 0.5 -"CLSI 2012" "MIC" "B_HMPHL" "MFX" "Table 2E" 1 -"CLSI 2012" "MIC" "B_HMPHL" "OFX" "Table 2E" 2 -"CLSI 2012" "MIC" "B_HMPHL" "RIF" "Table 2E" 1 4 -"CLSI 2012" "MIC" "B_HMPHL" "SAM" "Table 2E" 2 4 -"CLSI 2012" "MIC" "B_HMPHL" "SPX" "Table 2E" 0.25 -"CLSI 2012" "MIC" "B_HMPHL" "SXT" "Table 2E" 0.5 4 -"CLSI 2012" "MIC" "B_HMPHL" "TCY" "Table 2E" 2 8 -"CLSI 2012" "MIC" "B_HMPHL" "TLT" "Table 2E" 4 16 -"CLSI 2012" "MIC" "B_HMPHL" "TVA" "Table 2E" 1 -"CLSI 2012" "MIC" "B_HMPHL" "TZP" "Table 2E" 1 2 -"CLSI 2012" "MIC" "B_HSTPH_SOMN" "ENR" "Vet Table" 0.25 2 -"CLSI 2012" "MIC" "B_KGLLA" "AZM" "M45 Table 7" 4 -"CLSI 2012" "MIC" "B_KGLLA" "CHL" "M45 Table 7" 4 16 -"CLSI 2012" "MIC" "B_KGLLA" "CIP" "M45 Table 7" 1 4 -"CLSI 2012" "MIC" "B_KGLLA" "CLR" "M45 Table 7" 8 32 -"CLSI 2012" "MIC" "B_KGLLA" "CRO" "M45 Table 7" 2 -"CLSI 2012" "MIC" "B_KGLLA" "CTX" "M45 Table 7" 2 -"CLSI 2012" "MIC" "B_KGLLA" "IPM" "M45 Table 7" 0.5 2 -"CLSI 2012" "MIC" "B_KGLLA" "LVX" "M45 Table 7" 2 8 -"CLSI 2012" "MIC" "B_KGLLA" "MEM" "M45 Table 7" 0.5 2 -"CLSI 2012" "MIC" "B_KGLLA" "PEN" "M45 Table 7" 1 4 -"CLSI 2012" "MIC" "B_KGLLA" "RIF" "M45 Table 7" 1 4 -"CLSI 2012" "MIC" "B_KGLLA" "SXT" "M45 Table 7" 0.5 4 -"CLSI 2012" "MIC" "B_KGLLA" "TCY" "M45 Table 7" 2 8 -"CLSI 2012" "MIC" "B_LCNST" "AMP" "M45 Table 10" 8 -"CLSI 2012" "MIC" "B_LCNST" "CHL" "M45 Table 10" 8 32 -"CLSI 2012" "MIC" "B_LCNST" "GEN" "M45 Table 10" 4 16 -"CLSI 2012" "MIC" "B_LCNST" "MNO" "M45 Table 10" 4 16 -"CLSI 2012" "MIC" "B_LCNST" "PEN" "M45 Table 10" 8 -"CLSI 2012" "MIC" "B_LCTBC" "AMP" "M45 Table 9" 8 -"CLSI 2012" "MIC" "B_LCTBC" "CLI" "M45 Table 9" 0.5 2 -"CLSI 2012" "MIC" "B_LCTBC" "DAP" "M45 Table 9" 4 -"CLSI 2012" "MIC" "B_LCTBC" "ERY" "M45 Table 9" 0.5 8 -"CLSI 2012" "MIC" "B_LCTBC" "GEN" "M45 Table 9" 4 16 -"CLSI 2012" "MIC" "B_LCTBC" "IPM" "M45 Table 9" 0.5 2 -"CLSI 2012" "MIC" "B_LCTBC" "LNZ" "M45 Table 9" 4 -"CLSI 2012" "MIC" "B_LCTBC" "PEN" "M45 Table 9" 8 -"CLSI 2012" "MIC" "B_LCTBC" "VAN" "M45 Table 9" 2 16 -"CLSI 2012" "MIC" "B_LISTR_MNCY" "AMP" "M45 Table 11" 2 -"CLSI 2012" "MIC" "B_LISTR_MNCY" "PEN" "M45 Table 11" 2 -"CLSI 2012" "MIC" "B_LISTR_MNCY" "SXT" "M45 Table 11" 0.5 4 -"CLSI 2012" "MIC" "B_MRXLL_CTRR" "AMC" "M45 Table 12" 4 8 -"CLSI 2012" "MIC" "B_MRXLL_CTRR" "AZM" "M45 Table 12" 0.25 -"CLSI 2012" "MIC" "B_MRXLL_CTRR" "CAZ" "M45 Table 12" 2 -"CLSI 2012" "MIC" "B_MRXLL_CTRR" "CEC" "M45 Table 12" 8 32 -"CLSI 2012" "MIC" "B_MRXLL_CTRR" "CHL" "M45 Table 12" 2 8 -"CLSI 2012" "MIC" "B_MRXLL_CTRR" "CIP" "M45 Table 12" 1 -"CLSI 2012" "MIC" "B_MRXLL_CTRR" "CLI" "M45 Table 12" 0.5 4 -"CLSI 2012" "MIC" "B_MRXLL_CTRR" "CLR" "M45 Table 12" 1 -"CLSI 2012" "MIC" "B_MRXLL_CTRR" "CRO" "M45 Table 12" 2 -"CLSI 2012" "MIC" "B_MRXLL_CTRR" "CTX" "M45 Table 12" 2 -"CLSI 2012" "MIC" "B_MRXLL_CTRR" "CXM" "M45 Table 12" 4 16 -"CLSI 2012" "MIC" "B_MRXLL_CTRR" "ERY" "M45 Table 12" 2 -"CLSI 2012" "MIC" "B_MRXLL_CTRR" "LVX" "M45 Table 12" 2 -"CLSI 2012" "MIC" "B_MRXLL_CTRR" "RIF" "M45 Table 12" 1 4 -"CLSI 2012" "MIC" "B_MRXLL_CTRR" "SXT" "M45 Table 12" 0.5 4 -"CLSI 2012" "MIC" "B_MRXLL_CTRR" "TCY" "M45 Table 12" 2 8 -"CLSI 2012" "MIC" "B_NESSR_GNRR" "CAT" "Table 2F" 0.5 -"CLSI 2012" "MIC" "B_NESSR_GNRR" "CAZ" "Table 2F" 0.5 -"CLSI 2012" "MIC" "B_NESSR_GNRR" "CFM" "Table 2F" 0.25 -"CLSI 2012" "MIC" "B_NESSR_GNRR" "CIP" "Table 2F" 0.064 1 -"CLSI 2012" "MIC" "B_NESSR_GNRR" "CMZ" "Table 2F" 2 8 -"CLSI 2012" "MIC" "B_NESSR_GNRR" "CPD" "Table 2F" 0.5 -"CLSI 2012" "MIC" "B_NESSR_GNRR" "CRO" "Table 2F" 0.25 -"CLSI 2012" "MIC" "B_NESSR_GNRR" "CTT" "Table 2F" 2 8 -"CLSI 2012" "MIC" "B_NESSR_GNRR" "CTX" "Table 2F" 0.5 -"CLSI 2012" "MIC" "B_NESSR_GNRR" "CXM" "Table 2F" 1 4 -"CLSI 2012" "MIC" "B_NESSR_GNRR" "CZX" "Table 2F" 0.5 -"CLSI 2012" "MIC" "B_NESSR_GNRR" "ENX" "Table 2F" 0.5 2 -"CLSI 2012" "MIC" "B_NESSR_GNRR" "FEP" "Table 2F" 0.5 -"CLSI 2012" "MIC" "B_NESSR_GNRR" "FLE" "Table 2F" 0.25 1 -"CLSI 2012" "MIC" "B_NESSR_GNRR" "FOX" "Table 2F" 2 8 -"CLSI 2012" "MIC" "B_NESSR_GNRR" "GAT" "Table 2F" 0.125 0.5 -"CLSI 2012" "MIC" "B_NESSR_GNRR" "GRX" "Table 2F" 0.064 1 -"CLSI 2012" "MIC" "B_NESSR_GNRR" "LOM" "Table 2F" 0.125 2 -"CLSI 2012" "MIC" "B_NESSR_GNRR" "OFX" "Table 2F" 0.25 2 -"CLSI 2012" "MIC" "B_NESSR_GNRR" "PEN" "Table 2F" 0.064 2 -"CLSI 2012" "MIC" "B_NESSR_GNRR" "SPT" "Table 2F" 32 128 -"CLSI 2012" "MIC" "B_NESSR_GNRR" "TCY" "Table 2F" 0.25 2 -"CLSI 2012" "MIC" "B_NESSR_GNRR" "TVA" "Table 2F" 0.25 -"CLSI 2012" "MIC" "B_NESSR_MNNG" "AMP" "Table 2I" 0.125 2 -"CLSI 2012" "MIC" "B_NESSR_MNNG" "AZM" "Table 2I" 2 -"CLSI 2012" "MIC" "B_NESSR_MNNG" "CHL" "Table 2I" 2 8 -"CLSI 2012" "MIC" "B_NESSR_MNNG" "CIP" "Table 2I" 0.032 0.12 -"CLSI 2012" "MIC" "B_NESSR_MNNG" "CRO" "Table 2I" 0.125 -"CLSI 2012" "MIC" "B_NESSR_MNNG" "CTX" "Table 2I" 0.125 -"CLSI 2012" "MIC" "B_NESSR_MNNG" "LVX" "Table 2I" 0.032 0.12 -"CLSI 2012" "MIC" "B_NESSR_MNNG" "MEM" "Table 2I" 0.25 -"CLSI 2012" "MIC" "B_NESSR_MNNG" "MNO" "Table 2I" 2 -"CLSI 2012" "MIC" "B_NESSR_MNNG" "NAL" "Table 2I" 4 8 -"CLSI 2012" "MIC" "B_NESSR_MNNG" "PEN" "Table 2I" 0.064 0.5 -"CLSI 2012" "MIC" "B_NESSR_MNNG" "RIF" "Table 2I" 0.5 2 -"CLSI 2012" "MIC" "B_NESSR_MNNG" "SMX" "Table 2I" 2 8 -"CLSI 2012" "MIC" "B_NESSR_MNNG" "SOX" "Table 2I" 2 8 -"CLSI 2012" "MIC" "B_NESSR_MNNG" "SSS" "Table 2I" 2 8 -"CLSI 2012" "MIC" "B_NESSR_MNNG" "SXT" "Table 2I" 0.125 0.5 -"CLSI 2012" "MIC" "B_PDCCC" "AMP" "M45 Table 14" 8 -"CLSI 2012" "MIC" "B_PDCCC" "CHL" "M45 Table 14" 8 32 -"CLSI 2012" "MIC" "B_PDCCC" "GEN" "M45 Table 14" 4 16 -"CLSI 2012" "MIC" "B_PDCCC" "IPM" "M45 Table 14" 0.5 -"CLSI 2012" "MIC" "B_PDCCC" "PEN" "M45 Table 14" 8 -"CLSI 2012" "MIC" "B_PLSMN" "AMC" "M45 Table 2" 8 32 -"CLSI 2012" "MIC" "B_PLSMN" "AMK" "M45 Table 2" 16 64 -"CLSI 2012" "MIC" "B_PLSMN" "ATM" "M45 Table 2" 4 16 -"CLSI 2012" "MIC" "B_PLSMN" "CAZ" "M45 Table 2" 4 16 -"CLSI 2012" "MIC" "B_PLSMN" "CHL" "M45 Table 2" 8 32 -"CLSI 2012" "MIC" "B_PLSMN" "CIP" "M45 Table 2" 1 4 -"CLSI 2012" "MIC" "B_PLSMN" "CRO" "M45 Table 2" 1 4 -"CLSI 2012" "MIC" "B_PLSMN" "CTX" "M45 Table 2" 1 4 -"CLSI 2012" "MIC" "B_PLSMN" "CXM" "M45 Table 2" 8 32 -"CLSI 2012" "MIC" "B_PLSMN" "CZO" "M45 Table 2" 1 4 -"CLSI 2012" "MIC" "B_PLSMN" "ETP" "M45 Table 2" 2 8 -"CLSI 2012" "MIC" "B_PLSMN" "FEP" "M45 Table 2" 8 32 -"CLSI 2012" "MIC" "B_PLSMN" "FOX" "M45 Table 2" 8 32 -"CLSI 2012" "MIC" "B_PLSMN" "GEN" "M45 Table 2" 4 16 -"CLSI 2012" "MIC" "B_PLSMN" "IPM" "M45 Table 2" 4 16 -"CLSI 2012" "MIC" "B_PLSMN" "LVX" "M45 Table 2" 2 8 -"CLSI 2012" "MIC" "B_PLSMN" "MEM" "M45 Table 2" 4 16 -"CLSI 2012" "MIC" "B_PLSMN" "SAM" "M45 Table 2" 8 32 -"CLSI 2012" "MIC" "B_PLSMN" "SXT" "M45 Table 2" 2 4 -"CLSI 2012" "MIC" "B_PLSMN" "TCY" "M45 Table 2" 4 16 -"CLSI 2012" "MIC" "B_PLSMN" "TZP" "M45 Table 2" 16 128 -"CLSI 2012" "MIC" "B_PSDMN" "ETP" -"CLSI 2012" "MIC" "B_PSDMN_AERG" "AMK" "Table 2B-1" 16 64 -"CLSI 2012" "MIC" "B_PSDMN_AERG" "ATM" "Table 2B-1" 8 32 -"CLSI 2012" "MIC" "B_PSDMN_AERG" "CAZ" "Table 2B-1" 8 32 -"CLSI 2012" "MIC" "B_PSDMN_AERG" "CIP" "Table 2B-1" 1 4 -"CLSI 2012" "MIC" "B_PSDMN_AERG" "COL" "Table 2B-1" 2 8 -"CLSI 2012" "MIC" "B_PSDMN_AERG" "DOR" "Table 2B-1" 2 8 -"CLSI 2012" "MIC" "B_PSDMN_AERG" "FEP" "Table 2B-1" 8 32 -"CLSI 2012" "MIC" "B_PSDMN_AERG" "GAT" "Table 2B-1" 2 8 -"CLSI 2012" "MIC" "B_PSDMN_AERG" "GEN" "Table 2B-1" 4 16 -"CLSI 2012" "MIC" "B_PSDMN_AERG" "IPM" "Table 2B-1" 2 8 -"CLSI 2012" "MIC" "B_PSDMN_AERG" "LOM" "Table 2B-1" 2 8 -"CLSI 2012" "MIC" "B_PSDMN_AERG" "LVX" "Table 2B-1" 2 8 -"CLSI 2012" "MIC" "B_PSDMN_AERG" "MEM" "Table 2B-1" 2 8 -"CLSI 2012" "MIC" "B_PSDMN_AERG" "NET" "Table 2B-1" 8 32 -"CLSI 2012" "MIC" "B_PSDMN_AERG" "NOR" "Table 2B-1" 4 16 -"CLSI 2012" "MIC" "B_PSDMN_AERG" "OFX" "Table 2B-1" 2 8 -"CLSI 2012" "MIC" "B_PSDMN_AERG" "PIP" "Table 2B-1" 16 128 -"CLSI 2012" "MIC" "B_PSDMN_AERG" "PLB" "Table 2B-1" 2 8 -"CLSI 2012" "MIC" "B_PSDMN_AERG" "TCC" "Table 2B-1" 16 128 -"CLSI 2012" "MIC" "B_PSDMN_AERG" "TIC" "Table 2B-1" 16 128 -"CLSI 2012" "MIC" "B_PSDMN_AERG" "TOB" "Table 2B-1" 4 16 -"CLSI 2012" "MIC" "B_PSDMN_AERG" "TZP" "Table 2B-1" 16 128 -"CLSI 2012" "MIC" "B_PSTRL" "AMC" "M45 Table 13" 0.5 -"CLSI 2012" "MIC" "B_PSTRL" "AMP" "M45 Table 13" 0.5 -"CLSI 2012" "MIC" "B_PSTRL" "AMX" "M45 Table 13" 0.5 -"CLSI 2012" "MIC" "B_PSTRL" "AZM" "M45 Table 13" 1 -"CLSI 2012" "MIC" "B_PSTRL" "CHL" "M45 Table 13" 2 -"CLSI 2012" "MIC" "B_PSTRL" "CRO" "M45 Table 13" 0.125 -"CLSI 2012" "MIC" "B_PSTRL" "DOX" "M45 Table 13" 0.5 -"CLSI 2012" "MIC" "B_PSTRL" "ERY" "M45 Table 13" 0.5 2 -"CLSI 2012" "MIC" "B_PSTRL" "LVX" "M45 Table 13" 0.064 -"CLSI 2012" "MIC" "B_PSTRL" "MFX" "M45 Table 13" 0.064 -"CLSI 2012" "MIC" "B_PSTRL" "PEN" "M45 Table 13" 0.5 -"CLSI 2012" "MIC" "B_PSTRL" "SXT" "M45 Table 13" 0.5 -"CLSI 2012" "MIC" "B_PSTRL" "TCY" "M45 Table 13" 1 -"CLSI 2012" "MIC" "B_PSTRL_MLTC" "TIL" "Vet Table" 16 32 -"CLSI 2012" "MIC" "Intestinal" "B_SLMNL" "CIP" "Table 2A" 1 4 -"CLSI 2012" "MIC" "Extraintestinal" "B_SLMNL" "CIP" "Table 2A" 0.064 1 -"CLSI 2012" "MIC" "B_SLMNL_ENTR" "CIP" "Table 2A" 0.064 1 -"CLSI 2012" "MIC" "B_STNTR_MLTP" "CAZ" "Table 2B-4" 8 32 -"CLSI 2012" "MIC" "B_STNTR_MLTP" "CHL" "Table 2B-4" 8 32 -"CLSI 2012" "MIC" "B_STNTR_MLTP" "LVX" "Table 2B-4" 2 8 -"CLSI 2012" "MIC" "B_STNTR_MLTP" "MNO" "Table 2B-4" 4 16 -"CLSI 2012" "MIC" "B_STNTR_MLTP" "SXT" "Table 2B-4" 2 4 -"CLSI 2012" "MIC" "B_STNTR_MLTP" "TCC" "Table 2B-4" 16 128 -"CLSI 2012" "MIC" "B_STPHY" "AMC" "Table 2C" 4 8 -"CLSI 2012" "MIC" "B_STPHY" "AMK" "Table 2C" 16 64 -"CLSI 2012" "MIC" "B_STPHY" "AMP" "Table 2C" 0.25 0.5 -"CLSI 2012" "MIC" "B_STPHY" "AZM" "Table 2C" 2 8 -"CLSI 2012" "MIC" "B_STPHY" "CAZ" "Table 2C" 8 32 -"CLSI 2012" "MIC" "B_STPHY" "CDR" "Table 2C" 1 4 -"CLSI 2012" "MIC" "B_STPHY" "CEC" "Table 2C" 8 32 -"CLSI 2012" "MIC" "B_STPHY" "CEP" "Table 2C" 8 32 -"CLSI 2012" "MIC" "B_STPHY" "CFP" "Table 2C" 16 64 -"CLSI 2012" "MIC" "B_STPHY" "CHL" "Table 2C" 8 32 -"CLSI 2012" "MIC" "B_STPHY" "CID" "Table 2C" 8 32 -"CLSI 2012" "MIC" "B_STPHY" "CIP" "Table 2C" 1 4 -"CLSI 2012" "MIC" "B_STPHY" "CLI" "Table 2C" 0.5 4 -"CLSI 2012" "MIC" "B_STPHY" "CLR" "Table 2C" 2 8 -"CLSI 2012" "MIC" "B_STPHY" "CMZ" "Table 2C" 16 64 -"CLSI 2012" "MIC" "B_STPHY" "CPD" "Table 2C" 2 8 -"CLSI 2012" "MIC" "B_STPHY" "CPR" "Table 2C" 8 32 -"CLSI 2012" "MIC" "B_STPHY" "CRO" "Table 2C" 8 64 -"CLSI 2012" "MIC" "B_STPHY" "CTT" "Table 2C" 16 64 -"CLSI 2012" "MIC" "B_STPHY" "CTX" "Table 2C" 8 64 -"CLSI 2012" "MIC" "B_STPHY" "CXA" "Table 2C" 4 32 -"CLSI 2012" "MIC" "Intravenous" "B_STPHY" "CXM" "Table 2C" 8 32 -"CLSI 2012" "MIC" "Oral" "B_STPHY" "CXM" "Table 2C" 4 32 -"CLSI 2012" "MIC" "B_STPHY" "CZO" "Table 2C" 8 32 -"CLSI 2012" "MIC" "B_STPHY" "CZX" "Table 2C" 8 64 -"CLSI 2012" "MIC" "B_STPHY" "DAP" "Table 2C" 1 -"CLSI 2012" "MIC" "B_STPHY" "DIR" "Table 2C" 2 8 -"CLSI 2012" "MIC" "B_STPHY" "DOR" "Table 2C" 0.5 -"CLSI 2012" "MIC" "B_STPHY" "DOX" "Table 2C" 4 16 -"CLSI 2012" "MIC" "B_STPHY" "ENX" "Table 2C" 2 8 -"CLSI 2012" "MIC" "B_STPHY" "ERY" "Table 2C" 0.5 8 -"CLSI 2012" "MIC" "B_STPHY" "ETP" "Table 2C" 2 8 -"CLSI 2012" "MIC" "B_STPHY" "FEP" "Table 2C" 8 32 -"CLSI 2012" "MIC" "B_STPHY" "FLE" "Table 2C" 2 8 -"CLSI 2012" "MIC" "B_STPHY" "FOX" "Table 2C" 4 8 -"CLSI 2012" "MIC" "B_STPHY" "GAT" "Table 2C" 0.5 2 -"CLSI 2012" "MIC" "B_STPHY" "GEN" "Table 2C" 4 16 -"CLSI 2012" "MIC" "B_STPHY" "GRX" "Table 2C" 1 4 -"CLSI 2012" "MIC" "B_STPHY" "IPM" "Table 2C" 4 16 -"CLSI 2012" "MIC" "B_STPHY" "KAN" "Table 2C" 16 64 -"CLSI 2012" "MIC" "B_STPHY" "LNZ" "Table 2C" 4 8 -"CLSI 2012" "MIC" "B_STPHY" "LOM" "Table 2C" 2 8 -"CLSI 2012" "MIC" "B_STPHY" "LOR" "Table 2C" 8 32 -"CLSI 2012" "MIC" "B_STPHY" "LTM" "Table 2C" 8 64 -"CLSI 2012" "MIC" "B_STPHY" "LVX" "Table 2C" 1 4 -"CLSI 2012" "MIC" "B_STPHY" "MAN" "Table 2C" 8 32 -"CLSI 2012" "MIC" "B_STPHY" "MEM" "Table 2C" 4 16 -"CLSI 2012" "MIC" "B_STPHY" "MET" "Table 2C" 8 16 -"CLSI 2012" "MIC" "B_STPHY" "MFX" "Table 2C" 0.5 2 -"CLSI 2012" "MIC" "B_STPHY" "MNO" "Table 2C" 4 16 -"CLSI 2012" "MIC" "B_STPHY" "NAF" "Table 2C" 2 4 -"CLSI 2012" "MIC" "B_STPHY" "NET" "Table 2C" 8 32 -"CLSI 2012" "MIC" "B_STPHY" "NIT" "Table 2C" 32 128 -"CLSI 2012" "MIC" "B_STPHY" "NOR" "Table 2C" 4 16 -"CLSI 2012" "MIC" "B_STPHY" "OFX" "Table 2C" 1 4 -"CLSI 2012" "MIC" "B_STPHY" "OXA" "Table 2C" 2 4 -"CLSI 2012" "MIC" "B_STPHY" "PEN" "Table 2C" 0.125 0.25 -"CLSI 2012" "MIC" "B_STPHY" "QDA" "Table 2C" 1 4 -"CLSI 2012" "MIC" "B_STPHY" "RIF" "Table 2C" 1 4 -"CLSI 2012" "MIC" "B_STPHY" "SAM" "Table 2C" 8 32 -"CLSI 2012" "MIC" "B_STPHY" "SMX" "Table 2C" 256 512 -"CLSI 2012" "MIC" "B_STPHY" "SOX" "Table 2C" 256 512 -"CLSI 2012" "MIC" "B_STPHY" "SPX" "Table 2C" 0.5 2 -"CLSI 2012" "MIC" "B_STPHY" "SSS" "Table 2C" 256 512 -"CLSI 2012" "MIC" "B_STPHY" "SXT" "Table 2C" 2 4 -"CLSI 2012" "MIC" "B_STPHY" "TCC" "Table 2C" 8 16 -"CLSI 2012" "MIC" "B_STPHY" "TCY" "Table 2C" 4 16 -"CLSI 2012" "MIC" "B_STPHY" "TEC" "Table 2C" 8 32 -"CLSI 2012" "MIC" "B_STPHY" "TLT" "Table 2C" 1 4 -"CLSI 2012" "MIC" "B_STPHY" "TMP" "Table 2C" 8 16 -"CLSI 2012" "MIC" "B_STPHY" "TOB" "Table 2C" 4 16 -"CLSI 2012" "MIC" "B_STPHY" "TZP" "Table 2C" 8 16 -"CLSI 2012" "MIC" "B_STPHY" "VAN" "Table 2C" 4 32 -"CLSI 2012" "MIC" "B_STPHY_AURS" "FOX" "Table 2C" 4 8 -"CLSI 2012" "MIC" "B_STPHY_AURS" "OXA" "Table 2C" 2 4 -"CLSI 2012" "MIC" "B_STPHY_AURS" "VAN" "Table 2C" 2 16 -"CLSI 2012" "MIC" "B_STPHY_LGDN" "FOX" "Table 2C" 4 8 -"CLSI 2012" "MIC" "B_STPHY_LGDN" "OXA" "Table 2C" 2 4 -"CLSI 2012" "MIC" "B_STRPT" "AMC" "Table 2H-1" -"CLSI 2012" "MIC" "B_STRPT" "AMP" "M45 Table 1" 0.25 8 -"CLSI 2012" "MIC" "B_STRPT" "AMP" "Table 2H-1" 0.25 -"CLSI 2012" "MIC" "B_STRPT" "AMX" "Table 2H-1" -"CLSI 2012" "MIC" "B_STRPT" "AZM" "Table 2H-1" 0.5 2 -"CLSI 2012" "MIC" "B_STRPT" "CHL" "M45 Table 1" 4 8 -"CLSI 2012" "MIC" "B_STRPT" "CHL" "Table 2H-1" 4 16 -"CLSI 2012" "MIC" "B_STRPT" "CIP" "M45 Table 1" 1 4 -"CLSI 2012" "MIC" "B_STRPT" "CLI" "M45 Table 1" 0.25 1 -"CLSI 2012" "MIC" "B_STRPT" "CLI" "Table 2H-1" 0.25 1 -"CLSI 2012" "MIC" "B_STRPT" "CLR" "Table 2H-1" 0.25 1 -"CLSI 2012" "MIC" "B_STRPT" "CRO" "M45 Table 1" 1 4 -"CLSI 2012" "MIC" "B_STRPT" "CRO" "Table 2H-1" 0.5 -"CLSI 2012" "MIC" "B_STRPT" "CTX" "M45 Table 1" 1 4 -"CLSI 2012" "MIC" "B_STRPT" "CTX" "Table 2H-1" 0.5 -"CLSI 2012" "MIC" "B_STRPT" "CXM" "Table 2H-1" -"CLSI 2012" "MIC" "B_STRPT" "DAP" "Table 2H-1" -"CLSI 2012" "MIC" "B_STRPT" "DIR" "Table 2H-1" 0.5 2 -"CLSI 2012" "MIC" "B_STRPT" "DOR" "Table 2H-1" 0.125 -"CLSI 2012" "MIC" "B_STRPT" "ERY" "M45 Table 1" 0.25 1 -"CLSI 2012" "MIC" "B_STRPT" "ERY" "Table 2H-1" 0.25 1 -"CLSI 2012" "MIC" "B_STRPT" "ETP" "Table 2H-1" 1 -"CLSI 2012" "MIC" "B_STRPT" "FEP" "M45 Table 1" 1 4 -"CLSI 2012" "MIC" "B_STRPT" "FEP" "Table 2H-1" 0.5 -"CLSI 2012" "MIC" "B_STRPT" "GAT" "M45 Table 1" 1 4 -"CLSI 2012" "MIC" "B_STRPT" "GAT" "Table 2H-1" 1 4 -"CLSI 2012" "MIC" "B_STRPT" "GEM" "Table 2H-1" -"CLSI 2012" "MIC" "B_STRPT" "GRX" "Table 2H-1" 0.5 2 -"CLSI 2012" "MIC" "B_STRPT" "IPM" "M45 Table 1" 0.5 2 -"CLSI 2012" "MIC" "B_STRPT" "IPM" "Table 2H-1" -"CLSI 2012" "MIC" "B_STRPT" "LNZ" "Table 2H-1" 2 -"CLSI 2012" "MIC" "B_STRPT" "LVX" "M45 Table 1" 2 8 -"CLSI 2012" "MIC" "B_STRPT" "LVX" "Table 2H-1" 2 8 -"CLSI 2012" "MIC" "B_STRPT" "MEM" "M45 Table 1" 0.5 2 -"CLSI 2012" "MIC" "B_STRPT" "MEM" "Table 2H-1" 0.5 -"CLSI 2012" "MIC" "B_STRPT" "MFX" "Table 2H-1" -"CLSI 2012" "MIC" "B_STRPT" "OFX" "Table 2H-1" 2 8 -"CLSI 2012" "MIC" "B_STRPT" "PEN" "M45 Table 1" 0.125 4 -"CLSI 2012" "MIC" "B_STRPT" "PEN" "Table 2H-1" 0.125 -"CLSI 2012" "MIC" "B_STRPT" "QDA" "Table 2H-1" 1 4 -"CLSI 2012" "MIC" "B_STRPT" "RIF" "Table 2H-1" -"CLSI 2012" "MIC" "B_STRPT" "SPX" "Table 2H-1" -"CLSI 2012" "MIC" "B_STRPT" "SXT" "Table 2H-1" -"CLSI 2012" "MIC" "B_STRPT" "TCY" "Table 2H-1" 2 8 -"CLSI 2012" "MIC" "B_STRPT" "TLT" "Table 2H-1" -"CLSI 2012" "MIC" "B_STRPT" "TVA" "Table 2H-1" 1 4 -"CLSI 2012" "MIC" "B_STRPT" "VAN" "M45 Table 1" 1 -"CLSI 2012" "MIC" "B_STRPT" "VAN" "Table 2H-1" 1 -"CLSI 2012" "MIC" "Non-meningitis" "B_STRPT_PNMN" "AMC" "Table 2G" 2 8 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "AMP" "Table 2G" -"CLSI 2012" "MIC" "Non-meningitis" "B_STRPT_PNMN" "AMX" "Table 2G" 2 8 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "AZM" "Table 2G" 0.5 2 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "CDR" "Table 2G" 0.5 2 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "CEC" "Table 2G" 1 4 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "CHL" "Table 2G" 4 8 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "CIP" "Table 2G" -"CLSI 2012" "MIC" "B_STRPT_PNMN" "CLI" "Table 2G" 0.25 1 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "CLR" "Table 2G" 0.25 1 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "CPD" "Table 2G" 0.5 2 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "CPR" "Table 2G" 2 8 -"CLSI 2012" "MIC" "Meningitis" "B_STRPT_PNMN" "CRO" "Table 2G" 0.5 2 -"CLSI 2012" "MIC" "Non-meningitis" "B_STRPT_PNMN" "CRO" "Table 2G" 1 4 -"CLSI 2012" "MIC" "Meningitis" "B_STRPT_PNMN" "CTX" "Table 2G" 0.5 2 -"CLSI 2012" "MIC" "Non-meningitis" "B_STRPT_PNMN" "CTX" "Table 2G" 1 4 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "CXA" "Table 2G" 1 4 -"CLSI 2012" "MIC" "Parenteral" "B_STRPT_PNMN" "CXM" "Table 2G" 0.5 2 -"CLSI 2012" "MIC" "Oral" "B_STRPT_PNMN" "CXM" "Table 2G" 1 4 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "DIR" "Table 2G" 0.5 2 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "DOR" "Table 2G" 1 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "ERY" "Table 2G" 0.25 1 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "ETP" "Table 2G" 1 4 -"CLSI 2012" "MIC" "Meningitis" "B_STRPT_PNMN" "FEP" "Table 2G" 0.5 2 -"CLSI 2012" "MIC" "Non-meningitis" "B_STRPT_PNMN" "FEP" "Table 2G" 1 4 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "GAT" "Table 2G" 1 4 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "GEM" "Table 2G" 0.125 0.5 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "GRX" "Table 2G" 0.5 2 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "IPM" "Table 2G" 0.125 1 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "LNZ" "Table 2G" 2 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "LOR" "Table 2G" 2 8 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "LVX" "Table 2G" 2 8 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "MEM" "Table 2G" 0.25 1 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "MFX" "Table 2G" 1 4 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "NOR" "Table 2G" -"CLSI 2012" "MIC" "B_STRPT_PNMN" "OFX" "Table 2G" 2 8 -"CLSI 2012" "MIC" "Meningitis" "B_STRPT_PNMN" "PEN" "Table 2G" 0.064 0.12 -"CLSI 2012" "MIC" "Non-meningitis" "B_STRPT_PNMN" "PEN" "Table 2G" 2 8 -"CLSI 2012" "MIC" "Oral" "B_STRPT_PNMN" "PEN" "Table 2G" 0.064 2 -"CLSI 2012" "MIC" "Oral" "B_STRPT_PNMN" "PNV" "Table 2G" 0.064 2 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "QDA" "Table 2G" 1 4 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "RIF" "Table 2G" 1 4 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "SAM" "Table 2G" -"CLSI 2012" "MIC" "B_STRPT_PNMN" "SPX" "Table 2G" 0.5 2 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "SXT" "Table 2G" 0.5 4 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "TCY" "Table 2G" 2 8 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "TLT" "Table 2G" 1 4 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "TVA" "Table 2G" 1 4 -"CLSI 2012" "MIC" "B_STRPT_PNMN" "VAN" "Table 2G" 1 -"CLSI 2012" "MIC" "B_STRPT_VIRI" "AMP" "Table 2H-2" 0.25 8 -"CLSI 2012" "MIC" "B_STRPT_VIRI" "AZM" "Table 2H-2" 0.5 2 -"CLSI 2012" "MIC" "B_STRPT_VIRI" "CHL" "Table 2H-2" 4 16 -"CLSI 2012" "MIC" "B_STRPT_VIRI" "CLI" "Table 2H-2" 0.25 1 -"CLSI 2012" "MIC" "B_STRPT_VIRI" "CLR" "Table 2H-2" 0.25 1 -"CLSI 2012" "MIC" "B_STRPT_VIRI" "CRO" "Table 2H-2" 1 4 -"CLSI 2012" "MIC" "B_STRPT_VIRI" "CTX" "Table 2H-2" 1 4 -"CLSI 2012" "MIC" "B_STRPT_VIRI" "DAP" "Table 2H-2" 1 -"CLSI 2012" "MIC" "B_STRPT_VIRI" "DIR" "Table 2H-2" 0.5 2 -"CLSI 2012" "MIC" "B_STRPT_VIRI" "DOR" "Table 2H-2" 1 -"CLSI 2012" "MIC" "B_STRPT_VIRI" "ERY" "Table 2H-2" 0.25 1 -"CLSI 2012" "MIC" "B_STRPT_VIRI" "ETP" "Table 2H-2" 1 -"CLSI 2012" "MIC" "B_STRPT_VIRI" "FEP" "Table 2H-2" 1 4 -"CLSI 2012" "MIC" "B_STRPT_VIRI" "GAT" "Table 2H-2" 1 4 -"CLSI 2012" "MIC" "B_STRPT_VIRI" "GRX" "Table 2H-2" 0.5 2 -"CLSI 2012" "MIC" "B_STRPT_VIRI" "LNZ" "Table 2H-2" 2 -"CLSI 2012" "MIC" "B_STRPT_VIRI" "LVX" "Table 2H-2" 2 8 -"CLSI 2012" "MIC" "B_STRPT_VIRI" "MEM" "Table 2H-2" 0.5 -"CLSI 2012" "MIC" "B_STRPT_VIRI" "OFX" "Table 2H-2" 2 8 -"CLSI 2012" "MIC" "B_STRPT_VIRI" "PEN" "Table 2H-2" 0.125 4 -"CLSI 2012" "MIC" "B_STRPT_VIRI" "QDA" "Table 2H-2" 1 4 -"CLSI 2012" "MIC" "B_STRPT_VIRI" "TCY" "Table 2H-2" 2 8 -"CLSI 2012" "MIC" "B_STRPT_VIRI" "TVA" "Table 2H-2" 1 4 -"CLSI 2012" "MIC" "B_STRPT_VIRI" "VAN" "Table 2H-2" 1 -"CLSI 2012" "MIC" "B_VIBRI_CHLR" "AZM" "M45 Table 14" "30ug" 2 -"CLSI 2012" "MIC" "B_VIBRI_CHLR" "DOX" "M45 Table 14" "30ug" 4 16 -"CLSI 2012" "MIC" "B_YERSN_PSTS" "CHL" "M45 Table 16" 8 32 -"CLSI 2012" "MIC" "B_YERSN_PSTS" "CIP" "M45 Table 16" 0.25 -"CLSI 2012" "MIC" "B_YERSN_PSTS" "DOX" "M45 Table 16" 4 16 -"CLSI 2012" "MIC" "B_YERSN_PSTS" "GEN" "M45 Table 16" 4 16 -"CLSI 2012" "MIC" "B_YERSN_PSTS" "LVX" "M45 Table 16" 0.25 -"CLSI 2012" "MIC" "B_YERSN_PSTS" "STR" "M45 Table 16" 4 16 -"CLSI 2012" "MIC" "B_YERSN_PSTS" "SXT" "M45 Table 16" 2 4 -"CLSI 2012" "MIC" "B_YERSN_PSTS" "TCY" "M45 Table 16" 4 16 -"CLSI 2011" "MIC" "B_ABTRP" "FEP" "M45 Table 1" 1 4 -"CLSI 2011" "MIC" "B_ABTRP" "GAT" "M45 Table 1" 1 4 -"CLSI 2011" "MIC" "B_ABTRP" "IPM" "M45 Table 1" 0.5 2 -"CLSI 2011" "MIC" "B_ABTRP" "LVX" "M45 Table 1" 2 8 -"CLSI 2011" "MIC" "B_ABTRP" "MEM" "M45 Table 1" 0.5 2 -"CLSI 2011" "MIC" "B_ABTRP" "PEN" "M45 Table 1" 0.125 4 -"CLSI 2011" "MIC" "B_ABTRP" "VAN" "M45 Table 1" 1 -"CLSI 2011" "MIC" "B_ACNTB" "COL" 2 4 -"CLSI 2011" "MIC" "B_ACNTB" "ETP" -"CLSI 2011" "MIC" "B_ACNTB" "PLB" 2 4 -"CLSI 2011" "MIC" "B_ACTNB_PLRP" "TIL" 16 32 -"CLSI 2011" "MIC" "B_AERMN" "AMC" 8 32 -"CLSI 2011" "MIC" "B_AERMN" "AMK" 16 64 -"CLSI 2011" "MIC" "B_AERMN" "ATM" 4 16 -"CLSI 2011" "MIC" "B_AERMN" "CAZ" 4 16 -"CLSI 2011" "MIC" "B_AERMN" "CHL" 8 32 -"CLSI 2011" "MIC" "B_AERMN" "CIP" 1 4 -"CLSI 2011" "MIC" "B_AERMN" "CRO" 1 4 -"CLSI 2011" "MIC" "B_AERMN" "CTX" 1 4 -"CLSI 2011" "MIC" "B_AERMN" "CXM" 8 32 -"CLSI 2011" "MIC" "B_AERMN" "CZO" 1 4 -"CLSI 2011" "MIC" "B_AERMN" "ETP" 2 8 -"CLSI 2011" "MIC" "B_AERMN" "FEP" 8 32 -"CLSI 2011" "MIC" "B_AERMN" "FOX" 8 32 -"CLSI 2011" "MIC" "B_AERMN" "GEN" 4 16 -"CLSI 2011" "MIC" "B_AERMN" "IPM" 4 16 -"CLSI 2011" "MIC" "B_AERMN" "LVX" 2 8 -"CLSI 2011" "MIC" "B_AERMN" "MEM" 4 16 -"CLSI 2011" "MIC" "B_AERMN" "SAM" 8 32 -"CLSI 2011" "MIC" "B_AERMN" "SXT" 2 4 -"CLSI 2011" "MIC" "B_AERMN" "TCY" 4 16 -"CLSI 2011" "MIC" "B_AERMN" "TZP" 16 128 -"CLSI 2011" "MIC" "B_AGGRG" "AMC" 4 8 -"CLSI 2011" "MIC" "B_AGGRG" "AMP" 1 4 -"CLSI 2011" "MIC" "B_AGGRG" "AZM" 4 -"CLSI 2011" "MIC" "B_AGGRG" "CHL" 4 16 -"CLSI 2011" "MIC" "B_AGGRG" "CIP" 1 4 -"CLSI 2011" "MIC" "B_AGGRG" "CLR" 8 32 -"CLSI 2011" "MIC" "B_AGGRG" "CRO" 2 -"CLSI 2011" "MIC" "B_AGGRG" "CTX" 2 -"CLSI 2011" "MIC" "B_AGGRG" "IPM" 4 16 -"CLSI 2011" "MIC" "B_AGGRG" "LVX" 2 8 -"CLSI 2011" "MIC" "B_AGGRG" "MEM" 4 16 -"CLSI 2011" "MIC" "B_AGGRG" "PEN" 1 4 -"CLSI 2011" "MIC" "B_AGGRG" "RIF" 1 4 -"CLSI 2011" "MIC" "B_AGGRG" "SAM" 2 4 -"CLSI 2011" "MIC" "B_AGGRG" "SXT" 0.5 4 -"CLSI 2011" "MIC" "B_AGGRG" "TCY" 2 8 -"CLSI 2011" "MIC" "Canine, feline" "B_ALLSC" "ENR" 0.5 4 -"CLSI 2011" "MIC" "B_ANRSL" "AMC" 4 16 -"CLSI 2011" "MIC" "B_ANRSL" "AMP" 0.5 2 -"CLSI 2011" "MIC" "B_ANRSL" "CFP" 16 64 -"CLSI 2011" "MIC" "B_ANRSL" "CHL" 8 32 -"CLSI 2011" "MIC" "B_ANRSL" "CLI" 2 8 -"CLSI 2011" "MIC" "B_ANRSL" "CMZ" 16 64 -"CLSI 2011" "MIC" "B_ANRSL" "CRO" 16 64 -"CLSI 2011" "MIC" "B_ANRSL" "CTT" 16 64 -"CLSI 2011" "MIC" "B_ANRSL" "CTX" 16 64 -"CLSI 2011" "MIC" "B_ANRSL" "CZX" 32 128 -"CLSI 2011" "MIC" "B_ANRSL" "ETP" 4 16 -"CLSI 2011" "MIC" "B_ANRSL" "FOX" 16 64 -"CLSI 2011" "MIC" "B_ANRSL" "IPM" 4 16 -"CLSI 2011" "MIC" "B_ANRSL" "LTM" 2 8 -"CLSI 2011" "MIC" "B_ANRSL" "MEM" 4 16 -"CLSI 2011" "MIC" "B_ANRSL" "MEZ" 32 128 -"CLSI 2011" "MIC" "B_ANRSL" "MTR" 8 32 -"CLSI 2011" "MIC" "B_ANRSL" "PEN" 0.5 2 -"CLSI 2011" "MIC" "B_ANRSL" "PIP" 32 128 -"CLSI 2011" "MIC" "B_ANRSL" "SAM" 8 32 -"CLSI 2011" "MIC" "B_ANRSL" "TCC" 32 128 -"CLSI 2011" "MIC" "B_ANRSL" "TCY" 4 16 -"CLSI 2011" "MIC" "B_ANRSL" "TIC" 32 128 -"CLSI 2011" "MIC" "B_ANRSL" "TZP" 32 128 -"CLSI 2011" "MIC" "B_BCLLS" "AMK" 16 64 -"CLSI 2011" "MIC" "B_BCLLS" "AMP" 0.25 0.5 -"CLSI 2011" "MIC" "B_BCLLS" "CAZ" 8 32 -"CLSI 2011" "MIC" "B_BCLLS" "CHL" 8 32 -"CLSI 2011" "MIC" "B_BCLLS" "CIP" 1 4 -"CLSI 2011" "MIC" "B_BCLLS" "CLI" 0.5 4 -"CLSI 2011" "MIC" "B_BCLLS" "CRO" 8 64 -"CLSI 2011" "MIC" "B_BCLLS" "CTX" 8 64 -"CLSI 2011" "MIC" "B_BCLLS" "CZO" 8 16 -"CLSI 2011" "MIC" "B_BCLLS" "ERY" 0.5 8 -"CLSI 2011" "MIC" "B_BCLLS" "GEN" 4 16 -"CLSI 2011" "MIC" "B_BCLLS" "IPM" 4 16 -"CLSI 2011" "MIC" "B_BCLLS" "LVX" 2 8 -"CLSI 2011" "MIC" "B_BCLLS" "PEN" 0.125 0.25 -"CLSI 2011" "MIC" "B_BCLLS" "RIF" 1 4 -"CLSI 2011" "MIC" "B_BCLLS" "SXT" 2 4 -"CLSI 2011" "MIC" "B_BCLLS" "TCY" 4 16 -"CLSI 2011" "MIC" "B_BCLLS" "VAN" 4 -"CLSI 2011" "MIC" "B_BCLLS_ANTH" "AMK" -"CLSI 2011" "MIC" "B_BCLLS_ANTH" "AMP" -"CLSI 2011" "MIC" "B_BCLLS_ANTH" "CAZ" -"CLSI 2011" "MIC" "B_BCLLS_ANTH" "CHL" -"CLSI 2011" "MIC" "B_BCLLS_ANTH" "CIP" 0.25 -"CLSI 2011" "MIC" "B_BCLLS_ANTH" "CLI" -"CLSI 2011" "MIC" "B_BCLLS_ANTH" "CRO" -"CLSI 2011" "MIC" "B_BCLLS_ANTH" "CTX" -"CLSI 2011" "MIC" "B_BCLLS_ANTH" "CZO" -"CLSI 2011" "MIC" "B_BCLLS_ANTH" "DOX" 1 -"CLSI 2011" "MIC" "B_BCLLS_ANTH" "ERY" -"CLSI 2011" "MIC" "B_BCLLS_ANTH" "GEN" -"CLSI 2011" "MIC" "B_BCLLS_ANTH" "IPM" -"CLSI 2011" "MIC" "B_BCLLS_ANTH" "LVX" 0.25 -"CLSI 2011" "MIC" "B_BCLLS_ANTH" "PEN" 0.125 0.25 -"CLSI 2011" "MIC" "B_BCLLS_ANTH" "RIF" -"CLSI 2011" "MIC" "B_BCLLS_ANTH" "SXT" -"CLSI 2011" "MIC" "B_BCLLS_ANTH" "TCY" 1 -"CLSI 2011" "MIC" "B_BCLLS_ANTH" "VAN" -"CLSI 2011" "MIC" "B_BRCLL" "DOX" 1 -"CLSI 2011" "MIC" "B_BRCLL" "GEN" 4 -"CLSI 2011" "MIC" "B_BRCLL" "STR" 8 -"CLSI 2011" "MIC" "B_BRCLL" "SXT" 2 -"CLSI 2011" "MIC" "B_BRCLL" "TCY" 1 -"CLSI 2011" "MIC" "B_BRKHL_MALL" "CAZ" 8 32 -"CLSI 2011" "MIC" "B_BRKHL_MALL" "DOX" 4 16 -"CLSI 2011" "MIC" "B_BRKHL_MALL" "IPM" 4 16 -"CLSI 2011" "MIC" "B_BRKHL_MALL" "TCY" 4 16 -"CLSI 2011" "MIC" "B_BRKHL_PSDM" "AMC" 8 32 -"CLSI 2011" "MIC" "B_BRKHL_PSDM" "CAZ" 8 32 -"CLSI 2011" "MIC" "B_BRKHL_PSDM" "DOX" 4 16 -"CLSI 2011" "MIC" "B_BRKHL_PSDM" "IPM" 4 16 -"CLSI 2011" "MIC" "B_BRKHL_PSDM" "SXT" 2 4 -"CLSI 2011" "MIC" "B_BRKHL_PSDM" "TCY" 4 16 -"CLSI 2011" "MIC" "B_CMPYL" "CIP" 1 4 -"CLSI 2011" "MIC" "B_CMPYL" "DOX" 2 8 -"CLSI 2011" "MIC" "B_CMPYL" "ERY" 8 32 -"CLSI 2011" "MIC" "B_CMPYL" "TCY" 4 16 -"CLSI 2011" "MIC" "B_CRDBC" "AMC" 4 8 -"CLSI 2011" "MIC" "B_CRDBC" "AMP" 1 4 -"CLSI 2011" "MIC" "B_CRDBC" "AZM" 4 -"CLSI 2011" "MIC" "B_CRDBC" "CHL" 4 16 -"CLSI 2011" "MIC" "B_CRDBC" "CIP" 1 4 -"CLSI 2011" "MIC" "B_CRDBC" "CLR" 8 32 -"CLSI 2011" "MIC" "B_CRDBC" "CRO" 2 -"CLSI 2011" "MIC" "B_CRDBC" "CTX" 2 -"CLSI 2011" "MIC" "B_CRDBC" "IPM" 0.5 2 -"CLSI 2011" "MIC" "B_CRDBC" "LVX" 2 8 -"CLSI 2011" "MIC" "B_CRDBC" "MEM" 0.5 2 -"CLSI 2011" "MIC" "B_CRDBC" "PEN" 1 4 -"CLSI 2011" "MIC" "B_CRDBC" "RIF" 1 4 -"CLSI 2011" "MIC" "B_CRDBC" "SAM" 2 4 -"CLSI 2011" "MIC" "B_CRDBC" "SXT" 0.5 4 -"CLSI 2011" "MIC" "B_CRDBC" "TCY" 2 8 -"CLSI 2011" "MIC" "B_EKNLL" "AMC" 4 8 -"CLSI 2011" "MIC" "B_EKNLL" "AMP" 1 4 -"CLSI 2011" "MIC" "B_EKNLL" "AZM" 4 -"CLSI 2011" "MIC" "B_EKNLL" "CHL" 4 16 -"CLSI 2011" "MIC" "B_EKNLL" "CIP" 1 4 -"CLSI 2011" "MIC" "B_EKNLL" "CLR" 8 32 -"CLSI 2011" "MIC" "B_EKNLL" "CRO" 2 -"CLSI 2011" "MIC" "B_EKNLL" "CTX" 2 -"CLSI 2011" "MIC" "B_EKNLL" "IPM" 0.5 2 -"CLSI 2011" "MIC" "B_EKNLL" "LVX" 2 8 -"CLSI 2011" "MIC" "B_EKNLL" "MEM" 0.5 2 -"CLSI 2011" "MIC" "B_EKNLL" "PEN" 1 4 -"CLSI 2011" "MIC" "B_EKNLL" "RIF" 1 4 -"CLSI 2011" "MIC" "B_EKNLL" "SAM" 2 4 -"CLSI 2011" "MIC" "B_EKNLL" "SXT" 0.5 4 -"CLSI 2011" "MIC" "B_EKNLL" "TCY" 2 8 -"CLSI 2011" "MIC" "B_ENTRC" "AMP" 8 16 -"CLSI 2011" "MIC" "B_ENTRC" "DAP" 4 -"CLSI 2011" "MIC" "B_ENTRC" "LNZ" 2 8 -"CLSI 2011" "MIC" "B_ENTRC" "PEN" 8 16 -"CLSI 2011" "MIC" "B_ERYSP_RHSP" "AMP" 0.25 -"CLSI 2011" "MIC" "B_ERYSP_RHSP" "CIP" 1 -"CLSI 2011" "MIC" "B_ERYSP_RHSP" "CLI" 0.25 1 -"CLSI 2011" "MIC" "B_ERYSP_RHSP" "CRO" 1 -"CLSI 2011" "MIC" "B_ERYSP_RHSP" "CTX" 1 -"CLSI 2011" "MIC" "B_ERYSP_RHSP" "ERY" 0.25 1 -"CLSI 2011" "MIC" "B_ERYSP_RHSP" "FEP" 1 -"CLSI 2011" "MIC" "B_ERYSP_RHSP" "IPM" 0.5 -"CLSI 2011" "MIC" "B_ERYSP_RHSP" "LVX" 2 -"CLSI 2011" "MIC" "B_ERYSP_RHSP" "MEM" 0.5 -"CLSI 2011" "MIC" "B_ERYSP_RHSP" "PEN" 0.125 -"CLSI 2011" "MIC" "B_FRNCS_TLRN" "CHL" 8 -"CLSI 2011" "MIC" "B_FRNCS_TLRN" "CIP" 0.5 -"CLSI 2011" "MIC" "B_FRNCS_TLRN" "DOX" 4 -"CLSI 2011" "MIC" "B_FRNCS_TLRN" "GEN" 4 -"CLSI 2011" "MIC" "B_FRNCS_TLRN" "LVX" 0.5 -"CLSI 2011" "MIC" "B_FRNCS_TLRN" "STR" 8 -"CLSI 2011" "MIC" "B_FRNCS_TLRN" "TCY" 4 -"CLSI 2011" "MIC" "B_GRNLC" "AMP" 0.25 8 -"CLSI 2011" "MIC" "B_GRNLC" "CHL" 4 8 -"CLSI 2011" "MIC" "B_GRNLC" "CIP" 1 4 -"CLSI 2011" "MIC" "B_GRNLC" "CLI" 0.25 1 -"CLSI 2011" "MIC" "B_GRNLC" "CRO" 1 4 -"CLSI 2011" "MIC" "B_GRNLC" "CTX" 1 4 -"CLSI 2011" "MIC" "B_GRNLC" "ERY" 0.25 1 -"CLSI 2011" "MIC" "B_GRNLC" "FEP" 1 4 -"CLSI 2011" "MIC" "B_GRNLC" "GAT" 1 4 -"CLSI 2011" "MIC" "B_GRNLC" "IPM" 0.5 2 -"CLSI 2011" "MIC" "B_GRNLC" "LVX" 2 8 -"CLSI 2011" "MIC" "B_GRNLC" "MEM" 0.5 2 -"CLSI 2011" "MIC" "B_GRNLC" "PEN" 0.125 4 -"CLSI 2011" "MIC" "B_GRNLC" "VAN" 1 -"CLSI 2011" "MIC" "B_HLCBCT_PYLR" "CLR" 0.25 1 -"CLSI 2011" "MIC" "B_HMPHL" "AMC" 4 8 -"CLSI 2011" "MIC" "B_HMPHL" "AMP" 1 4 -"CLSI 2011" "MIC" "B_HMPHL" "ATM" 2 -"CLSI 2011" "MIC" "B_HMPHL" "AZM" 4 -"CLSI 2011" "MIC" "B_HMPHL" "CAT" 4 16 -"CLSI 2011" "MIC" "B_HMPHL" "CAZ" 2 -"CLSI 2011" "MIC" "B_HMPHL" "CDR" 1 -"CLSI 2011" "MIC" "B_HMPHL" "CEC" 8 32 -"CLSI 2011" "MIC" "B_HMPHL" "CFM" 1 -"CLSI 2011" "MIC" "B_HMPHL" "CHL" 2 8 -"CLSI 2011" "MIC" "B_HMPHL" "CID" 4 16 -"CLSI 2011" "MIC" "B_HMPHL" "CIP" 1 -"CLSI 2011" "MIC" "B_HMPHL" "CLR" 8 32 -"CLSI 2011" "MIC" "B_HMPHL" "CPD" 2 -"CLSI 2011" "MIC" "B_HMPHL" "CPR" 8 32 -"CLSI 2011" "MIC" "B_HMPHL" "CRO" 2 -"CLSI 2011" "MIC" "B_HMPHL" "CTB" 2 -"CLSI 2011" "MIC" "B_HMPHL" "CTX" 2 -"CLSI 2011" "MIC" "B_HMPHL" "CXA" 4 16 -"CLSI 2011" "MIC" "B_HMPHL" "CXM" 4 16 -"CLSI 2011" "MIC" "B_HMPHL" "CZX" 2 -"CLSI 2011" "MIC" "B_HMPHL" "ETP" 0.5 -"CLSI 2011" "MIC" "B_HMPHL" "FEP" 2 -"CLSI 2011" "MIC" "B_HMPHL" "FLE" 2 -"CLSI 2011" "MIC" "B_HMPHL" "GAT" 1 -"CLSI 2011" "MIC" "B_HMPHL" "GEM" 0.125 -"CLSI 2011" "MIC" "B_HMPHL" "GRX" 0.5 -"CLSI 2011" "MIC" "B_HMPHL" "IPM" 4 -"CLSI 2011" "MIC" "B_HMPHL" "LOM" 2 -"CLSI 2011" "MIC" "B_HMPHL" "LOR" 8 32 -"CLSI 2011" "MIC" "B_HMPHL" "LVX" 2 -"CLSI 2011" "MIC" "B_HMPHL" "MAN" 4 16 -"CLSI 2011" "MIC" "B_HMPHL" "MEM" 0.5 -"CLSI 2011" "MIC" "B_HMPHL" "MFX" 1 -"CLSI 2011" "MIC" "B_HMPHL" "OFX" 2 -"CLSI 2011" "MIC" "B_HMPHL" "RIF" 1 4 -"CLSI 2011" "MIC" "B_HMPHL" "SAM" 2 4 -"CLSI 2011" "MIC" "B_HMPHL" "SPX" 0.25 -"CLSI 2011" "MIC" "B_HMPHL" "SXT" 0.5 4 -"CLSI 2011" "MIC" "B_HMPHL" "TCY" 2 8 -"CLSI 2011" "MIC" "B_HMPHL" "TLT" 4 16 -"CLSI 2011" "MIC" "B_HMPHL" "TVA" 1 -"CLSI 2011" "MIC" "B_HMPHL" "TZP" 1 2 -"CLSI 2011" "MIC" "B_HSTPH_SOMN" "ENR" 0.25 2 -"CLSI 2011" "MIC" "B_KGLLA" "AZM" 4 -"CLSI 2011" "MIC" "B_KGLLA" "CHL" 4 16 -"CLSI 2011" "MIC" "B_KGLLA" "CIP" 1 4 -"CLSI 2011" "MIC" "B_KGLLA" "CLR" 8 32 -"CLSI 2011" "MIC" "B_KGLLA" "CRO" 2 -"CLSI 2011" "MIC" "B_KGLLA" "CTX" 2 -"CLSI 2011" "MIC" "B_KGLLA" "IPM" 0.5 2 -"CLSI 2011" "MIC" "B_KGLLA" "LVX" 2 8 -"CLSI 2011" "MIC" "B_KGLLA" "MEM" 0.5 2 -"CLSI 2011" "MIC" "B_KGLLA" "PEN" 1 4 -"CLSI 2011" "MIC" "B_KGLLA" "RIF" 1 4 -"CLSI 2011" "MIC" "B_KGLLA" "SXT" 0.5 4 -"CLSI 2011" "MIC" "B_KGLLA" "TCY" 2 8 -"CLSI 2011" "MIC" "B_LCNST" "AMP" 8 -"CLSI 2011" "MIC" "B_LCNST" "CHL" 8 32 -"CLSI 2011" "MIC" "B_LCNST" "GEN" 4 16 -"CLSI 2011" "MIC" "B_LCNST" "MNO" 4 16 -"CLSI 2011" "MIC" "B_LCNST" "PEN" 8 -"CLSI 2011" "MIC" "B_LCTBC" "AMP" 8 -"CLSI 2011" "MIC" "B_LCTBC" "CLI" 0.5 2 -"CLSI 2011" "MIC" "B_LCTBC" "DAP" 4 -"CLSI 2011" "MIC" "B_LCTBC" "ERY" 0.5 8 -"CLSI 2011" "MIC" "B_LCTBC" "GEN" 4 16 -"CLSI 2011" "MIC" "B_LCTBC" "IPM" 0.5 2 -"CLSI 2011" "MIC" "B_LCTBC" "LNZ" 4 -"CLSI 2011" "MIC" "B_LCTBC" "PEN" 8 -"CLSI 2011" "MIC" "B_LCTBC" "VAN" 2 16 -"CLSI 2011" "MIC" "B_LISTR_MNCY" "AMP" 2 -"CLSI 2011" "MIC" "B_LISTR_MNCY" "PEN" 2 -"CLSI 2011" "MIC" "B_LISTR_MNCY" "SXT" 0.5 4 -"CLSI 2011" "MIC" "B_MRXLL_CTRR" "AMC" 4 8 -"CLSI 2011" "MIC" "B_MRXLL_CTRR" "AZM" 0.25 -"CLSI 2011" "MIC" "B_MRXLL_CTRR" "CAZ" 2 -"CLSI 2011" "MIC" "B_MRXLL_CTRR" "CEC" 8 32 -"CLSI 2011" "MIC" "B_MRXLL_CTRR" "CHL" 2 8 -"CLSI 2011" "MIC" "B_MRXLL_CTRR" "CIP" 1 -"CLSI 2011" "MIC" "B_MRXLL_CTRR" "CLI" 0.5 4 -"CLSI 2011" "MIC" "B_MRXLL_CTRR" "CLR" 1 -"CLSI 2011" "MIC" "B_MRXLL_CTRR" "CRO" 2 -"CLSI 2011" "MIC" "B_MRXLL_CTRR" "CTX" 2 -"CLSI 2011" "MIC" "B_MRXLL_CTRR" "CXM" 4 16 -"CLSI 2011" "MIC" "B_MRXLL_CTRR" "ERY" 2 -"CLSI 2011" "MIC" "B_MRXLL_CTRR" "LVX" 2 -"CLSI 2011" "MIC" "B_MRXLL_CTRR" "RIF" 1 4 -"CLSI 2011" "MIC" "B_MRXLL_CTRR" "SXT" 0.5 4 -"CLSI 2011" "MIC" "B_MRXLL_CTRR" "TCY" 2 8 -"CLSI 2011" "MIC" "B_NESSR_GNRR" "CAT" 0.5 -"CLSI 2011" "MIC" "B_NESSR_GNRR" "CAZ" 0.5 -"CLSI 2011" "MIC" "B_NESSR_GNRR" "CFM" 0.25 -"CLSI 2011" "MIC" "B_NESSR_GNRR" "CIP" 0.064 1 -"CLSI 2011" "MIC" "B_NESSR_GNRR" "CMZ" 2 8 -"CLSI 2011" "MIC" "B_NESSR_GNRR" "CPD" 0.5 -"CLSI 2011" "MIC" "B_NESSR_GNRR" "CRO" 0.25 -"CLSI 2011" "MIC" "B_NESSR_GNRR" "CTT" 2 8 -"CLSI 2011" "MIC" "B_NESSR_GNRR" "CTX" 0.5 -"CLSI 2011" "MIC" "B_NESSR_GNRR" "CXM" 1 4 -"CLSI 2011" "MIC" "B_NESSR_GNRR" "CZX" 0.5 -"CLSI 2011" "MIC" "B_NESSR_GNRR" "ENX" 0.5 2 -"CLSI 2011" "MIC" "B_NESSR_GNRR" "FEP" 0.5 -"CLSI 2011" "MIC" "B_NESSR_GNRR" "FLE" 0.25 1 -"CLSI 2011" "MIC" "B_NESSR_GNRR" "FOX" 2 8 -"CLSI 2011" "MIC" "B_NESSR_GNRR" "GAT" 0.125 0.5 -"CLSI 2011" "MIC" "B_NESSR_GNRR" "GRX" 0.064 1 -"CLSI 2011" "MIC" "B_NESSR_GNRR" "LOM" 0.125 2 -"CLSI 2011" "MIC" "B_NESSR_GNRR" "OFX" 0.25 2 -"CLSI 2011" "MIC" "B_NESSR_GNRR" "PEN" 0.064 2 -"CLSI 2011" "MIC" "B_NESSR_GNRR" "TCY" 0.25 2 -"CLSI 2011" "MIC" "B_NESSR_GNRR" "TVA" 0.25 -"CLSI 2011" "MIC" "B_NESSR_MNNG" "AMP" 0.125 2 -"CLSI 2011" "MIC" "B_NESSR_MNNG" "AZM" 2 -"CLSI 2011" "MIC" "B_NESSR_MNNG" "CHL" 2 8 -"CLSI 2011" "MIC" "B_NESSR_MNNG" "CIP" 0.032 0.12 -"CLSI 2011" "MIC" "B_NESSR_MNNG" "CRO" 0.125 -"CLSI 2011" "MIC" "B_NESSR_MNNG" "CTX" 0.125 -"CLSI 2011" "MIC" "B_NESSR_MNNG" "LVX" 0.032 0.12 -"CLSI 2011" "MIC" "B_NESSR_MNNG" "MEM" 0.25 -"CLSI 2011" "MIC" "B_NESSR_MNNG" "MNO" 2 -"CLSI 2011" "MIC" "B_NESSR_MNNG" "NAL" 4 8 -"CLSI 2011" "MIC" "B_NESSR_MNNG" "PEN" 0.064 0.5 -"CLSI 2011" "MIC" "B_NESSR_MNNG" "RIF" 0.5 2 -"CLSI 2011" "MIC" "B_NESSR_MNNG" "SMX" 2 8 -"CLSI 2011" "MIC" "B_NESSR_MNNG" "SMX" 2 8 -"CLSI 2011" "MIC" "B_NESSR_MNNG" "SOX" 2 8 -"CLSI 2011" "MIC" "B_NESSR_MNNG" "SSS" 2 8 -"CLSI 2011" "MIC" "B_NESSR_MNNG" "SXT" 0.125 0.5 -"CLSI 2011" "MIC" "B_PDCCC" "AMP" 8 -"CLSI 2011" "MIC" "B_PDCCC" "CHL" 8 32 -"CLSI 2011" "MIC" "B_PDCCC" "GEN" 4 16 -"CLSI 2011" "MIC" "B_PDCCC" "IPM" 0.5 -"CLSI 2011" "MIC" "B_PDCCC" "PEN" 8 -"CLSI 2011" "MIC" "B_PLSMN" "AMC" 8 32 -"CLSI 2011" "MIC" "B_PLSMN" "AMK" 16 64 -"CLSI 2011" "MIC" "B_PLSMN" "ATM" 4 16 -"CLSI 2011" "MIC" "B_PLSMN" "CAZ" 4 16 -"CLSI 2011" "MIC" "B_PLSMN" "CHL" 8 32 -"CLSI 2011" "MIC" "B_PLSMN" "CIP" 1 4 -"CLSI 2011" "MIC" "B_PLSMN" "CRO" 1 4 -"CLSI 2011" "MIC" "B_PLSMN" "CTX" 1 4 -"CLSI 2011" "MIC" "B_PLSMN" "CXM" 8 32 -"CLSI 2011" "MIC" "B_PLSMN" "CZO" 1 4 -"CLSI 2011" "MIC" "B_PLSMN" "ETP" 2 8 -"CLSI 2011" "MIC" "B_PLSMN" "FEP" 8 32 -"CLSI 2011" "MIC" "B_PLSMN" "FOX" 8 32 -"CLSI 2011" "MIC" "B_PLSMN" "GEN" 4 16 -"CLSI 2011" "MIC" "B_PLSMN" "IPM" 4 16 -"CLSI 2011" "MIC" "B_PLSMN" "LVX" 2 8 -"CLSI 2011" "MIC" "B_PLSMN" "MEM" 4 16 -"CLSI 2011" "MIC" "B_PLSMN" "SAM" 8 32 -"CLSI 2011" "MIC" "B_PLSMN" "SXT" 2 4 -"CLSI 2011" "MIC" "B_PLSMN" "TCY" 4 16 -"CLSI 2011" "MIC" "B_PLSMN" "TZP" 16 128 -"CLSI 2011" "MIC" "B_PSDMN" "ETP" -"CLSI 2011" "MIC" "B_PSDMN_AERG" "CRB" 128 512 -"CLSI 2011" "MIC" "B_PSDMN_AERG" "MEZ" 64 128 -"CLSI 2011" "MIC" "B_PSDMN_AERG" "PIP" 64 128 -"CLSI 2011" "MIC" "B_PSDMN_AERG" "SAM" -"CLSI 2011" "MIC" "B_PSDMN_AERG" "TCC" 64 128 -"CLSI 2011" "MIC" "B_PSDMN_AERG" "TIC" 64 128 -"CLSI 2011" "MIC" "B_PSDMN_AERG" "TZP" 64 128 -"CLSI 2011" "MIC" "B_PSTRL" "AMC" 0.5 -"CLSI 2011" "MIC" "B_PSTRL" "AMP" 0.5 -"CLSI 2011" "MIC" "B_PSTRL" "AMX" 0.5 -"CLSI 2011" "MIC" "B_PSTRL" "AZM" 1 -"CLSI 2011" "MIC" "B_PSTRL" "CHL" 2 -"CLSI 2011" "MIC" "B_PSTRL" "CRO" 0.125 -"CLSI 2011" "MIC" "B_PSTRL" "DOX" 0.5 -"CLSI 2011" "MIC" "B_PSTRL" "ERY" 0.5 2 -"CLSI 2011" "MIC" "B_PSTRL" "LVX" 0.064 -"CLSI 2011" "MIC" "B_PSTRL" "MFX" 0.064 -"CLSI 2011" "MIC" "B_PSTRL" "PEN" 0.5 -"CLSI 2011" "MIC" "B_PSTRL" "SXT" 0.5 -"CLSI 2011" "MIC" "B_PSTRL" "TCY" 1 -"CLSI 2011" "MIC" "B_PSTRL_MLTC" "TIL" 16 32 -"CLSI 2011" "MIC" "B_STPHY" "AMC" 4 8 -"CLSI 2011" "MIC" "B_STPHY" "AMP" 0.25 0.5 -"CLSI 2011" "MIC" "B_STPHY" "GAT" 0.5 2 -"CLSI 2011" "MIC" "B_STPHY" "LVX" 1 4 -"CLSI 2011" "MIC" "B_STPHY" "OFX" 1 4 -"CLSI 2011" "MIC" "B_STPHY" "TCC" 8 16 -"CLSI 2011" "MIC" "B_STPHY" "TZP" 8 16 -"CLSI 2011" "MIC" "B_STPHY_AURS" "FOX" 4 8 -"CLSI 2011" "MIC" "B_STPHY_AURS" "OXA" 2 4 -"CLSI 2011" "MIC" "B_STPHY_AURS" "VAN" 2 16 -"CLSI 2011" "MIC" "B_STPHY_LGDN" "FOX" 4 8 -"CLSI 2011" "MIC" "B_STPHY_LGDN" "OXA" 2 4 -"CLSI 2011" "MIC" "B_STRPT" "AMC" -"CLSI 2011" "MIC" "B_STRPT" "AMP" 0.25 8 -"CLSI 2011" "MIC" "B_STRPT" "AMP" 0.25 -"CLSI 2011" "MIC" "B_STRPT" "AMX" -"CLSI 2011" "MIC" "B_STRPT" "AZM" 0.5 2 -"CLSI 2011" "MIC" "B_STRPT" "CHL" 4 8 -"CLSI 2011" "MIC" "B_STRPT" "CHL" 4 16 -"CLSI 2011" "MIC" "B_STRPT" "CIP" 1 4 -"CLSI 2011" "MIC" "B_STRPT" "CLI" 0.25 1 -"CLSI 2011" "MIC" "B_STRPT" "CLI" 0.25 1 -"CLSI 2011" "MIC" "B_STRPT" "CLR" 0.25 1 -"CLSI 2011" "MIC" "B_STRPT" "CRO" 1 4 -"CLSI 2011" "MIC" "B_STRPT" "CRO" 0.5 -"CLSI 2011" "MIC" "B_STRPT" "CTX" 1 4 -"CLSI 2011" "MIC" "B_STRPT" "CTX" 0.5 -"CLSI 2011" "MIC" "B_STRPT" "CXM" -"CLSI 2011" "MIC" "B_STRPT" "DIR" 0.5 2 -"CLSI 2011" "MIC" "B_STRPT" "ERY" 0.25 1 -"CLSI 2011" "MIC" "B_STRPT" "ERY" 0.25 1 -"CLSI 2011" "MIC" "B_STRPT" "ETP" 1 -"CLSI 2011" "MIC" "B_STRPT" "FEP" 1 4 -"CLSI 2011" "MIC" "B_STRPT" "FEP" 0.5 -"CLSI 2011" "MIC" "B_STRPT" "GAT" 1 4 -"CLSI 2011" "MIC" "B_STRPT" "GAT" 1 4 -"CLSI 2011" "MIC" "B_STRPT" "GEM" -"CLSI 2011" "MIC" "B_STRPT" "GRX" 0.5 2 -"CLSI 2011" "MIC" "B_STRPT" "IPM" 0.5 2 -"CLSI 2011" "MIC" "B_STRPT" "IPM" -"CLSI 2011" "MIC" "B_STRPT" "LNZ" 2 -"CLSI 2011" "MIC" "B_STRPT" "LVX" 2 8 -"CLSI 2011" "MIC" "B_STRPT" "LVX" 2 8 -"CLSI 2011" "MIC" "B_STRPT" "MEM" 0.5 2 -"CLSI 2011" "MIC" "B_STRPT" "MEM" 0.5 -"CLSI 2011" "MIC" "B_STRPT" "MFX" -"CLSI 2011" "MIC" "B_STRPT" "OFX" 2 8 -"CLSI 2011" "MIC" "B_STRPT" "PEN" 0.125 4 -"CLSI 2011" "MIC" "B_STRPT" "PEN" 0.125 -"CLSI 2011" "MIC" "B_STRPT" "QDA" 1 4 -"CLSI 2011" "MIC" "B_STRPT" "RIF" -"CLSI 2011" "MIC" "B_STRPT" "SPX" -"CLSI 2011" "MIC" "B_STRPT" "SXT" -"CLSI 2011" "MIC" "B_STRPT" "TCY" 2 8 -"CLSI 2011" "MIC" "B_STRPT" "TLT" -"CLSI 2011" "MIC" "B_STRPT" "TVA" 1 4 -"CLSI 2011" "MIC" "B_STRPT" "VAN" 1 -"CLSI 2011" "MIC" "B_STRPT" "VAN" 1 -"CLSI 2011" "MIC" "Non-meningitis" "B_STRPT_PNMN" "AMC" 2 8 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "AMP" -"CLSI 2011" "MIC" "Non-meningitis" "B_STRPT_PNMN" "AMX" 2 8 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "AZM" 0.5 2 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "CAC" 1 4 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "CDR" 0.5 2 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "CEC" 1 4 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "CHL" 4 8 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "CIP" -"CLSI 2011" "MIC" "B_STRPT_PNMN" "CLI" 0.25 1 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "CLR" 0.25 1 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "CPD" 0.5 2 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "CPR" 2 8 -"CLSI 2011" "MIC" "Meningitis" "B_STRPT_PNMN" "CRO" 0.5 2 -"CLSI 2011" "MIC" "Non-meningitis" "B_STRPT_PNMN" "CRO" 1 4 -"CLSI 2011" "MIC" "Meningitis" "B_STRPT_PNMN" "CTX" 0.5 2 -"CLSI 2011" "MIC" "Non-meningitis" "B_STRPT_PNMN" "CTX" 1 4 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "CXA" 1 4 -"CLSI 2011" "MIC" "Oral" "B_STRPT_PNMN" "CXM" 1 4 -"CLSI 2011" "MIC" "Parenteral" "B_STRPT_PNMN" "CXM" 0.5 2 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "DIR" 0.5 2 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "ERY" 0.25 1 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "ETP" 1 4 -"CLSI 2011" "MIC" "Meningitis" "B_STRPT_PNMN" "FEP" 0.5 2 -"CLSI 2011" "MIC" "Non-meningitis" "B_STRPT_PNMN" "FEP" 1 4 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "GAT" 1 4 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "GEM" 0.125 0.5 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "GRX" 0.5 2 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "IPM" 0.125 1 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "LNZ" 2 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "LOR" 2 8 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "LVX" 2 8 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "MEM" 0.25 1 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "MFX" 1 4 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "NOR" -"CLSI 2011" "MIC" "B_STRPT_PNMN" "OFX" 2 8 -"CLSI 2011" "MIC" "Meningitis" "B_STRPT_PNMN" "PEN" 0.064 0.12 -"CLSI 2011" "MIC" "Non-meningitis" "B_STRPT_PNMN" "PEN" 2 8 -"CLSI 2011" "MIC" "Oral" "B_STRPT_PNMN" "PEN" 0.064 2 -"CLSI 2011" "MIC" "Oral" "B_STRPT_PNMN" "PNV" 0.064 2 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "QDA" 1 4 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "RIF" 1 4 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "SAM" -"CLSI 2011" "MIC" "B_STRPT_PNMN" "SPX" 0.5 2 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "SXT" 0.5 4 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "TCY" 2 8 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "TLT" 1 4 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "TVA" 1 4 -"CLSI 2011" "MIC" "B_STRPT_PNMN" "VAN" 1 -"CLSI 2011" "MIC" "B_STRPT_VIRI" "AMP" 0.25 8 -"CLSI 2011" "MIC" "B_STRPT_VIRI" "AZM" 0.5 2 -"CLSI 2011" "MIC" "B_STRPT_VIRI" "CHL" 4 16 -"CLSI 2011" "MIC" "B_STRPT_VIRI" "CLI" 0.25 1 -"CLSI 2011" "MIC" "B_STRPT_VIRI" "CLR" 0.25 1 -"CLSI 2011" "MIC" "B_STRPT_VIRI" "CRO" 1 4 -"CLSI 2011" "MIC" "B_STRPT_VIRI" "CTX" 1 4 -"CLSI 2011" "MIC" "B_STRPT_VIRI" "DAP" 1 -"CLSI 2011" "MIC" "B_STRPT_VIRI" "DIR" 0.5 2 -"CLSI 2011" "MIC" "B_STRPT_VIRI" "ERY" 0.25 1 -"CLSI 2011" "MIC" "B_STRPT_VIRI" "ETP" 1 -"CLSI 2011" "MIC" "B_STRPT_VIRI" "FEP" 1 4 -"CLSI 2011" "MIC" "B_STRPT_VIRI" "GAT" 1 4 -"CLSI 2011" "MIC" "B_STRPT_VIRI" "GRX" 0.5 2 -"CLSI 2011" "MIC" "B_STRPT_VIRI" "LNZ" 2 -"CLSI 2011" "MIC" "B_STRPT_VIRI" "LVX" 2 8 -"CLSI 2011" "MIC" "B_STRPT_VIRI" "MEM" 0.5 -"CLSI 2011" "MIC" "B_STRPT_VIRI" "OFX" 2 8 -"CLSI 2011" "MIC" "B_STRPT_VIRI" "PEN" 0.125 4 -"CLSI 2011" "MIC" "B_STRPT_VIRI" "QDA" 1 4 -"CLSI 2011" "MIC" "B_STRPT_VIRI" "TCY" 2 8 -"CLSI 2011" "MIC" "B_STRPT_VIRI" "TVA" 1 4 -"CLSI 2011" "MIC" "B_STRPT_VIRI" "VAN" 1 -"CLSI 2011" "MIC" "B_VIBRI_CHLR" "AZM" 2 -"CLSI 2011" "MIC" "B_VIBRI_CHLR" "DOX" "30ug" 4 16 -"CLSI 2011" "MIC" "B_YERSN_PSTS" "CHL" 8 32 -"CLSI 2011" "MIC" "B_YERSN_PSTS" "CIP" 0.25 -"CLSI 2011" "MIC" "B_YERSN_PSTS" "DOX" 4 16 -"CLSI 2011" "MIC" "B_YERSN_PSTS" "GEN" 4 16 -"CLSI 2011" "MIC" "B_YERSN_PSTS" "LVX" 0.25 -"CLSI 2011" "MIC" "B_YERSN_PSTS" "STR" 4 16 -"CLSI 2011" "MIC" "B_YERSN_PSTS" "SXT" 2 4 -"CLSI 2011" "MIC" "B_YERSN_PSTS" "TCY" 4 16 -"EUCAST 2019" "DISK" "B_ENTRC" "GEH" "Enterococcus" "30ug" 8 7 -"EUCAST 2019" "DISK" "B_ENTRC" "GEN" "Enterococcus" "30ug" 8 7 -"EUCAST 2019" "DISK" "B_ENTRC" "STH" "Enterococcus" "300ug" 14 13 -"EUCAST 2019" "DISK" "B_ENTRC" "STR" "Enterococcus" "300ug" 14 13 -"EUCAST 2019" "DISK" "B_STPHY_AURS" "KAN" "Staphs" "30" 18 17 -"EUCAST 2018" "DISK" "B_ENTRC" "GEH" "Enterococcus" "30ug" 8 7 -"EUCAST 2018" "DISK" "B_ENTRC" "GEN" "Enterococcus" "30ug" 8 7 -"EUCAST 2018" "DISK" "B_ENTRC" "STH" "Enterococcus" "300ug" 14 13 -"EUCAST 2018" "DISK" "B_ENTRC" "STR" "Enterococcus" "300ug" 14 13 -"EUCAST 2018" "DISK" "B_STPHY_AURS" "KAN" "Staphs" "30" 18 17 -"EUCAST 2017" "DISK" "B_ENTRC" "GEH" "Enterococcus" "30ug" 8 7 -"EUCAST 2017" "DISK" "B_ENTRC" "GEN" "Enterococcus" "30ug" 8 7 -"EUCAST 2017" "DISK" "B_ENTRC" "STH" "Enterococcus" "300ug" 14 13 -"EUCAST 2017" "DISK" "B_ENTRC" "STR" "Enterococcus" "300ug" 14 13 -"EUCAST 2017" "DISK" "B_STPHY_AURS" "KAN" "Staphs" "30" 18 17 -"EUCAST 2016" "DISK" "B_ENTRC" "GEH" "Enterococcus" "30ug" 8 7 -"EUCAST 2016" "DISK" "B_ENTRC" "GEN" "Enterococcus" "30ug" 8 7 -"EUCAST 2016" "DISK" "B_ENTRC" "STH" "Enterococcus" "300ug" 14 13 -"EUCAST 2016" "DISK" "B_ENTRC" "STR" "Enterococcus" "300ug" 14 13 -"EUCAST 2016" "DISK" "B_STPHY" "KAN" "Staphs" "30" 18 17 -"EUCAST 2015" "DISK" "B_ENTRC" "GEH" "Enterococcus" "30ug" 8 7 -"EUCAST 2015" "DISK" "B_ENTRC" "GEN" "Enterococcus" "30ug" 8 7 -"EUCAST 2014" "DISK" "B_ENTRC" "GEH" "Enterococcus" "30ug" 8 7 -"EUCAST 2014" "DISK" "B_ENTRC" "GEN" "Enterococcus" "30ug" 8 7 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "AMC" "Enterobacteriaceae" "20/10ug" 17 16 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "AMK" "Enterobacteriaceae" "30ug" 16 12 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "AMP" "Enterobacteriaceae" "10ug" 14 13 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "ATM" "Enterobacteriaceae" "30ug" 24 20 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "CAZ" "Enterobacteriaceae" "10ug" 22 18 -"EUCAST 2013" "DISK" "Urinary tract infect" "B_[FAM]_ENTRBCTR" "CFM" "Enterobacteriaceae" "5ug" 17 16 -"EUCAST 2013" "DISK" "Urinary tract infect" "B_[FAM]_ENTRBCTR" "CFR" "Enterobacteriaceae" "30ug" 12 11 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "CHL" "Enterobacteriaceae" "30ug" 17 16 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "CIP" "Enterobacteriaceae" "5ug" 22 18 -"EUCAST 2013" "DISK" "Urinary tract infect" "B_[FAM]_ENTRBCTR" "CPD" "Enterobacteriaceae" "10ug" 21 20 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "CPT" "Enterobacteriaceae" "5ug" 23 22 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "CRO" "Enterobacteriaceae" "30ug" 23 19 -"EUCAST 2013" "DISK" "Urinary tract infect" "B_[FAM]_ENTRBCTR" "CTB" "Enterobacteriaceae" "30ug" 23 22 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "CTX" "Enterobacteriaceae" "5ug" 20 16 -"EUCAST 2013" "DISK" "Urinary tract infect" "B_[FAM]_ENTRBCTR" "CXA" "Enterobacteriaceae" "30ug" 18 17 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "CXM" "Enterobacteriaceae" "30ug" 18 17 -"EUCAST 2013" "DISK" "Urinary tract infect" "B_[FAM]_ENTRBCTR" "CXM" "Enterobacteriaceae" "30ug" 18 17 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "DOR" "Enterobacteriaceae" "10ug" 24 17 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "ETP" "Enterobacteriaceae" "10ug" 25 21 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "FEP" "Enterobacteriaceae" "30ug" 24 20 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "FOX" "Enterobacteriaceae" "30ug" 19 18 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "GEN" "Enterobacteriaceae" "10ug" 17 13 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "IPM" "Enterobacteriaceae" "10ug" 22 15 -"EUCAST 2013" "DISK" "Urinary tract infect" "B_[FAM]_ENTRBCTR" "LEX" "Enterobacteriaceae" "30ug" 14 13 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "LVX" "Enterobacteriaceae" "5ug" 22 18 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "MEM" "Enterobacteriaceae" "10ug" 22 15 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "MFX" "Enterobacteriaceae" "5ug" 20 16 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "NET" "Enterobacteriaceae" "10ug" 15 11 -"EUCAST 2013" "DISK" "Urinary tract infect" "B_[FAM]_ENTRBCTR" "NIT" "Enterobacteriaceae" "100ug" 11 10 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "NOR" "Enterobacteriaceae" "10ug" 22 18 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "OFX" "Enterobacteriaceae" "5ug" 22 18 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "PIP" "Enterobacteriaceae" "30ug" 20 16 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "SAM" "Enterobacteriaceae" "10/10ug" 14 13 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "SXT" "Enterobacteriaceae" "1.25/23.75ug" 16 12 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "TCC" "Enterobacteriaceae" "75/10ug" 23 22 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "TGC" "Enterobacteriaceae" "15ug" 18 14 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "TIC" "Enterobacteriaceae" "75ug" 23 22 -"EUCAST 2013" "DISK" "Urinary tract infect" "B_[FAM]_ENTRBCTR" "TMP" "Enterobacteriaceae" "5ug" 18 14 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "TOB" "Enterobacteriaceae" "10ug" 17 13 -"EUCAST 2013" "DISK" "B_[FAM]_ENTRBCTR" "TZP" "Enterobacteriaceae" "30/6ug" 20 16 -"EUCAST 2013" "DISK" "B_ACNTB" "AMK" "Acinetob" "30ug" 18 14 -"EUCAST 2013" "DISK" "B_ACNTB" "CIP" "Acinetob" "5ug" 21 20 -"EUCAST 2013" "DISK" "B_ACNTB" "DOR" "Acinetob" "10ug" 21 14 -"EUCAST 2013" "DISK" "B_ACNTB" "GEN" "Acinetob" "10ug" 17 16 -"EUCAST 2013" "DISK" "B_ACNTB" "IPM" "Acinetob" "10ug" 23 16 -"EUCAST 2013" "DISK" "B_ACNTB" "LVX" "Acinetob" "5ug" 21 17 -"EUCAST 2013" "DISK" "B_ACNTB" "MEM" "Acinetob" "10ug" 21 14 -"EUCAST 2013" "DISK" "B_ACNTB" "NET" "Acinetob" "10ug" 16 15 -"EUCAST 2013" "DISK" "B_ACNTB" "SXT" "Acinetob" "1.25/23.75ug" 16 12 -"EUCAST 2013" "DISK" "B_ACNTB" "TOB" "Acinetob" "10ug" 17 16 -"EUCAST 2013" "DISK" "B_CMPYL" "CIP" "Campylobacter" "5ug" 26 25 -"EUCAST 2013" "DISK" "B_CMPYL" "TCY" "Campylobacter" "30ug" 30 29 -"EUCAST 2013" "DISK" "B_CMPYL_COLI" "ERY" "Campylobacter" "15ug" 24 23 -"EUCAST 2013" "DISK" "B_CMPYL_JEJN" "ERY" "Campylobacter" "15ug" 20 19 -"EUCAST 2013" "DISK" "B_ENTRC" "AMP" "Enterococcus" "2ug" 10 7 -"EUCAST 2013" "DISK" "B_ENTRC" "GEH" "Enterococcus" "30ug" 8 7 -"EUCAST 2013" "DISK" "B_ENTRC" "GEN" "Enterococcus" "30ug" 8 7 -"EUCAST 2013" "DISK" "B_ENTRC" "IPM" "Enterococcus" "10ug" 21 17 -"EUCAST 2013" "DISK" "B_ENTRC" "LNZ" "Enterococcus" "10ug" 19 18 -"EUCAST 2013" "DISK" "B_ENTRC" "STH" "Enterococcus" "300ug" 19 18 -"EUCAST 2013" "DISK" "B_ENTRC" "STR" "Enterococcus" "300ug" 19 18 -"EUCAST 2013" "DISK" "B_ENTRC" "SXT" "Enterococcus" "1.25/23.75ug" 50 20 -"EUCAST 2013" "DISK" "B_ENTRC" "TEC" "Enterococcus" "30ug" 16 15 -"EUCAST 2013" "DISK" "B_ENTRC" "TGC" "Enterococcus" "15ug" 18 14 -"EUCAST 2013" "DISK" "Urinary tract infect" "B_ENTRC" "TMP" "Enterococcus" "5ug" 50 20 -"EUCAST 2013" "DISK" "B_ENTRC" "VAN" "Enterococcus" "5ug" 12 11 -"EUCAST 2013" "DISK" "B_ENTRC_FACM" "QDA" "Enterococcus" "15ug" 22 19 -"EUCAST 2013" "DISK" "Urinary tract infect" "B_ENTRC_FCLS" "NIT" "Enterococcus" "100ug" 15 14 -"EUCAST 2013" "DISK" "Urinary tract infect" "B_ESCHR_COLI" "MEC" "Enterobacteriaceae" "10ug" 15 14 -"EUCAST 2013" "DISK" "B_HMPHL_INFL" "AMC" "H.influenzae" "2/1ug" 15 14 -"EUCAST 2013" "DISK" "B_HMPHL_INFL" "AMP" "H.influenzae" "2ug" 16 15 -"EUCAST 2013" "DISK" "B_HMPHL_INFL" "CFM" "H.influenzae" "5ug" 25 24 -"EUCAST 2013" "DISK" "B_HMPHL_INFL" "CHL" "H.influenzae" "30ug" 28 27 -"EUCAST 2013" "DISK" "B_HMPHL_INFL" "CIP" "H.influenzae" "5ug" 26 25 -"EUCAST 2013" "DISK" "B_HMPHL_INFL" "CPD" "H.influenzae" "10ug" 26 22 -"EUCAST 2013" "DISK" "B_HMPHL_INFL" "CRO" "H.influenzae" "30ug" 30 29 -"EUCAST 2013" "DISK" "B_HMPHL_INFL" "CTB" "H.influenzae" "30ug" 25 24 -"EUCAST 2013" "DISK" "B_HMPHL_INFL" "CTX" "H.influenzae" "5ug" 26 25 -"EUCAST 2013" "DISK" "B_HMPHL_INFL" "CXA" "H.influenzae" "30ug" 50 25 -"EUCAST 2013" "DISK" "B_HMPHL_INFL" "CXM" "H.influenzae" "30ug" 26 24 -"EUCAST 2013" "DISK" "B_HMPHL_INFL" "CXM" "H.influenzae" "30ug" 50 25 -"EUCAST 2013" "DISK" "B_HMPHL_INFL" "DOR" "H.influenzae" "10ug" 20 19 -"EUCAST 2013" "DISK" "B_HMPHL_INFL" "ERY" "H.influenzae" "15ug" 50 9 -"EUCAST 2013" "DISK" "B_HMPHL_INFL" "ETP" "H.influenzae" "10ug" 20 19 -"EUCAST 2013" "DISK" "B_HMPHL_INFL" "FEP" "H.influenzae" "30ug" 27 26 -"EUCAST 2013" "DISK" "B_HMPHL_INFL" "IPM" "H.influenzae" "10ug" 20 19 -"EUCAST 2013" "DISK" "B_HMPHL_INFL" "LVX" "H.influenzae" "5ug" 26 25 -"EUCAST 2013" "DISK" "Nonmeningitis" "B_HMPHL_INFL" "MEM" "H.influenzae" "10ug" 20 19 -"EUCAST 2013" "DISK" "B_HMPHL_INFL" "MFX" "H.influenzae" "5ug" 25 24 -"EUCAST 2013" "DISK" "B_HMPHL_INFL" "MNO" "H.influenzae" "30ug" 24 20 -"EUCAST 2013" "DISK" "B_HMPHL_INFL" "NAL" "H.influenzae" "30ug" 23 -"EUCAST 2013" "DISK" "B_HMPHL_INFL" "OFX" "H.influenzae" "5ug" 23 22 -"EUCAST 2013" "DISK" "B_HMPHL_INFL" "PEN" "H.influenzae" "1unit" 12 -"EUCAST 2013" "DISK" "Prophylaxis" "B_HMPHL_INFL" "RIF" "H.influenzae" "5ug" 18 17 -"EUCAST 2013" "DISK" "B_HMPHL_INFL" "SAM" "H.influenzae" "10/10ug" -"EUCAST 2013" "DISK" "B_HMPHL_INFL" "SXT" "H.influenzae" "1.25/23.75ug" 23 19 -"EUCAST 2013" "DISK" "B_HMPHL_INFL" "TCY" "H.influenzae" "30ug" 25 21 -"EUCAST 2013" "DISK" "B_HMPHL_INFL" "TLT" "H.influenzae" "15ug" 50 11 -"EUCAST 2013" "DISK" "Urinary tract infect" "B_KLBSL_PNMN" "MEC" "Enterobacteriaceae" "10ug" 15 14 -"EUCAST 2013" "DISK" "B_LISTR_MNCY" "AMP" "Listeria" "2ug" 16 15 -"EUCAST 2013" "DISK" "B_LISTR_MNCY" "ERY" "Listeria" "15ug" 25 24 -"EUCAST 2013" "DISK" "B_LISTR_MNCY" "MEM" "Listeria" "10ug" 26 25 -"EUCAST 2013" "DISK" "B_LISTR_MNCY" "PEN" "Listeria" "1unit" 13 12 -"EUCAST 2013" "DISK" "B_LISTR_MNCY" "SXT" "Listeria" "1.25/23.75ug" 29 28 -"EUCAST 2013" "DISK" "B_MRXLL_CTRR" "AMC" "M.catarrhalis" "2/1ug" 19 18 -"EUCAST 2013" "DISK" "B_MRXLL_CTRR" "CFM" "M.catarrhalis" "5ug" 21 17 -"EUCAST 2013" "DISK" "B_MRXLL_CTRR" "CHL" "M.catarrhalis" "30ug" 30 29 -"EUCAST 2013" "DISK" "B_MRXLL_CTRR" "CIP" "M.catarrhalis" "5ug" 23 22 -"EUCAST 2013" "DISK" "B_MRXLL_CTRR" "CRO" "M.catarrhalis" "30ug" 24 20 -"EUCAST 2013" "DISK" "B_MRXLL_CTRR" "CTX" "M.catarrhalis" "5ug" 20 16 -"EUCAST 2013" "DISK" "B_MRXLL_CTRR" "CXA" "M.catarrhalis" "30ug" 50 20 -"EUCAST 2013" "DISK" "B_MRXLL_CTRR" "CXM" "M.catarrhalis" "30ug" 21 17 -"EUCAST 2013" "DISK" "B_MRXLL_CTRR" "CXM" "M.catarrhalis" "30ug" 50 20 -"EUCAST 2013" "DISK" "B_MRXLL_CTRR" "DOR" "M.catarrhalis" "10ug" 30 29 -"EUCAST 2013" "DISK" "B_MRXLL_CTRR" "ERY" "M.catarrhalis" "15ug" 23 19 -"EUCAST 2013" "DISK" "B_MRXLL_CTRR" "ETP" "M.catarrhalis" "10ug" 29 28 -"EUCAST 2013" "DISK" "B_MRXLL_CTRR" "FEP" "M.catarrhalis" "30ug" 20 19 -"EUCAST 2013" "DISK" "B_MRXLL_CTRR" "IPM" "M.catarrhalis" "10ug" 29 28 -"EUCAST 2013" "DISK" "B_MRXLL_CTRR" "LVX" "M.catarrhalis" "5ug" 23 22 -"EUCAST 2013" "DISK" "B_MRXLL_CTRR" "MEM" "M.catarrhalis" "10ug" 33 32 -"EUCAST 2013" "DISK" "B_MRXLL_CTRR" "MFX" "M.catarrhalis" "5ug" 23 22 -"EUCAST 2013" "DISK" "B_MRXLL_CTRR" "MNO" "M.catarrhalis" "30ug" 25 21 -"EUCAST 2013" "DISK" "B_MRXLL_CTRR" "NAL" "M.catarrhalis" "30ug" 23 -"EUCAST 2013" "DISK" "B_MRXLL_CTRR" "OFX" "M.catarrhalis" "5ug" 25 24 -"EUCAST 2013" "DISK" "B_MRXLL_CTRR" "SXT" "M.catarrhalis" "1.25/23.75ug" 18 14 -"EUCAST 2013" "DISK" "B_MRXLL_CTRR" "TCY" "M.catarrhalis" "30ug" 28 24 -"EUCAST 2013" "DISK" "B_MRXLL_CTRR" "TLT" "M.catarrhalis" "15ug" 23 19 -"EUCAST 2013" "DISK" "Urinary tract infect" "B_PROTS_MRBL" "MEC" "Enterobacteriaceae" "10ug" 15 14 -"EUCAST 2013" "DISK" "B_PSDMN" "AMK" "Pseud" "30ug" 18 14 -"EUCAST 2013" "DISK" "B_PSDMN" "ATM" "Pseud" "30ug" 50 15 -"EUCAST 2013" "DISK" "B_PSDMN" "CAZ" "Pseud" "10ug" 16 15 -"EUCAST 2013" "DISK" "B_PSDMN" "CIP" "Pseud" "5ug" 25 21 -"EUCAST 2013" "DISK" "B_PSDMN" "DOR" "Pseud" "10ug" 25 18 -"EUCAST 2013" "DISK" "B_PSDMN" "FEP" "Pseud" "30ug" 18 17 -"EUCAST 2013" "DISK" "B_PSDMN" "GEN" "Pseud" "10ug" 15 14 -"EUCAST 2013" "DISK" "B_PSDMN" "IPM" "Pseud" "10ug" 20 16 -"EUCAST 2013" "DISK" "B_PSDMN" "LVX" "Pseud" "5ug" 20 16 -"EUCAST 2013" "DISK" "B_PSDMN" "MEM" "Pseud" "10ug" 24 17 -"EUCAST 2013" "DISK" "B_PSDMN" "NET" "Pseud" "10ug" 12 11 -"EUCAST 2013" "DISK" "B_PSDMN" "PIP" "Pseud" "30ug" 19 18 -"EUCAST 2013" "DISK" "B_PSDMN" "TCC" "Pseud" "75/10ug" 17 16 -"EUCAST 2013" "DISK" "B_PSDMN" "TIC" "Pseud" "75ug" 17 16 -"EUCAST 2013" "DISK" "B_PSDMN" "TOB" "Pseud" "10ug" 16 15 -"EUCAST 2013" "DISK" "B_PSDMN" "TZP" "Pseud" "30/6ug" 19 18 -"EUCAST 2013" "DISK" "B_PSTRL_MLTC" "AMC" "Pasteurella" "2/1ug" 15 14 -"EUCAST 2013" "DISK" "B_PSTRL_MLTC" "AMP" "Pasteurella" "2ug" 17 16 -"EUCAST 2013" "DISK" "B_PSTRL_MLTC" "CIP" "Pasteurella" "5ug" 27 26 -"EUCAST 2013" "DISK" "B_PSTRL_MLTC" "CTX" "Pasteurella" "5ug" 26 25 -"EUCAST 2013" "DISK" "B_PSTRL_MLTC" "LVX" "Pasteurella" "5ug" 27 26 -"EUCAST 2013" "DISK" "B_PSTRL_MLTC" "NAL" "Pasteurella" "30ug" 23 -"EUCAST 2013" "DISK" "B_PSTRL_MLTC" "PEN" "Pasteurella" "1unit" 17 16 -"EUCAST 2013" "DISK" "B_PSTRL_MLTC" "SXT" "Pasteurella" "1.25/23.75ug" 23 22 -"EUCAST 2013" "DISK" "B_PSTRL_MLTC" "TCY" "Pasteurella" "30ug" 24 23 -"EUCAST 2013" "DISK" "B_STNTR_MLTP" "SXT" "S.maltophilia" "1.25/23.75ug" 16 15 -"EUCAST 2013" "DISK" "B_STPHY" "AMP" "Staphs" "2ug" 15 14 -"EUCAST 2013" "DISK" "B_STPHY" "CHL" "Staphs" "30ug" 18 17 -"EUCAST 2013" "DISK" "B_STPHY" "CIP" "Staphs" "5ug" 20 19 -"EUCAST 2013" "DISK" "B_STPHY" "CLI" "Staphs" "2ug" 22 18 -"EUCAST 2013" "DISK" "B_STPHY" "ERY" "Staphs" "15ug" 21 17 -"EUCAST 2013" "DISK" "B_STPHY" "FOX" "Staphs" "30ug" 22 21 -"EUCAST 2013" "DISK" "B_STPHY" "FUS" "Staphs" "10ug" 24 23 -"EUCAST 2013" "DISK" "B_STPHY" "LNZ" "Staphs" "10ug" 19 18 -"EUCAST 2013" "DISK" "B_STPHY" "LVX" "Staphs" "5ug" 22 18 -"EUCAST 2013" "DISK" "B_STPHY" "MFX" "Staphs" "5ug" 24 20 -"EUCAST 2013" "DISK" "B_STPHY" "MNO" "Staphs" "30ug" 23 19 -"EUCAST 2013" "DISK" "B_STPHY" "MUP" "Staphs" "200ug" 30 17 -"EUCAST 2013" "DISK" "Urinary tract infect" "B_STPHY" "NIT" "Staphs" "100ug" 13 12 -"EUCAST 2013" "DISK" "B_STPHY" "NOR" "Staphs" "10ug" 17 -"EUCAST 2013" "DISK" "B_STPHY" "OFX" "Staphs" "5ug" 20 19 -"EUCAST 2013" "DISK" "B_STPHY" "QDA" "Staphs" "15ug" 21 17 -"EUCAST 2013" "DISK" "B_STPHY" "RIF" "Staphs" "5ug" 26 22 -"EUCAST 2013" "DISK" "B_STPHY" "SXT" "Staphs" "1.25/23.75ug" 17 13 -"EUCAST 2013" "DISK" "B_STPHY" "TCY" "Staphs" "30ug" 22 18 -"EUCAST 2013" "DISK" "B_STPHY" "TGC" "Staphs" "15ug" 18 17 -"EUCAST 2013" "DISK" "Urinary tract infect" "B_STPHY" "TMP" "Staphs" "5ug" 17 13 -"EUCAST 2013" "DISK" "B_STPHY_AURS" "AMK" "Staphs" "30ug" 18 15 -"EUCAST 2013" "DISK" "B_STPHY_AURS" "CPT" "Staphs" "5ug" 20 19 -"EUCAST 2013" "DISK" "B_STPHY_AURS" "FOX" "Staphs" "30ug" 22 21 -"EUCAST 2013" "DISK" "B_STPHY_AURS" "GEN" "Staphs" "10ug" 18 17 -"EUCAST 2013" "DISK" "B_STPHY_AURS" "NET" "Staphs" "10ug" 18 17 -"EUCAST 2013" "DISK" "B_STPHY_AURS" "PEN" "Staphs" "1unit" 26 25 -"EUCAST 2013" "DISK" "B_STPHY_AURS" "TOB" "Staphs" "10ug" 18 17 -"EUCAST 2013" "DISK" "B_STPHY_CONS" "AMK" "Staphs" "30ug" 22 18 -"EUCAST 2013" "DISK" "B_STPHY_CONS" "FOX" "Staphs" "30ug" 25 24 -"EUCAST 2013" "DISK" "B_STPHY_CONS" "GEN" "Staphs" "10ug" 22 21 -"EUCAST 2013" "DISK" "B_STPHY_CONS" "NET" "Staphs" "10ug" 22 21 -"EUCAST 2013" "DISK" "B_STPHY_CONS" "TOB" "Staphs" "10ug" 22 21 -"EUCAST 2013" "DISK" "B_STPHY_LGDN" "FOX" "Staphs" "30ug" 22 21 -"EUCAST 2013" "DISK" "B_STRPT" "CHL" "Strept A,B,C,G" "30ug" 19 18 -"EUCAST 2013" "DISK" "B_STRPT" "CLI" "Strept A,B,C,G" "2ug" 17 16 -"EUCAST 2013" "DISK" "B_STRPT" "ERY" "Strept A,B,C,G" "15ug" 21 17 -"EUCAST 2013" "DISK" "B_STRPT" "LNZ" "Strept A,B,C,G" "10ug" 19 15 -"EUCAST 2013" "DISK" "B_STRPT" "LVX" "Strept A,B,C,G" "5ug" 18 14 -"EUCAST 2013" "DISK" "B_STRPT" "MFX" "Strept A,B,C,G" "5ug" 18 14 -"EUCAST 2013" "DISK" "B_STRPT" "MNO" "Strept A,B,C,G" "30ug" 23 19 -"EUCAST 2013" "DISK" "B_STRPT" "NOR" "Strept A,B,C,G" "10ug" 12 -"EUCAST 2013" "DISK" "B_STRPT" "PEN" "Strept A,B,C,G" "1unit" 18 17 -"EUCAST 2013" "DISK" "B_STRPT" "RIF" "Strept A,B,C,G" "5ug" 21 14 -"EUCAST 2013" "DISK" "B_STRPT" "SXT" "Strept A,B,C,G" "1.25/23.75ug" 18 14 -"EUCAST 2013" "DISK" "B_STRPT" "TCY" "Strept A,B,C,G" "30ug" 23 19 -"EUCAST 2013" "DISK" "B_STRPT" "TEC" "Strept A,B,C,G" "30ug" 15 14 -"EUCAST 2013" "DISK" "B_STRPT" "TGC" "Strept A,B,C,G" "15ug" 19 15 -"EUCAST 2013" "DISK" "B_STRPT" "TLT" "Strept A,B,C,G" "15ug" 20 16 -"EUCAST 2013" "DISK" "B_STRPT" "VAN" "Strept A,B,C,G" "5ug" 13 12 -"EUCAST 2013" "DISK" "Urinary tract infect" "B_STRPT_GRPB" "NIT" "Strept A,B,C,G" "100ug" 15 14 -"EUCAST 2013" "DISK" "Urinary tract infect" "B_STRPT_GRPB" "TMP" "Strept A,B,C,G" "5ug" -"EUCAST 2013" "DISK" "B_STRPT_PNMN" "CEC" "Pneumo" "30ug" 50 27 -"EUCAST 2013" "DISK" "B_STRPT_PNMN" "CHL" "Pneumo" "30ug" 21 20 -"EUCAST 2013" "DISK" "B_STRPT_PNMN" "CIP" "Pneumo" "5ug" 50 15 -"EUCAST 2013" "DISK" "B_STRPT_PNMN" "CLI" "Pneumo" "2ug" 19 18 -"EUCAST 2013" "DISK" "B_STRPT_PNMN" "ERY" "Pneumo" "15ug" 22 18 -"EUCAST 2013" "DISK" "B_STRPT_PNMN" "LNZ" "Pneumo" "10ug" 22 18 -"EUCAST 2013" "DISK" "B_STRPT_PNMN" "LVX" "Pneumo" "5ug" 17 16 -"EUCAST 2013" "DISK" "B_STRPT_PNMN" "MFX" "Pneumo" "5ug" 22 21 -"EUCAST 2013" "DISK" "B_STRPT_PNMN" "MNO" "Pneumo" "30ug" 24 20 -"EUCAST 2013" "DISK" "B_STRPT_PNMN" "NOR" "Pneumo" "10ug" 12 -"EUCAST 2013" "DISK" "B_STRPT_PNMN" "OFX" "Pneumo" "5ug" 50 12 -"EUCAST 2013" "DISK" "B_STRPT_PNMN" "OXA" "Pneumo" "1ug" 20 -"EUCAST 2013" "DISK" "B_STRPT_PNMN" "RIF" "Pneumo" "5ug" 22 16 -"EUCAST 2013" "DISK" "B_STRPT_PNMN" "SXT" "Pneumo" "1.25/23.75ug" 18 14 -"EUCAST 2013" "DISK" "B_STRPT_PNMN" "TCY" "Pneumo" "30ug" 25 21 -"EUCAST 2013" "DISK" "B_STRPT_PNMN" "TEC" "Pneumo" "30ug" 17 16 -"EUCAST 2013" "DISK" "B_STRPT_PNMN" "TLT" "Pneumo" "15ug" 23 19 -"EUCAST 2013" "DISK" "B_STRPT_PNMN" "VAN" "Pneumo" "5ug" 16 15 -"EUCAST 2013" "DISK" "B_STRPT_VIRI" "AMP" "Viridans strept" "2ug" 21 14 -"EUCAST 2013" "DISK" "B_STRPT_VIRI" "CLI" "Viridans strept" "2ug" 19 18 -"EUCAST 2013" "DISK" "B_STRPT_VIRI" "CRO" "Viridans strept" "30ug" 27 26 -"EUCAST 2013" "DISK" "B_STRPT_VIRI" "CTX" "Viridans strept" "5ug" 23 22 -"EUCAST 2013" "DISK" "B_STRPT_VIRI" "CXM" "Viridans strept" "30ug" 26 25 -"EUCAST 2013" "DISK" "B_STRPT_VIRI" "CZO" "Viridans strept" "30ug" -"EUCAST 2013" "DISK" "B_STRPT_VIRI" "FEP" "Viridans strept" "30ug" 25 24 -"EUCAST 2013" "DISK" "B_STRPT_VIRI" "PEN" "Viridans strept" "1unit" 18 11 -"EUCAST 2013" "DISK" "B_STRPT_VIRI" "PEN" "Viridans strept" "1unit" 18 -"EUCAST 2013" "DISK" "B_STRPT_VIRI" "TEC" "Viridans strept" "30ug" 16 15 -"EUCAST 2013" "DISK" "B_STRPT_VIRI" "VAN" "Viridans strept" "5ug" 15 14 -"EUCAST 2012" "DISK" "B_ACNTB" "AMK" "30ug" 18 14 -"EUCAST 2012" "DISK" "B_ACNTB" "CIP" "5ug" 21 20 -"EUCAST 2012" "DISK" "B_ACNTB" "DOR" "10ug" 21 14 -"EUCAST 2012" "DISK" "B_ACNTB" "GEN" "10ug" 17 16 -"EUCAST 2012" "DISK" "B_ACNTB" "IPM" "10ug" 23 16 -"EUCAST 2012" "DISK" "B_ACNTB" "LVX" "5ug" 21 17 -"EUCAST 2012" "DISK" "B_ACNTB" "MEM" "10ug" 21 14 -"EUCAST 2012" "DISK" "B_ACNTB" "NET" "10ug" 16 15 -"EUCAST 2012" "DISK" "B_ACNTB" "SXT" "1.25ug/23.75ug" 16 12 -"EUCAST 2012" "DISK" "B_ACNTB" "TOB" "10ug" 17 16 -"EUCAST 2012" "DISK" "B_ENTRC" "AMP" "2ug" 10 7 -"EUCAST 2012" "DISK" "B_ENTRC" "GEH" "30ug" 8 7 -"EUCAST 2012" "DISK" "B_ENTRC" "GEN" "30ug" 8 7 -"EUCAST 2012" "DISK" "B_ENTRC" "IPM" "10ug" 21 17 -"EUCAST 2012" "DISK" "B_ENTRC" "LNZ" "10ug" 19 18 -"EUCAST 2012" "DISK" "B_ENTRC" "QDA" "15ug" 22 19 -"EUCAST 2012" "DISK" "B_ENTRC" "STR" "300ug" 19 18 -"EUCAST 2012" "DISK" "B_ENTRC" "SXT" "1.25ug/23.75ug" 50 20 -"EUCAST 2012" "DISK" "B_ENTRC" "TEC" "30ug" 16 15 -"EUCAST 2012" "DISK" "B_ENTRC" "TGC" "15ug" 18 14 -"EUCAST 2012" "DISK" "UTI only" "B_ENTRC" "TMP" "5ug" 50 20 -"EUCAST 2012" "DISK" "B_ENTRC" "VAN" "5ug" 12 11 -"EUCAST 2012" "DISK" "UTI only" "B_ENTRC_FCLS" "NIT" "100ug" 15 14 -"EUCAST 2012" "DISK" "B_HMPHL_INFL" "AMC" "2ug/1ug" 17 16 -"EUCAST 2012" "DISK" "B_HMPHL_INFL" "AMP" "2ug" 16 15 -"EUCAST 2012" "DISK" "B_HMPHL_INFL" "CFR" "5ug" 25 24 -"EUCAST 2012" "DISK" "B_HMPHL_INFL" "CHL" "30ug" 28 27 -"EUCAST 2012" "DISK" "B_HMPHL_INFL" "CIP" "5ug" 26 25 -"EUCAST 2012" "DISK" "B_HMPHL_INFL" "CPD" "10ug" 26 22 -"EUCAST 2012" "DISK" "B_HMPHL_INFL" "CRO" "30ug" 30 29 -"EUCAST 2012" "DISK" "B_HMPHL_INFL" "CTB" "30ug" 25 24 -"EUCAST 2012" "DISK" "B_HMPHL_INFL" "CTX" "5ug" 26 25 -"EUCAST 2012" "DISK" "B_HMPHL_INFL" "CXA" "30ug" 50 25 -"EUCAST 2012" "DISK" "B_HMPHL_INFL" "CXM" "30ug" 26 24 -"EUCAST 2012" "DISK" "B_HMPHL_INFL" "DOR" "10ug" 20 19 -"EUCAST 2012" "DISK" "B_HMPHL_INFL" "ERY" "15ug" 50 9 -"EUCAST 2012" "DISK" "B_HMPHL_INFL" "ETP" "10ug" 20 19 -"EUCAST 2012" "DISK" "B_HMPHL_INFL" "FEP" "30ug" 27 26 -"EUCAST 2012" "DISK" "B_HMPHL_INFL" "IPM" "10ug" 20 19 -"EUCAST 2012" "DISK" "B_HMPHL_INFL" "LVX" "5ug" 26 25 -"EUCAST 2012" "DISK" "Other infections" "B_HMPHL_INFL" "MEM" "10ug" 20 19 -"EUCAST 2012" "DISK" "B_HMPHL_INFL" "MFX" "5ug" 25 24 -"EUCAST 2012" "DISK" "B_HMPHL_INFL" "MNO" "30ug" 24 20 -"EUCAST 2012" "DISK" "B_HMPHL_INFL" "NAL" "30ug" 23 22 -"EUCAST 2012" "DISK" "B_HMPHL_INFL" "OFX" "5ug" 23 22 -"EUCAST 2012" "DISK" "B_HMPHL_INFL" "PEN" "1 unit" 12 11 -"EUCAST 2012" "DISK" "Prophylaxis" "B_HMPHL_INFL" "RIF" "5ug" 18 17 -"EUCAST 2012" "DISK" "B_HMPHL_INFL" "SXT" "1.25ug/23.75ug" 23 19 -"EUCAST 2012" "DISK" "B_HMPHL_INFL" "TCY" "30ug" 25 21 -"EUCAST 2012" "DISK" "B_HMPHL_INFL" "TLT" "15ug" 50 11 -"EUCAST 2012" "DISK" "B_LISTR_MNCY" "AMP" "2ug" 16 15 -"EUCAST 2012" "DISK" "B_LISTR_MNCY" "ERY" "15ug" 25 24 -"EUCAST 2012" "DISK" "B_LISTR_MNCY" "MEM" "10ug" 26 25 -"EUCAST 2012" "DISK" "B_LISTR_MNCY" "PEN" "1 unit" 13 12 -"EUCAST 2012" "DISK" "B_LISTR_MNCY" "SXT" "1.25ug/23.75ug" 29 28 -"EUCAST 2012" "DISK" "B_MRXLL_CTRR" "AMC" "2ug/1ug" 19 18 -"EUCAST 2012" "DISK" "B_MRXLL_CTRR" "CFR" "5ug" 21 17 -"EUCAST 2012" "DISK" "B_MRXLL_CTRR" "CHL" "30ug" 30 29 -"EUCAST 2012" "DISK" "B_MRXLL_CTRR" "CIP" "5ug" 23 22 -"EUCAST 2012" "DISK" "B_MRXLL_CTRR" "CRO" "30ug" 24 20 -"EUCAST 2012" "DISK" "B_MRXLL_CTRR" "CTX" "5ug" 20 16 -"EUCAST 2012" "DISK" "B_MRXLL_CTRR" "CXA" "30ug" 50 20 -"EUCAST 2012" "DISK" "B_MRXLL_CTRR" "CXM" "30ug" 21 17 -"EUCAST 2012" "DISK" "B_MRXLL_CTRR" "DOR" "10ug" 30 29 -"EUCAST 2012" "DISK" "B_MRXLL_CTRR" "ERY" "15ug" 23 19 -"EUCAST 2012" "DISK" "B_MRXLL_CTRR" "ETP" "10ug" 29 28 -"EUCAST 2012" "DISK" "B_MRXLL_CTRR" "FEP" "30ug" 20 19 -"EUCAST 2012" "DISK" "B_MRXLL_CTRR" "IPM" "10ug" 29 28 -"EUCAST 2012" "DISK" "B_MRXLL_CTRR" "LVX" "5ug" 23 22 -"EUCAST 2012" "DISK" "B_MRXLL_CTRR" "MEM" "10ug" 33 32 -"EUCAST 2012" "DISK" "B_MRXLL_CTRR" "MFX" "5ug" 23 22 -"EUCAST 2012" "DISK" "B_MRXLL_CTRR" "MNO" "30ug" 25 21 -"EUCAST 2012" "DISK" "B_MRXLL_CTRR" "NAL" "30ug" 23 22 -"EUCAST 2012" "DISK" "B_MRXLL_CTRR" "OFX" "5ug" 25 24 -"EUCAST 2012" "DISK" "B_MRXLL_CTRR" "SXT" "1.25ug/23.75ug" 18 14 -"EUCAST 2012" "DISK" "B_MRXLL_CTRR" "TCY" "30ug" 28 24 -"EUCAST 2012" "DISK" "B_MRXLL_CTRR" "TLT" "15ug" 23 19 -"EUCAST 2012" "DISK" "B_PSDMN" "AMK" "30ug" 18 14 -"EUCAST 2012" "DISK" "B_PSDMN" "ATM" "30ug" 50 15 -"EUCAST 2012" "DISK" "B_PSDMN" "CAZ" "10ug" 16 15 -"EUCAST 2012" "DISK" "B_PSDMN" "CIP" "5ug" 25 21 -"EUCAST 2012" "DISK" "B_PSDMN" "DOR" "10ug" 25 18 -"EUCAST 2012" "DISK" "B_PSDMN" "FEP" "30ug" 18 17 -"EUCAST 2012" "DISK" "B_PSDMN" "GEN" "10ug" 15 14 -"EUCAST 2012" "DISK" "B_PSDMN" "IPM" "10ug" 20 16 -"EUCAST 2012" "DISK" "B_PSDMN" "LVX" "5ug" 20 16 -"EUCAST 2012" "DISK" "B_PSDMN" "MEM" "10ug" 24 17 -"EUCAST 2012" "DISK" "B_PSDMN" "NET" "10ug" 12 11 -"EUCAST 2012" "DISK" "B_PSDMN" "PIP" "30ug" 19 18 -"EUCAST 2012" "DISK" "B_PSDMN" "TCC" "75ug/10ug" 17 16 -"EUCAST 2012" "DISK" "B_PSDMN" "TIC" "75ug" 17 16 -"EUCAST 2012" "DISK" "B_PSDMN" "TOB" "10ug" 16 15 -"EUCAST 2012" "DISK" "B_PSDMN" "TZP" "30ug/6ug" 19 18 -"EUCAST 2012" "DISK" "B_STNTR_MLTP" "SXT" "1.25ug/23.75ug" 16 15 -"EUCAST 2012" "DISK" "B_STPHY" "AMP" "2ug" 15 14 -"EUCAST 2012" "DISK" "B_STPHY" "CHL" "30ug" 18 17 -"EUCAST 2012" "DISK" "B_STPHY" "CIP" "5ug" 20 19 -"EUCAST 2012" "DISK" "B_STPHY" "CLI" "2ug" 22 18 -"EUCAST 2012" "DISK" "B_STPHY" "ERY" "15ug" 21 17 -"EUCAST 2012" "DISK" "B_STPHY" "FUS" "10ug" 24 23 -"EUCAST 2012" "DISK" "B_STPHY" "GEN" "10ug" 18 17 -"EUCAST 2012" "DISK" "B_STPHY" "LNZ" "10ug" 19 18 -"EUCAST 2012" "DISK" "B_STPHY" "LVX" "5ug" 22 18 -"EUCAST 2012" "DISK" "B_STPHY" "MFX" "5ug" 24 20 -"EUCAST 2012" "DISK" "B_STPHY" "MNO" "30ug" 23 19 -"EUCAST 2012" "DISK" "B_STPHY" "MUP" "200ug" 30 17 -"EUCAST 2012" "DISK" "UTI only" "B_STPHY" "NIT" "100ug" 13 12 -"EUCAST 2012" "DISK" "B_STPHY" "NOR" "10ug" 17 16 -"EUCAST 2012" "DISK" "B_STPHY" "OFX" "5ug" 20 19 -"EUCAST 2012" "DISK" "B_STPHY" "PEN" "1 unit" 26 25 -"EUCAST 2012" "DISK" "B_STPHY" "QDA" "15ug" 21 17 -"EUCAST 2012" "DISK" "B_STPHY" "RIF" "5ug" 26 22 -"EUCAST 2012" "DISK" "B_STPHY" "SXT" "1.25ug/23.75ug" 17 13 -"EUCAST 2012" "DISK" "B_STPHY" "TCY" "30ug" 22 18 -"EUCAST 2012" "DISK" "B_STPHY" "TGC" "15ug" 18 17 -"EUCAST 2012" "DISK" "UTI only" "B_STPHY" "TMP" "5ug" 17 13 -"EUCAST 2012" "DISK" "B_STPHY_AURS" "AMK" "30ug" 18 15 -"EUCAST 2012" "DISK" "B_STPHY_AURS" "FOX" "30ug" 22 21 -"EUCAST 2012" "DISK" "B_STPHY_AURS" "NET" "10ug" 18 17 -"EUCAST 2012" "DISK" "B_STPHY_AURS" "TOB" "10ug" 18 17 -"EUCAST 2012" "DISK" "B_STPHY_CONS" "AMK" "30ug" 22 18 -"EUCAST 2012" "DISK" "B_STPHY_CONS" "FOX" "30ug" 25 24 -"EUCAST 2012" "DISK" "B_STPHY_CONS" "GEN" "10ug" 22 21 -"EUCAST 2012" "DISK" "B_STPHY_CONS" "NET" "10ug" 22 21 -"EUCAST 2012" "DISK" "B_STPHY_CONS" "TOB" "10ug" 22 21 -"EUCAST 2012" "DISK" "B_STPHY_LGDN" "FOX" "30ug" 22 21 -"EUCAST 2012" "DISK" "UTI only" "B_STRPT_GRPB" "NIT" "100ug" 15 14 -"EUCAST 2012" "DISK" "B_STRPT_HAEM" "CHL" "30ug" 21 20 -"EUCAST 2012" "DISK" "B_STRPT_HAEM" "CLI" "2ug" 17 16 -"EUCAST 2012" "DISK" "B_STRPT_HAEM" "ERY" "15ug" 21 17 -"EUCAST 2012" "DISK" "B_STRPT_HAEM" "LNZ" "10ug" 19 15 -"EUCAST 2012" "DISK" "B_STRPT_HAEM" "LVX" "5ug" 18 14 -"EUCAST 2012" "DISK" "B_STRPT_HAEM" "MFX" "5ug" 18 14 -"EUCAST 2012" "DISK" "B_STRPT_HAEM" "MNO" "30ug" 23 19 -"EUCAST 2012" "DISK" "B_STRPT_HAEM" "NOR" "10ug" 12 11 -"EUCAST 2012" "DISK" "B_STRPT_HAEM" "PEN" "1 unit" 18 17 -"EUCAST 2012" "DISK" "B_STRPT_HAEM" "RIF" "5ug" 21 14 -"EUCAST 2012" "DISK" "B_STRPT_HAEM" "SXT" "1.25ug/23.75ug" 18 14 -"EUCAST 2012" "DISK" "B_STRPT_HAEM" "TCY" "30ug" 23 19 -"EUCAST 2012" "DISK" "B_STRPT_HAEM" "TEC" "30ug" 15 14 -"EUCAST 2012" "DISK" "B_STRPT_HAEM" "TGC" "15ug" 19 15 -"EUCAST 2012" "DISK" "B_STRPT_HAEM" "TLT" "15ug" 22 18 -"EUCAST 2012" "DISK" "B_STRPT_HAEM" "VAN" "5ug" 13 12 -"EUCAST 2012" "DISK" "B_STRPT_PNMN" "AMP" "2ug" 23 19 -"EUCAST 2012" "DISK" "B_STRPT_PNMN" "CEC" "30ug" 50 27 -"EUCAST 2012" "DISK" "B_STRPT_PNMN" "CHL" "30ug" 21 20 -"EUCAST 2012" "DISK" "B_STRPT_PNMN" "CIP" "5ug" 50 17 -"EUCAST 2012" "DISK" "B_STRPT_PNMN" "CLI" "2ug" 19 18 -"EUCAST 2012" "DISK" "B_STRPT_PNMN" "ERY" "15ug" 22 18 -"EUCAST 2012" "DISK" "B_STRPT_PNMN" "LNZ" "10ug" 22 18 -"EUCAST 2012" "DISK" "B_STRPT_PNMN" "LVX" "5ug" 19 18 -"EUCAST 2012" "DISK" "B_STRPT_PNMN" "MFX" "5ug" 22 21 -"EUCAST 2012" "DISK" "B_STRPT_PNMN" "MNO" "30ug" 24 20 -"EUCAST 2012" "DISK" "B_STRPT_PNMN" "NOR" "10ug" 12 11 -"EUCAST 2012" "DISK" "B_STRPT_PNMN" "OFX" "5ug" 50 14 -"EUCAST 2012" "DISK" "B_STRPT_PNMN" "OXA" "1ug" 20 19 -"EUCAST 2012" "DISK" "B_STRPT_PNMN" "RIF" "5ug" 22 16 -"EUCAST 2012" "DISK" "B_STRPT_PNMN" "SXT" "1.25ug/23.75ug" 18 14 -"EUCAST 2012" "DISK" "B_STRPT_PNMN" "TCY" "30ug" 23 19 -"EUCAST 2012" "DISK" "B_STRPT_PNMN" "TEC" "30ug" 18 17 -"EUCAST 2012" "DISK" "B_STRPT_PNMN" "TLT" "15ug" 25 21 -"EUCAST 2012" "DISK" "B_STRPT_PNMN" "VAN" "5ug" 16 15 -"EUCAST 2012" "DISK" "B_STRPT_VIRI" "AMP" "2ug" 21 14 -"EUCAST 2012" "DISK" "B_STRPT_VIRI" "CLI" "2ug" 19 18 -"EUCAST 2012" "DISK" "B_STRPT_VIRI" "CRO" "30ug" 27 26 -"EUCAST 2012" "DISK" "B_STRPT_VIRI" "CTX" "5ug" 23 22 -"EUCAST 2012" "DISK" "B_STRPT_VIRI" "CXM" "30ug" 26 25 -"EUCAST 2012" "DISK" "B_STRPT_VIRI" "DOR" "10ug" 25 24 -"EUCAST 2012" "DISK" "B_STRPT_VIRI" "ETP" "10ug" 22 21 -"EUCAST 2012" "DISK" "B_STRPT_VIRI" "FEP" "30ug" 25 24 -"EUCAST 2012" "DISK" "B_STRPT_VIRI" "IPM" "10ug" 30 29 -"EUCAST 2012" "DISK" "B_STRPT_VIRI" "MEM" "10ug" 25 24 -"EUCAST 2012" "DISK" "B_STRPT_VIRI" "PEN" "1 unit" 18 11 -"EUCAST 2012" "DISK" "B_STRPT_VIRI" "PEN" "1 unit" 18 17 -"EUCAST 2012" "DISK" "B_STRPT_VIRI" "TEC" "30ug" 16 15 -"EUCAST 2012" "DISK" "B_STRPT_VIRI" "VAN" "5ug" 15 14 -"EUCAST 2011" "DISK" "B_ACNTB" "AMK" "30ug" 18 14 -"EUCAST 2011" "DISK" "B_ACNTB" "CIP" "5ug" 21 20 -"EUCAST 2011" "DISK" "B_ACNTB" "DOR" "10ug" 21 15 -"EUCAST 2011" "DISK" "B_ACNTB" "GEN" "10ug" 15 14 -"EUCAST 2011" "DISK" "B_ACNTB" "IPM" "10ug" 23 16 -"EUCAST 2011" "DISK" "B_ACNTB" "LVX" "5ug" 21 20 -"EUCAST 2011" "DISK" "B_ACNTB" "MEM" "10ug" 21 14 -"EUCAST 2011" "DISK" "B_ACNTB" "NET" "10ug" 15 14 -"EUCAST 2011" "DISK" "B_ACNTB" "SXT" "1.25/23.75ug" 16 12 -"EUCAST 2011" "DISK" "B_ACNTB" "TOB" "10ug" 15 14 -"EUCAST 2011" "DISK" "B_ENTRC" "AMP" "2ug" 10 7 -"EUCAST 2011" "DISK" "B_ENTRC" "GEH" "30ug" 8 7 -"EUCAST 2011" "DISK" "B_ENTRC" "GEN" "30ug" 8 7 -"EUCAST 2011" "DISK" "B_ENTRC" "IPM" "10ug" 21 17 -"EUCAST 2011" "DISK" "B_ENTRC" "LNZ" "10ug" 19 18 -"EUCAST 2011" "DISK" "B_ENTRC" "NIT" "100ug" 15 14 -"EUCAST 2011" "DISK" "B_ENTRC" "SXT" "1.25/23.75ug" 50 20 -"EUCAST 2011" "DISK" "B_ENTRC" "TEC" "30ug" 16 15 -"EUCAST 2011" "DISK" "B_ENTRC" "TGC" "15ug" 18 14 -"EUCAST 2011" "DISK" "B_ENTRC" "TMP" "5ug" 50 20 -"EUCAST 2011" "DISK" "B_ENTRC" "VAN" "5ug" 12 11 -"EUCAST 2011" "DISK" "B_HMPHL_INFL" "AMC" "20ug" 20 19 -"EUCAST 2011" "DISK" "B_HMPHL_INFL" "AMP" "2ug" 16 15 -"EUCAST 2011" "DISK" "B_HMPHL_INFL" "CEC" "30ug" 15 14 -"EUCAST 2011" "DISK" "B_HMPHL_INFL" "CFM" "5ug" 22 21 -"EUCAST 2011" "DISK" "B_HMPHL_INFL" "CHL" "30ug" 28 24 -"EUCAST 2011" "DISK" "B_HMPHL_INFL" "CIP" "5ug" 23 22 -"EUCAST 2011" "DISK" "B_HMPHL_INFL" "CPD" "10ug" 24 20 -"EUCAST 2011" "DISK" "B_HMPHL_INFL" "CRO" "30ug" 27 26 -"EUCAST 2011" "DISK" "B_HMPHL_INFL" "CTB" "30ug" 24 23 -"EUCAST 2011" "DISK" "B_HMPHL_INFL" "CTX" "5ug" 22 21 -"EUCAST 2011" "DISK" "B_HMPHL_INFL" "CXA" "30ug" 50 24 -"EUCAST 2011" "DISK" "B_HMPHL_INFL" "CXM" "30ug" 25 21 -"EUCAST 2011" "DISK" "B_HMPHL_INFL" "DOR" "10ug" 20 19 -"EUCAST 2011" "DISK" "B_HMPHL_INFL" "ERY" "15ug" 50 11 -"EUCAST 2011" "DISK" "B_HMPHL_INFL" "ETP" "10ug" 20 19 -"EUCAST 2011" "DISK" "B_HMPHL_INFL" "FEP" "30ug" 25 24 -"EUCAST 2011" "DISK" "B_HMPHL_INFL" "IPM" "10ug" 16 15 -"EUCAST 2011" "DISK" "B_HMPHL_INFL" "LVX" "5ug" 21 20 -"EUCAST 2011" "DISK" "B_HMPHL_INFL" "MEM" "10ug" 20 19 -"EUCAST 2011" "DISK" "B_HMPHL_INFL" "MFX" "5ug" 23 22 -"EUCAST 2011" "DISK" "B_HMPHL_INFL" "NAL" "30ug" 23 22 -"EUCAST 2011" "DISK" "B_HMPHL_INFL" "OFX" "5ug" 21 20 -"EUCAST 2011" "DISK" "B_HMPHL_INFL" "RIF" "5ug" 18 17 -"EUCAST 2011" "DISK" "B_HMPHL_INFL" "SXT" "1.25/23.75ug" 23 19 -"EUCAST 2011" "DISK" "B_HMPHL_INFL" "TCY" "30ug" 24 20 -"EUCAST 2011" "DISK" "B_MRXLL_CTRR" "CIP" "5ug" 23 22 -"EUCAST 2011" "DISK" "B_MRXLL_CTRR" "ERY" "15ug" 21 17 -"EUCAST 2011" "DISK" "B_MRXLL_CTRR" "SXT" "1.25/23.75ug" 18 14 -"EUCAST 2011" "DISK" "B_MRXLL_CTRR" "TCY" "30ug" 28 24 -"EUCAST 2011" "DISK" "B_PSDMN" "AMK" "30ug" 18 14 -"EUCAST 2011" "DISK" "B_PSDMN" "ATM" "30ug" 50 15 -"EUCAST 2011" "DISK" "B_PSDMN" "CAZ" "10ug" -"EUCAST 2011" "DISK" "B_PSDMN" "CIP" "5ug" 25 21 -"EUCAST 2011" "DISK" "B_PSDMN" "DOR" "10ug" 22 16 -"EUCAST 2011" "DISK" "B_PSDMN" "FEP" "30ug" -"EUCAST 2011" "DISK" "B_PSDMN" "GEN" "10ug" 15 14 -"EUCAST 2011" "DISK" "B_PSDMN" "IPM" "10ug" 20 16 -"EUCAST 2011" "DISK" "B_PSDMN" "LVX" "5ug" 20 16 -"EUCAST 2011" "DISK" "B_PSDMN" "MEM" "10ug" 24 17 -"EUCAST 2011" "DISK" "B_PSDMN" "NET" "10ug" 10 9 -"EUCAST 2011" "DISK" "B_PSDMN" "PIP" "30ug" 19 18 -"EUCAST 2011" "DISK" "B_PSDMN" "TOB" "10ug" 15 14 -"EUCAST 2011" "DISK" "B_PSDMN" "TZP" "30ug" 19 18 -"EUCAST 2011" "DISK" "B_STPHY" "AMK" "30ug" 18 14 -"EUCAST 2011" "DISK" "B_STPHY" "CHL" "30ug" 18 17 -"EUCAST 2011" "DISK" "B_STPHY" "CIP" "5ug" 19 18 -"EUCAST 2011" "DISK" "B_STPHY" "CLI" "2ug" 21 17 -"EUCAST 2011" "DISK" "B_STPHY" "ERY" "15ug" 21 17 -"EUCAST 2011" "DISK" "B_STPHY" "FOX" "30ug" 25 24 -"EUCAST 2011" "DISK" "B_STPHY" "FUS" "10ug" 22 21 -"EUCAST 2011" "DISK" "B_STPHY" "GEN" "10ug" 18 17 -"EUCAST 2011" "DISK" "B_STPHY" "LNZ" "10ug" 17 16 -"EUCAST 2011" "DISK" "B_STPHY" "MFX" "5ug" 22 18 -"EUCAST 2011" "DISK" "B_STPHY" "NIT" "100ug" 13 12 -"EUCAST 2011" "DISK" "B_STPHY" "NOR" "10ug" 17 16 -"EUCAST 2011" "DISK" "B_STPHY" "PEN" "1ug" 26 25 -"EUCAST 2011" "DISK" "B_STPHY" "RIF" "5ug" 25 21 -"EUCAST 2011" "DISK" "B_STPHY" "SXT" "1.25/23.75ug" 17 13 -"EUCAST 2011" "DISK" "B_STPHY" "TCY" "30ug" 22 18 -"EUCAST 2011" "DISK" "B_STPHY" "TGC" "15ug" 18 17 -"EUCAST 2011" "DISK" "B_STPHY" "TMP" "5ug" 17 13 -"EUCAST 2011" "DISK" "B_STPHY" "TOB" "10ug" 19 18 -"EUCAST 2011" "DISK" "B_STPHY_AURS" "FOX" "30ug" 22 21 -"EUCAST 2011" "DISK" "B_STPHY_LGDN" "FOX" "30ug" 22 21 -"EUCAST 2011" "DISK" "B_STRPT" "AMP" "2ug" 21 14 -"EUCAST 2011" "DISK" "B_STRPT" "CLI" "2ug" 19 18 -"EUCAST 2011" "DISK" "B_STRPT" "CRO" "30ug" 27 26 -"EUCAST 2011" "DISK" "B_STRPT" "CTX" "5ug" 23 22 -"EUCAST 2011" "DISK" "B_STRPT" "CXM" "30ug" 26 25 -"EUCAST 2011" "DISK" "B_STRPT" "DOR" "10ug" 25 24 -"EUCAST 2011" "DISK" "B_STRPT" "ETP" "10ug" 22 21 -"EUCAST 2011" "DISK" "B_STRPT" "FEP" "30ug" 25 24 -"EUCAST 2011" "DISK" "B_STRPT" "IPM" "10ug" 30 29 -"EUCAST 2011" "DISK" "B_STRPT" "MEM" "10ug" 25 24 -"EUCAST 2011" "DISK" "B_STRPT" "PEN" "1ug" 18 11 -"EUCAST 2011" "DISK" "B_STRPT" "TEC" "30ug" -"EUCAST 2011" "DISK" "B_STRPT" "VAN" "5ug" -"EUCAST 2011" "DISK" "B_STRPT_GRPA" "CLI" "2ug" 17 16 -"EUCAST 2011" "DISK" "B_STRPT_GRPA" "ERY" "15ug" 21 17 -"EUCAST 2011" "DISK" "B_STRPT_GRPA" "LNZ" "10ug" 19 15 -"EUCAST 2011" "DISK" "B_STRPT_GRPA" "LVX" "5ug" 18 14 -"EUCAST 2011" "DISK" "B_STRPT_GRPA" "MFX" "30ug" 18 14 -"EUCAST 2011" "DISK" "B_STRPT_GRPA" "NIT" "100ug" 15 14 -"EUCAST 2011" "DISK" "B_STRPT_GRPA" "PEN" "1ug" 18 17 -"EUCAST 2011" "DISK" "B_STRPT_GRPA" "RIF" "5ug" 21 14 -"EUCAST 2011" "DISK" "B_STRPT_GRPA" "SXT" "1.25/23.75ug" 18 14 -"EUCAST 2011" "DISK" "B_STRPT_GRPA" "TCY" "30ug" 23 19 -"EUCAST 2011" "DISK" "B_STRPT_GRPA" "TGC" "15ug" 19 15 -"EUCAST 2011" "DISK" "B_STRPT_GRPB" "CLI" "2ug" 17 16 -"EUCAST 2011" "DISK" "B_STRPT_GRPB" "ERY" "15ug" 21 17 -"EUCAST 2011" "DISK" "B_STRPT_GRPB" "LNZ" "10ug" 19 15 -"EUCAST 2011" "DISK" "B_STRPT_GRPB" "LVX" "5ug" 18 14 -"EUCAST 2011" "DISK" "B_STRPT_GRPB" "MFX" "5ug" 18 14 -"EUCAST 2011" "DISK" "B_STRPT_GRPB" "NIT" "100ug" 15 14 -"EUCAST 2011" "DISK" "B_STRPT_GRPB" "PEN" "1ug" 18 17 -"EUCAST 2011" "DISK" "B_STRPT_GRPB" "RIF" "5ug" 21 14 -"EUCAST 2011" "DISK" "B_STRPT_GRPB" "SXT" "1.25/23.75ug" 18 14 -"EUCAST 2011" "DISK" "B_STRPT_GRPB" "TCY" "30ug" 23 19 -"EUCAST 2011" "DISK" "B_STRPT_GRPB" "TGC" "15ug" 19 15 -"EUCAST 2011" "DISK" "B_STRPT_GRPC" "CLI" "2ug" 17 16 -"EUCAST 2011" "DISK" "B_STRPT_GRPC" "ERY" "15ug" 21 17 -"EUCAST 2011" "DISK" "B_STRPT_GRPC" "LNZ" "10ug" 19 15 -"EUCAST 2011" "DISK" "B_STRPT_GRPC" "LVX" "5ug" 18 14 -"EUCAST 2011" "DISK" "B_STRPT_GRPC" "MFX" "5ug" 18 14 -"EUCAST 2011" "DISK" "B_STRPT_GRPC" "NIT" "100ug" 15 14 -"EUCAST 2011" "DISK" "B_STRPT_GRPC" "PEN" "1ug" 18 17 -"EUCAST 2011" "DISK" "B_STRPT_GRPC" "RIF" "5ug" 21 14 -"EUCAST 2011" "DISK" "B_STRPT_GRPC" "SXT" "1.25/23.75ug" 18 14 -"EUCAST 2011" "DISK" "B_STRPT_GRPC" "TCY" "30ug" 23 19 -"EUCAST 2011" "DISK" "B_STRPT_GRPC" "TGC" "15ug" 19 15 -"EUCAST 2011" "DISK" "B_STRPT_GRPG" "CLI" "2ug" 17 16 -"EUCAST 2011" "DISK" "B_STRPT_GRPG" "ERY" "15ug" 21 17 -"EUCAST 2011" "DISK" "B_STRPT_GRPG" "LNZ" "10ug" 19 15 -"EUCAST 2011" "DISK" "B_STRPT_GRPG" "LVX" "5ug" 18 14 -"EUCAST 2011" "DISK" "B_STRPT_GRPG" "MFX" "5ug" 18 14 -"EUCAST 2011" "DISK" "B_STRPT_GRPG" "NIT" "100ug" 15 14 -"EUCAST 2011" "DISK" "B_STRPT_GRPG" "PEN" "1ug" 18 17 -"EUCAST 2011" "DISK" "B_STRPT_GRPG" "RIF" "5ug" 21 14 -"EUCAST 2011" "DISK" "B_STRPT_GRPG" "SXT" "1.25/23.75ug" 18 14 -"EUCAST 2011" "DISK" "B_STRPT_GRPG" "TCY" "30ug" 23 19 -"EUCAST 2011" "DISK" "B_STRPT_GRPG" "TGC" "15ug" 19 15 -"EUCAST 2011" "DISK" "B_STRPT_HAEM" "CLI" "2ug" 17 16 -"EUCAST 2011" "DISK" "B_STRPT_HAEM" "CLI" "2ug" 17 16 -"EUCAST 2011" "DISK" "B_STRPT_HAEM" "ERY" "15ug" 21 17 -"EUCAST 2011" "DISK" "B_STRPT_HAEM" "ERY" "15ug" 21 17 -"EUCAST 2011" "DISK" "B_STRPT_HAEM" "LNZ" "10ug" 19 15 -"EUCAST 2011" "DISK" "B_STRPT_HAEM" "LNZ" "10ug" 19 15 -"EUCAST 2011" "DISK" "B_STRPT_HAEM" "LVX" "5ug" 18 14 -"EUCAST 2011" "DISK" "B_STRPT_HAEM" "LVX" "5ug" 18 14 -"EUCAST 2011" "DISK" "B_STRPT_HAEM" "MFX" "5ug" 18 14 -"EUCAST 2011" "DISK" "B_STRPT_HAEM" "MFX" "5ug" 18 14 -"EUCAST 2011" "DISK" "B_STRPT_HAEM" "NIT" "100ug" 15 14 -"EUCAST 2011" "DISK" "B_STRPT_HAEM" "NIT" "100ug" 15 14 -"EUCAST 2011" "DISK" "B_STRPT_HAEM" "PEN" "1ug" 18 17 -"EUCAST 2011" "DISK" "B_STRPT_HAEM" "PEN" "1ug" 18 17 -"EUCAST 2011" "DISK" "B_STRPT_HAEM" "RIF" "5ug" 21 14 -"EUCAST 2011" "DISK" "B_STRPT_HAEM" "RIF" "5ug" 21 14 -"EUCAST 2011" "DISK" "B_STRPT_HAEM" "SXT" "1.25/23.75ug" 18 14 -"EUCAST 2011" "DISK" "B_STRPT_HAEM" "SXT" "1.25/23.75ug" 18 14 -"EUCAST 2011" "DISK" "B_STRPT_HAEM" "TCY" "30ug" 23 19 -"EUCAST 2011" "DISK" "B_STRPT_HAEM" "TCY" "30ug" 23 19 -"EUCAST 2011" "DISK" "B_STRPT_HAEM" "TGC" "15ug" 19 15 -"EUCAST 2011" "DISK" "B_STRPT_HAEM" "TGC" "15ug" 19 15 -"EUCAST 2011" "DISK" "B_STRPT_PNMN" "AMP" "2ug" 28 21 -"EUCAST 2011" "DISK" "B_STRPT_PNMN" "CEC" "30ug" 50 27 -"EUCAST 2011" "DISK" "B_STRPT_PNMN" "CHL" "30ug" 20 19 -"EUCAST 2011" "DISK" "B_STRPT_PNMN" "CLI" "2ug" 19 18 -"EUCAST 2011" "DISK" "B_STRPT_PNMN" "CPD" "10ug" 28 24 -"EUCAST 2011" "DISK" "B_STRPT_PNMN" "ERY" "15ug" 22 18 -"EUCAST 2011" "DISK" "B_STRPT_PNMN" "FEP" "30ug" 32 28 -"EUCAST 2011" "DISK" "B_STRPT_PNMN" "LNZ" "10ug" 20 19 -"EUCAST 2011" "DISK" "B_STRPT_PNMN" "LVX" "5ug" 19 18 -"EUCAST 2011" "DISK" "B_STRPT_PNMN" "MFX" "5ug" 22 21 -"EUCAST 2011" "DISK" "B_STRPT_PNMN" "NOR" "10ug" 12 11 -"EUCAST 2011" "DISK" "B_STRPT_PNMN" "OFX" "5ug" 50 14 -"EUCAST 2011" "DISK" "B_STRPT_PNMN" "OXA" "1ug" 18 17 -"EUCAST 2011" "DISK" "B_STRPT_PNMN" "RIF" "5ug" 22 16 -"EUCAST 2011" "DISK" "B_STRPT_PNMN" "SXT" "1.25/23.75ug" 18 14 -"EUCAST 2011" "DISK" "B_STRPT_PNMN" "TCY" "30ug" 23 19 -"EUCAST 2011" "DISK" "B_STRPT_PNMN" "VAN" "5ug" 15 14 -"EUCAST 2011" "DISK" "B_STRPT_PYGN" "CLI" "2ug" 17 16 -"EUCAST 2011" "DISK" "B_STRPT_PYGN" "ERY" "15ug" 21 17 -"EUCAST 2011" "DISK" "B_STRPT_PYGN" "LNZ" "10ug" 19 15 -"EUCAST 2011" "DISK" "B_STRPT_PYGN" "LVX" "5ug" 18 14 -"EUCAST 2011" "DISK" "B_STRPT_PYGN" "MFX" "5ug" 18 14 -"EUCAST 2011" "DISK" "B_STRPT_PYGN" "NIT" "100ug" 15 14 -"EUCAST 2011" "DISK" "B_STRPT_PYGN" "PEN" "1ug" 18 17 -"EUCAST 2011" "DISK" "B_STRPT_PYGN" "RIF" "5ug" 21 14 -"EUCAST 2011" "DISK" "B_STRPT_PYGN" "SXT" "1.25/23.75ug" 18 14 -"EUCAST 2011" "DISK" "B_STRPT_PYGN" "TCY" "30ug" 23 19 -"EUCAST 2011" "DISK" "B_STRPT_PYGN" "TGC" "15ug" 19 15 -"CLSI 2019" "DISK" "Respiratory" "AN_[FAM]_SCHSTSMT" "TIO" "VET08 Table 2A" "30ug" 21 17 -"CLSI 2019" "DISK" "Urine" "B_[FAM]_ENTRBCTR" "CZO" "Table 2A" 15 14 -"CLSI 2019" "DISK" "Skin, soft tissue, UTI" "B_[FAM]_ENTRBCTR" "DIF" "VET08 Table 2A" "10ug" 21 17 -"CLSI 2019" "DISK" "Skin, soft tissue, respiratory, UTI" "B_[FAM]_ENTRBCTR" "ENR" "VET08 Table 2A" "5ug" 23 16 -"CLSI 2019" "DISK" "Skin, soft tissue" "B_[FAM]_ENTRBCTR" "ENR" "VET08 Table 2A" "5ug" 23 16 -"CLSI 2019" "DISK" "B_[FAM]_ENTRBCTR" "GEN" "VET08 Table 2A" "10ug" 16 12 -"CLSI 2019" "DISK" "B_[FAM]_ENTRBCTR" "GEN" "VET08 Table 2A" "10ug" 16 12 -"CLSI 2019" "DISK" "Skin, soft tissue, UTI" "B_[FAM]_ENTRBCTR" "MAR" "VET08 Table 2A" "5ug" 20 14 -"CLSI 2019" "DISK" "Skin, soft tissue" "B_[FAM]_ENTRBCTR" "MAR" "VET08 Table 2A" "5ug" 20 14 -"CLSI 2019" "DISK" "Skin, soft tissue, UTI" "B_[FAM]_ENTRBCTR" "ORB" "VET08 Table 2A" "10ug" 23 17 -"CLSI 2019" "DISK" "Skin, soft tissue" "B_[FAM]_ENTRBCTR" "ORB" "VET08 Table 2A" "10ug" 23 17 -"CLSI 2019" "DISK" "B_ACNTB" "AMK" "Table 2B-2" "30ug" 17 14 -"CLSI 2019" "DISK" "B_ACNTB" "CAZ" "Table 2B-2" "30ug" 18 14 -"CLSI 2019" "DISK" "B_ACNTB" "CIP" "Table 2B-2" "5ug" 21 15 -"CLSI 2019" "DISK" "B_ACNTB" "COL" "Table 2B-2" "10ug" -"CLSI 2019" "DISK" "B_ACNTB" "CRO" "Table 2B-2" "30ug" 21 13 -"CLSI 2019" "DISK" "B_ACNTB" "CTX" "Table 2B-2" "30ug" 23 14 -"CLSI 2019" "DISK" "B_ACNTB" "DOR" "Table 2B-2" 18 14 -"CLSI 2019" "DISK" "B_ACNTB" "DOX" "Table 2B-2" "30ug" 13 9 -"CLSI 2019" "DISK" "B_ACNTB" "ETP" "Table 2B-2" "10ug" -"CLSI 2019" "DISK" "B_ACNTB" "FEP" "Table 2B-2" "30ug" 18 14 -"CLSI 2019" "DISK" "B_ACNTB" "GAT" "Table 2B-2" "5ug" 18 14 -"CLSI 2019" "DISK" "B_ACNTB" "GEN" "Table 2B-2" "10ug" 15 12 -"CLSI 2019" "DISK" "B_ACNTB" "IPM" "Table 2B-2" "10ug" 22 18 -"CLSI 2019" "DISK" "B_ACNTB" "LVX" "Table 2B-2" "5ug" 17 13 -"CLSI 2019" "DISK" "B_ACNTB" "MEM" "Table 2B-2" "10ug" 18 14 -"CLSI 2019" "DISK" "B_ACNTB" "MNO" "Table 2B-2" "30ug" 16 12 -"CLSI 2019" "DISK" "B_ACNTB" "NET" "Table 2B-2" "30ug" -"CLSI 2019" "DISK" "B_ACNTB" "PIP" "Table 2B-2" "100ug" 21 17 -"CLSI 2019" "DISK" "B_ACNTB" "PLB" "Table 2B-2" "300ug" -"CLSI 2019" "DISK" "B_ACNTB" "SAM" "Table 2B-2" "10ug" 15 11 -"CLSI 2019" "DISK" "B_ACNTB" "SXT" "Table 2B-2" "1.25/23.75ug" 16 10 -"CLSI 2019" "DISK" "B_ACNTB" "TCC" "Table 2B-2" "75ug" 20 14 -"CLSI 2019" "DISK" "B_ACNTB" "TCY" "Table 2B-2" "30ug" 15 11 -"CLSI 2019" "DISK" "B_ACNTB" "TOB" "Table 2B-2" "10ug" 15 12 -"CLSI 2019" "DISK" "B_ACNTB" "TZP" "Table 2B-2" "100ug" 21 17 -"CLSI 2019" "DISK" "Respiratory" "B_ACTNB_PLRP" "ENR" "VET08 Table 2I" "5ug" 23 18 -"CLSI 2019" "DISK" "Respiratory" "B_ACTNB_PLRP" "FLR" "VET08 Table 2I" "30ug" 22 18 -"CLSI 2019" "DISK" "B_ACTNB_PLRP" "GEN" "VET08 Table 2I" "10ug" 16 12 -"CLSI 2019" "DISK" "Respiratory" "B_ACTNB_PLRP" "TIA" "VET08 Table 2I" "30ug" 9 8 -"CLSI 2019" "DISK" "B_ACTNB_PLRP" "TIL" "Vet Table" "15ug" 11 10 -"CLSI 2019" "DISK" "Respiratory" "B_ACTNB_PLRP" "TIL" "VET08 Table 2I" "15ug" 11 10 -"CLSI 2019" "DISK" "Respiratory" "B_ACTNB_PLRP" "TIO" "VET08 Table 2I" "30ug" 21 17 -"CLSI 2019" "DISK" "Respiratory" "B_ACTNB_PLRP" "TUL" "VET08 Table 2I" "30ug" 10 -"CLSI 2019" "DISK" "B_AERMN" "AMC" "M45 Table 2" "20ug" 18 13 -"CLSI 2019" "DISK" "B_AERMN" "AMK" "M45 Table 2" "30ug" 17 14 -"CLSI 2019" "DISK" "B_AERMN" "AMK" "M45 Table 3" 17 14 -"CLSI 2019" "DISK" "B_AERMN" "ATM" "M45 Table 2" "30ug" 21 17 -"CLSI 2019" "DISK" "B_AERMN" "ATM" "M45 Table 3" 21 17 -"CLSI 2019" "DISK" "B_AERMN" "CAZ" "M45 Table 2" "30ug" 21 17 -"CLSI 2019" "DISK" "B_AERMN" "CAZ" "M45 Table 3" 21 17 -"CLSI 2019" "DISK" "B_AERMN" "CHL" "M45 Table 2" "30ug" 18 12 -"CLSI 2019" "DISK" "B_AERMN" "CHL" "M45 Table 3" 18 12 -"CLSI 2019" "DISK" "B_AERMN" "CIP" "M45 Table 2" "5ug" 21 15 -"CLSI 2019" "DISK" "B_AERMN" "CIP" "M45 Table 3" 21 15 -"CLSI 2019" "DISK" "B_AERMN" "CRO" "M45 Table 2" "30ug" 23 19 -"CLSI 2019" "DISK" "B_AERMN" "CRO" "M45 Table 3" 23 19 -"CLSI 2019" "DISK" "B_AERMN" "CTX" "M45 Table 2" "30ug" 26 22 -"CLSI 2019" "DISK" "B_AERMN" "CTX" "M45 Table 3" 26 22 -"CLSI 2019" "DISK" "B_AERMN" "CXM" "M45 Table 2" "30ug" 18 14 -"CLSI 2019" "DISK" "B_AERMN" "CXM" "M45 Table 3" 18 14 -"CLSI 2019" "DISK" "B_AERMN" "DOR" "M45 Table 3" 23 19 -"CLSI 2019" "DISK" "B_AERMN" "ETP" "M45 Table 2" "10ug" 19 15 -"CLSI 2019" "DISK" "B_AERMN" "ETP" "M45 Table 3" 22 18 -"CLSI 2019" "DISK" "B_AERMN" "FEP" "M45 Table 2" "30ug" 18 14 -"CLSI 2019" "DISK" "B_AERMN" "FEP" "M45 Table 3" 25 18 -"CLSI 2019" "DISK" "B_AERMN" "FOX" "M45 Table 2" "30ug" 18 14 -"CLSI 2019" "DISK" "B_AERMN" "FOX" "M45 Table 3" 18 14 -"CLSI 2019" "DISK" "B_AERMN" "GEN" "M45 Table 2" "10ug" 15 12 -"CLSI 2019" "DISK" "B_AERMN" "GEN" "M45 Table 3" 15 12 -"CLSI 2019" "DISK" "B_AERMN" "IPM" "M45 Table 2" "10ug" 16 13 -"CLSI 2019" "DISK" "B_AERMN" "IPM" "M45 Table 3" 23 19 -"CLSI 2019" "DISK" "B_AERMN" "LVX" "M45 Table 2" "5ug" 17 13 -"CLSI 2019" "DISK" "B_AERMN" "LVX" "M45 Table 3" 17 13 -"CLSI 2019" "DISK" "B_AERMN" "MEM" "M45 Table 2" "10ug" 16 13 -"CLSI 2019" "DISK" "B_AERMN" "MEM" "M45 Table 3" 23 19 -"CLSI 2019" "DISK" "B_AERMN" "SAM" "M45 Table 2" "10ug" 15 11 -"CLSI 2019" "DISK" "B_AERMN" "SXT" "M45 Table 2" "1.25/23.75ug" 16 10 -"CLSI 2019" "DISK" "B_AERMN" "SXT" "M45 Table 3" 16 10 -"CLSI 2019" "DISK" "B_AERMN" "TCY" "M45 Table 2" "30ug" 15 11 -"CLSI 2019" "DISK" "B_AERMN" "TCY" "M45 Table 3" 15 11 -"CLSI 2019" "DISK" "B_AERMN" "TZP" "M45 Table 2" "100ug" 21 17 -"CLSI 2019" "DISK" "B_AERMN" "TZP" "M45 Table 3" 21 17 -"CLSI 2019" "DISK" "B_AERMN_SLMN" "OXO" "VET03 Table 12" "2ug" 30 24 -"CLSI 2019" "DISK" "B_AERMN_SLMN" "OXY" "VET03 Table 12" "30ug" 28 21 -"CLSI 2019" "DISK" "Wounds, abscesses" "B_AMYCS_CANS" "CPD" "VET08 Table 2D" "10ug" 21 17 -"CLSI 2019" "DISK" "Skin, respiratory" "B_AMYCS_CANS" "PRA" "VET08 Table 2D" "5ug" 24 -"CLSI 2019" "DISK" "Respiratory" "B_BRDTL_PTCA" "FLR" "VET08 Table 2F" "30ug" 22 18 -"CLSI 2019" "DISK" "Respiratory" "B_BRDTL_PTCA" "TIP" "VET08 Table 2F" "60ug" 18 -"CLSI 2019" "DISK" "Respiratory" "B_BRDTL_PTCA" "TUL" "VET08 Table 2F" "30ug" 18 14 -"CLSI 2019" "DISK" "B_BRKHL_CEPC" "CAZ" "Table 2B-3" "30ug" 21 17 -"CLSI 2019" "DISK" "B_BRKHL_CEPC" "CAZ" "Table 2B-3" "30ug" 21 17 -"CLSI 2019" "DISK" "B_BRKHL_CEPC" "CHL" "Table 2B-3" "30ug" -"CLSI 2019" "DISK" "B_BRKHL_CEPC" "CHL" "Table 2B-3" "30ug" -"CLSI 2019" "DISK" "B_BRKHL_CEPC" "LVX" "Table 2B-3" "5ug" -"CLSI 2019" "DISK" "B_BRKHL_CEPC" "LVX" "Table 2B-3" "5ug" -"CLSI 2019" "DISK" "B_BRKHL_CEPC" "MEM" "Table 2B-3" "10ug" 20 15 -"CLSI 2019" "DISK" "B_BRKHL_CEPC" "MEM" "Table 2B-3" "10ug" 20 15 -"CLSI 2019" "DISK" "B_BRKHL_CEPC" "MNO" "Table 2B-3" "30ug" 19 14 -"CLSI 2019" "DISK" "B_BRKHL_CEPC" "MNO" "Table 2B-3" "30ug" 19 14 -"CLSI 2019" "DISK" "B_BRKHL_CEPC" "SXT" "Table 2B-3" "1.25/23.75ug" 16 10 -"CLSI 2019" "DISK" "B_BRKHL_CEPC" "SXT" "Table 2B-3" "1.25/23.75ug" 16 10 -"CLSI 2019" "DISK" "B_BRKHL_CEPC" "TCC" "Table 2B-3" "75ug" -"CLSI 2019" "DISK" "B_BRKHL_CEPC" "TCC" "Table 2B-3" "75ug" -"CLSI 2019" "DISK" "B_CMPYL" "CIP" "M45 Table 5" 24 20 -"CLSI 2019" "DISK" "B_CMPYL" "ERY" "M45 Table 5" 16 12 -"CLSI 2019" "DISK" "B_CMPYL" "TCY" "M45 Table 5" 26 22 -"CLSI 2019" "DISK" "B_ENTRC" "AMP" "Table 2D" "10ug" 17 16 -"CLSI 2019" "DISK" "B_ENTRC" "CHL" "Table 2D" "30ug" 18 12 -"CLSI 2019" "DISK" "B_ENTRC" "CIP" "Table 2D" "5ug" 21 15 -"CLSI 2019" "DISK" "B_ENTRC" "DOX" "Table 2D" "30ug" 16 12 -"CLSI 2019" "DISK" "B_ENTRC" "ERY" "Table 2D" "15ug" 23 13 -"CLSI 2019" "DISK" "B_ENTRC" "FOS" "Table 2D" "200ug" 16 12 -"CLSI 2019" "DISK" "B_ENTRC" "GAT" "Table 2D" "5ug" 18 14 -"CLSI 2019" "DISK" "B_ENTRC" "GEH" "Table 2D" "120ug" 10 6 -"CLSI 2019" "DISK" "B_ENTRC" "LNZ" "Table 2D" "30ug" 23 20 -"CLSI 2019" "DISK" "B_ENTRC" "LVX" "Table 2D" "5ug" 17 13 -"CLSI 2019" "DISK" "B_ENTRC" "MNO" "Table 2D" "30ug" 19 14 -"CLSI 2019" "DISK" "B_ENTRC" "NIT" "Table 2D" "300ug" 17 14 -"CLSI 2019" "DISK" "B_ENTRC" "PEN" "Table 2D" "10units" 15 14 -"CLSI 2019" "DISK" "B_ENTRC" "QDA" "Table 2D" "15ug" 19 15 -"CLSI 2019" "DISK" "B_ENTRC" "RIF" "Table 2D" "5ug" 20 16 -"CLSI 2019" "DISK" "B_ENTRC" "STH" "Table 2D" "300ug" 10 6 -"CLSI 2019" "DISK" "B_ENTRC" "TCY" "Table 2D" "30ug" 19 14 -"CLSI 2019" "DISK" "B_ENTRC" "TEC" "Table 2D" "30ug" 14 10 -"CLSI 2019" "DISK" "B_ENTRC" "VAN" "Table 2D" "30ug" 17 14 -"CLSI 2019" "DISK" "UTI" "B_ESCHR_COLI" "AMC" "VET08 Table 2A" "20ug" 18 -"CLSI 2019" "DISK" "Wounds, abscesses, UTI" "B_ESCHR_COLI" "CPD" "VET08 Table 2A" "10ug" 21 17 -"CLSI 2019" "DISK" "B_ESCHR_COLI" "ENR" "VET08 Table 2A" "5ug" 23 16 -"CLSI 2019" "DISK" "UTI" "B_ESCHR_COLI" "FOV" "VET08 Table 2A" "30ug" 24 20 -"CLSI 2019" "DISK" "UTI" "B_ESCHR_COLI" "FOV" "VET08 Table 2A" "30ug" 24 20 -"CLSI 2019" "DISK" "Skin, UTI" "B_ESCHR_COLI" "PRA" "VET08 Table 2A" "5ug" 24 19 -"CLSI 2019" "DISK" "Skin, respiratory" "B_ESCHR_COLI" "PRA" "VET08 Table 2A" "5ug" 24 19 -"CLSI 2019" "DISK" "Mastitis" "B_ESCHR_COLI" "TIO" "VET08 Table 2A" "30ug" 21 17 -"CLSI 2019" "DISK" "B_HMPHL" "AMC" "Table 2E" "20/10ug" 20 19 -"CLSI 2019" "DISK" "B_HMPHL" "AMP" "Table 2E" "10ug" 22 18 -"CLSI 2019" "DISK" "B_HMPHL" "ATM" "Table 2E" "30ug" 26 -"CLSI 2019" "DISK" "B_HMPHL" "AZM" "Table 2E" "15ug" 12 -"CLSI 2019" "DISK" "B_HMPHL" "CAT" "Table 2E" "10ug" 18 14 -"CLSI 2019" "DISK" "B_HMPHL" "CAZ" "Table 2E" "30ug" 26 -"CLSI 2019" "DISK" "B_HMPHL" "CDR" "Table 2E" "5ug" 20 -"CLSI 2019" "DISK" "B_HMPHL" "CEC" "Table 2E" "30ug" 20 16 -"CLSI 2019" "DISK" "B_HMPHL" "CFM" "Table 2E" "5ug" 21 -"CLSI 2019" "DISK" "B_HMPHL" "CHL" "Table 2E" "30ug" 29 25 -"CLSI 2019" "DISK" "B_HMPHL" "CID" "Table 2E" "30ug" 20 16 -"CLSI 2019" "DISK" "B_HMPHL" "CIP" "Table 2E" "5ug" 21 -"CLSI 2019" "DISK" "B_HMPHL" "CLR" "Table 2E" "15ug" 13 10 -"CLSI 2019" "DISK" "B_HMPHL" "CPD" "Table 2E" "10ug" 21 -"CLSI 2019" "DISK" "B_HMPHL" "CPR" "Table 2E" "30ug" 18 14 -"CLSI 2019" "DISK" "B_HMPHL" "CRO" "Table 2E" "30ug" 26 -"CLSI 2019" "DISK" "B_HMPHL" "CTB" "Table 2E" "30ug" 28 -"CLSI 2019" "DISK" "B_HMPHL" "CTX" "Table 2E" "30ug" 26 -"CLSI 2019" "DISK" "B_HMPHL" "CXA" "Table 2E" "30ug" 20 16 -"CLSI 2019" "DISK" "Oral" "B_HMPHL" "CXM" "Table 2E" "30ug" 20 16 -"CLSI 2019" "DISK" "B_HMPHL" "CXM" "Table 2E" "30ug" 20 16 -"CLSI 2019" "DISK" "B_HMPHL" "CZX" "Table 2E" "30ug" 26 -"CLSI 2019" "DISK" "B_HMPHL" "DOR" "Table 2E" "10ug" 16 -"CLSI 2019" "DISK" "B_HMPHL" "ETP" "Table 2E" "10ug" 19 -"CLSI 2019" "DISK" "B_HMPHL" "FEP" "Table 2E" "30ug" 26 -"CLSI 2019" "DISK" "B_HMPHL" "FLE" "Table 2E" "5ug" 19 -"CLSI 2019" "DISK" "B_HMPHL" "GAT" "Table 2E" "5ug" 18 -"CLSI 2019" "DISK" "B_HMPHL" "GEM" "Table 2E" "5ug" 18 -"CLSI 2019" "DISK" "B_HMPHL" "GRX" "Table 2E" "5ug" 24 -"CLSI 2019" "DISK" "B_HMPHL" "IPM" "Table 2E" "10ug" 16 -"CLSI 2019" "DISK" "B_HMPHL" "LOM" "Table 2E" "10ug" 22 -"CLSI 2019" "DISK" "B_HMPHL" "LOR" "Table 2E" "30ug" 19 15 -"CLSI 2019" "DISK" "B_HMPHL" "LVX" "Table 2E" "5ug" 17 -"CLSI 2019" "DISK" "B_HMPHL" "MAN" "Table 2E" "30ug" -"CLSI 2019" "DISK" "B_HMPHL" "MEM" "Table 2E" "10ug" 20 -"CLSI 2019" "DISK" "B_HMPHL" "MFX" "Table 2E" "5ug" 18 -"CLSI 2019" "DISK" "B_HMPHL" "OFX" "Table 2E" "5ug" 16 -"CLSI 2019" "DISK" "B_HMPHL" "RIF" "Table 2E" "5ug" 20 16 -"CLSI 2019" "DISK" "B_HMPHL" "SAM" "Table 2E" "10/10ug" 20 19 -"CLSI 2019" "DISK" "B_HMPHL" "SPX" "Table 2E" "5ug" -"CLSI 2019" "DISK" "B_HMPHL" "SXT" "Table 2E" "1.25/23.75ug" 15 10 -"CLSI 2019" "DISK" "B_HMPHL" "TCY" "Table 2E" "30ug" 29 25 -"CLSI 2019" "DISK" "B_HMPHL" "TVA" "Table 2E" "10ug" 22 -"CLSI 2019" "DISK" "B_HMPHL" "TZP" "Table 2E" "100ug" 21 -"CLSI 2019" "DISK" "B_HMPHL_INFL" "CPT" "Table 2E" "30ug" 30 -"CLSI 2019" "DISK" "B_HSTPH_SOMN" "ENR" "Vet Table" "5ug" 21 16 -"CLSI 2019" "DISK" "Respiratory" "B_HSTPH_SOMN" "ENR" "VET08 Table 2J" "5ug" 21 16 -"CLSI 2019" "DISK" "Respiratory" "B_HSTPH_SOMN" "FLR" "VET08 Table 2J" "30ug" 19 14 -"CLSI 2019" "DISK" "Respiratory" "B_HSTPH_SOMN" "GAM" "VET08 Table 2J" "15ug" 15 11 -"CLSI 2019" "DISK" "B_HSTPH_SOMN" "SPT" "Vet Table" "100ug" 14 10 -"CLSI 2019" "DISK" "Respiratory" "B_HSTPH_SOMN" "SPT" "VET08 Table 2J" "100ug" 14 10 -"CLSI 2019" "DISK" "Respiratory" "B_HSTPH_SOMN" "TIO" "VET08 Table 2J" "30ug" 21 17 -"CLSI 2019" "DISK" "Respiratory" "B_HSTPH_SOMN" "TIP" "VET08 Table 2J" "60ug" 17 13 -"CLSI 2019" "DISK" "Respiratory" "B_HSTPH_SOMN" "TUL" "VET08 Table 2J" "30ug" 18 14 -"CLSI 2019" "DISK" "Respiratory" "B_MNNHM_HMLY" "DAN" "VET08 Table 2G" "5ug" 22 17 -"CLSI 2019" "DISK" "Respiratory" "B_MNNHM_HMLY" "ENR" "VET08 Table 2G" "5ug" 21 16 -"CLSI 2019" "DISK" "Respiratory" "B_MNNHM_HMLY" "FLR" "VET08 Table 2G" "30ug" 19 14 -"CLSI 2019" "DISK" "Respiratory" "B_MNNHM_HMLY" "GAM" "VET08 Table 2G" "15ug" 15 11 -"CLSI 2019" "DISK" "Respiratory" "B_MNNHM_HMLY" "SPT" "VET08 Table 2G" "100ug" 14 10 -"CLSI 2019" "DISK" "Respiratory" "B_MNNHM_HMLY" "TIL" "VET08 Table 2G" "15ug" 14 10 -"CLSI 2019" "DISK" "Respiratory" "B_MNNHM_HMLY" "TIO" "VET08 Table 2G" "30ug" 21 17 -"CLSI 2019" "DISK" "Respiratory" "B_MNNHM_HMLY" "TIP" "VET08 Table 2G" "60ug" 20 16 -"CLSI 2019" "DISK" "Respiratory" "B_MNNHM_HMLY" "TUL" "VET08 Table 2G" "30ug" 18 14 -"CLSI 2019" "DISK" "B_MRXLL_CTRR" "AMC" "M45 Table 16" "20ug" 24 23 -"CLSI 2019" "DISK" "B_MRXLL_CTRR" "AZM" "M45 Table 16" "15ug" 26 -"CLSI 2019" "DISK" "B_MRXLL_CTRR" "CLR" "M45 Table 16" "15ug" 24 -"CLSI 2019" "DISK" "B_MRXLL_CTRR" "ERY" "M45 Table 16" "15ug" 21 -"CLSI 2019" "DISK" "B_MRXLL_CTRR" "SXT" "M45 Table 16" "1.25/23.75ug" 13 10 -"CLSI 2019" "DISK" "B_MRXLL_CTRR" "TCY" "M45 Table 16" "30ug" 29 24 -"CLSI 2019" "DISK" "B_NESSR_GNRR" "CFM" "Table 2F" "5ug" 31 -"CLSI 2019" "DISK" "B_NESSR_GNRR" "CIP" "Table 2F" "5ug" 41 27 -"CLSI 2019" "DISK" "B_NESSR_GNRR" "CPD" "Table 2F" "10ug" 29 -"CLSI 2019" "DISK" "B_NESSR_GNRR" "CRO" "Table 2F" "30ug" 35 -"CLSI 2019" "DISK" "B_NESSR_GNRR" "CTT" "Table 2F" "30ug" 26 19 -"CLSI 2019" "DISK" "B_NESSR_GNRR" "CTX" "Table 2F" "30ug" 31 -"CLSI 2019" "DISK" "B_NESSR_GNRR" "CZX" "Table 2F" "30ug" 38 -"CLSI 2019" "DISK" "B_NESSR_GNRR" "FEP" "Table 2F" "30ug" 31 -"CLSI 2019" "DISK" "B_NESSR_GNRR" "FOX" "Table 2F" "30ug" 28 23 -"CLSI 2019" "DISK" "B_NESSR_GNRR" "GAT" "Table 2F" "5ug" 38 33 -"CLSI 2019" "DISK" "B_NESSR_GNRR" "GRX" "Table 2F" "5ug" 37 27 -"CLSI 2019" "DISK" "B_NESSR_GNRR" "PEN" "Table 2F" "10units" 47 26 -"CLSI 2019" "DISK" "B_NESSR_GNRR" "SPT" "Table 2F" "100ug" 18 14 -"CLSI 2019" "DISK" "B_NESSR_GNRR" "TCY" "Table 2F" "30ug" 38 30 -"CLSI 2019" "DISK" "B_NESSR_GNRR" "TVA" "Table 2F" "10ug" 34 -"CLSI 2019" "DISK" "B_NESSR_MNNG" "AMP" "Table 2I" "10ug" -"CLSI 2019" "DISK" "B_NESSR_MNNG" "AZM" "Table 2I" "15ug" 20 -"CLSI 2019" "DISK" "B_NESSR_MNNG" "CHL" "Table 2I" "30ug" 26 19 -"CLSI 2019" "DISK" "B_NESSR_MNNG" "CIP" "Table 2I" "5ug" 35 32 -"CLSI 2019" "DISK" "B_NESSR_MNNG" "CRO" "Table 2I" "30ug" 34 -"CLSI 2019" "DISK" "B_NESSR_MNNG" "CTX" "Table 2I" "30ug" 34 -"CLSI 2019" "DISK" "B_NESSR_MNNG" "LVX" "Table 2I" "5ug" -"CLSI 2019" "DISK" "B_NESSR_MNNG" "MEM" "Table 2I" "10ug" 30 -"CLSI 2019" "DISK" "B_NESSR_MNNG" "MNO" "Table 2I" "30ug" 26 -"CLSI 2019" "DISK" "B_NESSR_MNNG" "NAL" "Table 2I" "30ug" 26 25 -"CLSI 2019" "DISK" "B_NESSR_MNNG" "PEN" "Table 2I" "10units" -"CLSI 2019" "DISK" "B_NESSR_MNNG" "RIF" "Table 2I" "5ug" 25 19 -"CLSI 2019" "DISK" "B_NESSR_MNNG" "SMX" "Table 2I" "200-300ug" -"CLSI 2019" "DISK" "B_NESSR_MNNG" "SOX" "Table 2I" "200-300ug" -"CLSI 2019" "DISK" "B_NESSR_MNNG" "SSS" "Table 2I" "200-300ug" -"CLSI 2019" "DISK" "B_NESSR_MNNG" "SXT" "Table 2I" "1.25/23.75ug" 30 25 -"CLSI 2019" "DISK" "Wounds, abscesses, UTI" "B_PROTS_MRBL" "CPD" "VET08 Table 2A" "10ug" 21 17 -"CLSI 2019" "DISK" "UTI" "B_PROTS_MRBL" "FOV" "VET08 Table 2A" "30ug" 24 20 -"CLSI 2019" "DISK" "B_PRVDN_HMBC" "ENR" "Vet Table" "5ug" 21 16 -"CLSI 2019" "DISK" "B_PRVDN_HMBC" "SPT" "100ug" 14 10 -"CLSI 2019" "DISK" "B_PSDMN" "ETP" "10ug" -"CLSI 2019" "DISK" "B_PSDMN_AERG" "AMK" "Table 2B-1" "30ug" 17 14 -"CLSI 2019" "DISK" "B_PSDMN_AERG" "ATM" "Table 2B-1" "30ug" 22 15 -"CLSI 2019" "DISK" "B_PSDMN_AERG" "CAZ" "Table 2B-1" "30ug" 18 14 -"CLSI 2019" "DISK" "B_PSDMN_AERG" "CIP" "Table 2B-1" "5ug" 25 18 -"CLSI 2019" "DISK" "B_PSDMN_AERG" "DOR" "Table 2B-1" "10ug" 19 15 -"CLSI 2019" "DISK" "Skin, soft tissue" "B_PSDMN_AERG" "ENR" "VET08 Table 2B" "5ug" 23 16 -"CLSI 2019" "DISK" "B_PSDMN_AERG" "FEP" "Table 2B-1" "30ug" 18 14 -"CLSI 2019" "DISK" "B_PSDMN_AERG" "GAT" "Table 2B-1" "5ug" 18 14 -"CLSI 2019" "DISK" "B_PSDMN_AERG" "GEN" "Table 2B-1" "10ug" 15 12 -"CLSI 2019" "DISK" "B_PSDMN_AERG" "GEN" "VET08 Table 2B" "10ug" 16 12 -"CLSI 2019" "DISK" "B_PSDMN_AERG" "GEN" "VET08 Table 2B" "10ug" 16 12 -"CLSI 2019" "DISK" "B_PSDMN_AERG" "IPM" "Table 2B-1" "10ug" 19 15 -"CLSI 2019" "DISK" "B_PSDMN_AERG" "LOM" "Table 2B-1" "10ug" 22 18 -"CLSI 2019" "DISK" "B_PSDMN_AERG" "LVX" "Table 2B-1" "5ug" 22 14 -"CLSI 2019" "DISK" "B_PSDMN_AERG" "MEM" "Table 2B-1" "10ug" 19 15 -"CLSI 2019" "DISK" "B_PSDMN_AERG" "NET" "Table 2B-1" "30ug" 15 12 -"CLSI 2019" "DISK" "B_PSDMN_AERG" "OFX" "Table 2B-1" "5ug" 16 12 -"CLSI 2019" "DISK" "B_PSDMN_AERG" "PIP" "Table 2B-1" "100ug" 21 14 -"CLSI 2019" "DISK" "B_PSDMN_AERG" "TCC" "Table 2B-1" "75ug" 24 15 -"CLSI 2019" "DISK" "B_PSDMN_AERG" "TOB" "Table 2B-1" "10ug" 15 12 -"CLSI 2019" "DISK" "B_PSDMN_AERG" "TZP" "Table 2B-1" "100ug" 21 14 -"CLSI 2019" "DISK" "B_PSTRL" "AMC" "M45 Table 17" "20ug" 27 -"CLSI 2019" "DISK" "B_PSTRL" "AMP" "M45 Table 17" "10ug" 27 -"CLSI 2019" "DISK" "B_PSTRL" "AZM" "M45 Table 17" "15ug" 20 -"CLSI 2019" "DISK" "B_PSTRL" "CHL" "M45 Table 17" "30ug" 28 -"CLSI 2019" "DISK" "B_PSTRL" "CRO" "M45 Table 17" "30ug" 34 -"CLSI 2019" "DISK" "B_PSTRL" "DOX" "M45 Table 17" "30ug" 23 -"CLSI 2019" "DISK" "B_PSTRL" "ERY" "M45 Table 17" "15ug" 27 24 -"CLSI 2019" "DISK" "B_PSTRL" "LVX" "M45 Table 17" "5ug" 28 -"CLSI 2019" "DISK" "B_PSTRL" "MFX" "M45 Table 17" "5ug" 28 -"CLSI 2019" "DISK" "B_PSTRL" "PEN" "M45 Table 17" "10 Units" 25 -"CLSI 2019" "DISK" "B_PSTRL" "SXT" "M45 Table 17" "1.25/23.75ug" 24 -"CLSI 2019" "DISK" "B_PSTRL" "TCY" "M45 Table 17" "30ug" 23 -"CLSI 2019" "DISK" "Wounds, abscesses" "B_PSTRL_MLTC" "CPD" "VET08 Table 2H" "10ug" 21 17 -"CLSI 2019" "DISK" "Respiratory" "B_PSTRL_MLTC" "DAN" "VET08 Table 2H" "5ug" 22 17 -"CLSI 2019" "DISK" "B_PSTRL_MLTC" "ENR" "Vet Table" "5ug" 21 16 -"CLSI 2019" "DISK" "Respiratory" "B_PSTRL_MLTC" "ENR" "VET08 Table 2H" "5ug" 23 18 -"CLSI 2019" "DISK" "Respiratory" "B_PSTRL_MLTC" "ENR" "VET08 Table 2H" "5ug" 21 16 -"CLSI 2019" "DISK" "Respiratory" "B_PSTRL_MLTC" "FLR" "VET08 Table 2H" "30ug" 22 18 -"CLSI 2019" "DISK" "Respiratory" "B_PSTRL_MLTC" "FLR" "VET08 Table 2H" "30ug" 19 14 -"CLSI 2019" "DISK" "Skin, soft tissue" "B_PSTRL_MLTC" "FOV" "VET08 Table 2H" "30ug" 24 20 -"CLSI 2019" "DISK" "Respiratory" "B_PSTRL_MLTC" "GAM" "VET08 Table 2H" "15ug" 15 11 -"CLSI 2019" "DISK" "Skin, respiratory" "B_PSTRL_MLTC" "PRA" "VET08 Table 2H" "5ug" 24 -"CLSI 2019" "DISK" "B_PSTRL_MLTC" "SPT" "100ug" 14 10 -"CLSI 2019" "DISK" "Respiratory" "B_PSTRL_MLTC" "SPT" "VET08 Table 2H" "100ug" 14 10 -"CLSI 2019" "DISK" "B_PSTRL_MLTC" "TIL" "Vet Table" "15ug" 11 10 -"CLSI 2019" "DISK" "Respiratory" "B_PSTRL_MLTC" "TIL" "VET08 Table 2H" "15ug" 11 10 -"CLSI 2019" "DISK" "Respiratory" "B_PSTRL_MLTC" "TIO" "VET08 Table 2H" "30ug" 21 17 -"CLSI 2019" "DISK" "Respiratory" "B_PSTRL_MLTC" "TIO" "VET08 Table 2H" "30ug" 21 17 -"CLSI 2019" "DISK" "Respiratory" "B_PSTRL_MLTC" "TIP" "VET08 Table 2H" "60ug" 21 17 -"CLSI 2019" "DISK" "Respiratory" "B_PSTRL_MLTC" "TIP" "VET08 Table 2H" "60ug" 19 -"CLSI 2019" "DISK" "Respiratory" "B_PSTRL_MLTC" "TUL" "VET08 Table 2H" "30ug" 18 14 -"CLSI 2019" "DISK" "Respiratory" "B_PSTRL_MLTC" "TUL" "VET08 Table 2H" "30ug" 18 14 -"CLSI 2019" "DISK" "Extraintestinal" "B_SLMNL" "CIP" "Table 2A" "5ug" 31 20 -"CLSI 2019" "DISK" "B_SLMNL" "CIP" "Table 2A" "5ug" 31 20 -"CLSI 2019" "DISK" "B_STNTR_MLTP" "CAZ" "Table 2B-4" "30ug" -"CLSI 2019" "DISK" "B_STNTR_MLTP" "CHL" "Table 2B-4" "30ug" -"CLSI 2019" "DISK" "B_STNTR_MLTP" "LVX" "Table 2B-4" "75ug" 17 13 -"CLSI 2019" "DISK" "B_STNTR_MLTP" "MNO" "Table 2B-4" "30ug" 19 14 -"CLSI 2019" "DISK" "B_STNTR_MLTP" "SXT" "Table 2B-4" "30ug" 16 10 -"CLSI 2019" "DISK" "B_STNTR_MLTP" "TCC" "Table 2B-4" "30ug" -"CLSI 2019" "DISK" "B_STPHY" "AMC" "Table 2C" "20ug" 20 19 -"CLSI 2019" "DISK" "B_STPHY" "AMP" "Table 2C" "10ug" 29 28 -"CLSI 2019" "DISK" "B_STPHY" "AZM" "Table 2C" "15ug" 18 13 -"CLSI 2019" "DISK" "B_STPHY" "CAZ" "Table 2C" "30ug" 18 14 -"CLSI 2019" "DISK" "B_STPHY" "CDR" "Table 2C" "5ug" 20 16 -"CLSI 2019" "DISK" "B_STPHY" "CEC" "Table 2C" "30ug" 18 14 -"CLSI 2019" "DISK" "B_STPHY" "CEP" "Table 2C" "30ug" 18 14 -"CLSI 2019" "DISK" "B_STPHY" "CFP" "Table 2C" "75ug" 21 15 -"CLSI 2019" "DISK" "B_STPHY" "CHL" "Table 2C" "30ug" 18 12 -"CLSI 2019" "DISK" "B_STPHY" "CID" "Table 2C" "30ug" 18 14 -"CLSI 2019" "DISK" "B_STPHY" "CIP" "Table 2C" "5ug" 21 15 -"CLSI 2019" "DISK" "B_STPHY" "CLI" "Table 2C" "2ug" 21 14 -"CLSI 2019" "DISK" "Skin, soft tissue" "B_STPHY" "CLI" "VET08 Table 2C" "2ug" 21 14 -"CLSI 2019" "DISK" "B_STPHY" "CLR" "Table 2C" "15ug" 18 13 -"CLSI 2019" "DISK" "B_STPHY" "CMZ" "Table 2C" "30ug" 16 12 -"CLSI 2019" "DISK" "B_STPHY" "CPD" "Table 2C" "10ug" 21 17 -"CLSI 2019" "DISK" "B_STPHY" "CPR" "Table 2C" "30ug" 18 14 -"CLSI 2019" "DISK" "B_STPHY" "CRO" "Table 2C" "30ug" 21 13 -"CLSI 2019" "DISK" "B_STPHY" "CTT" "Table 2C" "30ug" 16 12 -"CLSI 2019" "DISK" "B_STPHY" "CTX" "Table 2C" "30ug" 23 14 -"CLSI 2019" "DISK" "B_STPHY" "CXA" "Table 2C" "30ug" 23 14 -"CLSI 2019" "DISK" "Oral" "B_STPHY" "CXM" "Table 2C" "30ug" 23 14 -"CLSI 2019" "DISK" "Parenteral" "B_STPHY" "CXM" "Table 2C" "30ug" 18 14 -"CLSI 2019" "DISK" "Oral" "B_STPHY" "CXM" "Table 2C" "30ug" 23 14 -"CLSI 2019" "DISK" "B_STPHY" "CZO" "Table 2C" "30ug" 18 14 -"CLSI 2019" "DISK" "B_STPHY" "CZX" "Table 2C" "30ug" 20 14 -"CLSI 2019" "DISK" "B_STPHY" "DAP" "Table 2C" "30ug" -"CLSI 2019" "DISK" "Skin, soft tissue, UTI" "B_STPHY" "DIF" "VET08 Table 2C" "10ug" 21 17 -"CLSI 2019" "DISK" "B_STPHY" "DIR" "Table 2C" "15ug" 19 15 -"CLSI 2019" "DISK" "B_STPHY" "DOR" "Table 2C" "10ug" 30 -"CLSI 2019" "DISK" "B_STPHY" "DOX" "Table 2C" "30ug" 16 12 -"CLSI 2019" "DISK" "Skin, soft tissue, UTI, respiratory" "B_STPHY" "ENR" "VET08 Table 2C" "5ug" 23 16 -"CLSI 2019" "DISK" "Skin, soft tissue" "B_STPHY" "ENR" "VET08 Table 2C" "5ug" 23 16 -"CLSI 2019" "DISK" "B_STPHY" "ENX" "Table 2C" "10ug" 18 14 -"CLSI 2019" "DISK" "B_STPHY" "ERY" "Table 2C" "15ug" 23 13 -"CLSI 2019" "DISK" "B_STPHY" "ETP" "Table 2C" "10ug" 19 15 -"CLSI 2019" "DISK" "B_STPHY" "FEP" "Table 2C" "30ug" 18 14 -"CLSI 2019" "DISK" "B_STPHY" "FLE" "Table 2C" "5ug" 19 15 -"CLSI 2019" "DISK" "B_STPHY" "FOX" "Table 2C" "30ug" 25 24 -"CLSI 2019" "DISK" "B_STPHY" "GAT" "Table 2C" "10ug" 23 19 -"CLSI 2019" "DISK" "B_STPHY" "GEN" "Table 2C" "10ug" 15 12 -"CLSI 2019" "DISK" "B_STPHY" "GRX" "Table 2C" "5ug" 18 14 -"CLSI 2019" "DISK" "B_STPHY" "IPM" "Table 2C" "10ug" 16 13 -"CLSI 2019" "DISK" "B_STPHY" "LNZ" "Table 2C" "30ug" 21 20 -"CLSI 2019" "DISK" "B_STPHY" "LOM" "Table 2C" "10ug" 22 18 -"CLSI 2019" "DISK" "B_STPHY" "LOR" "Table 2C" "30ug" 18 14 -"CLSI 2019" "DISK" "B_STPHY" "LTM" "Table 2C" "30ug" 23 14 -"CLSI 2019" "DISK" "B_STPHY" "LVX" "Table 2C" "10ug" 19 15 -"CLSI 2019" "DISK" "B_STPHY" "MAN" "Table 2C" "30ug" 18 14 -"CLSI 2019" "DISK" "Skin, soft tissue, UTI" "B_STPHY" "MAR" "VET08 Table 2C" "5ug" 20 14 -"CLSI 2019" "DISK" "Skin, soft tissue" "B_STPHY" "MAR" "VET08 Table 2C" "5ug" 20 14 -"CLSI 2019" "DISK" "B_STPHY" "MEM" "Table 2C" "10ug" 15 13 -"CLSI 2019" "DISK" "B_STPHY" "MET" "Table 2C" "5ug" 14 9 -"CLSI 2019" "DISK" "B_STPHY" "MFX" "Table 2C" "5ug" 24 20 -"CLSI 2019" "DISK" "B_STPHY" "MNO" "Table 2C" "30ug" 19 14 -"CLSI 2019" "DISK" "B_STPHY" "NAF" "Table 2C" "1ug" 13 10 -"CLSI 2019" "DISK" "B_STPHY" "NIT" "Table 2C" "300ug" 17 14 -"CLSI 2019" "DISK" "B_STPHY" "OFX" "Table 2C" "5ug" 18 14 -"CLSI 2019" "DISK" "Skin, soft tissue, UTI" "B_STPHY" "ORB" "VET08 Table 2C" "10ug" 23 17 -"CLSI 2019" "DISK" "Skin, soft tissue" "B_STPHY" "ORB" "VET08 Table 2C" "10ug" 23 17 -"CLSI 2019" "DISK" "B_STPHY" "PEN" "Table 2C" "10ug" 29 28 -"CLSI 2019" "DISK" "B_STPHY" "QDA" "Table 2C" "15ug" 19 15 -"CLSI 2019" "DISK" "B_STPHY" "RIF" "Table 2C" "5ug" 20 16 -"CLSI 2019" "DISK" "B_STPHY" "SAM" "Table 2C" "10ug" 15 11 -"CLSI 2019" "DISK" "B_STPHY" "SMX" "Table 2C" "200ug" 17 12 -"CLSI 2019" "DISK" "B_STPHY" "SOX" "Table 2C" "200ug" 17 12 -"CLSI 2019" "DISK" "B_STPHY" "SPX" "Table 2C" "5ug" 19 15 -"CLSI 2019" "DISK" "B_STPHY" "SSS" "Table 2C" "200ug" 17 12 -"CLSI 2019" "DISK" "B_STPHY" "SXT" "Table 2C" "1.25/23.75ug" 16 10 -"CLSI 2019" "DISK" "B_STPHY" "TCC" "Table 2C" "75/10ug" 23 22 -"CLSI 2019" "DISK" "B_STPHY" "TCY" "Table 2C" "30ug" 19 14 -"CLSI 2019" "DISK" "Skin, soft tissue" "B_STPHY" "TCY" "VET08 Table 2C" "30ug" 23 17 -"CLSI 2019" "DISK" "B_STPHY" "TEC" "Table 2C" "30ug" 14 10 -"CLSI 2019" "DISK" "B_STPHY" "TMP" "Table 2C" "5ug" 16 10 -"CLSI 2019" "DISK" "B_STPHY" "TZP" "Table 2C" "100/10ug" 18 17 -"CLSI 2019" "DISK" "B_STPHY" "VAN" "Table 2C" "30ug" -"CLSI 2019" "DISK" "Wounds, abscesses" "B_STPHY_AURS" "CPD" "VET08 Table 2C" "10ug" 21 17 -"CLSI 2019" "DISK" "B_STPHY_AURS" "CPT" "Table 2C" "30ug" 25 19 -"CLSI 2019" "DISK" "B_STPHY_AURS" "FOX" "Table 2C" "30ug" 22 21 -"CLSI 2019" "DISK" "Mastitis" "B_STPHY_AURS" "PNO" "VET08 Table 2C" "10units/30ug" 18 14 -"CLSI 2019" "DISK" "Skin, respiratory" "B_STPHY_AURS" "PRA" "VET08 Table 2C" "5ug" 24 19 -"CLSI 2019" "DISK" "Mastitis" "B_STPHY_AURS" "PRL" "VET08 Table 2C" "2ug" 13 12 -"CLSI 2019" "DISK" "Mastitis" "B_STPHY_AURS" "TIO" "VET08 Table 2C" "30ug" 21 17 -"CLSI 2019" "DISK" "B_STPHY_COPS" "CPT" "Table 2C" "30ug" 25 19 -"CLSI 2019" "DISK" "B_STPHY_COPS" "FOX" "Table 2C" "30ug" 22 21 -"CLSI 2019" "DISK" "B_STPHY_EPDR" "FOX" "Table 2C" "30ug" 25 24 -"CLSI 2019" "DISK" "B_STPHY_EPDR" "OXA" "Table 2C" "1ug" 18 17 -"CLSI 2019" "DISK" "Skin, respiratory" "B_STPHY_FELS" "PRA" "VET08 Table 2C" "5ug" 24 19 -"CLSI 2019" "DISK" "B_STPHY_LGDN" "FOX" "Table 2C" "30ug" 22 21 -"CLSI 2019" "DISK" "B_STPHY_SCHL_SCHL" "OXA" "Table 2C" "1ug" 18 17 -"CLSI 2019" "DISK" "B_STRPT" "AMC" "Table 2H-1" "20ug" -"CLSI 2019" "DISK" "B_STRPT" "AMP" "Table 2H-1" "10ug" 24 -"CLSI 2019" "DISK" "B_STRPT" "AMX" "Table 2H-1" "30ug" -"CLSI 2019" "DISK" "B_STRPT" "AZM" "Table 2H-1" "15ug" 18 13 -"CLSI 2019" "DISK" "B_STRPT" "CHL" "Table 2H-1" "30ug" 21 17 -"CLSI 2019" "DISK" "B_STRPT" "CLI" "Table 2H-1" "2ug" 19 15 -"CLSI 2019" "DISK" "B_STRPT" "CLR" "Table 2H-1" "15ug" 21 16 -"CLSI 2019" "DISK" "B_STRPT" "CPT" "Table 2H-1" "30ug" 26 -"CLSI 2019" "DISK" "B_STRPT" "CRO" "Table 2H-1" "30ug" 24 -"CLSI 2019" "DISK" "B_STRPT" "CTX" "Table 2H-1" "30ug" 24 -"CLSI 2019" "DISK" "B_STRPT" "CXM" "Table 2H-1" "30ug" -"CLSI 2019" "DISK" "B_STRPT" "DAP" "Table 2H-1" "30ug" 16 -"CLSI 2019" "DISK" "Skin, soft tissue, UTI" "B_STRPT" "DIF" "VET08 Table 2D" "10ug" 21 17 -"CLSI 2019" "DISK" "B_STRPT" "DIR" "Table 2H-1" "15ug" 18 13 -"CLSI 2019" "DISK" "B_STRPT" "DOR" "Table 2H-1" "10ug" -"CLSI 2019" "DISK" "Skin, soft tissue, respiratory, UIT" "B_STRPT" "ENR" "VET08 Table 2D" "5ug" 23 16 -"CLSI 2019" "DISK" "Skin, soft tissue" "B_STRPT" "ENR" "VET08 Table 2D" "5ug" 23 16 -"CLSI 2019" "DISK" "B_STRPT" "ERY" "Table 2H-1" "15ug" 21 15 -"CLSI 2019" "DISK" "B_STRPT" "ETP" "Table 2H-1" "10ug" -"CLSI 2019" "DISK" "B_STRPT" "FEP" "Table 2H-1" "30ug" 24 -"CLSI 2019" "DISK" "B_STRPT" "GAT" "Table 2H-1" "5ug" 21 17 -"CLSI 2019" "DISK" "B_STRPT" "GEM" "Table 2H-1" "5ug" -"CLSI 2019" "DISK" "B_STRPT" "GRX" "Table 2H-1" "5ug" 19 15 -"CLSI 2019" "DISK" "B_STRPT" "IPM" "Table 2H-1" "10ug" -"CLSI 2019" "DISK" "B_STRPT" "LNZ" "Table 2H-1" "30ug" 21 -"CLSI 2019" "DISK" "B_STRPT" "LVX" "Table 2H-1" "5ug" 17 13 -"CLSI 2019" "DISK" "Skin, soft tissue, UTI" "B_STRPT" "MAR" "VET08 Table 2D" "5ug" 20 14 -"CLSI 2019" "DISK" "Skin, soft tissue" "B_STRPT" "MAR" "VET08 Table 2D" "5ug" 20 14 -"CLSI 2019" "DISK" "B_STRPT" "MEM" "Table 2H-1" "10ug" -"CLSI 2019" "DISK" "B_STRPT" "MFX" "Table 2H-1" "5ug" -"CLSI 2019" "DISK" "B_STRPT" "OFX" "Table 2H-1" "5ug" 16 12 -"CLSI 2019" "DISK" "Skin, soft tissue, UTI" "B_STRPT" "ORB" "VET08 Table 2D" "10ug" 23 17 -"CLSI 2019" "DISK" "Skin, soft tissue" "B_STRPT" "ORB" "VET08 Table 2D" "10ug" 23 17 -"CLSI 2019" "DISK" "B_STRPT" "PEN" "Table 2H-1" "10units" 24 -"CLSI 2019" "DISK" "B_STRPT" "QDA" "Table 2H-1" "15ug" 19 15 -"CLSI 2019" "DISK" "B_STRPT" "RIF" "Table 2H-1" "5ug" -"CLSI 2019" "DISK" "B_STRPT" "SPX" "Table 2H-1" "5ug" -"CLSI 2019" "DISK" "B_STRPT" "SXT" "Table 2H-1" "1.25/23.75ug" -"CLSI 2019" "DISK" "B_STRPT" "TCY" "Table 2H-1" "30ug" 23 18 -"CLSI 2019" "DISK" "B_STRPT" "TVA" "Table 2H-1" "10ug" 19 15 -"CLSI 2019" "DISK" "B_STRPT" "VAN" "Table 2H-1" "30ug" 17 -"CLSI 2019" "DISK" "Mastitis" "B_STRPT_AGLC" "PNO" "VET08 Table 2D" "10units/30ug" 18 14 -"CLSI 2019" "DISK" "Mastitis" "B_STRPT_AGLC" "PRL" "VET08 Table 2D" "2ug" 13 12 -"CLSI 2019" "DISK" "Mastitis" "B_STRPT_AGLC" "TIO" "VET08 Table 2D" "30ug" 21 17 -"CLSI 2019" "DISK" "Mastitis" "B_STRPT_DYSG" "PNO" "VET08 Table 2D" "10units/30ug" 18 14 -"CLSI 2019" "DISK" "Mastitis" "B_STRPT_DYSG" "PRL" "VET08 Table 2D" "2ug" 13 12 -"CLSI 2019" "DISK" "Mastitis" "B_STRPT_DYSG" "TIO" "VET08 Table 2D" "30ug" 21 17 -"CLSI 2019" "DISK" "Respiratory" "B_STRPT_EQUI_ZPDM" "TIO" "VET08 Table 2D" "30ug" 22 -"CLSI 2019" "DISK" "Skin, soft tissue" "B_STRPT_HAEM" "CLI" "VET08 Table 2D" "2ug" 21 14 -"CLSI 2019" "DISK" "Skin, soft tissue" "B_STRPT_HAEM" "FOV" "VET08 Table 2D" "30ug" 24 20 -"CLSI 2019" "DISK" "B_STRPT_PNMN" "AMC" "Table 2G" "10/10ug" -"CLSI 2019" "DISK" "B_STRPT_PNMN" "AMP" "Table 2G" "10ug" -"CLSI 2019" "DISK" "B_STRPT_PNMN" "AMX" "Table 2G" "30ug" -"CLSI 2019" "DISK" "B_STRPT_PNMN" "AZM" "Table 2G" "15ug" 18 13 -"CLSI 2019" "DISK" "B_STRPT_PNMN" "CDR" "Table 2G" "5ug" -"CLSI 2019" "DISK" "B_STRPT_PNMN" "CEC" "Table 2G" "30ug" -"CLSI 2019" "DISK" "B_STRPT_PNMN" "CHL" "Table 2G" "30ug" 21 20 -"CLSI 2019" "DISK" "B_STRPT_PNMN" "CIP" "Table 2G" "5ug" -"CLSI 2019" "DISK" "B_STRPT_PNMN" "CLI" "Table 2G" "2ug" 19 15 -"CLSI 2019" "DISK" "B_STRPT_PNMN" "CLR" "Table 2G" "15ug" 21 16 -"CLSI 2019" "DISK" "B_STRPT_PNMN" "CPD" "Table 2G" "10ug" -"CLSI 2019" "DISK" "B_STRPT_PNMN" "CPR" "Table 2G" "30ug" -"CLSI 2019" "DISK" "B_STRPT_PNMN" "CPT" "Table 2G" "30ug" -"CLSI 2019" "DISK" "B_STRPT_PNMN" "CRO" "Table 2G" "30ug" -"CLSI 2019" "DISK" "B_STRPT_PNMN" "CTX" "Table 2G" "30ug" -"CLSI 2019" "DISK" "B_STRPT_PNMN" "CXA" "Table 2G" "30ug" -"CLSI 2019" "DISK" "Oral" "B_STRPT_PNMN" "CXM" "Table 2G" "30ug" -"CLSI 2019" "DISK" "B_STRPT_PNMN" "CXM" "Table 2G" "30ug" -"CLSI 2019" "DISK" "B_STRPT_PNMN" "DAP" "Table 2G" "30ug" -"CLSI 2019" "DISK" "B_STRPT_PNMN" "DIR" "Table 2G" "15ug" 18 13 -"CLSI 2019" "DISK" "B_STRPT_PNMN" "DOR" "Table 2G" "10ug" -"CLSI 2019" "DISK" "B_STRPT_PNMN" "DOX" "Table 2G" "30ug" 28 24 -"CLSI 2019" "DISK" "B_STRPT_PNMN" "ERY" "Table 2G" "15ug" 21 15 -"CLSI 2019" "DISK" "B_STRPT_PNMN" "ETP" "Table 2G" "10ug" -"CLSI 2019" "DISK" "B_STRPT_PNMN" "FEP" "Table 2G" "30ug" -"CLSI 2019" "DISK" "B_STRPT_PNMN" "GAT" "Table 2G" "5ug" 21 17 -"CLSI 2019" "DISK" "B_STRPT_PNMN" "GEM" "Table 2G" "5ug" 23 19 -"CLSI 2019" "DISK" "B_STRPT_PNMN" "GRX" "Table 2G" "5ug" 19 15 -"CLSI 2019" "DISK" "B_STRPT_PNMN" "IPM" "Table 2G" "10ug" -"CLSI 2019" "DISK" "B_STRPT_PNMN" "LNZ" "Table 2G" "30ug" 21 -"CLSI 2019" "DISK" "B_STRPT_PNMN" "LOR" "Table 2G" "30ug" -"CLSI 2019" "DISK" "B_STRPT_PNMN" "LVX" "Table 2G" "5ug" 17 13 -"CLSI 2019" "DISK" "B_STRPT_PNMN" "MEM" "Table 2G" "10ug" -"CLSI 2019" "DISK" "B_STRPT_PNMN" "MFX" "Table 2G" "5ug" 18 14 -"CLSI 2019" "DISK" "B_STRPT_PNMN" "OFX" "Table 2G" "5ug" 16 12 -"CLSI 2019" "DISK" "B_STRPT_PNMN" "OXA" "Table 2G" "1ug" 20 -"CLSI 2019" "DISK" "B_STRPT_PNMN" "PEN" "Table 2G" "10units" -"CLSI 2019" "DISK" "B_STRPT_PNMN" "PNV" "Table 2G" "10ug" -"CLSI 2019" "DISK" "B_STRPT_PNMN" "QDA" "Table 2G" "15ug" 19 15 -"CLSI 2019" "DISK" "B_STRPT_PNMN" "RIF" "Table 2G" "5ug" 19 16 -"CLSI 2019" "DISK" "B_STRPT_PNMN" "SAM" "Table 2G" "10/10ug" -"CLSI 2019" "DISK" "B_STRPT_PNMN" "SPX" "Table 2G" "5ug" 19 15 -"CLSI 2019" "DISK" "B_STRPT_PNMN" "SXT" "Table 2G" "1.25/23.75ug" 19 15 -"CLSI 2019" "DISK" "B_STRPT_PNMN" "TCY" "Table 2G" "30ug" 28 24 -"CLSI 2019" "DISK" "B_STRPT_PNMN" "TLT" "Table 2G" "15ug" 19 15 -"CLSI 2019" "DISK" "B_STRPT_PNMN" "TVA" "Table 2G" "10ug" 19 15 -"CLSI 2019" "DISK" "B_STRPT_PNMN" "VAN" "Table 2G" "30ug" 17 -"CLSI 2019" "DISK" "Respiratory" "B_STRPT_SUIS" "FLR" "VET08 Table 2D" "30ug" 22 18 -"CLSI 2019" "DISK" "Respiratory" "B_STRPT_SUIS" "TIO" "VET08 Table 2D" "30ug" 21 17 -"CLSI 2019" "DISK" "Mastitis" "B_STRPT_UBRS" "PNO" "VET08 Table 2D" "10units/30ug" 18 14 -"CLSI 2019" "DISK" "Mastitis" "B_STRPT_UBRS" "PRL" "VET08 Table 2D" "2ug" 13 12 -"CLSI 2019" "DISK" "Mastitis" "B_STRPT_UBRS" "TIO" "VET08 Table 2D" "30ug" 21 17 -"CLSI 2019" "DISK" "B_STRPT_VIRI" "AMP" "Table 2H-2" "10ug" -"CLSI 2019" "DISK" "B_STRPT_VIRI" "AZM" "Table 2H-2" "15ug" 18 13 -"CLSI 2019" "DISK" "B_STRPT_VIRI" "CHL" "Table 2H-2" "30ug" 21 17 -"CLSI 2019" "DISK" "B_STRPT_VIRI" "CLI" "Table 2H-2" "2ug" 19 15 -"CLSI 2019" "DISK" "B_STRPT_VIRI" "CLR" "Table 2H-2" "15ug" 21 16 -"CLSI 2019" "DISK" "B_STRPT_VIRI" "CRO" "Table 2H-2" "30ug" 27 24 -"CLSI 2019" "DISK" "B_STRPT_VIRI" "CTX" "Table 2H-2" "30ug" 28 25 -"CLSI 2019" "DISK" "B_STRPT_VIRI" "DAP" "Table 2H-2" "30ug" -"CLSI 2019" "DISK" "B_STRPT_VIRI" "DIR" "Table 2H-2" "15ug" 18 13 -"CLSI 2019" "DISK" "B_STRPT_VIRI" "DOR" "Table 2H-2" "10ug" -"CLSI 2019" "DISK" "B_STRPT_VIRI" "ERY" "Table 2H-2" "15ug" 21 15 -"CLSI 2019" "DISK" "B_STRPT_VIRI" "ETP" "Table 2H-2" "10ug" -"CLSI 2019" "DISK" "B_STRPT_VIRI" "FEP" "Table 2H-2" "30ug" 24 21 -"CLSI 2019" "DISK" "B_STRPT_VIRI" "GAT" "Table 2H-2" "5ug" 21 17 -"CLSI 2019" "DISK" "B_STRPT_VIRI" "GRX" "Table 2H-2" "5ug" 19 15 -"CLSI 2019" "DISK" "B_STRPT_VIRI" "LNZ" "Table 2H-2" "30ug" 21 -"CLSI 2019" "DISK" "B_STRPT_VIRI" "LVX" "Table 2H-2" "5ug" 17 13 -"CLSI 2019" "DISK" "B_STRPT_VIRI" "MEM" "Table 2H-2" "10ug" -"CLSI 2019" "DISK" "B_STRPT_VIRI" "OFX" "Table 2H-2" "5ug" 16 12 -"CLSI 2019" "DISK" "B_STRPT_VIRI" "PEN" "Table 2H-2" "10units" -"CLSI 2019" "DISK" "B_STRPT_VIRI" "QDA" "Table 2H-2" "15ug" 19 15 -"CLSI 2019" "DISK" "B_STRPT_VIRI" "TCY" "Table 2H-2" "30ug" 23 18 -"CLSI 2019" "DISK" "B_STRPT_VIRI" "TVA" "Table 2H-2" "10ug" 19 15 -"CLSI 2019" "DISK" "B_STRPT_VIRI" "VAN" "Table 2H-2" "30ug" 17 -"CLSI 2019" "DISK" "B_VIBRI" "AMC" "M45 Table 20" "20ug" 18 13 -"CLSI 2019" "DISK" "B_VIBRI" "AMK" "M45 Table 20" "30ug" 17 14 -"CLSI 2019" "DISK" "B_VIBRI" "AMP" "M45 Table 20" "10ug" 17 13 -"CLSI 2019" "DISK" "B_VIBRI" "CAZ" "M45 Table 20" "30ug" 21 17 -"CLSI 2019" "DISK" "B_VIBRI" "CHL" "M45 Table 20" "30ug" 18 12 -"CLSI 2019" "DISK" "B_VIBRI" "CIP" "M45 Table 20" "5ug" 21 15 -"CLSI 2019" "DISK" "B_VIBRI" "CTX" "M45 Table 20" "30ug" 26 22 -"CLSI 2019" "DISK" "B_VIBRI" "CXM" "M45 Table 20" "30ug" 18 14 -"CLSI 2019" "DISK" "B_VIBRI" "DOX" "M45 Table 20" "30ug" -"CLSI 2019" "DISK" "B_VIBRI" "FEP" "M45 Table 20" "30ug" 25 18 -"CLSI 2019" "DISK" "B_VIBRI" "FOX" "M45 Table 20" "30ug" 18 14 -"CLSI 2019" "DISK" "B_VIBRI" "GEN" "M45 Table 20" "10ug" 15 12 -"CLSI 2019" "DISK" "B_VIBRI" "IPM" "M45 Table 20" "10ug" 23 19 -"CLSI 2019" "DISK" "B_VIBRI" "LVX" "M45 Table 20" "5ug" 17 13 -"CLSI 2019" "DISK" "B_VIBRI" "MEM" "M45 Table 20" "10ug" 23 19 -"CLSI 2019" "DISK" "B_VIBRI" "OFX" "M45 Table 20" "5ug" 16 12 -"CLSI 2019" "DISK" "B_VIBRI" "PIP" "M45 Table 20" "100ug" 21 17 -"CLSI 2019" "DISK" "B_VIBRI" "SAM" "M45 Table 20" "10ug" 15 11 -"CLSI 2019" "DISK" "B_VIBRI" "SMX" "M45 Table 20" "200ug" 17 12 -"CLSI 2019" "DISK" "B_VIBRI" "SOX" "M45 Table 20" "200ug" 17 12 -"CLSI 2019" "DISK" "B_VIBRI" "SSS" "M45 Table 20" "200ug" 17 12 -"CLSI 2019" "DISK" "B_VIBRI" "SXT" "M45 Table 20" "1.25ug" 16 10 -"CLSI 2019" "DISK" "B_VIBRI" "TCY" "M45 Table 20" "30ug" 15 11 -"CLSI 2019" "DISK" "B_VIBRI" "TZP" "M45 Table 20" "100ug" 21 17 -"CLSI 2019" "DISK" "F_CANDD" "CAS" "Table 1" 13 10 -"CLSI 2019" "DISK" "F_CANDD" "CAS" "Table 1" 17 14 -"CLSI 2019" "DISK" "F_CANDD" "MIF" "Table 1" 16 13 -"CLSI 2019" "DISK" "F_CANDD" "MIF" "Table 1" 22 19 -"CLSI 2019" "DISK" "F_CANDD" "VOR" "Table 1" 15 12 -"CLSI 2019" "DISK" "F_CANDD_ALBC" "CAS" "Table 1" 17 14 -"CLSI 2019" "DISK" "F_CANDD_ALBC" "FLU" "Table 1" 17 13 -"CLSI 2019" "DISK" "F_CANDD_ALBC" "MIF" "Table 1" 22 19 -"CLSI 2019" "DISK" "F_CANDD_ALBC" "VOR" "Table 1" 17 14 -"CLSI 2019" "DISK" "F_CANDD_GLBR" "FLU" "Table 1" 50 14 -"CLSI 2019" "DISK" "F_CANDD_GLBR" "MIF" "Table 1" 30 27 -"CLSI 2019" "DISK" "F_CANDD_PRPS" "CAS" "Table 1" 13 10 -"CLSI 2019" "DISK" "F_CANDD_PRPS" "FLU" "Table 1" 17 13 -"CLSI 2019" "DISK" "F_CANDD_PRPS" "MIF" "Table 1" 16 13 -"CLSI 2019" "DISK" "F_CANDD_PRPS" "VOR" "Table 1" 17 14 -"CLSI 2019" "DISK" "F_CANDD_TRPC" "CAS" "Table 1" 17 14 -"CLSI 2019" "DISK" "F_CANDD_TRPC" "FLU" "Table 1" 17 13 -"CLSI 2019" "DISK" "F_CANDD_TRPC" "MIF" "Table 1" 22 19 -"CLSI 2019" "DISK" "F_CANDD_TRPC" "VOR" "Table 1" 17 14 -"CLSI 2019" "DISK" "Wounds, abscesses" "F_PSDLL" "CPD" "VET08 Table 2C" "10ug" 21 17 -"CLSI 2019" "DISK" "Skin, soft tissue" "F_PSDLL" "DOX" "VET08 Table 2C" "30ug" 25 20 -"CLSI 2019" "DISK" "Skin, soft tissue" "F_PSDLL" "FOV" "VET08 Table 2C" "30ug" 24 20 -"CLSI 2019" "DISK" "F_PSDLL" "OXA" "Table 2C" "1ug" 18 17 -"CLSI 2019" "DISK" "Skin, UTI" "F_PSDLL" "PRA" "VET08 Table 2C" "5ug" 24 19 -"CLSI 2019" "DISK" "Skin, respiratory" "F_PSDLL" "PRA" "VET08 Table 2C" "5ug" 24 19 -"CLSI 2018" "DISK" "Urine" "B_[FAM]_ENTRBCTR" "CZO" "Table 2A" 15 14 -"CLSI 2018" "DISK" "B_ACNTB" "AMK" "Table 2B-2" "30ug" 17 14 -"CLSI 2018" "DISK" "B_ACNTB" "CAZ" "Table 2B-2" "30ug" 18 14 -"CLSI 2018" "DISK" "B_ACNTB" "CIP" "Table 2B-2" "5ug" 21 15 -"CLSI 2018" "DISK" "B_ACNTB" "COL" "Table 2B-2" "10ug" -"CLSI 2018" "DISK" "B_ACNTB" "CRO" "Table 2B-2" "30ug" 21 13 -"CLSI 2018" "DISK" "B_ACNTB" "CTX" "Table 2B-2" "30ug" 23 14 -"CLSI 2018" "DISK" "B_ACNTB" "DOR" "Table 2B-2" 18 14 -"CLSI 2018" "DISK" "B_ACNTB" "DOX" "Table 2B-2" "30ug" 13 9 -"CLSI 2018" "DISK" "B_ACNTB" "ETP" "Table 2B-2" "10ug" -"CLSI 2018" "DISK" "B_ACNTB" "FEP" "Table 2B-2" "30ug" 18 14 -"CLSI 2018" "DISK" "B_ACNTB" "GAT" "Table 2B-2" "5ug" 18 14 -"CLSI 2018" "DISK" "B_ACNTB" "GEN" "Table 2B-2" "10ug" 15 12 -"CLSI 2018" "DISK" "B_ACNTB" "IPM" "Table 2B-2" "10ug" 22 18 -"CLSI 2018" "DISK" "B_ACNTB" "LVX" "Table 2B-2" "5ug" 17 13 -"CLSI 2018" "DISK" "B_ACNTB" "MEM" "Table 2B-2" "10ug" 18 14 -"CLSI 2018" "DISK" "B_ACNTB" "MNO" "Table 2B-2" "30ug" 16 12 -"CLSI 2018" "DISK" "B_ACNTB" "NET" "Table 2B-2" "30ug" -"CLSI 2018" "DISK" "B_ACNTB" "PIP" "Table 2B-2" "100ug" 21 17 -"CLSI 2018" "DISK" "B_ACNTB" "PLB" "Table 2B-2" "300ug" -"CLSI 2018" "DISK" "B_ACNTB" "SAM" "Table 2B-2" "10ug" 15 11 -"CLSI 2018" "DISK" "B_ACNTB" "SXT" "Table 2B-2" "1.25/23.75ug" 16 10 -"CLSI 2018" "DISK" "B_ACNTB" "TCC" "Table 2B-2" "75ug" 20 14 -"CLSI 2018" "DISK" "B_ACNTB" "TCY" "Table 2B-2" "30ug" 15 11 -"CLSI 2018" "DISK" "B_ACNTB" "TOB" "Table 2B-2" "10ug" 15 12 -"CLSI 2018" "DISK" "B_ACNTB" "TZP" "Table 2B-2" "100ug" 21 17 -"CLSI 2018" "DISK" "B_ACTNB_PLRP" "TIL" "Vet Table" "15ug" 11 10 -"CLSI 2018" "DISK" "B_AERMN" "AMC" "M45 Table 2" "20ug" 18 13 -"CLSI 2018" "DISK" "B_AERMN" "AMK" "M45 Table 2" "30ug" 17 14 -"CLSI 2018" "DISK" "B_AERMN" "ATM" "M45 Table 2" "30ug" 21 17 -"CLSI 2018" "DISK" "B_AERMN" "CAZ" "M45 Table 2" "30ug" 21 17 -"CLSI 2018" "DISK" "B_AERMN" "CHL" "M45 Table 2" "30ug" 18 12 -"CLSI 2018" "DISK" "B_AERMN" "CIP" "M45 Table 2" "5ug" 21 15 -"CLSI 2018" "DISK" "B_AERMN" "CRO" "M45 Table 2" "30ug" 23 19 -"CLSI 2018" "DISK" "B_AERMN" "CTX" "M45 Table 2" "30ug" 26 22 -"CLSI 2018" "DISK" "B_AERMN" "CXM" "M45 Table 2" "30ug" 18 14 -"CLSI 2018" "DISK" "B_AERMN" "ETP" "M45 Table 2" "10ug" 19 15 -"CLSI 2018" "DISK" "B_AERMN" "FEP" "M45 Table 2" "30ug" 18 14 -"CLSI 2018" "DISK" "B_AERMN" "FOX" "M45 Table 2" "30ug" 18 14 -"CLSI 2018" "DISK" "B_AERMN" "GEN" "M45 Table 2" "10ug" 15 12 -"CLSI 2018" "DISK" "B_AERMN" "IPM" "M45 Table 2" "10ug" 16 13 -"CLSI 2018" "DISK" "B_AERMN" "LVX" "M45 Table 2" "5ug" 17 13 -"CLSI 2018" "DISK" "B_AERMN" "MEM" "M45 Table 2" "10ug" 16 13 -"CLSI 2018" "DISK" "B_AERMN" "SAM" "M45 Table 2" "10ug" 15 11 -"CLSI 2018" "DISK" "B_AERMN" "SXT" "M45 Table 2" "1.25/23.75ug" 16 10 -"CLSI 2018" "DISK" "B_AERMN" "TCY" "M45 Table 2" "30ug" 15 11 -"CLSI 2018" "DISK" "B_AERMN" "TZP" "M45 Table 2" "100ug" 21 17 -"CLSI 2018" "DISK" "B_BRKHL_CEPC" "CAZ" "Table 2B-3" "30ug" 21 17 -"CLSI 2018" "DISK" "B_BRKHL_CEPC" "CAZ" "Table 2B-3" "30ug" 21 17 -"CLSI 2018" "DISK" "B_BRKHL_CEPC" "CHL" "Table 2B-3" "30ug" -"CLSI 2018" "DISK" "B_BRKHL_CEPC" "CHL" "Table 2B-3" "30ug" -"CLSI 2018" "DISK" "B_BRKHL_CEPC" "LVX" "Table 2B-3" "5ug" -"CLSI 2018" "DISK" "B_BRKHL_CEPC" "LVX" "Table 2B-3" "5ug" -"CLSI 2018" "DISK" "B_BRKHL_CEPC" "MEM" "Table 2B-3" "10ug" 20 15 -"CLSI 2018" "DISK" "B_BRKHL_CEPC" "MEM" "Table 2B-3" "10ug" 20 15 -"CLSI 2018" "DISK" "B_BRKHL_CEPC" "MNO" "Table 2B-3" "30ug" 19 14 -"CLSI 2018" "DISK" "B_BRKHL_CEPC" "MNO" "Table 2B-3" "30ug" 19 14 -"CLSI 2018" "DISK" "B_BRKHL_CEPC" "SXT" "Table 2B-3" "1.25/23.75ug" 16 10 -"CLSI 2018" "DISK" "B_BRKHL_CEPC" "SXT" "Table 2B-3" "1.25/23.75ug" 16 10 -"CLSI 2018" "DISK" "B_BRKHL_CEPC" "TCC" "Table 2B-3" "75ug" -"CLSI 2018" "DISK" "B_BRKHL_CEPC" "TCC" "Table 2B-3" "75ug" -"CLSI 2018" "DISK" "B_ENTRC" "AMP" "Table 2D" "10ug" 17 16 -"CLSI 2018" "DISK" "B_ENTRC" "CHL" "Table 2D" "30ug" 18 12 -"CLSI 2018" "DISK" "B_ENTRC" "CIP" "Table 2D" "5ug" 21 15 -"CLSI 2018" "DISK" "B_ENTRC" "DAP" "Table 2D" "30ug" -"CLSI 2018" "DISK" "B_ENTRC" "DOX" "Table 2D" "30ug" 16 12 -"CLSI 2018" "DISK" "B_ENTRC" "ERY" "Table 2D" "15ug" 23 13 -"CLSI 2018" "DISK" "B_ENTRC" "FOS" "Table 2D" "200ug" 16 12 -"CLSI 2018" "DISK" "B_ENTRC" "GAT" "Table 2D" "5ug" 18 14 -"CLSI 2018" "DISK" "B_ENTRC" "GEH" "Table 2D" "120ug" 10 6 -"CLSI 2018" "DISK" "B_ENTRC" "LNZ" "Table 2D" "30ug" 23 20 -"CLSI 2018" "DISK" "B_ENTRC" "LVX" "Table 2D" "5ug" 17 13 -"CLSI 2018" "DISK" "B_ENTRC" "MNO" "Table 2D" "30ug" 19 14 -"CLSI 2018" "DISK" "B_ENTRC" "NIT" "Table 2D" "300ug" 17 14 -"CLSI 2018" "DISK" "B_ENTRC" "NOR" "Table 2D" "10ug" 17 12 -"CLSI 2018" "DISK" "B_ENTRC" "PEN" "Table 2D" "10units" 15 14 -"CLSI 2018" "DISK" "B_ENTRC" "QDA" "Table 2D" "15ug" 19 15 -"CLSI 2018" "DISK" "B_ENTRC" "RIF" "Table 2D" "5ug" 20 16 -"CLSI 2018" "DISK" "B_ENTRC" "STH" "Table 2D" "300ug" 10 6 -"CLSI 2018" "DISK" "B_ENTRC" "TCY" "Table 2D" "30ug" 19 14 -"CLSI 2018" "DISK" "B_ENTRC" "TEC" "Table 2D" "30ug" 14 10 -"CLSI 2018" "DISK" "B_ENTRC" "VAN" "Table 2D" "30ug" 17 14 -"CLSI 2018" "DISK" "B_HMPHL" "AMC" "Table 2E" "20/10ug" 20 19 -"CLSI 2018" "DISK" "B_HMPHL" "AMP" "Table 2E" "10ug" 22 18 -"CLSI 2018" "DISK" "B_HMPHL" "ATM" "Table 2E" "30ug" 26 -"CLSI 2018" "DISK" "B_HMPHL" "AZM" "Table 2E" "15ug" 12 -"CLSI 2018" "DISK" "B_HMPHL" "CAT" "Table 2E" "10ug" 18 14 -"CLSI 2018" "DISK" "B_HMPHL" "CAZ" "Table 2E" "30ug" 26 -"CLSI 2018" "DISK" "B_HMPHL" "CDR" "Table 2E" "5ug" 20 -"CLSI 2018" "DISK" "B_HMPHL" "CEC" "Table 2E" "30ug" 20 16 -"CLSI 2018" "DISK" "B_HMPHL" "CFM" "Table 2E" "5ug" 21 -"CLSI 2018" "DISK" "B_HMPHL" "CHL" "Table 2E" "30ug" 29 25 -"CLSI 2018" "DISK" "B_HMPHL" "CID" "Table 2E" "30ug" 20 16 -"CLSI 2018" "DISK" "B_HMPHL" "CIP" "Table 2E" "5ug" 21 -"CLSI 2018" "DISK" "B_HMPHL" "CLR" "Table 2E" "15ug" 13 10 -"CLSI 2018" "DISK" "B_HMPHL" "CPD" "Table 2E" "10ug" 21 -"CLSI 2018" "DISK" "B_HMPHL" "CPR" "Table 2E" "30ug" 18 14 -"CLSI 2018" "DISK" "B_HMPHL" "CRO" "Table 2E" "30ug" 26 -"CLSI 2018" "DISK" "B_HMPHL" "CTB" "Table 2E" "30ug" 28 -"CLSI 2018" "DISK" "B_HMPHL" "CTX" "Table 2E" "30ug" 26 -"CLSI 2018" "DISK" "B_HMPHL" "CXA" "Table 2E" "30ug" 20 16 -"CLSI 2018" "DISK" "Oral" "B_HMPHL" "CXM" "Table 2E" "30ug" 20 16 -"CLSI 2018" "DISK" "B_HMPHL" "CXM" "Table 2E" "30ug" 20 16 -"CLSI 2018" "DISK" "B_HMPHL" "CZX" "Table 2E" "30ug" 26 -"CLSI 2018" "DISK" "B_HMPHL" "DOR" "Table 2E" "10ug" 16 -"CLSI 2018" "DISK" "B_HMPHL" "ETP" "Table 2E" "10ug" 19 -"CLSI 2018" "DISK" "B_HMPHL" "FEP" "Table 2E" "30ug" 26 -"CLSI 2018" "DISK" "B_HMPHL" "FLE" "Table 2E" "5ug" 19 -"CLSI 2018" "DISK" "B_HMPHL" "GAT" "Table 2E" "5ug" 18 -"CLSI 2018" "DISK" "B_HMPHL" "GEM" "Table 2E" "5ug" 18 -"CLSI 2018" "DISK" "B_HMPHL" "GRX" "Table 2E" "5ug" 24 -"CLSI 2018" "DISK" "B_HMPHL" "IPM" "Table 2E" "10ug" 16 -"CLSI 2018" "DISK" "B_HMPHL" "LOM" "Table 2E" "10ug" 22 -"CLSI 2018" "DISK" "B_HMPHL" "LOR" "Table 2E" "30ug" 19 15 -"CLSI 2018" "DISK" "B_HMPHL" "LVX" "Table 2E" "5ug" 17 -"CLSI 2018" "DISK" "B_HMPHL" "MAN" "Table 2E" "30ug" -"CLSI 2018" "DISK" "B_HMPHL" "MEM" "Table 2E" "10ug" 20 -"CLSI 2018" "DISK" "B_HMPHL" "MFX" "Table 2E" "5ug" 18 -"CLSI 2018" "DISK" "B_HMPHL" "OFX" "Table 2E" "5ug" 16 -"CLSI 2018" "DISK" "B_HMPHL" "RIF" "Table 2E" "5ug" 20 16 -"CLSI 2018" "DISK" "B_HMPHL" "SAM" "Table 2E" "10/10ug" 20 19 -"CLSI 2018" "DISK" "B_HMPHL" "SPX" "Table 2E" "5ug" -"CLSI 2018" "DISK" "B_HMPHL" "SXT" "Table 2E" "1.25/23.75ug" 15 10 -"CLSI 2018" "DISK" "B_HMPHL" "TCY" "Table 2E" "30ug" 29 25 -"CLSI 2018" "DISK" "B_HMPHL" "TLT" "Table 2E" "15ug" 15 11 -"CLSI 2018" "DISK" "B_HMPHL" "TVA" "Table 2E" "10ug" 22 -"CLSI 2018" "DISK" "B_HMPHL" "TZP" "Table 2E" "100ug" 21 -"CLSI 2018" "DISK" "B_HMPHL_INFL" "CPT" "Table 2E" "30ug" 30 -"CLSI 2018" "DISK" "B_HSTPH_SOMN" "ENR" "Vet Table" "5ug" 21 16 -"CLSI 2018" "DISK" "B_HSTPH_SOMN" "SPT" "Vet Table" "100ug" 14 10 -"CLSI 2018" "DISK" "B_LISTR_MNCY" "AMP" "M45 Table 11" "10ug" -"CLSI 2018" "DISK" "B_LISTR_MNCY" "PEN" "M45 Table 11" "10units" -"CLSI 2018" "DISK" "B_MRXLL_CTRR" "AMC" "M45 Table 12" "20ug" 24 23 -"CLSI 2018" "DISK" "B_MRXLL_CTRR" "AZM" "M45 Table 12" "15ug" 26 -"CLSI 2018" "DISK" "B_MRXLL_CTRR" "CLR" "M45 Table 12" "15ug" 24 -"CLSI 2018" "DISK" "B_MRXLL_CTRR" "ERY" "M45 Table 12" "15ug" 21 -"CLSI 2018" "DISK" "B_MRXLL_CTRR" "SXT" "M45 Table 12" "1.25/23.75ug" 13 10 -"CLSI 2018" "DISK" "B_MRXLL_CTRR" "TCY" "M45 Table 12" "30ug" 29 24 -"CLSI 2018" "DISK" "B_NESSR_GNRR" "CAT" "Table 2F" "10ug" 29 -"CLSI 2018" "DISK" "B_NESSR_GNRR" "CAZ" "Table 2F" "30ug" 31 -"CLSI 2018" "DISK" "B_NESSR_GNRR" "CFM" "Table 2F" "5ug" 31 -"CLSI 2018" "DISK" "B_NESSR_GNRR" "CIP" "Table 2F" "5ug" 41 27 -"CLSI 2018" "DISK" "B_NESSR_GNRR" "CMZ" "Table 2F" "30ug" 33 27 -"CLSI 2018" "DISK" "B_NESSR_GNRR" "CPD" "Table 2F" "10ug" 29 -"CLSI 2018" "DISK" "B_NESSR_GNRR" "CRO" "Table 2F" "30ug" 35 -"CLSI 2018" "DISK" "B_NESSR_GNRR" "CTT" "Table 2F" "30ug" 26 19 -"CLSI 2018" "DISK" "B_NESSR_GNRR" "CTX" "Table 2F" "30ug" 31 -"CLSI 2018" "DISK" "B_NESSR_GNRR" "CXM" "Table 2F" "30ug" 31 25 -"CLSI 2018" "DISK" "B_NESSR_GNRR" "CZX" "Table 2F" "30ug" 38 -"CLSI 2018" "DISK" "B_NESSR_GNRR" "ENX" "Table 2F" "10ug" 36 31 -"CLSI 2018" "DISK" "B_NESSR_GNRR" "FEP" "Table 2F" "30ug" 31 -"CLSI 2018" "DISK" "B_NESSR_GNRR" "FLE" "Table 2F" "5ug" 35 28 -"CLSI 2018" "DISK" "B_NESSR_GNRR" "FOX" "Table 2F" "30ug" 28 23 -"CLSI 2018" "DISK" "B_NESSR_GNRR" "GAT" "Table 2F" "5ug" 38 33 -"CLSI 2018" "DISK" "B_NESSR_GNRR" "GRX" "Table 2F" "5ug" 37 27 -"CLSI 2018" "DISK" "B_NESSR_GNRR" "LOM" "Table 2F" "10ug" 38 26 -"CLSI 2018" "DISK" "B_NESSR_GNRR" "OFX" "Table 2F" "5ug" 31 24 -"CLSI 2018" "DISK" "B_NESSR_GNRR" "PEN" "Table 2F" "10units" 47 26 -"CLSI 2018" "DISK" "B_NESSR_GNRR" "SPT" "Table 2F" "100ug" 18 14 -"CLSI 2018" "DISK" "B_NESSR_GNRR" "TCY" "Table 2F" "30ug" 38 30 -"CLSI 2018" "DISK" "B_NESSR_GNRR" "TVA" "Table 2F" "10ug" 34 -"CLSI 2018" "DISK" "B_NESSR_MNNG" "AMP" "Table 2I" "10ug" -"CLSI 2018" "DISK" "B_NESSR_MNNG" "AZM" "Table 2I" "15ug" 20 -"CLSI 2018" "DISK" "B_NESSR_MNNG" "CHL" "Table 2I" "30ug" 26 19 -"CLSI 2018" "DISK" "B_NESSR_MNNG" "CIP" "Table 2I" "5ug" 35 32 -"CLSI 2018" "DISK" "B_NESSR_MNNG" "CRO" "Table 2I" "30ug" 34 -"CLSI 2018" "DISK" "B_NESSR_MNNG" "CTX" "Table 2I" "30ug" 34 -"CLSI 2018" "DISK" "B_NESSR_MNNG" "LVX" "Table 2I" "5ug" -"CLSI 2018" "DISK" "B_NESSR_MNNG" "MEM" "Table 2I" "10ug" 30 -"CLSI 2018" "DISK" "B_NESSR_MNNG" "MNO" "Table 2I" "30ug" 26 -"CLSI 2018" "DISK" "B_NESSR_MNNG" "NAL" "Table 2I" "30ug" 26 25 -"CLSI 2018" "DISK" "B_NESSR_MNNG" "PEN" "Table 2I" "10units" -"CLSI 2018" "DISK" "B_NESSR_MNNG" "RIF" "Table 2I" "5ug" 25 19 -"CLSI 2018" "DISK" "B_NESSR_MNNG" "SMX" "Table 2I" "200-300ug" -"CLSI 2018" "DISK" "B_NESSR_MNNG" "SOX" "Table 2I" "200-300ug" -"CLSI 2018" "DISK" "B_NESSR_MNNG" "SSS" "Table 2I" "200-300ug" -"CLSI 2018" "DISK" "B_NESSR_MNNG" "SXT" "Table 2I" "1.25/23.75ug" 30 25 -"CLSI 2018" "DISK" "B_PLSMN" "AMC" "M45 Table 2" "20ug" 18 13 -"CLSI 2018" "DISK" "B_PLSMN" "AMK" "M45 Table 2" "30ug" 17 14 -"CLSI 2018" "DISK" "B_PLSMN" "ATM" "M45 Table 2" "30ug" 21 17 -"CLSI 2018" "DISK" "B_PLSMN" "CAZ" "M45 Table 2" "30ug" 21 17 -"CLSI 2018" "DISK" "B_PLSMN" "CHL" "M45 Table 2" "30ug" 18 12 -"CLSI 2018" "DISK" "B_PLSMN" "CIP" "M45 Table 2" "5ug" 21 15 -"CLSI 2018" "DISK" "B_PLSMN" "CRO" "M45 Table 2" "30ug" 23 19 -"CLSI 2018" "DISK" "B_PLSMN" "CTX" "M45 Table 2" "30ug" 26 22 -"CLSI 2018" "DISK" "B_PLSMN" "CXM" "M45 Table 2" "30ug" 18 14 -"CLSI 2018" "DISK" "B_PLSMN" "ETP" "M45 Table 2" "10ug" 19 15 -"CLSI 2018" "DISK" "B_PLSMN" "FEP" "M45 Table 2" "30ug" 18 14 -"CLSI 2018" "DISK" "B_PLSMN" "FOX" "M45 Table 2" "30ug" 18 14 -"CLSI 2018" "DISK" "B_PLSMN" "GEN" "M45 Table 2" "10ug" 15 12 -"CLSI 2018" "DISK" "B_PLSMN" "IPM" "M45 Table 2" "10ug" 16 13 -"CLSI 2018" "DISK" "B_PLSMN" "LVX" "M45 Table 2" "5ug" 17 13 -"CLSI 2018" "DISK" "B_PLSMN" "MEM" "M45 Table 2" "10ug" 16 13 -"CLSI 2018" "DISK" "B_PLSMN" "SAM" "M45 Table 2" "10ug" 15 11 -"CLSI 2018" "DISK" "B_PLSMN" "SXT" "M45 Table 2" "1.25/23.75ug" 16 10 -"CLSI 2018" "DISK" "B_PLSMN" "TCY" "M45 Table 2" "30ug" 15 11 -"CLSI 2018" "DISK" "B_PLSMN" "TZP" "M45 Table 2" "100ug" 21 17 -"CLSI 2018" "DISK" "B_PRVDN_HMBC" "ENR" "Vet Table" "5ug" 21 16 -"CLSI 2018" "DISK" "B_PRVDN_HMBC" "SPT" "100ug" 14 10 -"CLSI 2018" "DISK" "B_PSDMN" "ETP" "10ug" -"CLSI 2018" "DISK" "B_PSDMN_AERG" "AMK" "Table 2B-1" "30ug" 17 14 -"CLSI 2018" "DISK" "B_PSDMN_AERG" "ATM" "Table 2B-1" "30ug" 22 15 -"CLSI 2018" "DISK" "B_PSDMN_AERG" "CAZ" "Table 2B-1" "30ug" 18 14 -"CLSI 2018" "DISK" "B_PSDMN_AERG" "CIP" "Table 2B-1" "5ug" 21 15 -"CLSI 2018" "DISK" "B_PSDMN_AERG" "DOR" "Table 2B-1" "10ug" 19 15 -"CLSI 2018" "DISK" "B_PSDMN_AERG" "FEP" "Table 2B-1" "30ug" 18 14 -"CLSI 2018" "DISK" "B_PSDMN_AERG" "GAT" "Table 2B-1" "5ug" 18 14 -"CLSI 2018" "DISK" "B_PSDMN_AERG" "GEN" "Table 2B-1" "10ug" 15 12 -"CLSI 2018" "DISK" "B_PSDMN_AERG" "IPM" "Table 2B-1" "10ug" 19 15 -"CLSI 2018" "DISK" "B_PSDMN_AERG" "LOM" "Table 2B-1" "10ug" 22 18 -"CLSI 2018" "DISK" "B_PSDMN_AERG" "LVX" "Table 2B-1" "5ug" 17 13 -"CLSI 2018" "DISK" "B_PSDMN_AERG" "MEM" "Table 2B-1" "10ug" 19 15 -"CLSI 2018" "DISK" "B_PSDMN_AERG" "NET" "Table 2B-1" "30ug" 15 12 -"CLSI 2018" "DISK" "B_PSDMN_AERG" "NOR" "Table 2B-1" "10ug" 17 12 -"CLSI 2018" "DISK" "B_PSDMN_AERG" "OFX" "Table 2B-1" "5ug" 16 12 -"CLSI 2018" "DISK" "B_PSDMN_AERG" "PIP" "Table 2B-1" "100ug" 21 14 -"CLSI 2018" "DISK" "B_PSDMN_AERG" "TCC" "Table 2B-1" "75ug" 24 15 -"CLSI 2018" "DISK" "B_PSDMN_AERG" "TOB" "Table 2B-1" "10ug" 15 12 -"CLSI 2018" "DISK" "B_PSDMN_AERG" "TZP" "Table 2B-1" "100ug" 21 14 -"CLSI 2018" "DISK" "B_PSTRL" "AMC" "M45 Table 13" "20ug" 27 -"CLSI 2018" "DISK" "B_PSTRL" "AMP" "M45 Table 13" "10ug" 27 -"CLSI 2018" "DISK" "B_PSTRL" "AZM" "M45 Table 13" "15ug" 20 -"CLSI 2018" "DISK" "B_PSTRL" "CHL" "M45 Table 13" "30ug" 28 -"CLSI 2018" "DISK" "B_PSTRL" "CRO" "M45 Table 13" "30ug" 34 -"CLSI 2018" "DISK" "B_PSTRL" "DOX" "M45 Table 13" "30ug" 23 -"CLSI 2018" "DISK" "B_PSTRL" "ERY" "M45 Table 13" "15ug" 27 24 -"CLSI 2018" "DISK" "B_PSTRL" "LVX" "M45 Table 13" "5ug" 28 -"CLSI 2018" "DISK" "B_PSTRL" "MFX" "M45 Table 13" "5ug" 28 -"CLSI 2018" "DISK" "B_PSTRL" "PEN" "M45 Table 13" "10 Units" 25 -"CLSI 2018" "DISK" "B_PSTRL" "SXT" "M45 Table 13" "1.25/23.75ug" 24 -"CLSI 2018" "DISK" "B_PSTRL" "TCY" "M45 Table 13" "30ug" 23 -"CLSI 2018" "DISK" "B_PSTRL_MLTC" "ENR" "Vet Table" "5ug" 21 16 -"CLSI 2018" "DISK" "B_PSTRL_MLTC" "SPT" "100ug" 14 10 -"CLSI 2018" "DISK" "B_PSTRL_MLTC" "TIL" "Vet Table" "15ug" 11 10 -"CLSI 2018" "DISK" "Extraintestinal" "B_SLMNL" "CIP" "Table 2A" "5ug" 31 20 -"CLSI 2018" "DISK" "B_SLMNL" "CIP" "Table 2A" "5ug" 31 20 -"CLSI 2018" "DISK" "B_STNTR_MLTP" "CAZ" "Table 2B-4" "30ug" -"CLSI 2018" "DISK" "B_STNTR_MLTP" "CHL" "Table 2B-4" "30ug" -"CLSI 2018" "DISK" "B_STNTR_MLTP" "LVX" "Table 2B-4" "75ug" 17 13 -"CLSI 2018" "DISK" "B_STNTR_MLTP" "MNO" "Table 2B-4" "30ug" 19 14 -"CLSI 2018" "DISK" "B_STNTR_MLTP" "SXT" "Table 2B-4" "30ug" 16 10 -"CLSI 2018" "DISK" "B_STNTR_MLTP" "TCC" "Table 2B-4" "30ug" -"CLSI 2018" "DISK" "B_STPHY" "AMC" "Table 2C" "20ug" 20 19 -"CLSI 2018" "DISK" "B_STPHY" "AMP" "Table 2C" "10ug" 29 28 -"CLSI 2018" "DISK" "B_STPHY" "AZM" "Table 2C" "15ug" 18 13 -"CLSI 2018" "DISK" "B_STPHY" "CAZ" "Table 2C" "30ug" 18 14 -"CLSI 2018" "DISK" "B_STPHY" "CDR" "Table 2C" "5ug" 20 16 -"CLSI 2018" "DISK" "B_STPHY" "CEC" "Table 2C" "30ug" 18 14 -"CLSI 2018" "DISK" "B_STPHY" "CEP" "Table 2C" "30ug" 18 14 -"CLSI 2018" "DISK" "B_STPHY" "CFP" "Table 2C" "75ug" 21 15 -"CLSI 2018" "DISK" "B_STPHY" "CHL" "Table 2C" "30ug" 18 12 -"CLSI 2018" "DISK" "B_STPHY" "CID" "Table 2C" "30ug" 18 14 -"CLSI 2018" "DISK" "B_STPHY" "CIP" "Table 2C" "5ug" 21 15 -"CLSI 2018" "DISK" "B_STPHY" "CLI" "Table 2C" "2ug" 21 14 -"CLSI 2018" "DISK" "B_STPHY" "CLR" "Table 2C" "15ug" 18 13 -"CLSI 2018" "DISK" "B_STPHY" "CMZ" "Table 2C" "30ug" 16 12 -"CLSI 2018" "DISK" "B_STPHY" "CPD" "Table 2C" "10ug" 21 17 -"CLSI 2018" "DISK" "B_STPHY" "CPR" "Table 2C" "30ug" 18 14 -"CLSI 2018" "DISK" "B_STPHY" "CRO" "Table 2C" "30ug" 21 13 -"CLSI 2018" "DISK" "B_STPHY" "CTT" "Table 2C" "30ug" 16 12 -"CLSI 2018" "DISK" "B_STPHY" "CTX" "Table 2C" "30ug" 23 14 -"CLSI 2018" "DISK" "B_STPHY" "CXA" "Table 2C" "30ug" 23 14 -"CLSI 2018" "DISK" "Oral" "B_STPHY" "CXM" "Table 2C" "30ug" 23 14 -"CLSI 2018" "DISK" "Parenteral" "B_STPHY" "CXM" "Table 2C" "30ug" 18 14 -"CLSI 2018" "DISK" "Oral" "B_STPHY" "CXM" "Table 2C" "30ug" 23 14 -"CLSI 2018" "DISK" "B_STPHY" "CZO" "Table 2C" "30ug" 18 14 -"CLSI 2018" "DISK" "B_STPHY" "CZX" "Table 2C" "30ug" 20 14 -"CLSI 2018" "DISK" "B_STPHY" "DAP" "Table 2C" "30ug" -"CLSI 2018" "DISK" "B_STPHY" "DIR" "Table 2C" "15ug" 19 15 -"CLSI 2018" "DISK" "B_STPHY" "DOR" "Table 2C" "10ug" 30 -"CLSI 2018" "DISK" "B_STPHY" "DOX" "Table 2C" "30ug" 16 12 -"CLSI 2018" "DISK" "B_STPHY" "ENX" "Table 2C" "10ug" 18 14 -"CLSI 2018" "DISK" "B_STPHY" "ERY" "Table 2C" "15ug" 23 13 -"CLSI 2018" "DISK" "B_STPHY" "ETP" "Table 2C" "10ug" 19 15 -"CLSI 2018" "DISK" "B_STPHY" "FEP" "Table 2C" "30ug" 18 14 -"CLSI 2018" "DISK" "B_STPHY" "FLE" "Table 2C" "5ug" 19 15 -"CLSI 2018" "DISK" "B_STPHY" "FOX" "Table 2C" "30ug" 25 24 -"CLSI 2018" "DISK" "B_STPHY" "GAT" "Table 2C" "10ug" 23 19 -"CLSI 2018" "DISK" "B_STPHY" "GEN" "Table 2C" "10ug" 15 12 -"CLSI 2018" "DISK" "B_STPHY" "GRX" "Table 2C" "5ug" 18 14 -"CLSI 2018" "DISK" "B_STPHY" "IPM" "Table 2C" "10ug" 16 13 -"CLSI 2018" "DISK" "B_STPHY" "LNZ" "Table 2C" "30ug" 21 20 -"CLSI 2018" "DISK" "B_STPHY" "LOM" "Table 2C" "10ug" 22 18 -"CLSI 2018" "DISK" "B_STPHY" "LOR" "Table 2C" "30ug" 18 14 -"CLSI 2018" "DISK" "B_STPHY" "LTM" "Table 2C" "30ug" 23 14 -"CLSI 2018" "DISK" "B_STPHY" "LVX" "Table 2C" "10ug" 19 15 -"CLSI 2018" "DISK" "B_STPHY" "MAN" "Table 2C" "30ug" 18 14 -"CLSI 2018" "DISK" "B_STPHY" "MEM" "Table 2C" "10ug" 15 13 -"CLSI 2018" "DISK" "B_STPHY" "MET" "Table 2C" "5ug" 14 9 -"CLSI 2018" "DISK" "B_STPHY" "MFX" "Table 2C" "5ug" 24 20 -"CLSI 2018" "DISK" "B_STPHY" "MNO" "Table 2C" "30ug" 19 14 -"CLSI 2018" "DISK" "B_STPHY" "NAF" "Table 2C" "1ug" 13 10 -"CLSI 2018" "DISK" "B_STPHY" "NIT" "Table 2C" "300ug" 17 14 -"CLSI 2018" "DISK" "B_STPHY" "NOR" "Table 2C" "10ug" 17 12 -"CLSI 2018" "DISK" "B_STPHY" "OFX" "Table 2C" "5ug" 18 14 -"CLSI 2018" "DISK" "B_STPHY" "OXA" "Table 2C" "1ug" 13 10 -"CLSI 2018" "DISK" "B_STPHY" "PEN" "Table 2C" "10ug" 29 28 -"CLSI 2018" "DISK" "B_STPHY" "QDA" "Table 2C" "15ug" 19 15 -"CLSI 2018" "DISK" "B_STPHY" "RIF" "Table 2C" "5ug" 20 16 -"CLSI 2018" "DISK" "B_STPHY" "SAM" "Table 2C" "10ug" 15 11 -"CLSI 2018" "DISK" "B_STPHY" "SMX" "Table 2C" "200ug" 17 12 -"CLSI 2018" "DISK" "B_STPHY" "SOX" "Table 2C" "200ug" 17 12 -"CLSI 2018" "DISK" "B_STPHY" "SPX" "Table 2C" "5ug" 19 15 -"CLSI 2018" "DISK" "B_STPHY" "SSS" "Table 2C" "200ug" 17 12 -"CLSI 2018" "DISK" "B_STPHY" "SXT" "Table 2C" "1.25/23.75ug" 16 10 -"CLSI 2018" "DISK" "B_STPHY" "TCC" "Table 2C" "75/10ug" 23 22 -"CLSI 2018" "DISK" "B_STPHY" "TCY" "Table 2C" "30ug" 19 14 -"CLSI 2018" "DISK" "B_STPHY" "TEC" "Table 2C" "30ug" 14 10 -"CLSI 2018" "DISK" "B_STPHY" "TLT" "Table 2C" "15ug" 22 18 -"CLSI 2018" "DISK" "B_STPHY" "TMP" "Table 2C" "5ug" 16 10 -"CLSI 2018" "DISK" "B_STPHY" "TZP" "Table 2C" "100/10ug" 18 17 -"CLSI 2018" "DISK" "B_STPHY" "VAN" "Table 2C" "30ug" -"CLSI 2018" "DISK" "B_STPHY_AURS" "CPT" "Table 2C" "30ug" 24 20 -"CLSI 2018" "DISK" "B_STPHY_AURS" "FOX" "Table 2C" "30ug" 22 21 -"CLSI 2018" "DISK" "B_STPHY_AURS" "OXA" "Table 2C" "1ug" 13 10 -"CLSI 2018" "DISK" "B_STPHY_LGDN" "FOX" "Table 2C" "30ug" 22 21 -"CLSI 2018" "DISK" "B_STPHY_LGDN" "OXA" "Table 2C" "1ug" -"CLSI 2018" "DISK" "B_STRPT" "AMC" "Table 2H-1" "20ug" -"CLSI 2018" "DISK" "B_STRPT" "AMP" "Table 2H-1" "10ug" 24 -"CLSI 2018" "DISK" "B_STRPT" "AMX" "Table 2H-1" "30ug" -"CLSI 2018" "DISK" "B_STRPT" "AZM" "Table 2H-1" "15ug" 18 13 -"CLSI 2018" "DISK" "B_STRPT" "CHL" "Table 2H-1" "30ug" 21 17 -"CLSI 2018" "DISK" "B_STRPT" "CLI" "Table 2H-1" "2ug" 19 15 -"CLSI 2018" "DISK" "B_STRPT" "CLR" "Table 2H-1" "15ug" 21 16 -"CLSI 2018" "DISK" "B_STRPT" "CPT" "Table 2H-1" "30ug" 26 -"CLSI 2018" "DISK" "B_STRPT" "CRO" "Table 2H-1" "30ug" 24 -"CLSI 2018" "DISK" "B_STRPT" "CTX" "Table 2H-1" "30ug" 24 -"CLSI 2018" "DISK" "B_STRPT" "CXM" "Table 2H-1" "30ug" -"CLSI 2018" "DISK" "B_STRPT" "DAP" "Table 2H-1" "30ug" 16 -"CLSI 2018" "DISK" "B_STRPT" "DIR" "Table 2H-1" "15ug" 18 13 -"CLSI 2018" "DISK" "B_STRPT" "DOR" "Table 2H-1" "10ug" -"CLSI 2018" "DISK" "B_STRPT" "ERY" "Table 2H-1" "15ug" 21 15 -"CLSI 2018" "DISK" "B_STRPT" "ETP" "Table 2H-1" "10ug" -"CLSI 2018" "DISK" "B_STRPT" "FEP" "Table 2H-1" "30ug" 24 -"CLSI 2018" "DISK" "B_STRPT" "GAT" "Table 2H-1" "5ug" 21 17 -"CLSI 2018" "DISK" "B_STRPT" "GEM" "Table 2H-1" "5ug" -"CLSI 2018" "DISK" "B_STRPT" "GRX" "Table 2H-1" "5ug" 19 15 -"CLSI 2018" "DISK" "B_STRPT" "IPM" "Table 2H-1" "10ug" -"CLSI 2018" "DISK" "B_STRPT" "LNZ" "Table 2H-1" "30ug" 21 -"CLSI 2018" "DISK" "B_STRPT" "LVX" "Table 2H-1" "5ug" 17 13 -"CLSI 2018" "DISK" "B_STRPT" "MEM" "Table 2H-1" "10ug" -"CLSI 2018" "DISK" "B_STRPT" "MFX" "Table 2H-1" "5ug" -"CLSI 2018" "DISK" "B_STRPT" "OFX" "Table 2H-1" "5ug" 16 12 -"CLSI 2018" "DISK" "B_STRPT" "PEN" "Table 2H-1" "10units" 24 -"CLSI 2018" "DISK" "B_STRPT" "QDA" "Table 2H-1" "15ug" 19 15 -"CLSI 2018" "DISK" "B_STRPT" "RIF" "Table 2H-1" "5ug" -"CLSI 2018" "DISK" "B_STRPT" "SPX" "Table 2H-1" "5ug" -"CLSI 2018" "DISK" "B_STRPT" "SXT" "Table 2H-1" "1.25/23.75ug" -"CLSI 2018" "DISK" "B_STRPT" "TCY" "Table 2H-1" "30ug" 23 18 -"CLSI 2018" "DISK" "B_STRPT" "TVA" "Table 2H-1" "10ug" 19 15 -"CLSI 2018" "DISK" "B_STRPT" "VAN" "Table 2H-1" "30ug" 17 -"CLSI 2018" "DISK" "B_STRPT_PNMN" "AMC" "Table 2G" "10/10ug" -"CLSI 2018" "DISK" "B_STRPT_PNMN" "AMP" "Table 2G" "10ug" -"CLSI 2018" "DISK" "B_STRPT_PNMN" "AMX" "Table 2G" "30ug" -"CLSI 2018" "DISK" "B_STRPT_PNMN" "AZM" "Table 2G" "15ug" 18 13 -"CLSI 2018" "DISK" "B_STRPT_PNMN" "CDR" "Table 2G" "5ug" -"CLSI 2018" "DISK" "B_STRPT_PNMN" "CEC" "Table 2G" "30ug" -"CLSI 2018" "DISK" "B_STRPT_PNMN" "CHL" "Table 2G" "30ug" 21 20 -"CLSI 2018" "DISK" "B_STRPT_PNMN" "CIP" "Table 2G" "5ug" -"CLSI 2018" "DISK" "B_STRPT_PNMN" "CLI" "Table 2G" "2ug" 19 15 -"CLSI 2018" "DISK" "B_STRPT_PNMN" "CLR" "Table 2G" "15ug" 21 16 -"CLSI 2018" "DISK" "B_STRPT_PNMN" "CPD" "Table 2G" "10ug" -"CLSI 2018" "DISK" "B_STRPT_PNMN" "CPR" "Table 2G" "30ug" -"CLSI 2018" "DISK" "B_STRPT_PNMN" "CPT" "Table 2G" "30ug" -"CLSI 2018" "DISK" "B_STRPT_PNMN" "CRO" "Table 2G" "30ug" -"CLSI 2018" "DISK" "B_STRPT_PNMN" "CTX" "Table 2G" "30ug" -"CLSI 2018" "DISK" "B_STRPT_PNMN" "CXA" "Table 2G" "30ug" -"CLSI 2018" "DISK" "Oral" "B_STRPT_PNMN" "CXM" "Table 2G" "30ug" -"CLSI 2018" "DISK" "B_STRPT_PNMN" "CXM" "Table 2G" "30ug" -"CLSI 2018" "DISK" "B_STRPT_PNMN" "DAP" "Table 2G" "30ug" -"CLSI 2018" "DISK" "B_STRPT_PNMN" "DIR" "Table 2G" "15ug" 18 13 -"CLSI 2018" "DISK" "B_STRPT_PNMN" "DOR" "Table 2G" "10ug" -"CLSI 2018" "DISK" "B_STRPT_PNMN" "DOX" "Table 2G" "30ug" 28 24 -"CLSI 2018" "DISK" "B_STRPT_PNMN" "ERY" "Table 2G" "15ug" 21 15 -"CLSI 2018" "DISK" "B_STRPT_PNMN" "ETP" "Table 2G" "10ug" -"CLSI 2018" "DISK" "B_STRPT_PNMN" "FEP" "Table 2G" "30ug" -"CLSI 2018" "DISK" "B_STRPT_PNMN" "GAT" "Table 2G" "5ug" 21 17 -"CLSI 2018" "DISK" "B_STRPT_PNMN" "GEM" "Table 2G" "5ug" 23 19 -"CLSI 2018" "DISK" "B_STRPT_PNMN" "GRX" "Table 2G" "5ug" 19 15 -"CLSI 2018" "DISK" "B_STRPT_PNMN" "IPM" "Table 2G" "10ug" -"CLSI 2018" "DISK" "B_STRPT_PNMN" "LNZ" "Table 2G" "30ug" 21 -"CLSI 2018" "DISK" "B_STRPT_PNMN" "LOR" "Table 2G" "30ug" -"CLSI 2018" "DISK" "B_STRPT_PNMN" "LVX" "Table 2G" "5ug" 17 13 -"CLSI 2018" "DISK" "B_STRPT_PNMN" "MEM" "Table 2G" "10ug" -"CLSI 2018" "DISK" "B_STRPT_PNMN" "MFX" "Table 2G" "5ug" 18 14 -"CLSI 2018" "DISK" "B_STRPT_PNMN" "NOR" "Table 2G" "5ug" -"CLSI 2018" "DISK" "B_STRPT_PNMN" "OFX" "Table 2G" "5ug" 16 12 -"CLSI 2018" "DISK" "B_STRPT_PNMN" "OXA" "Table 2G" "1ug" 20 -"CLSI 2018" "DISK" "B_STRPT_PNMN" "PEN" "Table 2G" "10units" -"CLSI 2018" "DISK" "B_STRPT_PNMN" "PNV" "Table 2G" "10ug" -"CLSI 2018" "DISK" "B_STRPT_PNMN" "QDA" "Table 2G" "15ug" 19 15 -"CLSI 2018" "DISK" "B_STRPT_PNMN" "RIF" "Table 2G" "5ug" 19 16 -"CLSI 2018" "DISK" "B_STRPT_PNMN" "SAM" "Table 2G" "10/10ug" -"CLSI 2018" "DISK" "B_STRPT_PNMN" "SPX" "Table 2G" "5ug" 19 15 -"CLSI 2018" "DISK" "B_STRPT_PNMN" "SXT" "Table 2G" "1.25/23.75ug" 19 15 -"CLSI 2018" "DISK" "B_STRPT_PNMN" "TCY" "Table 2G" "30ug" 28 24 -"CLSI 2018" "DISK" "B_STRPT_PNMN" "TLT" "Table 2G" "15ug" 19 15 -"CLSI 2018" "DISK" "B_STRPT_PNMN" "TVA" "Table 2G" "10ug" 19 15 -"CLSI 2018" "DISK" "B_STRPT_PNMN" "VAN" "Table 2G" "30ug" 17 -"CLSI 2018" "DISK" "B_STRPT_VIRI" "AMP" "Table 2H-2" "10ug" -"CLSI 2018" "DISK" "B_STRPT_VIRI" "AZM" "Table 2H-2" "15ug" 18 13 -"CLSI 2018" "DISK" "B_STRPT_VIRI" "CHL" "Table 2H-2" "30ug" 21 17 -"CLSI 2018" "DISK" "B_STRPT_VIRI" "CLI" "Table 2H-2" "2ug" 19 15 -"CLSI 2018" "DISK" "B_STRPT_VIRI" "CLR" "Table 2H-2" "15ug" 21 16 -"CLSI 2018" "DISK" "B_STRPT_VIRI" "CRO" "Table 2H-2" "30ug" 27 24 -"CLSI 2018" "DISK" "B_STRPT_VIRI" "CTX" "Table 2H-2" "30ug" 28 25 -"CLSI 2018" "DISK" "B_STRPT_VIRI" "DAP" "Table 2H-2" "30ug" -"CLSI 2018" "DISK" "B_STRPT_VIRI" "DIR" "Table 2H-2" "15ug" 18 13 -"CLSI 2018" "DISK" "B_STRPT_VIRI" "DOR" "Table 2H-2" "10ug" -"CLSI 2018" "DISK" "B_STRPT_VIRI" "ERY" "Table 2H-2" "15ug" 21 15 -"CLSI 2018" "DISK" "B_STRPT_VIRI" "ETP" "Table 2H-2" "10ug" -"CLSI 2018" "DISK" "B_STRPT_VIRI" "FEP" "Table 2H-2" "30ug" 24 21 -"CLSI 2018" "DISK" "B_STRPT_VIRI" "GAT" "Table 2H-2" "5ug" 21 17 -"CLSI 2018" "DISK" "B_STRPT_VIRI" "GRX" "Table 2H-2" "5ug" 19 15 -"CLSI 2018" "DISK" "B_STRPT_VIRI" "LNZ" "Table 2H-2" "30ug" 21 -"CLSI 2018" "DISK" "B_STRPT_VIRI" "LVX" "Table 2H-2" "5ug" 17 13 -"CLSI 2018" "DISK" "B_STRPT_VIRI" "MEM" "Table 2H-2" "10ug" -"CLSI 2018" "DISK" "B_STRPT_VIRI" "OFX" "Table 2H-2" "5ug" 16 12 -"CLSI 2018" "DISK" "B_STRPT_VIRI" "PEN" "Table 2H-2" "10units" -"CLSI 2018" "DISK" "B_STRPT_VIRI" "QDA" "Table 2H-2" "15ug" 19 15 -"CLSI 2018" "DISK" "B_STRPT_VIRI" "TCY" "Table 2H-2" "30ug" 23 18 -"CLSI 2018" "DISK" "B_STRPT_VIRI" "TVA" "Table 2H-2" "10ug" 19 15 -"CLSI 2018" "DISK" "B_STRPT_VIRI" "VAN" "Table 2H-2" "30ug" 17 -"CLSI 2017" "DISK" "Urine" "B_[FAM]_ENTRBCTR" "CZO" "Table 2A" 15 14 -"CLSI 2017" "DISK" "B_ACNTB" "AMK" "Table 2B-2" "30ug" 17 14 -"CLSI 2017" "DISK" "B_ACNTB" "CAZ" "Table 2B-2" "30ug" 18 14 -"CLSI 2017" "DISK" "B_ACNTB" "CIP" "Table 2B-2" "5ug" 21 15 -"CLSI 2017" "DISK" "B_ACNTB" "COL" "Table 2B-2" "10ug" -"CLSI 2017" "DISK" "B_ACNTB" "CRO" "Table 2B-2" "30ug" 21 13 -"CLSI 2017" "DISK" "B_ACNTB" "CTX" "Table 2B-2" "30ug" 23 14 -"CLSI 2017" "DISK" "B_ACNTB" "DOR" "Table 2B-2" 18 14 -"CLSI 2017" "DISK" "B_ACNTB" "DOX" "Table 2B-2" "30ug" 13 9 -"CLSI 2017" "DISK" "B_ACNTB" "ETP" "Table 2B-2" "10ug" -"CLSI 2017" "DISK" "B_ACNTB" "FEP" "Table 2B-2" "30ug" 18 14 -"CLSI 2017" "DISK" "B_ACNTB" "GAT" "Table 2B-2" "5ug" 18 14 -"CLSI 2017" "DISK" "B_ACNTB" "GEN" "Table 2B-2" "10ug" 15 12 -"CLSI 2017" "DISK" "B_ACNTB" "IPM" "Table 2B-2" "10ug" 22 18 -"CLSI 2017" "DISK" "B_ACNTB" "LVX" "Table 2B-2" "5ug" 17 13 -"CLSI 2017" "DISK" "B_ACNTB" "MEM" "Table 2B-2" "10ug" 18 14 -"CLSI 2017" "DISK" "B_ACNTB" "MNO" "Table 2B-2" "30ug" 16 12 -"CLSI 2017" "DISK" "B_ACNTB" "NET" "Table 2B-2" "30ug" -"CLSI 2017" "DISK" "B_ACNTB" "PIP" "Table 2B-2" "100ug" 21 17 -"CLSI 2017" "DISK" "B_ACNTB" "PLB" "Table 2B-2" "300ug" -"CLSI 2017" "DISK" "B_ACNTB" "SAM" "Table 2B-2" "10ug" 15 11 -"CLSI 2017" "DISK" "B_ACNTB" "SXT" "Table 2B-2" "1.25/23.75ug" 16 10 -"CLSI 2017" "DISK" "B_ACNTB" "TCC" "Table 2B-2" "75ug" 20 14 -"CLSI 2017" "DISK" "B_ACNTB" "TCY" "Table 2B-2" "30ug" 15 11 -"CLSI 2017" "DISK" "B_ACNTB" "TOB" "Table 2B-2" "10ug" 15 12 -"CLSI 2017" "DISK" "B_ACNTB" "TZP" "Table 2B-2" "100ug" 21 17 -"CLSI 2017" "DISK" "B_ACTNB_PLRP" "TIL" "Vet Table" "15ug" 11 10 -"CLSI 2017" "DISK" "B_AERMN" "AMC" "M45 Table 2" "20ug" 18 13 -"CLSI 2017" "DISK" "B_AERMN" "AMK" "M45 Table 2" "30ug" 17 14 -"CLSI 2017" "DISK" "B_AERMN" "ATM" "M45 Table 2" "30ug" 21 17 -"CLSI 2017" "DISK" "B_AERMN" "CAZ" "M45 Table 2" "30ug" 21 17 -"CLSI 2017" "DISK" "B_AERMN" "CHL" "M45 Table 2" "30ug" 18 12 -"CLSI 2017" "DISK" "B_AERMN" "CIP" "M45 Table 2" "5ug" 21 15 -"CLSI 2017" "DISK" "B_AERMN" "CRO" "M45 Table 2" "30ug" 23 19 -"CLSI 2017" "DISK" "B_AERMN" "CTX" "M45 Table 2" "30ug" 26 22 -"CLSI 2017" "DISK" "B_AERMN" "CXM" "M45 Table 2" "30ug" 18 14 -"CLSI 2017" "DISK" "B_AERMN" "ETP" "M45 Table 2" "10ug" 19 15 -"CLSI 2017" "DISK" "B_AERMN" "FEP" "M45 Table 2" "30ug" 18 14 -"CLSI 2017" "DISK" "B_AERMN" "FOX" "M45 Table 2" "30ug" 18 14 -"CLSI 2017" "DISK" "B_AERMN" "GEN" "M45 Table 2" "10ug" 15 12 -"CLSI 2017" "DISK" "B_AERMN" "IPM" "M45 Table 2" "10ug" 16 13 -"CLSI 2017" "DISK" "B_AERMN" "LVX" "M45 Table 2" "5ug" 17 13 -"CLSI 2017" "DISK" "B_AERMN" "MEM" "M45 Table 2" "10ug" 16 13 -"CLSI 2017" "DISK" "B_AERMN" "SAM" "M45 Table 2" "10ug" 15 11 -"CLSI 2017" "DISK" "B_AERMN" "SXT" "M45 Table 2" "1.25/23.75ug" 16 10 -"CLSI 2017" "DISK" "B_AERMN" "TCY" "M45 Table 2" "30ug" 15 11 -"CLSI 2017" "DISK" "B_AERMN" "TZP" "M45 Table 2" "100ug" 21 17 -"CLSI 2017" "DISK" "B_BRKHL_CEPC" "CAZ" "Table 2B-3" "30ug" 21 17 -"CLSI 2017" "DISK" "B_BRKHL_CEPC" "CHL" "Table 2B-3" "30ug" -"CLSI 2017" "DISK" "B_BRKHL_CEPC" "LVX" "Table 2B-3" "5ug" -"CLSI 2017" "DISK" "B_BRKHL_CEPC" "MEM" "Table 2B-3" "10ug" 20 15 -"CLSI 2017" "DISK" "B_BRKHL_CEPC" "MNO" "Table 2B-3" "30ug" 19 14 -"CLSI 2017" "DISK" "B_BRKHL_CEPC" "SXT" "Table 2B-3" "1.25/23.75ug" 16 10 -"CLSI 2017" "DISK" "B_BRKHL_CEPC" "TCC" "Table 2B-3" "75ug" -"CLSI 2017" "DISK" "B_ENTRC" "AMP" "Table 2D" "10ug" 17 16 -"CLSI 2017" "DISK" "B_ENTRC" "CHL" "Table 2D" "30ug" 18 12 -"CLSI 2017" "DISK" "B_ENTRC" "CIP" "Table 2D" "5ug" 21 15 -"CLSI 2017" "DISK" "B_ENTRC" "DAP" "Table 2D" "30ug" -"CLSI 2017" "DISK" "B_ENTRC" "DOX" "Table 2D" "30ug" 16 12 -"CLSI 2017" "DISK" "B_ENTRC" "ERY" "Table 2D" "15ug" 23 13 -"CLSI 2017" "DISK" "B_ENTRC" "FOS" "Table 2D" "200ug" 16 12 -"CLSI 2017" "DISK" "B_ENTRC" "GAT" "Table 2D" "5ug" 18 14 -"CLSI 2017" "DISK" "B_ENTRC" "GEH" "Table 2D" "120ug" 10 6 -"CLSI 2017" "DISK" "B_ENTRC" "LNZ" "Table 2D" "30ug" 23 20 -"CLSI 2017" "DISK" "B_ENTRC" "LVX" "Table 2D" "5ug" 17 13 -"CLSI 2017" "DISK" "B_ENTRC" "MNO" "Table 2D" "30ug" 19 14 -"CLSI 2017" "DISK" "B_ENTRC" "NIT" "Table 2D" "300ug" 17 14 -"CLSI 2017" "DISK" "B_ENTRC" "NOR" "Table 2D" "10ug" 17 12 -"CLSI 2017" "DISK" "B_ENTRC" "PEN" "Table 2D" "10units" 15 14 -"CLSI 2017" "DISK" "B_ENTRC" "QDA" "Table 2D" "15ug" 19 15 -"CLSI 2017" "DISK" "B_ENTRC" "RIF" "Table 2D" "5ug" 20 16 -"CLSI 2017" "DISK" "B_ENTRC" "STH" "Table 2D" "300ug" 10 6 -"CLSI 2017" "DISK" "B_ENTRC" "TCY" "Table 2D" "30ug" 19 14 -"CLSI 2017" "DISK" "B_ENTRC" "TEC" "Table 2D" "30ug" 14 10 -"CLSI 2017" "DISK" "B_ENTRC" "VAN" "Table 2D" "30ug" 17 14 -"CLSI 2017" "DISK" "B_HMPHL" "AMC" "Table 2E" "20/10ug" 20 19 -"CLSI 2017" "DISK" "B_HMPHL" "AMP" "Table 2E" "10ug" 22 18 -"CLSI 2017" "DISK" "B_HMPHL" "ATM" "Table 2E" "30ug" 26 -"CLSI 2017" "DISK" "B_HMPHL" "AZM" "Table 2E" "15ug" 12 -"CLSI 2017" "DISK" "B_HMPHL" "CAT" "Table 2E" "10ug" 18 14 -"CLSI 2017" "DISK" "B_HMPHL" "CAZ" "Table 2E" "30ug" 26 -"CLSI 2017" "DISK" "B_HMPHL" "CDR" "Table 2E" "5ug" 20 -"CLSI 2017" "DISK" "B_HMPHL" "CEC" "Table 2E" "30ug" 20 16 -"CLSI 2017" "DISK" "B_HMPHL" "CFM" "Table 2E" "5ug" 21 -"CLSI 2017" "DISK" "B_HMPHL" "CHL" "Table 2E" "30ug" 29 25 -"CLSI 2017" "DISK" "B_HMPHL" "CID" "Table 2E" "30ug" 20 16 -"CLSI 2017" "DISK" "B_HMPHL" "CIP" "Table 2E" "5ug" 21 -"CLSI 2017" "DISK" "B_HMPHL" "CLR" "Table 2E" "15ug" 13 10 -"CLSI 2017" "DISK" "B_HMPHL" "CPD" "Table 2E" "10ug" 21 -"CLSI 2017" "DISK" "B_HMPHL" "CPR" "Table 2E" "30ug" 18 14 -"CLSI 2017" "DISK" "B_HMPHL" "CRO" "Table 2E" "30ug" 26 -"CLSI 2017" "DISK" "B_HMPHL" "CTB" "Table 2E" "30ug" 28 -"CLSI 2017" "DISK" "B_HMPHL" "CTX" "Table 2E" "30ug" 26 -"CLSI 2017" "DISK" "B_HMPHL" "CXA" "Table 2E" "30ug" 20 16 -"CLSI 2017" "DISK" "Oral" "B_HMPHL" "CXM" "Table 2E" "30ug" 20 16 -"CLSI 2017" "DISK" "B_HMPHL" "CXM" "Table 2E" "30ug" 20 16 -"CLSI 2017" "DISK" "B_HMPHL" "CZX" "Table 2E" "30ug" 26 -"CLSI 2017" "DISK" "B_HMPHL" "DOR" "Table 2E" "10ug" 16 -"CLSI 2017" "DISK" "B_HMPHL" "ETP" "Table 2E" "10ug" 19 -"CLSI 2017" "DISK" "B_HMPHL" "FEP" "Table 2E" "30ug" 26 -"CLSI 2017" "DISK" "B_HMPHL" "FLE" "Table 2E" "5ug" 19 -"CLSI 2017" "DISK" "B_HMPHL" "GAT" "Table 2E" "5ug" 18 -"CLSI 2017" "DISK" "B_HMPHL" "GEM" "Table 2E" "5ug" 18 -"CLSI 2017" "DISK" "B_HMPHL" "GRX" "Table 2E" "5ug" 24 -"CLSI 2017" "DISK" "B_HMPHL" "IPM" "Table 2E" "10ug" 16 -"CLSI 2017" "DISK" "B_HMPHL" "LOM" "Table 2E" "10ug" 22 -"CLSI 2017" "DISK" "B_HMPHL" "LOR" "Table 2E" "30ug" 19 15 -"CLSI 2017" "DISK" "B_HMPHL" "LVX" "Table 2E" "5ug" 17 -"CLSI 2017" "DISK" "B_HMPHL" "MAN" "Table 2E" "30ug" -"CLSI 2017" "DISK" "B_HMPHL" "MEM" "Table 2E" "10ug" 20 -"CLSI 2017" "DISK" "B_HMPHL" "MFX" "Table 2E" "5ug" 18 -"CLSI 2017" "DISK" "B_HMPHL" "OFX" "Table 2E" "5ug" 16 -"CLSI 2017" "DISK" "B_HMPHL" "RIF" "Table 2E" "5ug" 20 16 -"CLSI 2017" "DISK" "B_HMPHL" "SAM" "Table 2E" "10/10ug" 20 19 -"CLSI 2017" "DISK" "B_HMPHL" "SPX" "Table 2E" "5ug" -"CLSI 2017" "DISK" "B_HMPHL" "SXT" "Table 2E" "1.25/23.75ug" 15 10 -"CLSI 2017" "DISK" "B_HMPHL" "TCY" "Table 2E" "30ug" 29 25 -"CLSI 2017" "DISK" "B_HMPHL" "TLT" "Table 2E" "15ug" 15 11 -"CLSI 2017" "DISK" "B_HMPHL" "TVA" "Table 2E" "10ug" 22 -"CLSI 2017" "DISK" "B_HMPHL" "TZP" "Table 2E" "100ug" 21 -"CLSI 2017" "DISK" "B_HMPHL_INFL" "CPT" "Table 2E" "30ug" 30 -"CLSI 2017" "DISK" "B_HSTPH_SOMN" "ENR" "Vet Table" "5ug" 21 16 -"CLSI 2017" "DISK" "B_HSTPH_SOMN" "SPT" "Vet Table" "100ug" 14 10 -"CLSI 2017" "DISK" "B_LISTR_MNCY" "AMP" "M45 Table 11" "10ug" -"CLSI 2017" "DISK" "B_LISTR_MNCY" "PEN" "M45 Table 11" "10units" -"CLSI 2017" "DISK" "B_MRXLL_CTRR" "AMC" "M45 Table 12" "20ug" 24 23 -"CLSI 2017" "DISK" "B_MRXLL_CTRR" "AZM" "M45 Table 12" "15ug" 26 -"CLSI 2017" "DISK" "B_MRXLL_CTRR" "CLR" "M45 Table 12" "15ug" 24 -"CLSI 2017" "DISK" "B_MRXLL_CTRR" "ERY" "M45 Table 12" "15ug" 21 -"CLSI 2017" "DISK" "B_MRXLL_CTRR" "SXT" "M45 Table 12" "1.25/23.75ug" 13 10 -"CLSI 2017" "DISK" "B_MRXLL_CTRR" "TCY" "M45 Table 12" "30ug" 29 24 -"CLSI 2017" "DISK" "B_NESSR_GNRR" "CAT" "Table 2F" "10ug" 29 -"CLSI 2017" "DISK" "B_NESSR_GNRR" "CAZ" "Table 2F" "30ug" 31 -"CLSI 2017" "DISK" "B_NESSR_GNRR" "CFM" "Table 2F" "5ug" 31 -"CLSI 2017" "DISK" "B_NESSR_GNRR" "CIP" "Table 2F" "5ug" 41 27 -"CLSI 2017" "DISK" "B_NESSR_GNRR" "CMZ" "Table 2F" "30ug" 33 27 -"CLSI 2017" "DISK" "B_NESSR_GNRR" "CPD" "Table 2F" "10ug" 29 -"CLSI 2017" "DISK" "B_NESSR_GNRR" "CRO" "Table 2F" "30ug" 35 -"CLSI 2017" "DISK" "B_NESSR_GNRR" "CTT" "Table 2F" "30ug" 26 19 -"CLSI 2017" "DISK" "B_NESSR_GNRR" "CTX" "Table 2F" "30ug" 31 -"CLSI 2017" "DISK" "B_NESSR_GNRR" "CXM" "Table 2F" "30ug" 31 25 -"CLSI 2017" "DISK" "B_NESSR_GNRR" "CZX" "Table 2F" "30ug" 38 -"CLSI 2017" "DISK" "B_NESSR_GNRR" "ENX" "Table 2F" "10ug" 36 31 -"CLSI 2017" "DISK" "B_NESSR_GNRR" "FEP" "Table 2F" "30ug" 31 -"CLSI 2017" "DISK" "B_NESSR_GNRR" "FLE" "Table 2F" "5ug" 35 28 -"CLSI 2017" "DISK" "B_NESSR_GNRR" "FOX" "Table 2F" "30ug" 28 23 -"CLSI 2017" "DISK" "B_NESSR_GNRR" "GAT" "Table 2F" "5ug" 38 33 -"CLSI 2017" "DISK" "B_NESSR_GNRR" "GRX" "Table 2F" "5ug" 37 27 -"CLSI 2017" "DISK" "B_NESSR_GNRR" "LOM" "Table 2F" "10ug" 38 26 -"CLSI 2017" "DISK" "B_NESSR_GNRR" "OFX" "Table 2F" "5ug" 31 24 -"CLSI 2017" "DISK" "B_NESSR_GNRR" "PEN" "Table 2F" "10units" 47 26 -"CLSI 2017" "DISK" "B_NESSR_GNRR" "SPT" "Table 2F" "100ug" 18 14 -"CLSI 2017" "DISK" "B_NESSR_GNRR" "TCY" "Table 2F" "30ug" 38 30 -"CLSI 2017" "DISK" "B_NESSR_GNRR" "TVA" "Table 2F" "10ug" 34 -"CLSI 2017" "DISK" "B_NESSR_MNNG" "AMP" "Table 2I" "10ug" -"CLSI 2017" "DISK" "B_NESSR_MNNG" "AZM" "Table 2I" "15ug" 20 -"CLSI 2017" "DISK" "B_NESSR_MNNG" "CHL" "Table 2I" "30ug" 26 19 -"CLSI 2017" "DISK" "B_NESSR_MNNG" "CIP" "Table 2I" "5ug" 35 32 -"CLSI 2017" "DISK" "B_NESSR_MNNG" "CRO" "Table 2I" "30ug" 34 -"CLSI 2017" "DISK" "B_NESSR_MNNG" "CTX" "Table 2I" "30ug" 34 -"CLSI 2017" "DISK" "B_NESSR_MNNG" "LVX" "Table 2I" "5ug" -"CLSI 2017" "DISK" "B_NESSR_MNNG" "MEM" "Table 2I" "10ug" 30 -"CLSI 2017" "DISK" "B_NESSR_MNNG" "MNO" "Table 2I" "30ug" 26 -"CLSI 2017" "DISK" "B_NESSR_MNNG" "NAL" "Table 2I" "30ug" 26 25 -"CLSI 2017" "DISK" "B_NESSR_MNNG" "PEN" "Table 2I" "10units" -"CLSI 2017" "DISK" "B_NESSR_MNNG" "RIF" "Table 2I" "5ug" 25 19 -"CLSI 2017" "DISK" "B_NESSR_MNNG" "SMX" "Table 2I" "200-300ug" -"CLSI 2017" "DISK" "B_NESSR_MNNG" "SOX" "Table 2I" "200-300ug" -"CLSI 2017" "DISK" "B_NESSR_MNNG" "SSS" "Table 2I" "200-300ug" -"CLSI 2017" "DISK" "B_NESSR_MNNG" "SXT" "Table 2I" "1.25/23.75ug" 30 25 -"CLSI 2017" "DISK" "B_PLSMN" "AMC" "M45 Table 2" "20ug" 18 13 -"CLSI 2017" "DISK" "B_PLSMN" "AMK" "M45 Table 2" "30ug" 17 14 -"CLSI 2017" "DISK" "B_PLSMN" "ATM" "M45 Table 2" "30ug" 21 17 -"CLSI 2017" "DISK" "B_PLSMN" "CAZ" "M45 Table 2" "30ug" 21 17 -"CLSI 2017" "DISK" "B_PLSMN" "CHL" "M45 Table 2" "30ug" 18 12 -"CLSI 2017" "DISK" "B_PLSMN" "CIP" "M45 Table 2" "5ug" 21 15 -"CLSI 2017" "DISK" "B_PLSMN" "CRO" "M45 Table 2" "30ug" 23 19 -"CLSI 2017" "DISK" "B_PLSMN" "CTX" "M45 Table 2" "30ug" 26 22 -"CLSI 2017" "DISK" "B_PLSMN" "CXM" "M45 Table 2" "30ug" 18 14 -"CLSI 2017" "DISK" "B_PLSMN" "ETP" "M45 Table 2" "10ug" 19 15 -"CLSI 2017" "DISK" "B_PLSMN" "FEP" "M45 Table 2" "30ug" 18 14 -"CLSI 2017" "DISK" "B_PLSMN" "FOX" "M45 Table 2" "30ug" 18 14 -"CLSI 2017" "DISK" "B_PLSMN" "GEN" "M45 Table 2" "10ug" 15 12 -"CLSI 2017" "DISK" "B_PLSMN" "IPM" "M45 Table 2" "10ug" 16 13 -"CLSI 2017" "DISK" "B_PLSMN" "LVX" "M45 Table 2" "5ug" 17 13 -"CLSI 2017" "DISK" "B_PLSMN" "MEM" "M45 Table 2" "10ug" 16 13 -"CLSI 2017" "DISK" "B_PLSMN" "SAM" "M45 Table 2" "10ug" 15 11 -"CLSI 2017" "DISK" "B_PLSMN" "SXT" "M45 Table 2" "1.25/23.75ug" 16 10 -"CLSI 2017" "DISK" "B_PLSMN" "TCY" "M45 Table 2" "30ug" 15 11 -"CLSI 2017" "DISK" "B_PLSMN" "TZP" "M45 Table 2" "100ug" 21 17 -"CLSI 2017" "DISK" "B_PRVDN_HMBC" "ENR" "Vet Table" "5ug" 21 16 -"CLSI 2017" "DISK" "B_PRVDN_HMBC" "SPT" "100ug" 14 10 -"CLSI 2017" "DISK" "B_PSDMN" "ETP" "10ug" -"CLSI 2017" "DISK" "B_PSDMN_AERG" "AMK" "Table 2B-1" "30ug" 17 14 -"CLSI 2017" "DISK" "B_PSDMN_AERG" "ATM" "Table 2B-1" "30ug" 22 15 -"CLSI 2017" "DISK" "B_PSDMN_AERG" "CAZ" "Table 2B-1" "30ug" 18 14 -"CLSI 2017" "DISK" "B_PSDMN_AERG" "CIP" "Table 2B-1" "5ug" 21 15 -"CLSI 2017" "DISK" "B_PSDMN_AERG" "DOR" "Table 2B-1" "10ug" 19 15 -"CLSI 2017" "DISK" "B_PSDMN_AERG" "FEP" "Table 2B-1" "30ug" 18 14 -"CLSI 2017" "DISK" "B_PSDMN_AERG" "GAT" "Table 2B-1" "5ug" 18 14 -"CLSI 2017" "DISK" "B_PSDMN_AERG" "GEN" "Table 2B-1" "10ug" 15 12 -"CLSI 2017" "DISK" "B_PSDMN_AERG" "IPM" "Table 2B-1" "10ug" 19 15 -"CLSI 2017" "DISK" "B_PSDMN_AERG" "LOM" "Table 2B-1" "10ug" 22 18 -"CLSI 2017" "DISK" "B_PSDMN_AERG" "LVX" "Table 2B-1" "5ug" 17 13 -"CLSI 2017" "DISK" "B_PSDMN_AERG" "MEM" "Table 2B-1" "10ug" 19 15 -"CLSI 2017" "DISK" "B_PSDMN_AERG" "NET" "Table 2B-1" "30ug" 15 12 -"CLSI 2017" "DISK" "B_PSDMN_AERG" "NOR" "Table 2B-1" "10ug" 17 12 -"CLSI 2017" "DISK" "B_PSDMN_AERG" "OFX" "Table 2B-1" "5ug" 16 12 -"CLSI 2017" "DISK" "B_PSDMN_AERG" "PIP" "Table 2B-1" "100ug" 21 14 -"CLSI 2017" "DISK" "B_PSDMN_AERG" "TCC" "Table 2B-1" "75ug" 24 15 -"CLSI 2017" "DISK" "B_PSDMN_AERG" "TOB" "Table 2B-1" "10ug" 15 12 -"CLSI 2017" "DISK" "B_PSDMN_AERG" "TZP" "Table 2B-1" "100ug" 21 14 -"CLSI 2017" "DISK" "B_PSTRL" "AMC" "M45 Table 13" "20ug" 27 -"CLSI 2017" "DISK" "B_PSTRL" "AMP" "M45 Table 13" "10ug" 27 -"CLSI 2017" "DISK" "B_PSTRL" "AZM" "M45 Table 13" "15ug" 20 -"CLSI 2017" "DISK" "B_PSTRL" "CHL" "M45 Table 13" "30ug" 28 -"CLSI 2017" "DISK" "B_PSTRL" "CRO" "M45 Table 13" "30ug" 34 -"CLSI 2017" "DISK" "B_PSTRL" "DOX" "M45 Table 13" "30ug" 23 -"CLSI 2017" "DISK" "B_PSTRL" "ERY" "M45 Table 13" "15ug" 27 24 -"CLSI 2017" "DISK" "B_PSTRL" "LVX" "M45 Table 13" "5ug" 28 -"CLSI 2017" "DISK" "B_PSTRL" "MFX" "M45 Table 13" "5ug" 28 -"CLSI 2017" "DISK" "B_PSTRL" "PEN" "M45 Table 13" "10 Units" 25 -"CLSI 2017" "DISK" "B_PSTRL" "SXT" "M45 Table 13" "1.25/23.75ug" 24 -"CLSI 2017" "DISK" "B_PSTRL" "TCY" "M45 Table 13" "30ug" 23 -"CLSI 2017" "DISK" "B_PSTRL_MLTC" "ENR" "Vet Table" "5ug" 21 16 -"CLSI 2017" "DISK" "B_PSTRL_MLTC" "SPT" "100ug" 14 10 -"CLSI 2017" "DISK" "B_PSTRL_MLTC" "TIL" "Vet Table" "15ug" 11 10 -"CLSI 2017" "DISK" "Extraintestinal" "B_SLMNL" "CIP" "Table 2A" "5ug" 31 20 -"CLSI 2017" "DISK" "B_SLMNL" "CIP" "Table 2A" "5ug" 31 20 -"CLSI 2017" "DISK" "B_STNTR_MLTP" "CAZ" "Table 2B-4" "30ug" -"CLSI 2017" "DISK" "B_STNTR_MLTP" "CHL" "Table 2B-4" "30ug" -"CLSI 2017" "DISK" "B_STNTR_MLTP" "LVX" "Table 2B-4" "75ug" 17 13 -"CLSI 2017" "DISK" "B_STNTR_MLTP" "MNO" "Table 2B-4" "30ug" 19 14 -"CLSI 2017" "DISK" "B_STNTR_MLTP" "SXT" "Table 2B-4" "30ug" 16 10 -"CLSI 2017" "DISK" "B_STNTR_MLTP" "TCC" "Table 2B-4" "30ug" -"CLSI 2017" "DISK" "B_STPHY" "AMC" "Table 2C" "20ug" 20 19 -"CLSI 2017" "DISK" "B_STPHY" "AMK" "Table 2C" "30ug" 17 14 -"CLSI 2017" "DISK" "B_STPHY" "AMP" "Table 2C" "10ug" 29 28 -"CLSI 2017" "DISK" "B_STPHY" "AZM" "Table 2C" "15ug" 18 13 -"CLSI 2017" "DISK" "B_STPHY" "CAZ" "Table 2C" "30ug" 18 14 -"CLSI 2017" "DISK" "B_STPHY" "CDR" "Table 2C" "5ug" 20 16 -"CLSI 2017" "DISK" "B_STPHY" "CEC" "Table 2C" "30ug" 18 14 -"CLSI 2017" "DISK" "B_STPHY" "CEP" "Table 2C" "30ug" 18 14 -"CLSI 2017" "DISK" "B_STPHY" "CFP" "Table 2C" "75ug" 21 15 -"CLSI 2017" "DISK" "B_STPHY" "CHL" "Table 2C" "30ug" 18 12 -"CLSI 2017" "DISK" "B_STPHY" "CID" "Table 2C" "30ug" 18 14 -"CLSI 2017" "DISK" "B_STPHY" "CIP" "Table 2C" "5ug" 21 15 -"CLSI 2017" "DISK" "B_STPHY" "CLI" "Table 2C" "2ug" 21 14 -"CLSI 2017" "DISK" "B_STPHY" "CLR" "Table 2C" "15ug" 18 13 -"CLSI 2017" "DISK" "B_STPHY" "CMZ" "Table 2C" "30ug" 16 12 -"CLSI 2017" "DISK" "B_STPHY" "CPD" "Table 2C" "10ug" 21 17 -"CLSI 2017" "DISK" "B_STPHY" "CPR" "Table 2C" "30ug" 18 14 -"CLSI 2017" "DISK" "B_STPHY" "CRO" "Table 2C" "30ug" 21 13 -"CLSI 2017" "DISK" "B_STPHY" "CTT" "Table 2C" "30ug" 16 12 -"CLSI 2017" "DISK" "B_STPHY" "CTX" "Table 2C" "30ug" 23 14 -"CLSI 2017" "DISK" "B_STPHY" "CXA" "Table 2C" "30ug" 23 14 -"CLSI 2017" "DISK" "Oral" "B_STPHY" "CXM" "Table 2C" "30ug" 23 14 -"CLSI 2017" "DISK" "Parenteral" "B_STPHY" "CXM" "Table 2C" "30ug" 18 14 -"CLSI 2017" "DISK" "Oral" "B_STPHY" "CXM" "Table 2C" "30ug" 23 14 -"CLSI 2017" "DISK" "B_STPHY" "CZO" "Table 2C" "30ug" 18 14 -"CLSI 2017" "DISK" "B_STPHY" "CZX" "Table 2C" "30ug" 20 14 -"CLSI 2017" "DISK" "B_STPHY" "DAP" "Table 2C" "30ug" -"CLSI 2017" "DISK" "B_STPHY" "DIR" "Table 2C" "15ug" 19 15 -"CLSI 2017" "DISK" "B_STPHY" "DOR" "Table 2C" "10ug" 30 -"CLSI 2017" "DISK" "B_STPHY" "DOX" "Table 2C" "30ug" 16 12 -"CLSI 2017" "DISK" "B_STPHY" "ENX" "Table 2C" "10ug" 18 14 -"CLSI 2017" "DISK" "B_STPHY" "ERY" "Table 2C" "15ug" 23 13 -"CLSI 2017" "DISK" "B_STPHY" "ETP" "Table 2C" "10ug" 19 15 -"CLSI 2017" "DISK" "B_STPHY" "FEP" "Table 2C" "30ug" 18 14 -"CLSI 2017" "DISK" "B_STPHY" "FLE" "Table 2C" "5ug" 19 15 -"CLSI 2017" "DISK" "B_STPHY" "FOX" "Table 2C" "30ug" 25 24 -"CLSI 2017" "DISK" "B_STPHY" "GAT" "Table 2C" "10ug" 23 19 -"CLSI 2017" "DISK" "B_STPHY" "GEN" "Table 2C" "10ug" 15 12 -"CLSI 2017" "DISK" "B_STPHY" "GRX" "Table 2C" "5ug" 18 14 -"CLSI 2017" "DISK" "B_STPHY" "IPM" "Table 2C" "10ug" 16 13 -"CLSI 2017" "DISK" "B_STPHY" "KAN" "Table 2C" "30ug" 18 13 -"CLSI 2017" "DISK" "B_STPHY" "LNZ" "Table 2C" "30ug" 21 20 -"CLSI 2017" "DISK" "B_STPHY" "LOM" "Table 2C" "10ug" 22 18 -"CLSI 2017" "DISK" "B_STPHY" "LOR" "Table 2C" "30ug" 18 14 -"CLSI 2017" "DISK" "B_STPHY" "LTM" "Table 2C" "30ug" 23 14 -"CLSI 2017" "DISK" "B_STPHY" "LVX" "Table 2C" "10ug" 19 15 -"CLSI 2017" "DISK" "B_STPHY" "MAN" "Table 2C" "30ug" 18 14 -"CLSI 2017" "DISK" "B_STPHY" "MEM" "Table 2C" "10ug" 15 13 -"CLSI 2017" "DISK" "B_STPHY" "MET" "Table 2C" "5ug" 14 9 -"CLSI 2017" "DISK" "B_STPHY" "MFX" "Table 2C" "5ug" 24 20 -"CLSI 2017" "DISK" "B_STPHY" "MNO" "Table 2C" "30ug" 19 14 -"CLSI 2017" "DISK" "B_STPHY" "NAF" "Table 2C" "1ug" 13 10 -"CLSI 2017" "DISK" "B_STPHY" "NET" "Table 2C" "30ug" 15 12 -"CLSI 2017" "DISK" "B_STPHY" "NIT" "Table 2C" "300ug" 17 14 -"CLSI 2017" "DISK" "B_STPHY" "NOR" "Table 2C" "10ug" 17 12 -"CLSI 2017" "DISK" "B_STPHY" "OFX" "Table 2C" "5ug" 18 14 -"CLSI 2017" "DISK" "B_STPHY" "OXA" "Table 2C" "1ug" 13 10 -"CLSI 2017" "DISK" "B_STPHY" "PEN" "Table 2C" "10ug" 29 28 -"CLSI 2017" "DISK" "B_STPHY" "QDA" "Table 2C" "15ug" 19 15 -"CLSI 2017" "DISK" "B_STPHY" "RIF" "Table 2C" "5ug" 20 16 -"CLSI 2017" "DISK" "B_STPHY" "SAM" "Table 2C" "10ug" 15 11 -"CLSI 2017" "DISK" "B_STPHY" "SMX" "Table 2C" "200ug" 17 12 -"CLSI 2017" "DISK" "B_STPHY" "SOX" "Table 2C" "200ug" 17 12 -"CLSI 2017" "DISK" "B_STPHY" "SPX" "Table 2C" "5ug" 19 15 -"CLSI 2017" "DISK" "B_STPHY" "SSS" "Table 2C" "200ug" 17 12 -"CLSI 2017" "DISK" "B_STPHY" "SXT" "Table 2C" "1.25/23.75ug" 16 10 -"CLSI 2017" "DISK" "B_STPHY" "TCC" "Table 2C" "75/10ug" 23 22 -"CLSI 2017" "DISK" "B_STPHY" "TCY" "Table 2C" "30ug" 19 14 -"CLSI 2017" "DISK" "B_STPHY" "TEC" "Table 2C" "30ug" 14 10 -"CLSI 2017" "DISK" "B_STPHY" "TLT" "Table 2C" "15ug" 22 18 -"CLSI 2017" "DISK" "B_STPHY" "TMP" "Table 2C" "5ug" 16 10 -"CLSI 2017" "DISK" "B_STPHY" "TOB" "Table 2C" "10ug" 15 12 -"CLSI 2017" "DISK" "B_STPHY" "TZP" "Table 2C" "100/10ug" 18 17 -"CLSI 2017" "DISK" "B_STPHY" "VAN" "Table 2C" "30ug" -"CLSI 2017" "DISK" "B_STPHY_AURS" "CPT" "Table 2C" "30ug" 24 20 -"CLSI 2017" "DISK" "B_STPHY_AURS" "FOX" "Table 2C" "30ug" 22 21 -"CLSI 2017" "DISK" "B_STPHY_AURS" "OXA" "Table 2C" "1ug" 13 10 -"CLSI 2017" "DISK" "B_STPHY_LGDN" "FOX" "Table 2C" "30ug" 22 21 -"CLSI 2017" "DISK" "B_STPHY_LGDN" "OXA" "Table 2C" "1ug" -"CLSI 2017" "DISK" "B_STRPT" "AMC" "Table 2H-1" "20ug" -"CLSI 2017" "DISK" "B_STRPT" "AMP" "Table 2H-1" "10ug" 24 -"CLSI 2017" "DISK" "B_STRPT" "AMX" "Table 2H-1" "30ug" -"CLSI 2017" "DISK" "B_STRPT" "AZM" "Table 2H-1" "15ug" 18 13 -"CLSI 2017" "DISK" "B_STRPT" "CHL" "Table 2H-1" "30ug" 21 17 -"CLSI 2017" "DISK" "B_STRPT" "CLI" "Table 2H-1" "2ug" 19 15 -"CLSI 2017" "DISK" "B_STRPT" "CLR" "Table 2H-1" "15ug" 21 16 -"CLSI 2017" "DISK" "B_STRPT" "CPT" "Table 2H-1" "30ug" 26 -"CLSI 2017" "DISK" "B_STRPT" "CRO" "Table 2H-1" "30ug" 24 -"CLSI 2017" "DISK" "B_STRPT" "CTX" "Table 2H-1" "30ug" 24 -"CLSI 2017" "DISK" "B_STRPT" "CXM" "Table 2H-1" "30ug" -"CLSI 2017" "DISK" "B_STRPT" "DAP" "Table 2H-1" "30ug" 16 -"CLSI 2017" "DISK" "B_STRPT" "DIR" "Table 2H-1" "15ug" 18 13 -"CLSI 2017" "DISK" "B_STRPT" "DOR" "Table 2H-1" "10ug" -"CLSI 2017" "DISK" "B_STRPT" "ERY" "Table 2H-1" "15ug" 21 15 -"CLSI 2017" "DISK" "B_STRPT" "ETP" "Table 2H-1" "10ug" -"CLSI 2017" "DISK" "B_STRPT" "FEP" "Table 2H-1" "30ug" 24 -"CLSI 2017" "DISK" "B_STRPT" "GAT" "Table 2H-1" "5ug" 21 17 -"CLSI 2017" "DISK" "B_STRPT" "GEM" "Table 2H-1" "5ug" -"CLSI 2017" "DISK" "B_STRPT" "GRX" "Table 2H-1" "5ug" 19 15 -"CLSI 2017" "DISK" "B_STRPT" "IPM" "Table 2H-1" "10ug" -"CLSI 2017" "DISK" "B_STRPT" "LNZ" "Table 2H-1" "30ug" 21 -"CLSI 2017" "DISK" "B_STRPT" "LVX" "Table 2H-1" "5ug" 17 13 -"CLSI 2017" "DISK" "B_STRPT" "MEM" "Table 2H-1" "10ug" -"CLSI 2017" "DISK" "B_STRPT" "MFX" "Table 2H-1" "5ug" -"CLSI 2017" "DISK" "B_STRPT" "OFX" "Table 2H-1" "5ug" 16 12 -"CLSI 2017" "DISK" "B_STRPT" "PEN" "Table 2H-1" "10units" 24 -"CLSI 2017" "DISK" "B_STRPT" "QDA" "Table 2H-1" "15ug" 19 15 -"CLSI 2017" "DISK" "B_STRPT" "RIF" "Table 2H-1" "5ug" -"CLSI 2017" "DISK" "B_STRPT" "SPX" "Table 2H-1" "5ug" -"CLSI 2017" "DISK" "B_STRPT" "SXT" "Table 2H-1" "1.25/23.75ug" -"CLSI 2017" "DISK" "B_STRPT" "TCY" "Table 2H-1" "30ug" 23 18 -"CLSI 2017" "DISK" "B_STRPT" "TVA" "Table 2H-1" "10ug" 19 15 -"CLSI 2017" "DISK" "B_STRPT" "VAN" "Table 2H-1" "30ug" 17 -"CLSI 2017" "DISK" "B_STRPT_PNMN" "AMC" "Table 2G" "10/10ug" -"CLSI 2017" "DISK" "B_STRPT_PNMN" "AMP" "Table 2G" "10ug" -"CLSI 2017" "DISK" "B_STRPT_PNMN" "AMX" "Table 2G" "30ug" -"CLSI 2017" "DISK" "B_STRPT_PNMN" "AZM" "Table 2G" "15ug" 18 13 -"CLSI 2017" "DISK" "B_STRPT_PNMN" "CDR" "Table 2G" "5ug" -"CLSI 2017" "DISK" "B_STRPT_PNMN" "CEC" "Table 2G" "30ug" -"CLSI 2017" "DISK" "B_STRPT_PNMN" "CHL" "Table 2G" "30ug" 21 20 -"CLSI 2017" "DISK" "B_STRPT_PNMN" "CIP" "Table 2G" "5ug" -"CLSI 2017" "DISK" "B_STRPT_PNMN" "CLI" "Table 2G" "2ug" 19 15 -"CLSI 2017" "DISK" "B_STRPT_PNMN" "CLR" "Table 2G" "15ug" 21 16 -"CLSI 2017" "DISK" "B_STRPT_PNMN" "CPD" "Table 2G" "10ug" -"CLSI 2017" "DISK" "B_STRPT_PNMN" "CPR" "Table 2G" "30ug" -"CLSI 2017" "DISK" "B_STRPT_PNMN" "CPT" "Table 2G" "30ug" -"CLSI 2017" "DISK" "B_STRPT_PNMN" "CRO" "Table 2G" "30ug" -"CLSI 2017" "DISK" "B_STRPT_PNMN" "CTX" "Table 2G" "30ug" -"CLSI 2017" "DISK" "B_STRPT_PNMN" "CXA" "Table 2G" "30ug" -"CLSI 2017" "DISK" "Oral" "B_STRPT_PNMN" "CXM" "Table 2G" "30ug" -"CLSI 2017" "DISK" "B_STRPT_PNMN" "CXM" "Table 2G" "30ug" -"CLSI 2017" "DISK" "B_STRPT_PNMN" "DAP" "Table 2G" "30ug" -"CLSI 2017" "DISK" "B_STRPT_PNMN" "DIR" "Table 2G" "15ug" 18 13 -"CLSI 2017" "DISK" "B_STRPT_PNMN" "DOR" "Table 2G" "10ug" -"CLSI 2017" "DISK" "B_STRPT_PNMN" "DOX" "Table 2G" "30ug" 28 24 -"CLSI 2017" "DISK" "B_STRPT_PNMN" "ERY" "Table 2G" "15ug" 21 15 -"CLSI 2017" "DISK" "B_STRPT_PNMN" "ETP" "Table 2G" "10ug" -"CLSI 2017" "DISK" "B_STRPT_PNMN" "FEP" "Table 2G" "30ug" -"CLSI 2017" "DISK" "B_STRPT_PNMN" "GAT" "Table 2G" "5ug" 21 17 -"CLSI 2017" "DISK" "B_STRPT_PNMN" "GEM" "Table 2G" "5ug" 23 19 -"CLSI 2017" "DISK" "B_STRPT_PNMN" "GRX" "Table 2G" "5ug" 19 15 -"CLSI 2017" "DISK" "B_STRPT_PNMN" "IPM" "Table 2G" "10ug" -"CLSI 2017" "DISK" "B_STRPT_PNMN" "LNZ" "Table 2G" "30ug" 21 -"CLSI 2017" "DISK" "B_STRPT_PNMN" "LOR" "Table 2G" "30ug" -"CLSI 2017" "DISK" "B_STRPT_PNMN" "LVX" "Table 2G" "5ug" 17 13 -"CLSI 2017" "DISK" "B_STRPT_PNMN" "MEM" "Table 2G" "10ug" -"CLSI 2017" "DISK" "B_STRPT_PNMN" "MFX" "Table 2G" "5ug" 18 14 -"CLSI 2017" "DISK" "B_STRPT_PNMN" "NOR" "Table 2G" "5ug" -"CLSI 2017" "DISK" "B_STRPT_PNMN" "OFX" "Table 2G" "5ug" 16 12 -"CLSI 2017" "DISK" "B_STRPT_PNMN" "OXA" "Table 2G" "1ug" 20 -"CLSI 2017" "DISK" "B_STRPT_PNMN" "PEN" "Table 2G" "10units" -"CLSI 2017" "DISK" "B_STRPT_PNMN" "PNV" "Table 2G" "10ug" -"CLSI 2017" "DISK" "B_STRPT_PNMN" "QDA" "Table 2G" "15ug" 19 15 -"CLSI 2017" "DISK" "B_STRPT_PNMN" "RIF" "Table 2G" "5ug" 19 16 -"CLSI 2017" "DISK" "B_STRPT_PNMN" "SAM" "Table 2G" "10/10ug" -"CLSI 2017" "DISK" "B_STRPT_PNMN" "SPX" "Table 2G" "5ug" 19 15 -"CLSI 2017" "DISK" "B_STRPT_PNMN" "SXT" "Table 2G" "1.25/23.75ug" 19 15 -"CLSI 2017" "DISK" "B_STRPT_PNMN" "TCY" "Table 2G" "30ug" 28 24 -"CLSI 2017" "DISK" "B_STRPT_PNMN" "TLT" "Table 2G" "15ug" 19 15 -"CLSI 2017" "DISK" "B_STRPT_PNMN" "TVA" "Table 2G" "10ug" 19 15 -"CLSI 2017" "DISK" "B_STRPT_PNMN" "VAN" "Table 2G" "30ug" 17 -"CLSI 2017" "DISK" "B_STRPT_VIRI" "AMP" "Table 2H-2" "10ug" -"CLSI 2017" "DISK" "B_STRPT_VIRI" "AZM" "Table 2H-2" "15ug" 18 13 -"CLSI 2017" "DISK" "B_STRPT_VIRI" "CHL" "Table 2H-2" "30ug" 21 17 -"CLSI 2017" "DISK" "B_STRPT_VIRI" "CLI" "Table 2H-2" "2ug" 19 15 -"CLSI 2017" "DISK" "B_STRPT_VIRI" "CLR" "Table 2H-2" "15ug" 21 16 -"CLSI 2017" "DISK" "B_STRPT_VIRI" "CRO" "Table 2H-2" "30ug" 27 24 -"CLSI 2017" "DISK" "B_STRPT_VIRI" "CTX" "Table 2H-2" "30ug" 28 25 -"CLSI 2017" "DISK" "B_STRPT_VIRI" "DAP" "Table 2H-2" "30ug" -"CLSI 2017" "DISK" "B_STRPT_VIRI" "DIR" "Table 2H-2" "15ug" 18 13 -"CLSI 2017" "DISK" "B_STRPT_VIRI" "DOR" "Table 2H-2" "10ug" -"CLSI 2017" "DISK" "B_STRPT_VIRI" "ERY" "Table 2H-2" "15ug" 21 15 -"CLSI 2017" "DISK" "B_STRPT_VIRI" "ETP" "Table 2H-2" "10ug" -"CLSI 2017" "DISK" "B_STRPT_VIRI" "FEP" "Table 2H-2" "30ug" 24 21 -"CLSI 2017" "DISK" "B_STRPT_VIRI" "GAT" "Table 2H-2" "5ug" 21 17 -"CLSI 2017" "DISK" "B_STRPT_VIRI" "GRX" "Table 2H-2" "5ug" 19 15 -"CLSI 2017" "DISK" "B_STRPT_VIRI" "LNZ" "Table 2H-2" "30ug" 21 -"CLSI 2017" "DISK" "B_STRPT_VIRI" "LVX" "Table 2H-2" "5ug" 17 13 -"CLSI 2017" "DISK" "B_STRPT_VIRI" "MEM" "Table 2H-2" "10ug" -"CLSI 2017" "DISK" "B_STRPT_VIRI" "OFX" "Table 2H-2" "5ug" 16 12 -"CLSI 2017" "DISK" "B_STRPT_VIRI" "PEN" "Table 2H-2" "10units" -"CLSI 2017" "DISK" "B_STRPT_VIRI" "QDA" "Table 2H-2" "15ug" 19 15 -"CLSI 2017" "DISK" "B_STRPT_VIRI" "TCY" "Table 2H-2" "30ug" 23 18 -"CLSI 2017" "DISK" "B_STRPT_VIRI" "TVA" "Table 2H-2" "10ug" 19 15 -"CLSI 2017" "DISK" "B_STRPT_VIRI" "VAN" "Table 2H-2" "30ug" 17 -"CLSI 2016" "DISK" "Urine" "B_[FAM]_ENTRBCTR" "CZO" "Table 2A" 15 14 -"CLSI 2016" "DISK" "B_ACNTB" "AMK" "Table 2B-2" "30ug" 17 14 -"CLSI 2016" "DISK" "B_ACNTB" "CAZ" "Table 2B-2" "30ug" 18 14 -"CLSI 2016" "DISK" "B_ACNTB" "CIP" "Table 2B-2" "5ug" 21 15 -"CLSI 2016" "DISK" "B_ACNTB" "COL" "Table 2B-2" "10ug" -"CLSI 2016" "DISK" "B_ACNTB" "CRO" "Table 2B-2" "30ug" 21 13 -"CLSI 2016" "DISK" "B_ACNTB" "CTX" "Table 2B-2" "30ug" 23 14 -"CLSI 2016" "DISK" "B_ACNTB" "DOR" "Table 2B-2" 18 14 -"CLSI 2016" "DISK" "B_ACNTB" "DOX" "Table 2B-2" "30ug" 13 9 -"CLSI 2016" "DISK" "B_ACNTB" "ETP" "Table 2B-2" "10ug" -"CLSI 2016" "DISK" "B_ACNTB" "FEP" "Table 2B-2" "30ug" 18 14 -"CLSI 2016" "DISK" "B_ACNTB" "GAT" "Table 2B-2" "5ug" 18 14 -"CLSI 2016" "DISK" "B_ACNTB" "GEN" "Table 2B-2" "10ug" 15 12 -"CLSI 2016" "DISK" "B_ACNTB" "IPM" "Table 2B-2" "10ug" 22 18 -"CLSI 2016" "DISK" "B_ACNTB" "LVX" "Table 2B-2" "5ug" 17 13 -"CLSI 2016" "DISK" "B_ACNTB" "MEM" "Table 2B-2" "10ug" 18 14 -"CLSI 2016" "DISK" "B_ACNTB" "MNO" "Table 2B-2" "30ug" 16 12 -"CLSI 2016" "DISK" "B_ACNTB" "NET" "Table 2B-2" "30ug" -"CLSI 2016" "DISK" "B_ACNTB" "PIP" "Table 2B-2" "100ug" 21 17 -"CLSI 2016" "DISK" "B_ACNTB" "PLB" "Table 2B-2" "300ug" -"CLSI 2016" "DISK" "B_ACNTB" "SAM" "Table 2B-2" "10ug" 15 11 -"CLSI 2016" "DISK" "B_ACNTB" "SXT" "Table 2B-2" "1.25/23.75ug" 16 10 -"CLSI 2016" "DISK" "B_ACNTB" "TCC" "Table 2B-2" "75ug" 20 14 -"CLSI 2016" "DISK" "B_ACNTB" "TCY" "Table 2B-2" "30ug" 15 11 -"CLSI 2016" "DISK" "B_ACNTB" "TOB" "Table 2B-2" "10ug" 15 12 -"CLSI 2016" "DISK" "B_ACNTB" "TZP" "Table 2B-2" "100ug" 21 17 -"CLSI 2016" "DISK" "B_ACTNB_PLRP" "TIL" "Vet Table" "15ug" 11 10 -"CLSI 2016" "DISK" "B_AERMN" "AMC" "M45 Table 2" "20ug" 18 13 -"CLSI 2016" "DISK" "B_AERMN" "AMK" "M45 Table 2" "30ug" 17 14 -"CLSI 2016" "DISK" "B_AERMN" "ATM" "M45 Table 2" "30ug" 21 17 -"CLSI 2016" "DISK" "B_AERMN" "CAZ" "M45 Table 2" "30ug" 21 17 -"CLSI 2016" "DISK" "B_AERMN" "CHL" "M45 Table 2" "30ug" 18 12 -"CLSI 2016" "DISK" "B_AERMN" "CIP" "M45 Table 2" "5ug" 21 15 -"CLSI 2016" "DISK" "B_AERMN" "CRO" "M45 Table 2" "30ug" 23 19 -"CLSI 2016" "DISK" "B_AERMN" "CTX" "M45 Table 2" "30ug" 26 22 -"CLSI 2016" "DISK" "B_AERMN" "CXM" "M45 Table 2" "30ug" 18 14 -"CLSI 2016" "DISK" "B_AERMN" "ETP" "M45 Table 2" "10ug" 19 15 -"CLSI 2016" "DISK" "B_AERMN" "FEP" "M45 Table 2" "30ug" 18 14 -"CLSI 2016" "DISK" "B_AERMN" "FOX" "M45 Table 2" "30ug" 18 14 -"CLSI 2016" "DISK" "B_AERMN" "GEN" "M45 Table 2" "10ug" 15 12 -"CLSI 2016" "DISK" "B_AERMN" "IPM" "M45 Table 2" "10ug" 16 13 -"CLSI 2016" "DISK" "B_AERMN" "LVX" "M45 Table 2" "5ug" 17 13 -"CLSI 2016" "DISK" "B_AERMN" "MEM" "M45 Table 2" "10ug" 16 13 -"CLSI 2016" "DISK" "B_AERMN" "SAM" "M45 Table 2" "10ug" 15 11 -"CLSI 2016" "DISK" "B_AERMN" "SXT" "M45 Table 2" "1.25/23.75ug" 16 10 -"CLSI 2016" "DISK" "B_AERMN" "TCY" "M45 Table 2" "30ug" 15 11 -"CLSI 2016" "DISK" "B_AERMN" "TZP" "M45 Table 2" "100ug" 21 17 -"CLSI 2016" "DISK" "B_BRKHL_CEPC" "CAZ" "Table 2B-3" "30ug" 21 17 -"CLSI 2016" "DISK" "B_BRKHL_CEPC" "CHL" "Table 2B-3" "30ug" -"CLSI 2016" "DISK" "B_BRKHL_CEPC" "LVX" "Table 2B-3" "5ug" -"CLSI 2016" "DISK" "B_BRKHL_CEPC" "MEM" "Table 2B-3" "10ug" 20 15 -"CLSI 2016" "DISK" "B_BRKHL_CEPC" "MNO" "Table 2B-3" "30ug" 19 14 -"CLSI 2016" "DISK" "B_BRKHL_CEPC" "SXT" "Table 2B-3" "1.25/23.75ug" 16 10 -"CLSI 2016" "DISK" "B_BRKHL_CEPC" "TCC" "Table 2B-3" "75ug" -"CLSI 2016" "DISK" "B_ENTRC" "AMP" "Table 2D" "10ug" 17 16 -"CLSI 2016" "DISK" "B_ENTRC" "CHL" "Table 2D" "30ug" 18 12 -"CLSI 2016" "DISK" "B_ENTRC" "CIP" "Table 2D" "5ug" 21 15 -"CLSI 2016" "DISK" "B_ENTRC" "DAP" "Table 2D" "30ug" -"CLSI 2016" "DISK" "B_ENTRC" "DOX" "Table 2D" "30ug" 16 12 -"CLSI 2016" "DISK" "B_ENTRC" "ERY" "Table 2D" "15ug" 23 13 -"CLSI 2016" "DISK" "B_ENTRC" "FOS" "Table 2D" "200ug" 16 12 -"CLSI 2016" "DISK" "B_ENTRC" "GAT" "Table 2D" "5ug" 18 14 -"CLSI 2016" "DISK" "B_ENTRC" "GEH" "Table 2D" "120ug" 10 6 -"CLSI 2016" "DISK" "B_ENTRC" "LNZ" "Table 2D" "30ug" 23 20 -"CLSI 2016" "DISK" "B_ENTRC" "LVX" "Table 2D" "5ug" 17 13 -"CLSI 2016" "DISK" "B_ENTRC" "MNO" "Table 2D" "30ug" 19 14 -"CLSI 2016" "DISK" "B_ENTRC" "NIT" "Table 2D" "300ug" 17 14 -"CLSI 2016" "DISK" "B_ENTRC" "NOR" "Table 2D" "10ug" 17 12 -"CLSI 2016" "DISK" "B_ENTRC" "PEN" "Table 2D" "10units" 15 14 -"CLSI 2016" "DISK" "B_ENTRC" "QDA" "Table 2D" "15ug" 19 15 -"CLSI 2016" "DISK" "B_ENTRC" "RIF" "Table 2D" "5ug" 20 16 -"CLSI 2016" "DISK" "B_ENTRC" "STH" "Table 2D" "300ug" 10 6 -"CLSI 2016" "DISK" "B_ENTRC" "TCY" "Table 2D" "30ug" 19 14 -"CLSI 2016" "DISK" "B_ENTRC" "TEC" "Table 2D" "30ug" 14 10 -"CLSI 2016" "DISK" "B_ENTRC" "VAN" "Table 2D" "30ug" 17 14 -"CLSI 2016" "DISK" "B_HMPHL" "AMC" "Table 2E" "20/10ug" 20 19 -"CLSI 2016" "DISK" "B_HMPHL" "AMP" "Table 2E" "10ug" 22 18 -"CLSI 2016" "DISK" "B_HMPHL" "ATM" "Table 2E" "30ug" 26 -"CLSI 2016" "DISK" "B_HMPHL" "AZM" "Table 2E" "15ug" 12 -"CLSI 2016" "DISK" "B_HMPHL" "CAT" "Table 2E" "10ug" 18 14 -"CLSI 2016" "DISK" "B_HMPHL" "CAZ" "Table 2E" "30ug" 26 -"CLSI 2016" "DISK" "B_HMPHL" "CDR" "Table 2E" "5ug" 20 -"CLSI 2016" "DISK" "B_HMPHL" "CEC" "Table 2E" "30ug" 20 16 -"CLSI 2016" "DISK" "B_HMPHL" "CFM" "Table 2E" "5ug" 21 -"CLSI 2016" "DISK" "B_HMPHL" "CHL" "Table 2E" "30ug" 29 25 -"CLSI 2016" "DISK" "B_HMPHL" "CID" "Table 2E" "30ug" 20 16 -"CLSI 2016" "DISK" "B_HMPHL" "CIP" "Table 2E" "5ug" 21 -"CLSI 2016" "DISK" "B_HMPHL" "CLR" "Table 2E" "15ug" 13 10 -"CLSI 2016" "DISK" "B_HMPHL" "CPD" "Table 2E" "10ug" 21 -"CLSI 2016" "DISK" "B_HMPHL" "CPR" "Table 2E" "30ug" 18 14 -"CLSI 2016" "DISK" "B_HMPHL" "CRO" "Table 2E" "30ug" 26 -"CLSI 2016" "DISK" "B_HMPHL" "CTB" "Table 2E" "30ug" 28 -"CLSI 2016" "DISK" "B_HMPHL" "CTX" "Table 2E" "30ug" 26 -"CLSI 2016" "DISK" "B_HMPHL" "CXA" "Table 2E" "30ug" 20 16 -"CLSI 2016" "DISK" "Oral" "B_HMPHL" "CXM" "Table 2E" "30ug" 20 16 -"CLSI 2016" "DISK" "B_HMPHL" "CXM" "Table 2E" "30ug" 20 16 -"CLSI 2016" "DISK" "B_HMPHL" "CZX" "Table 2E" "30ug" 26 -"CLSI 2016" "DISK" "B_HMPHL" "DOR" "Table 2E" "10ug" 16 -"CLSI 2016" "DISK" "B_HMPHL" "ETP" "Table 2E" "10ug" 19 -"CLSI 2016" "DISK" "B_HMPHL" "FEP" "Table 2E" "30ug" 26 -"CLSI 2016" "DISK" "B_HMPHL" "FLE" "Table 2E" "5ug" 19 -"CLSI 2016" "DISK" "B_HMPHL" "GAT" "Table 2E" "5ug" 18 -"CLSI 2016" "DISK" "B_HMPHL" "GEM" "Table 2E" "5ug" 18 -"CLSI 2016" "DISK" "B_HMPHL" "GRX" "Table 2E" "5ug" 24 -"CLSI 2016" "DISK" "B_HMPHL" "IPM" "Table 2E" "10ug" 16 -"CLSI 2016" "DISK" "B_HMPHL" "LOM" "Table 2E" "10ug" 22 -"CLSI 2016" "DISK" "B_HMPHL" "LOR" "Table 2E" "30ug" 19 15 -"CLSI 2016" "DISK" "B_HMPHL" "LVX" "Table 2E" "5ug" 17 -"CLSI 2016" "DISK" "B_HMPHL" "MAN" "Table 2E" "30ug" -"CLSI 2016" "DISK" "B_HMPHL" "MEM" "Table 2E" "10ug" 20 -"CLSI 2016" "DISK" "B_HMPHL" "MFX" "Table 2E" "5ug" 18 -"CLSI 2016" "DISK" "B_HMPHL" "OFX" "Table 2E" "5ug" 16 -"CLSI 2016" "DISK" "B_HMPHL" "RIF" "Table 2E" "5ug" 20 16 -"CLSI 2016" "DISK" "B_HMPHL" "SAM" "Table 2E" "10/10ug" 20 19 -"CLSI 2016" "DISK" "B_HMPHL" "SPX" "Table 2E" "5ug" -"CLSI 2016" "DISK" "B_HMPHL" "SXT" "Table 2E" "1.25/23.75ug" 15 10 -"CLSI 2016" "DISK" "B_HMPHL" "TCY" "Table 2E" "30ug" 29 25 -"CLSI 2016" "DISK" "B_HMPHL" "TLT" "Table 2E" "15ug" 15 11 -"CLSI 2016" "DISK" "B_HMPHL" "TVA" "Table 2E" "10ug" 22 -"CLSI 2016" "DISK" "B_HMPHL" "TZP" "Table 2E" "100ug" 21 -"CLSI 2016" "DISK" "B_HMPHL_INFL" "CPT" "Table 2E" "30ug" 30 -"CLSI 2016" "DISK" "B_HSTPH_SOMN" "ENR" "Vet Table" "5ug" 21 16 -"CLSI 2016" "DISK" "B_HSTPH_SOMN" "SPT" "Vet Table" "100ug" 14 10 -"CLSI 2016" "DISK" "B_LISTR_MNCY" "AMP" "M45 Table 11" "10ug" -"CLSI 2016" "DISK" "B_LISTR_MNCY" "PEN" "M45 Table 11" "10units" -"CLSI 2016" "DISK" "B_MRXLL_CTRR" "AMC" "M45 Table 12" "20ug" 24 23 -"CLSI 2016" "DISK" "B_MRXLL_CTRR" "AZM" "M45 Table 12" "15ug" 26 -"CLSI 2016" "DISK" "B_MRXLL_CTRR" "CLR" "M45 Table 12" "15ug" 24 -"CLSI 2016" "DISK" "B_MRXLL_CTRR" "ERY" "M45 Table 12" "15ug" 21 -"CLSI 2016" "DISK" "B_MRXLL_CTRR" "SXT" "M45 Table 12" "1.25/23.75ug" 13 10 -"CLSI 2016" "DISK" "B_MRXLL_CTRR" "TCY" "M45 Table 12" "30ug" 29 24 -"CLSI 2016" "DISK" "B_NESSR_GNRR" "CAT" "Table 2F" "10ug" 29 -"CLSI 2016" "DISK" "B_NESSR_GNRR" "CAZ" "Table 2F" "30ug" 31 -"CLSI 2016" "DISK" "B_NESSR_GNRR" "CFM" "Table 2F" "5ug" 31 -"CLSI 2016" "DISK" "B_NESSR_GNRR" "CIP" "Table 2F" "5ug" 41 27 -"CLSI 2016" "DISK" "B_NESSR_GNRR" "CMZ" "Table 2F" "30ug" 33 27 -"CLSI 2016" "DISK" "B_NESSR_GNRR" "CPD" "Table 2F" "10ug" 29 -"CLSI 2016" "DISK" "B_NESSR_GNRR" "CRO" "Table 2F" "30ug" 35 -"CLSI 2016" "DISK" "B_NESSR_GNRR" "CTT" "Table 2F" "30ug" 26 19 -"CLSI 2016" "DISK" "B_NESSR_GNRR" "CTX" "Table 2F" "30ug" 31 -"CLSI 2016" "DISK" "B_NESSR_GNRR" "CXM" "Table 2F" "30ug" 31 25 -"CLSI 2016" "DISK" "B_NESSR_GNRR" "CZX" "Table 2F" "30ug" 38 -"CLSI 2016" "DISK" "B_NESSR_GNRR" "ENX" "Table 2F" "10ug" 36 31 -"CLSI 2016" "DISK" "B_NESSR_GNRR" "FEP" "Table 2F" "30ug" 31 -"CLSI 2016" "DISK" "B_NESSR_GNRR" "FLE" "Table 2F" "5ug" 35 28 -"CLSI 2016" "DISK" "B_NESSR_GNRR" "FOX" "Table 2F" "30ug" 28 23 -"CLSI 2016" "DISK" "B_NESSR_GNRR" "GAT" "Table 2F" "5ug" 38 33 -"CLSI 2016" "DISK" "B_NESSR_GNRR" "GRX" "Table 2F" "5ug" 37 27 -"CLSI 2016" "DISK" "B_NESSR_GNRR" "LOM" "Table 2F" "10ug" 38 26 -"CLSI 2016" "DISK" "B_NESSR_GNRR" "OFX" "Table 2F" "5ug" 31 24 -"CLSI 2016" "DISK" "B_NESSR_GNRR" "PEN" "Table 2F" "10units" 47 26 -"CLSI 2016" "DISK" "B_NESSR_GNRR" "SPT" "Table 2F" "100ug" 18 14 -"CLSI 2016" "DISK" "B_NESSR_GNRR" "TCY" "Table 2F" "30ug" 38 30 -"CLSI 2016" "DISK" "B_NESSR_GNRR" "TVA" "Table 2F" "10ug" 34 -"CLSI 2016" "DISK" "B_NESSR_MNNG" "AMP" "Table 2I" "10ug" -"CLSI 2016" "DISK" "B_NESSR_MNNG" "AZM" "Table 2I" "15ug" 20 -"CLSI 2016" "DISK" "B_NESSR_MNNG" "CHL" "Table 2I" "30ug" 26 19 -"CLSI 2016" "DISK" "B_NESSR_MNNG" "CIP" "Table 2I" "5ug" 35 32 -"CLSI 2016" "DISK" "B_NESSR_MNNG" "CRO" "Table 2I" "30ug" 34 -"CLSI 2016" "DISK" "B_NESSR_MNNG" "CTX" "Table 2I" "30ug" 34 -"CLSI 2016" "DISK" "B_NESSR_MNNG" "LVX" "Table 2I" "5ug" -"CLSI 2016" "DISK" "B_NESSR_MNNG" "MEM" "Table 2I" "10ug" 30 -"CLSI 2016" "DISK" "B_NESSR_MNNG" "MNO" "Table 2I" "30ug" 26 -"CLSI 2016" "DISK" "B_NESSR_MNNG" "NAL" "Table 2I" "30ug" 26 25 -"CLSI 2016" "DISK" "B_NESSR_MNNG" "PEN" "Table 2I" "10units" -"CLSI 2016" "DISK" "B_NESSR_MNNG" "RIF" "Table 2I" "5ug" 25 19 -"CLSI 2016" "DISK" "B_NESSR_MNNG" "SMX" "Table 2I" "200-300ug" -"CLSI 2016" "DISK" "B_NESSR_MNNG" "SOX" "Table 2I" "200-300ug" -"CLSI 2016" "DISK" "B_NESSR_MNNG" "SSS" "Table 2I" "200-300ug" -"CLSI 2016" "DISK" "B_NESSR_MNNG" "SXT" "Table 2I" "1.25/23.75ug" 30 25 -"CLSI 2016" "DISK" "B_PLSMN" "AMC" "M45 Table 2" "20ug" 18 13 -"CLSI 2016" "DISK" "B_PLSMN" "AMK" "M45 Table 2" "30ug" 17 14 -"CLSI 2016" "DISK" "B_PLSMN" "ATM" "M45 Table 2" "30ug" 21 17 -"CLSI 2016" "DISK" "B_PLSMN" "CAZ" "M45 Table 2" "30ug" 21 17 -"CLSI 2016" "DISK" "B_PLSMN" "CHL" "M45 Table 2" "30ug" 18 12 -"CLSI 2016" "DISK" "B_PLSMN" "CIP" "M45 Table 2" "5ug" 21 15 -"CLSI 2016" "DISK" "B_PLSMN" "CRO" "M45 Table 2" "30ug" 23 19 -"CLSI 2016" "DISK" "B_PLSMN" "CTX" "M45 Table 2" "30ug" 26 22 -"CLSI 2016" "DISK" "B_PLSMN" "CXM" "M45 Table 2" "30ug" 18 14 -"CLSI 2016" "DISK" "B_PLSMN" "ETP" "M45 Table 2" "10ug" 19 15 -"CLSI 2016" "DISK" "B_PLSMN" "FEP" "M45 Table 2" "30ug" 18 14 -"CLSI 2016" "DISK" "B_PLSMN" "FOX" "M45 Table 2" "30ug" 18 14 -"CLSI 2016" "DISK" "B_PLSMN" "GEN" "M45 Table 2" "10ug" 15 12 -"CLSI 2016" "DISK" "B_PLSMN" "IPM" "M45 Table 2" "10ug" 16 13 -"CLSI 2016" "DISK" "B_PLSMN" "LVX" "M45 Table 2" "5ug" 17 13 -"CLSI 2016" "DISK" "B_PLSMN" "MEM" "M45 Table 2" "10ug" 16 13 -"CLSI 2016" "DISK" "B_PLSMN" "SAM" "M45 Table 2" "10ug" 15 11 -"CLSI 2016" "DISK" "B_PLSMN" "SXT" "M45 Table 2" "1.25/23.75ug" 16 10 -"CLSI 2016" "DISK" "B_PLSMN" "TCY" "M45 Table 2" "30ug" 15 11 -"CLSI 2016" "DISK" "B_PLSMN" "TZP" "M45 Table 2" "100ug" 21 17 -"CLSI 2016" "DISK" "B_PRVDN_HMBC" "ENR" "Vet Table" "5ug" 21 16 -"CLSI 2016" "DISK" "B_PRVDN_HMBC" "SPT" "100ug" 14 10 -"CLSI 2016" "DISK" "B_PSDMN" "ETP" "10ug" -"CLSI 2016" "DISK" "B_PSDMN_AERG" "AMK" "Table 2B-1" "30ug" 17 14 -"CLSI 2016" "DISK" "B_PSDMN_AERG" "ATM" "Table 2B-1" "30ug" 22 15 -"CLSI 2016" "DISK" "B_PSDMN_AERG" "CAZ" "Table 2B-1" "30ug" 18 14 -"CLSI 2016" "DISK" "B_PSDMN_AERG" "CIP" "Table 2B-1" "5ug" 21 15 -"CLSI 2016" "DISK" "B_PSDMN_AERG" "COL" "Table 2B-1" "10ug" 11 10 -"CLSI 2016" "DISK" "B_PSDMN_AERG" "DOR" "Table 2B-1" "10ug" 19 15 -"CLSI 2016" "DISK" "B_PSDMN_AERG" "FEP" "Table 2B-1" "30ug" 18 14 -"CLSI 2016" "DISK" "B_PSDMN_AERG" "GAT" "Table 2B-1" "5ug" 18 14 -"CLSI 2016" "DISK" "B_PSDMN_AERG" "GEN" "Table 2B-1" "10ug" 15 12 -"CLSI 2016" "DISK" "B_PSDMN_AERG" "IPM" "Table 2B-1" "10ug" 19 15 -"CLSI 2016" "DISK" "B_PSDMN_AERG" "LOM" "Table 2B-1" "10ug" 22 18 -"CLSI 2016" "DISK" "B_PSDMN_AERG" "LVX" "Table 2B-1" "5ug" 17 13 -"CLSI 2016" "DISK" "B_PSDMN_AERG" "MEM" "Table 2B-1" "10ug" 19 15 -"CLSI 2016" "DISK" "B_PSDMN_AERG" "NET" "Table 2B-1" "30ug" 15 12 -"CLSI 2016" "DISK" "B_PSDMN_AERG" "NOR" "Table 2B-1" "10ug" 17 12 -"CLSI 2016" "DISK" "B_PSDMN_AERG" "OFX" "Table 2B-1" "5ug" 16 12 -"CLSI 2016" "DISK" "B_PSDMN_AERG" "PIP" "Table 2B-1" "100ug" 21 14 -"CLSI 2016" "DISK" "B_PSDMN_AERG" "PLB" "Table 2B-1" "300ug" 12 11 -"CLSI 2016" "DISK" "B_PSDMN_AERG" "TCC" "Table 2B-1" "75ug" 24 15 -"CLSI 2016" "DISK" "B_PSDMN_AERG" "TOB" "Table 2B-1" "10ug" 15 12 -"CLSI 2016" "DISK" "B_PSDMN_AERG" "TZP" "Table 2B-1" "100ug" 21 14 -"CLSI 2016" "DISK" "B_PSTRL" "AMC" "M45 Table 13" "20ug" 27 -"CLSI 2016" "DISK" "B_PSTRL" "AMP" "M45 Table 13" "10ug" 27 -"CLSI 2016" "DISK" "B_PSTRL" "AZM" "M45 Table 13" "15ug" 20 -"CLSI 2016" "DISK" "B_PSTRL" "CHL" "M45 Table 13" "30ug" 28 -"CLSI 2016" "DISK" "B_PSTRL" "CRO" "M45 Table 13" "30ug" 34 -"CLSI 2016" "DISK" "B_PSTRL" "DOX" "M45 Table 13" "30ug" 23 -"CLSI 2016" "DISK" "B_PSTRL" "ERY" "M45 Table 13" "15ug" 27 24 -"CLSI 2016" "DISK" "B_PSTRL" "LVX" "M45 Table 13" "5ug" 28 -"CLSI 2016" "DISK" "B_PSTRL" "MFX" "M45 Table 13" "5ug" 28 -"CLSI 2016" "DISK" "B_PSTRL" "PEN" "M45 Table 13" "10 Units" 25 -"CLSI 2016" "DISK" "B_PSTRL" "SXT" "M45 Table 13" "1.25/23.75ug" 24 -"CLSI 2016" "DISK" "B_PSTRL" "TCY" "M45 Table 13" "30ug" 23 -"CLSI 2016" "DISK" "B_PSTRL_MLTC" "ENR" "Vet Table" "5ug" 21 16 -"CLSI 2016" "DISK" "B_PSTRL_MLTC" "SPT" "100ug" 14 10 -"CLSI 2016" "DISK" "B_PSTRL_MLTC" "TIL" "Vet Table" "15ug" 11 10 -"CLSI 2016" "DISK" "Extraintestinal" "B_SLMNL" "CIP" "Table 2A" "5ug" 31 20 -"CLSI 2016" "DISK" "B_SLMNL" "CIP" "Table 2A" "5ug" 31 20 -"CLSI 2016" "DISK" "B_STNTR_MLTP" "CAZ" "Table 2B-4" "30ug" -"CLSI 2016" "DISK" "B_STNTR_MLTP" "CHL" "Table 2B-4" "30ug" -"CLSI 2016" "DISK" "B_STNTR_MLTP" "LVX" "Table 2B-4" "75ug" 17 13 -"CLSI 2016" "DISK" "B_STNTR_MLTP" "MNO" "Table 2B-4" "30ug" 19 14 -"CLSI 2016" "DISK" "B_STNTR_MLTP" "SXT" "Table 2B-4" "30ug" 16 10 -"CLSI 2016" "DISK" "B_STNTR_MLTP" "TCC" "Table 2B-4" "30ug" -"CLSI 2016" "DISK" "B_STPHY" "AMC" "Table 2C" "20ug" 20 19 -"CLSI 2016" "DISK" "B_STPHY" "AMK" "Table 2C" "30ug" 17 14 -"CLSI 2016" "DISK" "B_STPHY" "AMP" "Table 2C" "10ug" 29 28 -"CLSI 2016" "DISK" "B_STPHY" "AZM" "Table 2C" "15ug" 18 13 -"CLSI 2016" "DISK" "B_STPHY" "CAZ" "Table 2C" "30ug" 18 14 -"CLSI 2016" "DISK" "B_STPHY" "CDR" "Table 2C" "5ug" 20 16 -"CLSI 2016" "DISK" "B_STPHY" "CEC" "Table 2C" "30ug" 18 14 -"CLSI 2016" "DISK" "B_STPHY" "CEP" "Table 2C" "30ug" 18 14 -"CLSI 2016" "DISK" "B_STPHY" "CFP" "Table 2C" "75ug" 21 15 -"CLSI 2016" "DISK" "B_STPHY" "CHL" "Table 2C" "30ug" 18 12 -"CLSI 2016" "DISK" "B_STPHY" "CID" "Table 2C" "30ug" 18 14 -"CLSI 2016" "DISK" "B_STPHY" "CIP" "Table 2C" "5ug" 21 15 -"CLSI 2016" "DISK" "B_STPHY" "CLI" "Table 2C" "2ug" 21 14 -"CLSI 2016" "DISK" "B_STPHY" "CLR" "Table 2C" "15ug" 18 13 -"CLSI 2016" "DISK" "B_STPHY" "CMZ" "Table 2C" "30ug" 16 12 -"CLSI 2016" "DISK" "B_STPHY" "CPD" "Table 2C" "10ug" 21 17 -"CLSI 2016" "DISK" "B_STPHY" "CPR" "Table 2C" "30ug" 18 14 -"CLSI 2016" "DISK" "B_STPHY" "CRO" "Table 2C" "30ug" 21 13 -"CLSI 2016" "DISK" "B_STPHY" "CTT" "Table 2C" "30ug" 16 12 -"CLSI 2016" "DISK" "B_STPHY" "CTX" "Table 2C" "30ug" 23 14 -"CLSI 2016" "DISK" "B_STPHY" "CXA" "Table 2C" "30ug" 23 14 -"CLSI 2016" "DISK" "Oral" "B_STPHY" "CXM" "Table 2C" "30ug" 23 14 -"CLSI 2016" "DISK" "Parenteral" "B_STPHY" "CXM" "Table 2C" "30ug" 18 14 -"CLSI 2016" "DISK" "Oral" "B_STPHY" "CXM" "Table 2C" "30ug" 23 14 -"CLSI 2016" "DISK" "B_STPHY" "CZO" "Table 2C" "30ug" 18 14 -"CLSI 2016" "DISK" "B_STPHY" "CZX" "Table 2C" "30ug" 20 14 -"CLSI 2016" "DISK" "B_STPHY" "DAP" "Table 2C" "30ug" -"CLSI 2016" "DISK" "B_STPHY" "DIR" "Table 2C" "15ug" 19 15 -"CLSI 2016" "DISK" "B_STPHY" "DOR" "Table 2C" "10ug" 30 -"CLSI 2016" "DISK" "B_STPHY" "DOX" "Table 2C" "30ug" 16 12 -"CLSI 2016" "DISK" "B_STPHY" "ENX" "Table 2C" "10ug" 18 14 -"CLSI 2016" "DISK" "B_STPHY" "ERY" "Table 2C" "15ug" 23 13 -"CLSI 2016" "DISK" "B_STPHY" "ETP" "Table 2C" "10ug" 19 15 -"CLSI 2016" "DISK" "B_STPHY" "FEP" "Table 2C" "30ug" 18 14 -"CLSI 2016" "DISK" "B_STPHY" "FLE" "Table 2C" "5ug" 19 15 -"CLSI 2016" "DISK" "B_STPHY" "FOX" "Table 2C" "30ug" 25 24 -"CLSI 2016" "DISK" "B_STPHY" "GAT" "Table 2C" "10ug" 23 19 -"CLSI 2016" "DISK" "B_STPHY" "GEN" "Table 2C" "10ug" 15 12 -"CLSI 2016" "DISK" "B_STPHY" "GRX" "Table 2C" "5ug" 18 14 -"CLSI 2016" "DISK" "B_STPHY" "IPM" "Table 2C" "10ug" 16 13 -"CLSI 2016" "DISK" "B_STPHY" "KAN" "Table 2C" "30ug" 18 13 -"CLSI 2016" "DISK" "B_STPHY" "LNZ" "Table 2C" "30ug" 21 20 -"CLSI 2016" "DISK" "B_STPHY" "LOM" "Table 2C" "10ug" 22 18 -"CLSI 2016" "DISK" "B_STPHY" "LOR" "Table 2C" "30ug" 18 14 -"CLSI 2016" "DISK" "B_STPHY" "LTM" "Table 2C" "30ug" 23 14 -"CLSI 2016" "DISK" "B_STPHY" "LVX" "Table 2C" "10ug" 19 15 -"CLSI 2016" "DISK" "B_STPHY" "MAN" "Table 2C" "30ug" 18 14 -"CLSI 2016" "DISK" "B_STPHY" "MEM" "Table 2C" "10ug" 15 13 -"CLSI 2016" "DISK" "B_STPHY" "MET" "Table 2C" "5ug" 14 9 -"CLSI 2016" "DISK" "B_STPHY" "MFX" "Table 2C" "5ug" 24 20 -"CLSI 2016" "DISK" "B_STPHY" "MNO" "Table 2C" "30ug" 19 14 -"CLSI 2016" "DISK" "B_STPHY" "NAF" "Table 2C" "1ug" 13 10 -"CLSI 2016" "DISK" "B_STPHY" "NET" "Table 2C" "30ug" 15 12 -"CLSI 2016" "DISK" "B_STPHY" "NIT" "Table 2C" "300ug" 17 14 -"CLSI 2016" "DISK" "B_STPHY" "NOR" "Table 2C" "10ug" 17 12 -"CLSI 2016" "DISK" "B_STPHY" "OFX" "Table 2C" "5ug" 18 14 -"CLSI 2016" "DISK" "B_STPHY" "OXA" "Table 2C" "1ug" 13 10 -"CLSI 2016" "DISK" "B_STPHY" "PEN" "Table 2C" "10ug" 29 28 -"CLSI 2016" "DISK" "B_STPHY" "QDA" "Table 2C" "15ug" 19 15 -"CLSI 2016" "DISK" "B_STPHY" "RIF" "Table 2C" "5ug" 20 16 -"CLSI 2016" "DISK" "B_STPHY" "SAM" "Table 2C" "10ug" 15 11 -"CLSI 2016" "DISK" "B_STPHY" "SMX" "Table 2C" "200ug" 17 12 -"CLSI 2016" "DISK" "B_STPHY" "SOX" "Table 2C" "200ug" 17 12 -"CLSI 2016" "DISK" "B_STPHY" "SPX" "Table 2C" "5ug" 19 15 -"CLSI 2016" "DISK" "B_STPHY" "SSS" "Table 2C" "200ug" 17 12 -"CLSI 2016" "DISK" "B_STPHY" "SXT" "Table 2C" "1.25/23.75ug" 16 10 -"CLSI 2016" "DISK" "B_STPHY" "TCC" "Table 2C" "75/10ug" 23 22 -"CLSI 2016" "DISK" "B_STPHY" "TCY" "Table 2C" "30ug" 19 14 -"CLSI 2016" "DISK" "B_STPHY" "TEC" "Table 2C" "30ug" 14 10 -"CLSI 2016" "DISK" "B_STPHY" "TLT" "Table 2C" "15ug" 22 18 -"CLSI 2016" "DISK" "B_STPHY" "TMP" "Table 2C" "5ug" 16 10 -"CLSI 2016" "DISK" "B_STPHY" "TOB" "Table 2C" "10ug" 15 12 -"CLSI 2016" "DISK" "B_STPHY" "TZP" "Table 2C" "100/10ug" 18 17 -"CLSI 2016" "DISK" "B_STPHY" "VAN" "Table 2C" "30ug" -"CLSI 2016" "DISK" "B_STPHY_AURS" "CPT" "Table 2C" "30ug" 24 20 -"CLSI 2016" "DISK" "B_STPHY_AURS" "FOX" "Table 2C" "30ug" 22 21 -"CLSI 2016" "DISK" "B_STPHY_AURS" "OXA" "Table 2C" "1ug" 13 10 -"CLSI 2016" "DISK" "B_STPHY_LGDN" "FOX" "Table 2C" "30ug" 22 21 -"CLSI 2016" "DISK" "B_STPHY_LGDN" "OXA" "Table 2C" "1ug" -"CLSI 2016" "DISK" "B_STRPT" "AMC" "Table 2H-1" "20ug" -"CLSI 2016" "DISK" "B_STRPT" "AMP" "Table 2H-1" "10ug" 24 -"CLSI 2016" "DISK" "B_STRPT" "AMX" "Table 2H-1" "30ug" -"CLSI 2016" "DISK" "B_STRPT" "AZM" "Table 2H-1" "15ug" 18 13 -"CLSI 2016" "DISK" "B_STRPT" "CHL" "Table 2H-1" "30ug" 21 17 -"CLSI 2016" "DISK" "B_STRPT" "CLI" "Table 2H-1" "2ug" 19 15 -"CLSI 2016" "DISK" "B_STRPT" "CLR" "Table 2H-1" "15ug" 21 16 -"CLSI 2016" "DISK" "B_STRPT" "CPT" "Table 2H-1" "30ug" 26 -"CLSI 2016" "DISK" "B_STRPT" "CRO" "Table 2H-1" "30ug" 24 -"CLSI 2016" "DISK" "B_STRPT" "CTX" "Table 2H-1" "30ug" 24 -"CLSI 2016" "DISK" "B_STRPT" "CXM" "Table 2H-1" "30ug" -"CLSI 2016" "DISK" "B_STRPT" "DAP" "Table 2H-1" "30ug" 16 -"CLSI 2016" "DISK" "B_STRPT" "DIR" "Table 2H-1" "15ug" 18 13 -"CLSI 2016" "DISK" "B_STRPT" "DOR" "Table 2H-1" "10ug" -"CLSI 2016" "DISK" "B_STRPT" "ERY" "Table 2H-1" "15ug" 21 15 -"CLSI 2016" "DISK" "B_STRPT" "ETP" "Table 2H-1" "10ug" -"CLSI 2016" "DISK" "B_STRPT" "FEP" "Table 2H-1" "30ug" 24 -"CLSI 2016" "DISK" "B_STRPT" "GAT" "Table 2H-1" "5ug" 21 17 -"CLSI 2016" "DISK" "B_STRPT" "GEM" "Table 2H-1" "5ug" -"CLSI 2016" "DISK" "B_STRPT" "GRX" "Table 2H-1" "5ug" 19 15 -"CLSI 2016" "DISK" "B_STRPT" "IPM" "Table 2H-1" "10ug" -"CLSI 2016" "DISK" "B_STRPT" "LNZ" "Table 2H-1" "30ug" 21 -"CLSI 2016" "DISK" "B_STRPT" "LVX" "Table 2H-1" "5ug" 17 13 -"CLSI 2016" "DISK" "B_STRPT" "MEM" "Table 2H-1" "10ug" -"CLSI 2016" "DISK" "B_STRPT" "MFX" "Table 2H-1" "5ug" -"CLSI 2016" "DISK" "B_STRPT" "OFX" "Table 2H-1" "5ug" 16 12 -"CLSI 2016" "DISK" "B_STRPT" "PEN" "Table 2H-1" "10units" 24 -"CLSI 2016" "DISK" "B_STRPT" "QDA" "Table 2H-1" "15ug" 19 15 -"CLSI 2016" "DISK" "B_STRPT" "RIF" "Table 2H-1" "5ug" -"CLSI 2016" "DISK" "B_STRPT" "SPX" "Table 2H-1" "5ug" -"CLSI 2016" "DISK" "B_STRPT" "SXT" "Table 2H-1" "1.25/23.75ug" -"CLSI 2016" "DISK" "B_STRPT" "TCY" "Table 2H-1" "30ug" 23 18 -"CLSI 2016" "DISK" "B_STRPT" "TVA" "Table 2H-1" "10ug" 19 15 -"CLSI 2016" "DISK" "B_STRPT" "VAN" "Table 2H-1" "30ug" 17 -"CLSI 2016" "DISK" "B_STRPT_PNMN" "AMC" "Table 2G" "10/10ug" -"CLSI 2016" "DISK" "B_STRPT_PNMN" "AMP" "Table 2G" "10ug" -"CLSI 2016" "DISK" "B_STRPT_PNMN" "AMX" "Table 2G" "30ug" -"CLSI 2016" "DISK" "B_STRPT_PNMN" "AZM" "Table 2G" "15ug" 18 13 -"CLSI 2016" "DISK" "B_STRPT_PNMN" "CDR" "Table 2G" "5ug" -"CLSI 2016" "DISK" "B_STRPT_PNMN" "CEC" "Table 2G" "30ug" -"CLSI 2016" "DISK" "B_STRPT_PNMN" "CHL" "Table 2G" "30ug" 21 20 -"CLSI 2016" "DISK" "B_STRPT_PNMN" "CIP" "Table 2G" "5ug" -"CLSI 2016" "DISK" "B_STRPT_PNMN" "CLI" "Table 2G" "2ug" 19 15 -"CLSI 2016" "DISK" "B_STRPT_PNMN" "CLR" "Table 2G" "15ug" 21 16 -"CLSI 2016" "DISK" "B_STRPT_PNMN" "CPD" "Table 2G" "10ug" -"CLSI 2016" "DISK" "B_STRPT_PNMN" "CPR" "Table 2G" "30ug" -"CLSI 2016" "DISK" "B_STRPT_PNMN" "CPT" "Table 2G" "30ug" -"CLSI 2016" "DISK" "B_STRPT_PNMN" "CRO" "Table 2G" "30ug" -"CLSI 2016" "DISK" "B_STRPT_PNMN" "CTX" "Table 2G" "30ug" -"CLSI 2016" "DISK" "B_STRPT_PNMN" "CXA" "Table 2G" "30ug" -"CLSI 2016" "DISK" "Oral" "B_STRPT_PNMN" "CXM" "Table 2G" "30ug" -"CLSI 2016" "DISK" "B_STRPT_PNMN" "CXM" "Table 2G" "30ug" -"CLSI 2016" "DISK" "B_STRPT_PNMN" "DAP" "Table 2G" "30ug" -"CLSI 2016" "DISK" "B_STRPT_PNMN" "DIR" "Table 2G" "15ug" 18 13 -"CLSI 2016" "DISK" "B_STRPT_PNMN" "DOR" "Table 2G" "10ug" -"CLSI 2016" "DISK" "B_STRPT_PNMN" "DOX" "Table 2G" "30ug" 28 24 -"CLSI 2016" "DISK" "B_STRPT_PNMN" "ERY" "Table 2G" "15ug" 21 15 -"CLSI 2016" "DISK" "B_STRPT_PNMN" "ETP" "Table 2G" "10ug" -"CLSI 2016" "DISK" "B_STRPT_PNMN" "FEP" "Table 2G" "30ug" -"CLSI 2016" "DISK" "B_STRPT_PNMN" "GAT" "Table 2G" "5ug" 21 17 -"CLSI 2016" "DISK" "B_STRPT_PNMN" "GEM" "Table 2G" "5ug" 23 19 -"CLSI 2016" "DISK" "B_STRPT_PNMN" "GRX" "Table 2G" "5ug" 19 15 -"CLSI 2016" "DISK" "B_STRPT_PNMN" "IPM" "Table 2G" "10ug" -"CLSI 2016" "DISK" "B_STRPT_PNMN" "LNZ" "Table 2G" "30ug" 21 -"CLSI 2016" "DISK" "B_STRPT_PNMN" "LOR" "Table 2G" "30ug" -"CLSI 2016" "DISK" "B_STRPT_PNMN" "LVX" "Table 2G" "5ug" 17 13 -"CLSI 2016" "DISK" "B_STRPT_PNMN" "MEM" "Table 2G" "10ug" -"CLSI 2016" "DISK" "B_STRPT_PNMN" "MFX" "Table 2G" "5ug" 18 14 -"CLSI 2016" "DISK" "B_STRPT_PNMN" "NOR" "Table 2G" "5ug" -"CLSI 2016" "DISK" "B_STRPT_PNMN" "OFX" "Table 2G" "5ug" 16 12 -"CLSI 2016" "DISK" "B_STRPT_PNMN" "OXA" "Table 2G" "1ug" 20 -"CLSI 2016" "DISK" "B_STRPT_PNMN" "PEN" "Table 2G" "10units" -"CLSI 2016" "DISK" "B_STRPT_PNMN" "PNV" "Table 2G" "10ug" -"CLSI 2016" "DISK" "B_STRPT_PNMN" "QDA" "Table 2G" "15ug" 19 15 -"CLSI 2016" "DISK" "B_STRPT_PNMN" "RIF" "Table 2G" "5ug" 19 16 -"CLSI 2016" "DISK" "B_STRPT_PNMN" "SAM" "Table 2G" "10/10ug" -"CLSI 2016" "DISK" "B_STRPT_PNMN" "SPX" "Table 2G" "5ug" 19 15 -"CLSI 2016" "DISK" "B_STRPT_PNMN" "SXT" "Table 2G" "1.25/23.75ug" 19 15 -"CLSI 2016" "DISK" "B_STRPT_PNMN" "TCY" "Table 2G" "30ug" 28 24 -"CLSI 2016" "DISK" "B_STRPT_PNMN" "TLT" "Table 2G" "15ug" 19 15 -"CLSI 2016" "DISK" "B_STRPT_PNMN" "TVA" "Table 2G" "10ug" 19 15 -"CLSI 2016" "DISK" "B_STRPT_PNMN" "VAN" "Table 2G" "30ug" 17 -"CLSI 2016" "DISK" "B_STRPT_VIRI" "AMP" "Table 2H-2" "10ug" -"CLSI 2016" "DISK" "B_STRPT_VIRI" "AZM" "Table 2H-2" "15ug" 18 13 -"CLSI 2016" "DISK" "B_STRPT_VIRI" "CHL" "Table 2H-2" "30ug" 21 17 -"CLSI 2016" "DISK" "B_STRPT_VIRI" "CLI" "Table 2H-2" "2ug" 19 15 -"CLSI 2016" "DISK" "B_STRPT_VIRI" "CLR" "Table 2H-2" "15ug" 21 16 -"CLSI 2016" "DISK" "B_STRPT_VIRI" "CRO" "Table 2H-2" "30ug" 27 24 -"CLSI 2016" "DISK" "B_STRPT_VIRI" "CTX" "Table 2H-2" "30ug" 28 25 -"CLSI 2016" "DISK" "B_STRPT_VIRI" "DAP" "Table 2H-2" "30ug" -"CLSI 2016" "DISK" "B_STRPT_VIRI" "DIR" "Table 2H-2" "15ug" 18 13 -"CLSI 2016" "DISK" "B_STRPT_VIRI" "DOR" "Table 2H-2" "10ug" -"CLSI 2016" "DISK" "B_STRPT_VIRI" "ERY" "Table 2H-2" "15ug" 21 15 -"CLSI 2016" "DISK" "B_STRPT_VIRI" "ETP" "Table 2H-2" "10ug" -"CLSI 2016" "DISK" "B_STRPT_VIRI" "FEP" "Table 2H-2" "30ug" 24 21 -"CLSI 2016" "DISK" "B_STRPT_VIRI" "GAT" "Table 2H-2" "5ug" 21 17 -"CLSI 2016" "DISK" "B_STRPT_VIRI" "GRX" "Table 2H-2" "5ug" 19 15 -"CLSI 2016" "DISK" "B_STRPT_VIRI" "LNZ" "Table 2H-2" "30ug" 21 -"CLSI 2016" "DISK" "B_STRPT_VIRI" "LVX" "Table 2H-2" "5ug" 17 13 -"CLSI 2016" "DISK" "B_STRPT_VIRI" "MEM" "Table 2H-2" "10ug" -"CLSI 2016" "DISK" "B_STRPT_VIRI" "OFX" "Table 2H-2" "5ug" 16 12 -"CLSI 2016" "DISK" "B_STRPT_VIRI" "PEN" "Table 2H-2" "10units" -"CLSI 2016" "DISK" "B_STRPT_VIRI" "QDA" "Table 2H-2" "15ug" 19 15 -"CLSI 2016" "DISK" "B_STRPT_VIRI" "TCY" "Table 2H-2" "30ug" 23 18 -"CLSI 2016" "DISK" "B_STRPT_VIRI" "TVA" "Table 2H-2" "10ug" 19 15 -"CLSI 2016" "DISK" "B_STRPT_VIRI" "VAN" "Table 2H-2" "30ug" 17 -"CLSI 2015" "DISK" "Urine" "B_[FAM]_ENTRBCTR" "CZO" "Table 2A" 15 14 -"CLSI 2015" "DISK" "B_ACNTB" "AMK" "Table 2B-2" "30ug" 17 14 -"CLSI 2015" "DISK" "B_ACNTB" "CAZ" "Table 2B-2" "30ug" 18 14 -"CLSI 2015" "DISK" "B_ACNTB" "CIP" "Table 2B-2" "5ug" 21 15 -"CLSI 2015" "DISK" "B_ACNTB" "COL" "Table 2B-2" "10ug" -"CLSI 2015" "DISK" "B_ACNTB" "CRO" "Table 2B-2" "30ug" 21 13 -"CLSI 2015" "DISK" "B_ACNTB" "CTX" "Table 2B-2" "30ug" 23 14 -"CLSI 2015" "DISK" "B_ACNTB" "DOR" "Table 2B-2" 18 14 -"CLSI 2015" "DISK" "B_ACNTB" "DOX" "Table 2B-2" "30ug" 13 9 -"CLSI 2015" "DISK" "B_ACNTB" "ETP" "Table 2B-2" "10ug" -"CLSI 2015" "DISK" "B_ACNTB" "FEP" "Table 2B-2" "30ug" 18 14 -"CLSI 2015" "DISK" "B_ACNTB" "GAT" "Table 2B-2" "5ug" 18 14 -"CLSI 2015" "DISK" "B_ACNTB" "GEN" "Table 2B-2" "10ug" 15 12 -"CLSI 2015" "DISK" "B_ACNTB" "IPM" "Table 2B-2" "10ug" 22 18 -"CLSI 2015" "DISK" "B_ACNTB" "LVX" "Table 2B-2" "5ug" 17 13 -"CLSI 2015" "DISK" "B_ACNTB" "MEM" "Table 2B-2" "10ug" 18 14 -"CLSI 2015" "DISK" "B_ACNTB" "MEZ" "Table 2B-2" "75ug" 21 17 -"CLSI 2015" "DISK" "B_ACNTB" "MNO" "Table 2B-2" "30ug" 16 12 -"CLSI 2015" "DISK" "B_ACNTB" "NET" "Table 2B-2" "30ug" -"CLSI 2015" "DISK" "B_ACNTB" "PIP" "Table 2B-2" "100ug" 21 17 -"CLSI 2015" "DISK" "B_ACNTB" "PLB" "Table 2B-2" "300ug" -"CLSI 2015" "DISK" "B_ACNTB" "SAM" "Table 2B-2" "10ug" 15 11 -"CLSI 2015" "DISK" "B_ACNTB" "SXT" "Table 2B-2" "1.25/23.75ug" 16 10 -"CLSI 2015" "DISK" "B_ACNTB" "TCC" "Table 2B-2" "75ug" 20 14 -"CLSI 2015" "DISK" "B_ACNTB" "TCY" "Table 2B-2" "30ug" 15 11 -"CLSI 2015" "DISK" "B_ACNTB" "TIC" "Table 2B-2" "75ug" 20 14 -"CLSI 2015" "DISK" "B_ACNTB" "TOB" "Table 2B-2" "10ug" 15 12 -"CLSI 2015" "DISK" "B_ACNTB" "TZP" "Table 2B-2" "100ug" 21 17 -"CLSI 2015" "DISK" "B_ACTNB_PLRP" "TIL" "Vet Table" "15ug" 11 10 -"CLSI 2015" "DISK" "B_AERMN" "AMC" "M45 Table 2" "20ug" 18 13 -"CLSI 2015" "DISK" "B_AERMN" "AMK" "M45 Table 2" "30ug" 17 14 -"CLSI 2015" "DISK" "B_AERMN" "ATM" "M45 Table 2" "30ug" 21 17 -"CLSI 2015" "DISK" "B_AERMN" "CAZ" "M45 Table 2" "30ug" 21 17 -"CLSI 2015" "DISK" "B_AERMN" "CHL" "M45 Table 2" "30ug" 18 12 -"CLSI 2015" "DISK" "B_AERMN" "CIP" "M45 Table 2" "5ug" 21 15 -"CLSI 2015" "DISK" "B_AERMN" "CRO" "M45 Table 2" "30ug" 23 19 -"CLSI 2015" "DISK" "B_AERMN" "CTX" "M45 Table 2" "30ug" 26 22 -"CLSI 2015" "DISK" "B_AERMN" "CXM" "M45 Table 2" "30ug" 18 14 -"CLSI 2015" "DISK" "B_AERMN" "ETP" "M45 Table 2" "10ug" 19 15 -"CLSI 2015" "DISK" "B_AERMN" "FEP" "M45 Table 2" "30ug" 18 14 -"CLSI 2015" "DISK" "B_AERMN" "FOX" "M45 Table 2" "30ug" 18 14 -"CLSI 2015" "DISK" "B_AERMN" "GEN" "M45 Table 2" "10ug" 15 12 -"CLSI 2015" "DISK" "B_AERMN" "IPM" "M45 Table 2" "10ug" 16 13 -"CLSI 2015" "DISK" "B_AERMN" "LVX" "M45 Table 2" "5ug" 17 13 -"CLSI 2015" "DISK" "B_AERMN" "MEM" "M45 Table 2" "10ug" 16 13 -"CLSI 2015" "DISK" "B_AERMN" "SAM" "M45 Table 2" "10ug" 15 11 -"CLSI 2015" "DISK" "B_AERMN" "SXT" "M45 Table 2" "1.25/23.75ug" 16 10 -"CLSI 2015" "DISK" "B_AERMN" "TCY" "M45 Table 2" "30ug" 15 11 -"CLSI 2015" "DISK" "B_AERMN" "TZP" "M45 Table 2" "100ug" 21 17 -"CLSI 2015" "DISK" "B_BRKHL_CEPC" "CAZ" "Table 2B-3" "30ug" 21 17 -"CLSI 2015" "DISK" "B_BRKHL_CEPC" "CHL" "Table 2B-3" "30ug" -"CLSI 2015" "DISK" "B_BRKHL_CEPC" "LVX" "Table 2B-3" "5ug" -"CLSI 2015" "DISK" "B_BRKHL_CEPC" "MEM" "Table 2B-3" "10ug" 20 15 -"CLSI 2015" "DISK" "B_BRKHL_CEPC" "MNO" "Table 2B-3" "30ug" 19 14 -"CLSI 2015" "DISK" "B_BRKHL_CEPC" "SXT" "Table 2B-3" "1.25/23.75ug" 16 10 -"CLSI 2015" "DISK" "B_BRKHL_CEPC" "TCC" "Table 2B-3" "75ug" -"CLSI 2015" "DISK" "B_ENTRC" "AMP" "Table 2D" "10ug" 17 16 -"CLSI 2015" "DISK" "B_ENTRC" "CHL" "Table 2D" "30ug" 18 12 -"CLSI 2015" "DISK" "B_ENTRC" "CIP" "Table 2D" "5ug" 21 15 -"CLSI 2015" "DISK" "B_ENTRC" "DAP" "Table 2D" "30ug" -"CLSI 2015" "DISK" "B_ENTRC" "DOX" "Table 2D" "30ug" 16 12 -"CLSI 2015" "DISK" "B_ENTRC" "ERY" "Table 2D" "15ug" 23 13 -"CLSI 2015" "DISK" "B_ENTRC" "FOS" "Table 2D" "200ug" 16 12 -"CLSI 2015" "DISK" "B_ENTRC" "GAT" "Table 2D" "5ug" 18 14 -"CLSI 2015" "DISK" "B_ENTRC" "GEH" "Table 2D" "120ug" 10 6 -"CLSI 2015" "DISK" "B_ENTRC" "LNZ" "Table 2D" "30ug" 23 20 -"CLSI 2015" "DISK" "B_ENTRC" "LVX" "Table 2D" "5ug" 17 13 -"CLSI 2015" "DISK" "B_ENTRC" "MNO" "Table 2D" "30ug" 19 14 -"CLSI 2015" "DISK" "B_ENTRC" "NIT" "Table 2D" "300ug" 17 14 -"CLSI 2015" "DISK" "B_ENTRC" "NOR" "Table 2D" "10ug" 17 12 -"CLSI 2015" "DISK" "B_ENTRC" "PEN" "Table 2D" "10units" 15 14 -"CLSI 2015" "DISK" "B_ENTRC" "QDA" "Table 2D" "15ug" 19 15 -"CLSI 2015" "DISK" "B_ENTRC" "RIF" "Table 2D" "5ug" 20 16 -"CLSI 2015" "DISK" "B_ENTRC" "STH" "Table 2D" "300ug" 10 6 -"CLSI 2015" "DISK" "B_ENTRC" "TCY" "Table 2D" "30ug" 19 14 -"CLSI 2015" "DISK" "B_ENTRC" "TEC" "Table 2D" "30ug" 14 10 -"CLSI 2015" "DISK" "B_ENTRC" "VAN" "Table 2D" "30ug" 17 14 -"CLSI 2015" "DISK" "B_HMPHL" "AMC" "Table 2E" "20/10ug" 20 19 -"CLSI 2015" "DISK" "B_HMPHL" "AMP" "Table 2E" "10ug" 22 18 -"CLSI 2015" "DISK" "B_HMPHL" "ATM" "Table 2E" "30ug" 26 -"CLSI 2015" "DISK" "B_HMPHL" "AZM" "Table 2E" "15ug" 12 -"CLSI 2015" "DISK" "B_HMPHL" "CAT" "Table 2E" "10ug" 18 14 -"CLSI 2015" "DISK" "B_HMPHL" "CAZ" "Table 2E" "30ug" 26 -"CLSI 2015" "DISK" "B_HMPHL" "CDR" "Table 2E" "5ug" 20 -"CLSI 2015" "DISK" "B_HMPHL" "CEC" "Table 2E" "30ug" 20 16 -"CLSI 2015" "DISK" "B_HMPHL" "CFM" "Table 2E" "5ug" 21 -"CLSI 2015" "DISK" "B_HMPHL" "CHL" "Table 2E" "30ug" 29 25 -"CLSI 2015" "DISK" "B_HMPHL" "CID" "Table 2E" "30ug" 20 16 -"CLSI 2015" "DISK" "B_HMPHL" "CIP" "Table 2E" "5ug" 21 -"CLSI 2015" "DISK" "B_HMPHL" "CLR" "Table 2E" "15ug" 13 10 -"CLSI 2015" "DISK" "B_HMPHL" "CPD" "Table 2E" "10ug" 21 -"CLSI 2015" "DISK" "B_HMPHL" "CPR" "Table 2E" "30ug" 18 14 -"CLSI 2015" "DISK" "B_HMPHL" "CRO" "Table 2E" "30ug" 26 -"CLSI 2015" "DISK" "B_HMPHL" "CTB" "Table 2E" "30ug" 28 -"CLSI 2015" "DISK" "B_HMPHL" "CTX" "Table 2E" "30ug" 26 -"CLSI 2015" "DISK" "B_HMPHL" "CXA" "Table 2E" "30ug" 20 16 -"CLSI 2015" "DISK" "Oral" "B_HMPHL" "CXM" "Table 2E" "30ug" 20 16 -"CLSI 2015" "DISK" "B_HMPHL" "CXM" "Table 2E" "30ug" 20 16 -"CLSI 2015" "DISK" "B_HMPHL" "CZX" "Table 2E" "30ug" 26 -"CLSI 2015" "DISK" "B_HMPHL" "DOR" "Table 2E" "10ug" 16 -"CLSI 2015" "DISK" "B_HMPHL" "ETP" "Table 2E" "10ug" 19 -"CLSI 2015" "DISK" "B_HMPHL" "FEP" "Table 2E" "30ug" 26 -"CLSI 2015" "DISK" "B_HMPHL" "FLE" "Table 2E" "5ug" 19 -"CLSI 2015" "DISK" "B_HMPHL" "GAT" "Table 2E" "5ug" 18 -"CLSI 2015" "DISK" "B_HMPHL" "GEM" "Table 2E" "5ug" 18 -"CLSI 2015" "DISK" "B_HMPHL" "GRX" "Table 2E" "5ug" 24 -"CLSI 2015" "DISK" "B_HMPHL" "IPM" "Table 2E" "10ug" 16 -"CLSI 2015" "DISK" "B_HMPHL" "LOM" "Table 2E" "10ug" 22 -"CLSI 2015" "DISK" "B_HMPHL" "LOR" "Table 2E" "30ug" 19 15 -"CLSI 2015" "DISK" "B_HMPHL" "LVX" "Table 2E" "5ug" 17 -"CLSI 2015" "DISK" "B_HMPHL" "MAN" "Table 2E" "30ug" -"CLSI 2015" "DISK" "B_HMPHL" "MEM" "Table 2E" "10ug" 20 -"CLSI 2015" "DISK" "B_HMPHL" "MFX" "Table 2E" "5ug" 18 -"CLSI 2015" "DISK" "B_HMPHL" "OFX" "Table 2E" "5ug" 16 -"CLSI 2015" "DISK" "B_HMPHL" "RIF" "Table 2E" "5ug" 20 16 -"CLSI 2015" "DISK" "B_HMPHL" "SAM" "Table 2E" "10/10ug" 20 19 -"CLSI 2015" "DISK" "B_HMPHL" "SPX" "Table 2E" "5ug" -"CLSI 2015" "DISK" "B_HMPHL" "SXT" "Table 2E" "1.25/23.75ug" 15 10 -"CLSI 2015" "DISK" "B_HMPHL" "TCY" "Table 2E" "30ug" 29 25 -"CLSI 2015" "DISK" "B_HMPHL" "TLT" "Table 2E" "15ug" 15 11 -"CLSI 2015" "DISK" "B_HMPHL" "TVA" "Table 2E" "10ug" 22 -"CLSI 2015" "DISK" "B_HMPHL" "TZP" "Table 2E" "100ug" 21 -"CLSI 2015" "DISK" "B_HMPHL_INFL" "CPT" "Table 2E" "30ug" 30 -"CLSI 2015" "DISK" "B_HSTPH_SOMN" "ENR" "Vet Table" "5ug" 21 16 -"CLSI 2015" "DISK" "B_HSTPH_SOMN" "SPT" "Vet Table" "100ug" 14 10 -"CLSI 2015" "DISK" "B_LISTR_MNCY" "AMP" "M45 Table 11" "10ug" -"CLSI 2015" "DISK" "B_LISTR_MNCY" "PEN" "M45 Table 11" "10units" -"CLSI 2015" "DISK" "B_MRXLL_CTRR" "AMC" "M45 Table 12" "20ug" 24 23 -"CLSI 2015" "DISK" "B_MRXLL_CTRR" "AZM" "M45 Table 12" "15ug" 26 -"CLSI 2015" "DISK" "B_MRXLL_CTRR" "CLR" "M45 Table 12" "15ug" 24 -"CLSI 2015" "DISK" "B_MRXLL_CTRR" "ERY" "M45 Table 12" "15ug" 21 -"CLSI 2015" "DISK" "B_MRXLL_CTRR" "SXT" "M45 Table 12" "1.25/23.75ug" 13 10 -"CLSI 2015" "DISK" "B_MRXLL_CTRR" "TCY" "M45 Table 12" "30ug" 29 24 -"CLSI 2015" "DISK" "B_NESSR_GNRR" "CAT" "Table 2F" "10ug" 29 -"CLSI 2015" "DISK" "B_NESSR_GNRR" "CAZ" "Table 2F" "30ug" 31 -"CLSI 2015" "DISK" "B_NESSR_GNRR" "CFM" "Table 2F" "5ug" 31 -"CLSI 2015" "DISK" "B_NESSR_GNRR" "CIP" "Table 2F" "5ug" 41 27 -"CLSI 2015" "DISK" "B_NESSR_GNRR" "CMZ" "Table 2F" "30ug" 33 27 -"CLSI 2015" "DISK" "B_NESSR_GNRR" "CPD" "Table 2F" "10ug" 29 -"CLSI 2015" "DISK" "B_NESSR_GNRR" "CRO" "Table 2F" "30ug" 35 -"CLSI 2015" "DISK" "B_NESSR_GNRR" "CTT" "Table 2F" "30ug" 26 19 -"CLSI 2015" "DISK" "B_NESSR_GNRR" "CTX" "Table 2F" "30ug" 31 -"CLSI 2015" "DISK" "B_NESSR_GNRR" "CXM" "Table 2F" "30ug" 31 25 -"CLSI 2015" "DISK" "B_NESSR_GNRR" "CZX" "Table 2F" "30ug" 38 -"CLSI 2015" "DISK" "B_NESSR_GNRR" "ENX" "Table 2F" "10ug" 36 31 -"CLSI 2015" "DISK" "B_NESSR_GNRR" "FEP" "Table 2F" "30ug" 31 -"CLSI 2015" "DISK" "B_NESSR_GNRR" "FLE" "Table 2F" "5ug" 35 28 -"CLSI 2015" "DISK" "B_NESSR_GNRR" "FOX" "Table 2F" "30ug" 28 23 -"CLSI 2015" "DISK" "B_NESSR_GNRR" "GAT" "Table 2F" "5ug" 38 33 -"CLSI 2015" "DISK" "B_NESSR_GNRR" "GRX" "Table 2F" "5ug" 37 27 -"CLSI 2015" "DISK" "B_NESSR_GNRR" "LOM" "Table 2F" "10ug" 38 26 -"CLSI 2015" "DISK" "B_NESSR_GNRR" "OFX" "Table 2F" "5ug" 31 24 -"CLSI 2015" "DISK" "B_NESSR_GNRR" "PEN" "Table 2F" "10units" 47 26 -"CLSI 2015" "DISK" "B_NESSR_GNRR" "SPT" "Table 2F" "100ug" 18 14 -"CLSI 2015" "DISK" "B_NESSR_GNRR" "TCY" "Table 2F" "30ug" 38 30 -"CLSI 2015" "DISK" "B_NESSR_GNRR" "TVA" "Table 2F" "10ug" 34 -"CLSI 2015" "DISK" "B_NESSR_MNNG" "AMP" "Table 2I" "10ug" -"CLSI 2015" "DISK" "B_NESSR_MNNG" "AZM" "Table 2I" "15ug" 20 -"CLSI 2015" "DISK" "B_NESSR_MNNG" "CHL" "Table 2I" "30ug" 26 19 -"CLSI 2015" "DISK" "B_NESSR_MNNG" "CIP" "Table 2I" "5ug" 35 32 -"CLSI 2015" "DISK" "B_NESSR_MNNG" "CRO" "Table 2I" "30ug" 34 -"CLSI 2015" "DISK" "B_NESSR_MNNG" "CTX" "Table 2I" "30ug" 34 -"CLSI 2015" "DISK" "B_NESSR_MNNG" "LVX" "Table 2I" "5ug" -"CLSI 2015" "DISK" "B_NESSR_MNNG" "MEM" "Table 2I" "10ug" 30 -"CLSI 2015" "DISK" "B_NESSR_MNNG" "MNO" "Table 2I" "30ug" 26 -"CLSI 2015" "DISK" "B_NESSR_MNNG" "NAL" "Table 2I" "30ug" 26 25 -"CLSI 2015" "DISK" "B_NESSR_MNNG" "PEN" "Table 2I" "10units" -"CLSI 2015" "DISK" "B_NESSR_MNNG" "RIF" "Table 2I" "5ug" 25 19 -"CLSI 2015" "DISK" "B_NESSR_MNNG" "SMX" "Table 2I" "200-300ug" -"CLSI 2015" "DISK" "B_NESSR_MNNG" "SOX" "Table 2I" "200-300ug" -"CLSI 2015" "DISK" "B_NESSR_MNNG" "SSS" "Table 2I" "200-300ug" -"CLSI 2015" "DISK" "B_NESSR_MNNG" "SXT" "Table 2I" "1.25/23.75ug" 30 25 -"CLSI 2015" "DISK" "B_PLSMN" "AMC" "M45 Table 2" "20ug" 18 13 -"CLSI 2015" "DISK" "B_PLSMN" "AMK" "M45 Table 2" "30ug" 17 14 -"CLSI 2015" "DISK" "B_PLSMN" "ATM" "M45 Table 2" "30ug" 21 17 -"CLSI 2015" "DISK" "B_PLSMN" "CAZ" "M45 Table 2" "30ug" 21 17 -"CLSI 2015" "DISK" "B_PLSMN" "CHL" "M45 Table 2" "30ug" 18 12 -"CLSI 2015" "DISK" "B_PLSMN" "CIP" "M45 Table 2" "5ug" 21 15 -"CLSI 2015" "DISK" "B_PLSMN" "CRO" "M45 Table 2" "30ug" 23 19 -"CLSI 2015" "DISK" "B_PLSMN" "CTX" "M45 Table 2" "30ug" 26 22 -"CLSI 2015" "DISK" "B_PLSMN" "CXM" "M45 Table 2" "30ug" 18 14 -"CLSI 2015" "DISK" "B_PLSMN" "ETP" "M45 Table 2" "10ug" 19 15 -"CLSI 2015" "DISK" "B_PLSMN" "FEP" "M45 Table 2" "30ug" 18 14 -"CLSI 2015" "DISK" "B_PLSMN" "FOX" "M45 Table 2" "30ug" 18 14 -"CLSI 2015" "DISK" "B_PLSMN" "GEN" "M45 Table 2" "10ug" 15 12 -"CLSI 2015" "DISK" "B_PLSMN" "IPM" "M45 Table 2" "10ug" 16 13 -"CLSI 2015" "DISK" "B_PLSMN" "LVX" "M45 Table 2" "5ug" 17 13 -"CLSI 2015" "DISK" "B_PLSMN" "MEM" "M45 Table 2" "10ug" 16 13 -"CLSI 2015" "DISK" "B_PLSMN" "SAM" "M45 Table 2" "10ug" 15 11 -"CLSI 2015" "DISK" "B_PLSMN" "SXT" "M45 Table 2" "1.25/23.75ug" 16 10 -"CLSI 2015" "DISK" "B_PLSMN" "TCY" "M45 Table 2" "30ug" 15 11 -"CLSI 2015" "DISK" "B_PLSMN" "TZP" "M45 Table 2" "100ug" 21 17 -"CLSI 2015" "DISK" "B_PRVDN_HMBC" "ENR" "Vet Table" "5ug" 21 16 -"CLSI 2015" "DISK" "B_PRVDN_HMBC" "SPT" "100ug" 14 10 -"CLSI 2015" "DISK" "B_PSDMN" "ETP" "10ug" -"CLSI 2015" "DISK" "B_PSDMN_AERG" "AMK" "Table 2B-1" "30ug" 17 14 -"CLSI 2015" "DISK" "B_PSDMN_AERG" "ATM" "Table 2B-1" "30ug" 22 15 -"CLSI 2015" "DISK" "B_PSDMN_AERG" "CAZ" "Table 2B-1" "30ug" 18 14 -"CLSI 2015" "DISK" "B_PSDMN_AERG" "CIP" "Table 2B-1" "5ug" 21 15 -"CLSI 2015" "DISK" "B_PSDMN_AERG" "COL" "Table 2B-1" "10ug" 11 10 -"CLSI 2015" "DISK" "B_PSDMN_AERG" "DOR" "Table 2B-1" "10ug" 19 15 -"CLSI 2015" "DISK" "B_PSDMN_AERG" "FEP" "Table 2B-1" "30ug" 18 14 -"CLSI 2015" "DISK" "B_PSDMN_AERG" "GAT" "Table 2B-1" "5ug" 18 14 -"CLSI 2015" "DISK" "B_PSDMN_AERG" "GEN" "Table 2B-1" "10ug" 15 12 -"CLSI 2015" "DISK" "B_PSDMN_AERG" "IPM" "Table 2B-1" "10ug" 19 15 -"CLSI 2015" "DISK" "B_PSDMN_AERG" "LOM" "Table 2B-1" "10ug" 22 18 -"CLSI 2015" "DISK" "B_PSDMN_AERG" "LVX" "Table 2B-1" "5ug" 17 13 -"CLSI 2015" "DISK" "B_PSDMN_AERG" "MEM" "Table 2B-1" "10ug" 19 15 -"CLSI 2015" "DISK" "B_PSDMN_AERG" "NET" "Table 2B-1" "30ug" 15 12 -"CLSI 2015" "DISK" "B_PSDMN_AERG" "NOR" "Table 2B-1" "10ug" 17 12 -"CLSI 2015" "DISK" "B_PSDMN_AERG" "OFX" "Table 2B-1" "5ug" 16 12 -"CLSI 2015" "DISK" "B_PSDMN_AERG" "PIP" "Table 2B-1" "100ug" 21 14 -"CLSI 2015" "DISK" "B_PSDMN_AERG" "PLB" "Table 2B-1" "300ug" 12 11 -"CLSI 2015" "DISK" "B_PSDMN_AERG" "TCC" "Table 2B-1" "75ug" 24 15 -"CLSI 2015" "DISK" "B_PSDMN_AERG" "TIC" "Table 2B-1" "75ug" 24 15 -"CLSI 2015" "DISK" "B_PSDMN_AERG" "TOB" "Table 2B-1" "10ug" 15 12 -"CLSI 2015" "DISK" "B_PSDMN_AERG" "TZP" "Table 2B-1" "100ug" 21 14 -"CLSI 2015" "DISK" "B_PSTRL" "AMC" "M45 Table 13" "20ug" 27 -"CLSI 2015" "DISK" "B_PSTRL" "AMP" "M45 Table 13" "10ug" 27 -"CLSI 2015" "DISK" "B_PSTRL" "AZM" "M45 Table 13" "15ug" 20 -"CLSI 2015" "DISK" "B_PSTRL" "CHL" "M45 Table 13" "30ug" 28 -"CLSI 2015" "DISK" "B_PSTRL" "CRO" "M45 Table 13" "30ug" 34 -"CLSI 2015" "DISK" "B_PSTRL" "DOX" "M45 Table 13" "30ug" 23 -"CLSI 2015" "DISK" "B_PSTRL" "ERY" "M45 Table 13" "15ug" 27 24 -"CLSI 2015" "DISK" "B_PSTRL" "LVX" "M45 Table 13" "5ug" 28 -"CLSI 2015" "DISK" "B_PSTRL" "MFX" "M45 Table 13" "5ug" 28 -"CLSI 2015" "DISK" "B_PSTRL" "PEN" "M45 Table 13" "10 Units" 25 -"CLSI 2015" "DISK" "B_PSTRL" "SXT" "M45 Table 13" "1.25/23.75ug" 24 -"CLSI 2015" "DISK" "B_PSTRL" "TCY" "M45 Table 13" "30ug" 23 -"CLSI 2015" "DISK" "B_PSTRL_MLTC" "ENR" "Vet Table" "5ug" 21 16 -"CLSI 2015" "DISK" "B_PSTRL_MLTC" "SPT" "100ug" 14 10 -"CLSI 2015" "DISK" "B_PSTRL_MLTC" "TIL" "Vet Table" "15ug" 11 10 -"CLSI 2015" "DISK" "Extraintestinal" "B_SLMNL" "CIP" "Table 2A" "5ug" 31 20 -"CLSI 2015" "DISK" "B_SLMNL" "CIP" "Table 2A" "5ug" 31 20 -"CLSI 2015" "DISK" "B_STNTR_MLTP" "CAZ" "Table 2B-4" "30ug" -"CLSI 2015" "DISK" "B_STNTR_MLTP" "CHL" "Table 2B-4" "30ug" -"CLSI 2015" "DISK" "B_STNTR_MLTP" "LVX" "Table 2B-4" "75ug" 17 13 -"CLSI 2015" "DISK" "B_STNTR_MLTP" "MNO" "Table 2B-4" "30ug" 19 14 -"CLSI 2015" "DISK" "B_STNTR_MLTP" "SXT" "Table 2B-4" "30ug" 16 10 -"CLSI 2015" "DISK" "B_STNTR_MLTP" "TCC" "Table 2B-4" "30ug" -"CLSI 2015" "DISK" "B_STPHY" "AMC" "Table 2C" "20ug" 20 19 -"CLSI 2015" "DISK" "B_STPHY" "AMK" "Table 2C" "30ug" 17 14 -"CLSI 2015" "DISK" "B_STPHY" "AMP" "Table 2C" "10ug" 29 28 -"CLSI 2015" "DISK" "B_STPHY" "AZM" "Table 2C" "15ug" 18 13 -"CLSI 2015" "DISK" "B_STPHY" "CAZ" "Table 2C" "30ug" 18 14 -"CLSI 2015" "DISK" "B_STPHY" "CDR" "Table 2C" "5ug" 20 16 -"CLSI 2015" "DISK" "B_STPHY" "CEC" "Table 2C" "30ug" 18 14 -"CLSI 2015" "DISK" "B_STPHY" "CEP" "Table 2C" "30ug" 18 14 -"CLSI 2015" "DISK" "B_STPHY" "CFP" "Table 2C" "75ug" 21 15 -"CLSI 2015" "DISK" "B_STPHY" "CHL" "Table 2C" "30ug" 18 12 -"CLSI 2015" "DISK" "B_STPHY" "CID" "Table 2C" "30ug" 18 14 -"CLSI 2015" "DISK" "B_STPHY" "CIP" "Table 2C" "5ug" 21 15 -"CLSI 2015" "DISK" "B_STPHY" "CLI" "Table 2C" "2ug" 21 14 -"CLSI 2015" "DISK" "B_STPHY" "CLR" "Table 2C" "15ug" 18 13 -"CLSI 2015" "DISK" "B_STPHY" "CMZ" "Table 2C" "30ug" 16 12 -"CLSI 2015" "DISK" "B_STPHY" "CPD" "Table 2C" "10ug" 21 17 -"CLSI 2015" "DISK" "B_STPHY" "CPR" "Table 2C" "30ug" 18 14 -"CLSI 2015" "DISK" "B_STPHY" "CRO" "Table 2C" "30ug" 21 13 -"CLSI 2015" "DISK" "B_STPHY" "CTT" "Table 2C" "30ug" 16 12 -"CLSI 2015" "DISK" "B_STPHY" "CTX" "Table 2C" "30ug" 23 14 -"CLSI 2015" "DISK" "B_STPHY" "CXA" "Table 2C" "30ug" 23 14 -"CLSI 2015" "DISK" "Oral" "B_STPHY" "CXM" "Table 2C" "30ug" 23 14 -"CLSI 2015" "DISK" "Parenteral" "B_STPHY" "CXM" "Table 2C" "30ug" 18 14 -"CLSI 2015" "DISK" "Oral" "B_STPHY" "CXM" "Table 2C" "30ug" 23 14 -"CLSI 2015" "DISK" "B_STPHY" "CZO" "Table 2C" "30ug" 18 14 -"CLSI 2015" "DISK" "B_STPHY" "CZX" "Table 2C" "30ug" 20 14 -"CLSI 2015" "DISK" "B_STPHY" "DAP" "Table 2C" "30ug" -"CLSI 2015" "DISK" "B_STPHY" "DIR" "Table 2C" "15ug" 19 15 -"CLSI 2015" "DISK" "B_STPHY" "DOR" "Table 2C" "10ug" 30 -"CLSI 2015" "DISK" "B_STPHY" "DOX" "Table 2C" "30ug" 16 12 -"CLSI 2015" "DISK" "B_STPHY" "ENX" "Table 2C" "10ug" 18 14 -"CLSI 2015" "DISK" "B_STPHY" "ERY" "Table 2C" "15ug" 23 13 -"CLSI 2015" "DISK" "B_STPHY" "ETP" "Table 2C" "10ug" 19 15 -"CLSI 2015" "DISK" "B_STPHY" "FEP" "Table 2C" "30ug" 18 14 -"CLSI 2015" "DISK" "B_STPHY" "FLE" "Table 2C" "5ug" 19 15 -"CLSI 2015" "DISK" "B_STPHY" "FOX" "Table 2C" "30ug" 25 24 -"CLSI 2015" "DISK" "B_STPHY" "GAT" "Table 2C" "10ug" 23 19 -"CLSI 2015" "DISK" "B_STPHY" "GEN" "Table 2C" "10ug" 15 12 -"CLSI 2015" "DISK" "B_STPHY" "GRX" "Table 2C" "5ug" 18 14 -"CLSI 2015" "DISK" "B_STPHY" "IPM" "Table 2C" "10ug" 16 13 -"CLSI 2015" "DISK" "B_STPHY" "KAN" "Table 2C" "30ug" 18 13 -"CLSI 2015" "DISK" "B_STPHY" "LNZ" "Table 2C" "30ug" 21 20 -"CLSI 2015" "DISK" "B_STPHY" "LOM" "Table 2C" "10ug" 22 18 -"CLSI 2015" "DISK" "B_STPHY" "LOR" "Table 2C" "30ug" 18 14 -"CLSI 2015" "DISK" "B_STPHY" "LTM" "Table 2C" "30ug" 23 14 -"CLSI 2015" "DISK" "B_STPHY" "LVX" "Table 2C" "10ug" 19 15 -"CLSI 2015" "DISK" "B_STPHY" "MAN" "Table 2C" "30ug" 18 14 -"CLSI 2015" "DISK" "B_STPHY" "MEM" "Table 2C" "10ug" 15 13 -"CLSI 2015" "DISK" "B_STPHY" "MET" "Table 2C" "5ug" 14 9 -"CLSI 2015" "DISK" "B_STPHY" "MFX" "Table 2C" "5ug" 24 20 -"CLSI 2015" "DISK" "B_STPHY" "MNO" "Table 2C" "30ug" 19 14 -"CLSI 2015" "DISK" "B_STPHY" "NAF" "Table 2C" "1ug" 13 10 -"CLSI 2015" "DISK" "B_STPHY" "NET" "Table 2C" "30ug" 15 12 -"CLSI 2015" "DISK" "B_STPHY" "NIT" "Table 2C" "300ug" 17 14 -"CLSI 2015" "DISK" "B_STPHY" "NOR" "Table 2C" "10ug" 17 12 -"CLSI 2015" "DISK" "B_STPHY" "OFX" "Table 2C" "5ug" 18 14 -"CLSI 2015" "DISK" "B_STPHY" "OXA" "Table 2C" "1ug" 13 10 -"CLSI 2015" "DISK" "B_STPHY" "PEN" "Table 2C" "10ug" 29 28 -"CLSI 2015" "DISK" "B_STPHY" "QDA" "Table 2C" "15ug" 19 15 -"CLSI 2015" "DISK" "B_STPHY" "RIF" "Table 2C" "5ug" 20 16 -"CLSI 2015" "DISK" "B_STPHY" "SAM" "Table 2C" "10ug" 15 11 -"CLSI 2015" "DISK" "B_STPHY" "SMX" "Table 2C" "200ug" 17 12 -"CLSI 2015" "DISK" "B_STPHY" "SOX" "Table 2C" "200ug" 17 12 -"CLSI 2015" "DISK" "B_STPHY" "SPX" "Table 2C" "5ug" 19 15 -"CLSI 2015" "DISK" "B_STPHY" "SSS" "Table 2C" "200ug" 17 12 -"CLSI 2015" "DISK" "B_STPHY" "SXT" "Table 2C" "1.25/23.75ug" 16 10 -"CLSI 2015" "DISK" "B_STPHY" "TCC" "Table 2C" "75/10ug" 23 22 -"CLSI 2015" "DISK" "B_STPHY" "TCY" "Table 2C" "30ug" 19 14 -"CLSI 2015" "DISK" "B_STPHY" "TEC" "Table 2C" "30ug" 14 10 -"CLSI 2015" "DISK" "B_STPHY" "TLT" "Table 2C" "15ug" 22 18 -"CLSI 2015" "DISK" "B_STPHY" "TMP" "Table 2C" "5ug" 16 10 -"CLSI 2015" "DISK" "B_STPHY" "TOB" "Table 2C" "10ug" 15 12 -"CLSI 2015" "DISK" "B_STPHY" "TZP" "Table 2C" "100/10ug" 18 17 -"CLSI 2015" "DISK" "B_STPHY" "VAN" "Table 2C" "30ug" -"CLSI 2015" "DISK" "B_STPHY_AURS" "CPT" "Table 2C" "30ug" 24 20 -"CLSI 2015" "DISK" "B_STPHY_AURS" "FOX" "Table 2C" "30ug" 22 21 -"CLSI 2015" "DISK" "B_STPHY_AURS" "OXA" "Table 2C" "1ug" 13 10 -"CLSI 2015" "DISK" "B_STPHY_LGDN" "FOX" "Table 2C" "30ug" 22 21 -"CLSI 2015" "DISK" "B_STPHY_LGDN" "OXA" "Table 2C" "1ug" -"CLSI 2015" "DISK" "B_STRPT" "AMC" "Table 2H-1" "20ug" -"CLSI 2015" "DISK" "B_STRPT" "AMP" "Table 2H-1" "10ug" 24 -"CLSI 2015" "DISK" "B_STRPT" "AMX" "Table 2H-1" "30ug" -"CLSI 2015" "DISK" "B_STRPT" "AZM" "Table 2H-1" "15ug" 18 13 -"CLSI 2015" "DISK" "B_STRPT" "CHL" "Table 2H-1" "30ug" 21 17 -"CLSI 2015" "DISK" "B_STRPT" "CLI" "Table 2H-1" "2ug" 19 15 -"CLSI 2015" "DISK" "B_STRPT" "CLR" "Table 2H-1" "15ug" 21 16 -"CLSI 2015" "DISK" "B_STRPT" "CPT" "Table 2H-1" "30ug" 26 -"CLSI 2015" "DISK" "B_STRPT" "CRO" "Table 2H-1" "30ug" 24 -"CLSI 2015" "DISK" "B_STRPT" "CTX" "Table 2H-1" "30ug" 24 -"CLSI 2015" "DISK" "B_STRPT" "CXM" "Table 2H-1" "30ug" -"CLSI 2015" "DISK" "B_STRPT" "DAP" "Table 2H-1" "30ug" 16 -"CLSI 2015" "DISK" "B_STRPT" "DIR" "Table 2H-1" "15ug" 18 13 -"CLSI 2015" "DISK" "B_STRPT" "DOR" "Table 2H-1" "10ug" -"CLSI 2015" "DISK" "B_STRPT" "ERY" "Table 2H-1" "15ug" 21 15 -"CLSI 2015" "DISK" "B_STRPT" "ETP" "Table 2H-1" "10ug" -"CLSI 2015" "DISK" "B_STRPT" "FEP" "Table 2H-1" "30ug" 24 -"CLSI 2015" "DISK" "B_STRPT" "GAT" "Table 2H-1" "5ug" 21 17 -"CLSI 2015" "DISK" "B_STRPT" "GEM" "Table 2H-1" "5ug" -"CLSI 2015" "DISK" "B_STRPT" "GRX" "Table 2H-1" "5ug" 19 15 -"CLSI 2015" "DISK" "B_STRPT" "IPM" "Table 2H-1" "10ug" -"CLSI 2015" "DISK" "B_STRPT" "LNZ" "Table 2H-1" "30ug" 21 -"CLSI 2015" "DISK" "B_STRPT" "LVX" "Table 2H-1" "5ug" 17 13 -"CLSI 2015" "DISK" "B_STRPT" "MEM" "Table 2H-1" "10ug" -"CLSI 2015" "DISK" "B_STRPT" "MFX" "Table 2H-1" "5ug" -"CLSI 2015" "DISK" "B_STRPT" "OFX" "Table 2H-1" "5ug" 16 12 -"CLSI 2015" "DISK" "B_STRPT" "PEN" "Table 2H-1" "10units" 24 -"CLSI 2015" "DISK" "B_STRPT" "QDA" "Table 2H-1" "15ug" 19 15 -"CLSI 2015" "DISK" "B_STRPT" "RIF" "Table 2H-1" "5ug" -"CLSI 2015" "DISK" "B_STRPT" "SPX" "Table 2H-1" "5ug" -"CLSI 2015" "DISK" "B_STRPT" "SXT" "Table 2H-1" "1.25/23.75ug" -"CLSI 2015" "DISK" "B_STRPT" "TCY" "Table 2H-1" "30ug" 23 18 -"CLSI 2015" "DISK" "B_STRPT" "TVA" "Table 2H-1" "10ug" 19 15 -"CLSI 2015" "DISK" "B_STRPT" "VAN" "Table 2H-1" "30ug" 17 -"CLSI 2015" "DISK" "B_STRPT_PNMN" "AMC" "Table 2G" "10/10ug" -"CLSI 2015" "DISK" "B_STRPT_PNMN" "AMP" "Table 2G" "10ug" -"CLSI 2015" "DISK" "B_STRPT_PNMN" "AMX" "Table 2G" "30ug" -"CLSI 2015" "DISK" "B_STRPT_PNMN" "AZM" "Table 2G" "15ug" 18 13 -"CLSI 2015" "DISK" "B_STRPT_PNMN" "CDR" "Table 2G" "5ug" -"CLSI 2015" "DISK" "B_STRPT_PNMN" "CEC" "Table 2G" "30ug" -"CLSI 2015" "DISK" "B_STRPT_PNMN" "CHL" "Table 2G" "30ug" 21 20 -"CLSI 2015" "DISK" "B_STRPT_PNMN" "CIP" "Table 2G" "5ug" -"CLSI 2015" "DISK" "B_STRPT_PNMN" "CLI" "Table 2G" "2ug" 19 15 -"CLSI 2015" "DISK" "B_STRPT_PNMN" "CLR" "Table 2G" "15ug" 21 16 -"CLSI 2015" "DISK" "B_STRPT_PNMN" "CPD" "Table 2G" "10ug" -"CLSI 2015" "DISK" "B_STRPT_PNMN" "CPR" "Table 2G" "30ug" -"CLSI 2015" "DISK" "B_STRPT_PNMN" "CPT" "Table 2G" "30ug" -"CLSI 2015" "DISK" "B_STRPT_PNMN" "CRO" "Table 2G" "30ug" -"CLSI 2015" "DISK" "B_STRPT_PNMN" "CTX" "Table 2G" "30ug" -"CLSI 2015" "DISK" "B_STRPT_PNMN" "CXA" "Table 2G" "30ug" -"CLSI 2015" "DISK" "Oral" "B_STRPT_PNMN" "CXM" "Table 2G" "30ug" -"CLSI 2015" "DISK" "B_STRPT_PNMN" "CXM" "Table 2G" "30ug" -"CLSI 2015" "DISK" "B_STRPT_PNMN" "DAP" "Table 2G" "30ug" -"CLSI 2015" "DISK" "B_STRPT_PNMN" "DIR" "Table 2G" "15ug" 18 13 -"CLSI 2015" "DISK" "B_STRPT_PNMN" "DOR" "Table 2G" "10ug" -"CLSI 2015" "DISK" "B_STRPT_PNMN" "DOX" "Table 2G" "30ug" 28 24 -"CLSI 2015" "DISK" "B_STRPT_PNMN" "ERY" "Table 2G" "15ug" 21 15 -"CLSI 2015" "DISK" "B_STRPT_PNMN" "ETP" "Table 2G" "10ug" -"CLSI 2015" "DISK" "B_STRPT_PNMN" "FEP" "Table 2G" "30ug" -"CLSI 2015" "DISK" "B_STRPT_PNMN" "GAT" "Table 2G" "5ug" 21 17 -"CLSI 2015" "DISK" "B_STRPT_PNMN" "GEM" "Table 2G" "5ug" 23 19 -"CLSI 2015" "DISK" "B_STRPT_PNMN" "GRX" "Table 2G" "5ug" 19 15 -"CLSI 2015" "DISK" "B_STRPT_PNMN" "IPM" "Table 2G" "10ug" -"CLSI 2015" "DISK" "B_STRPT_PNMN" "LNZ" "Table 2G" "30ug" 21 -"CLSI 2015" "DISK" "B_STRPT_PNMN" "LOR" "Table 2G" "30ug" -"CLSI 2015" "DISK" "B_STRPT_PNMN" "LVX" "Table 2G" "5ug" 17 13 -"CLSI 2015" "DISK" "B_STRPT_PNMN" "MEM" "Table 2G" "10ug" -"CLSI 2015" "DISK" "B_STRPT_PNMN" "MFX" "Table 2G" "5ug" 18 14 -"CLSI 2015" "DISK" "B_STRPT_PNMN" "NOR" "Table 2G" "5ug" -"CLSI 2015" "DISK" "B_STRPT_PNMN" "OFX" "Table 2G" "5ug" 16 12 -"CLSI 2015" "DISK" "B_STRPT_PNMN" "OXA" "Table 2G" "1ug" 20 -"CLSI 2015" "DISK" "B_STRPT_PNMN" "PEN" "Table 2G" "10units" -"CLSI 2015" "DISK" "B_STRPT_PNMN" "PNV" "Table 2G" "10ug" -"CLSI 2015" "DISK" "B_STRPT_PNMN" "QDA" "Table 2G" "15ug" 19 15 -"CLSI 2015" "DISK" "B_STRPT_PNMN" "RIF" "Table 2G" "5ug" 19 16 -"CLSI 2015" "DISK" "B_STRPT_PNMN" "SAM" "Table 2G" "10/10ug" -"CLSI 2015" "DISK" "B_STRPT_PNMN" "SPX" "Table 2G" "5ug" 19 15 -"CLSI 2015" "DISK" "B_STRPT_PNMN" "SXT" "Table 2G" "1.25/23.75ug" 19 15 -"CLSI 2015" "DISK" "B_STRPT_PNMN" "TCY" "Table 2G" "30ug" 28 24 -"CLSI 2015" "DISK" "B_STRPT_PNMN" "TLT" "Table 2G" "15ug" 19 15 -"CLSI 2015" "DISK" "B_STRPT_PNMN" "TVA" "Table 2G" "10ug" 19 15 -"CLSI 2015" "DISK" "B_STRPT_PNMN" "VAN" "Table 2G" "30ug" 17 -"CLSI 2015" "DISK" "B_STRPT_VIRI" "AMP" "Table 2H-2" "10ug" -"CLSI 2015" "DISK" "B_STRPT_VIRI" "AZM" "Table 2H-2" "15ug" 18 13 -"CLSI 2015" "DISK" "B_STRPT_VIRI" "CHL" "Table 2H-2" "30ug" 21 17 -"CLSI 2015" "DISK" "B_STRPT_VIRI" "CLI" "Table 2H-2" "2ug" 19 15 -"CLSI 2015" "DISK" "B_STRPT_VIRI" "CLR" "Table 2H-2" "15ug" 21 16 -"CLSI 2015" "DISK" "B_STRPT_VIRI" "CRO" "Table 2H-2" "30ug" 27 24 -"CLSI 2015" "DISK" "B_STRPT_VIRI" "CTX" "Table 2H-2" "30ug" 28 25 -"CLSI 2015" "DISK" "B_STRPT_VIRI" "DAP" "Table 2H-2" "30ug" -"CLSI 2015" "DISK" "B_STRPT_VIRI" "DIR" "Table 2H-2" "15ug" 18 13 -"CLSI 2015" "DISK" "B_STRPT_VIRI" "DOR" "Table 2H-2" "10ug" -"CLSI 2015" "DISK" "B_STRPT_VIRI" "ERY" "Table 2H-2" "15ug" 21 15 -"CLSI 2015" "DISK" "B_STRPT_VIRI" "ETP" "Table 2H-2" "10ug" -"CLSI 2015" "DISK" "B_STRPT_VIRI" "FEP" "Table 2H-2" "30ug" 24 21 -"CLSI 2015" "DISK" "B_STRPT_VIRI" "GAT" "Table 2H-2" "5ug" 21 17 -"CLSI 2015" "DISK" "B_STRPT_VIRI" "GRX" "Table 2H-2" "5ug" 19 15 -"CLSI 2015" "DISK" "B_STRPT_VIRI" "LNZ" "Table 2H-2" "30ug" 21 -"CLSI 2015" "DISK" "B_STRPT_VIRI" "LVX" "Table 2H-2" "5ug" 17 13 -"CLSI 2015" "DISK" "B_STRPT_VIRI" "MEM" "Table 2H-2" "10ug" -"CLSI 2015" "DISK" "B_STRPT_VIRI" "OFX" "Table 2H-2" "5ug" 16 12 -"CLSI 2015" "DISK" "B_STRPT_VIRI" "PEN" "Table 2H-2" "10units" -"CLSI 2015" "DISK" "B_STRPT_VIRI" "QDA" "Table 2H-2" "15ug" 19 15 -"CLSI 2015" "DISK" "B_STRPT_VIRI" "TCY" "Table 2H-2" "30ug" 23 18 -"CLSI 2015" "DISK" "B_STRPT_VIRI" "TVA" "Table 2H-2" "10ug" 19 15 -"CLSI 2015" "DISK" "B_STRPT_VIRI" "VAN" "Table 2H-2" "30ug" 17 -"CLSI 2014" "DISK" "Urine" "B_[FAM]_ENTRBCTR" "CZO" "Table 2A" 15 14 -"CLSI 2014" "DISK" "B_ACNTB" "AMK" "Table 2B-2" "30ug" 17 14 -"CLSI 2014" "DISK" "B_ACNTB" "CAZ" "Table 2B-2" "30ug" 18 14 -"CLSI 2014" "DISK" "B_ACNTB" "CIP" "Table 2B-2" "5ug" 21 15 -"CLSI 2014" "DISK" "B_ACNTB" "COL" "Table 2B-2" "10ug" -"CLSI 2014" "DISK" "B_ACNTB" "CRO" "Table 2B-2" "30ug" 21 13 -"CLSI 2014" "DISK" "B_ACNTB" "CTX" "Table 2B-2" "30ug" 23 14 -"CLSI 2014" "DISK" "B_ACNTB" "DOR" "Table 2B-2" 18 14 -"CLSI 2014" "DISK" "B_ACNTB" "DOX" "Table 2B-2" "30ug" 13 9 -"CLSI 2014" "DISK" "B_ACNTB" "ETP" "Table 2B-2" "10ug" -"CLSI 2014" "DISK" "B_ACNTB" "FEP" "Table 2B-2" "30ug" 18 14 -"CLSI 2014" "DISK" "B_ACNTB" "GAT" "Table 2B-2" "5ug" 18 14 -"CLSI 2014" "DISK" "B_ACNTB" "GEN" "Table 2B-2" "10ug" 15 12 -"CLSI 2014" "DISK" "B_ACNTB" "IPM" "Table 2B-2" "10ug" 22 18 -"CLSI 2014" "DISK" "B_ACNTB" "LVX" "Table 2B-2" "5ug" 17 13 -"CLSI 2014" "DISK" "B_ACNTB" "MEM" "Table 2B-2" "10ug" 18 14 -"CLSI 2014" "DISK" "B_ACNTB" "MEZ" "Table 2B-2" "75ug" 21 17 -"CLSI 2014" "DISK" "B_ACNTB" "MNO" "Table 2B-2" "30ug" 16 12 -"CLSI 2014" "DISK" "B_ACNTB" "NET" "Table 2B-2" "30ug" -"CLSI 2014" "DISK" "B_ACNTB" "PIP" "Table 2B-2" "100ug" 21 17 -"CLSI 2014" "DISK" "B_ACNTB" "PLB" "Table 2B-2" "300ug" -"CLSI 2014" "DISK" "B_ACNTB" "SAM" "Table 2B-2" "10ug" 15 11 -"CLSI 2014" "DISK" "B_ACNTB" "SXT" "Table 2B-2" "1.25/23.75ug" 16 10 -"CLSI 2014" "DISK" "B_ACNTB" "TCC" "Table 2B-2" "75ug" 20 14 -"CLSI 2014" "DISK" "B_ACNTB" "TCY" "Table 2B-2" "30ug" 15 11 -"CLSI 2014" "DISK" "B_ACNTB" "TIC" "Table 2B-2" "75ug" 20 14 -"CLSI 2014" "DISK" "B_ACNTB" "TOB" "Table 2B-2" "10ug" 15 12 -"CLSI 2014" "DISK" "B_ACNTB" "TZP" "Table 2B-2" "100ug" 21 17 -"CLSI 2014" "DISK" "B_ACTNB_PLRP" "TIL" "Vet Table" "15ug" 11 10 -"CLSI 2014" "DISK" "B_AERMN" "AMC" "M45 Table 2" "20ug" 18 13 -"CLSI 2014" "DISK" "B_AERMN" "AMK" "M45 Table 2" "30ug" 17 14 -"CLSI 2014" "DISK" "B_AERMN" "ATM" "M45 Table 2" "30ug" 21 17 -"CLSI 2014" "DISK" "B_AERMN" "CAZ" "M45 Table 2" "30ug" 21 17 -"CLSI 2014" "DISK" "B_AERMN" "CHL" "M45 Table 2" "30ug" 18 12 -"CLSI 2014" "DISK" "B_AERMN" "CIP" "M45 Table 2" "5ug" 21 15 -"CLSI 2014" "DISK" "B_AERMN" "CRO" "M45 Table 2" "30ug" 23 19 -"CLSI 2014" "DISK" "B_AERMN" "CTX" "M45 Table 2" "30ug" 26 22 -"CLSI 2014" "DISK" "B_AERMN" "CXM" "M45 Table 2" "30ug" 18 14 -"CLSI 2014" "DISK" "B_AERMN" "ETP" "M45 Table 2" "10ug" 19 15 -"CLSI 2014" "DISK" "B_AERMN" "FEP" "M45 Table 2" "30ug" 18 14 -"CLSI 2014" "DISK" "B_AERMN" "FOX" "M45 Table 2" "30ug" 18 14 -"CLSI 2014" "DISK" "B_AERMN" "GEN" "M45 Table 2" "10ug" 15 12 -"CLSI 2014" "DISK" "B_AERMN" "IPM" "M45 Table 2" "10ug" 16 13 -"CLSI 2014" "DISK" "B_AERMN" "LVX" "M45 Table 2" "5ug" 17 13 -"CLSI 2014" "DISK" "B_AERMN" "MEM" "M45 Table 2" "10ug" 16 13 -"CLSI 2014" "DISK" "B_AERMN" "SAM" "M45 Table 2" "10ug" 15 11 -"CLSI 2014" "DISK" "B_AERMN" "SXT" "M45 Table 2" "1.25/23.75ug" 16 10 -"CLSI 2014" "DISK" "B_AERMN" "TCY" "M45 Table 2" "30ug" 15 11 -"CLSI 2014" "DISK" "B_AERMN" "TZP" "M45 Table 2" "100ug" 21 17 -"CLSI 2014" "DISK" "B_BRKHL_CEPC" "CAZ" "Table 2B-3" "30ug" 21 17 -"CLSI 2014" "DISK" "B_BRKHL_CEPC" "CHL" "Table 2B-3" "30ug" -"CLSI 2014" "DISK" "B_BRKHL_CEPC" "LVX" "Table 2B-3" "5ug" -"CLSI 2014" "DISK" "B_BRKHL_CEPC" "MEM" "Table 2B-3" "10ug" 20 15 -"CLSI 2014" "DISK" "B_BRKHL_CEPC" "MNO" "Table 2B-3" "30ug" 19 14 -"CLSI 2014" "DISK" "B_BRKHL_CEPC" "SXT" "Table 2B-3" "1.25/23.75ug" 16 10 -"CLSI 2014" "DISK" "B_BRKHL_CEPC" "TCC" "Table 2B-3" "75ug" -"CLSI 2014" "DISK" "B_ENTRC" "AMP" "Table 2D" "10ug" 17 16 -"CLSI 2014" "DISK" "B_ENTRC" "CHL" "Table 2D" "30ug" 18 12 -"CLSI 2014" "DISK" "B_ENTRC" "CIP" "Table 2D" "5ug" 21 15 -"CLSI 2014" "DISK" "B_ENTRC" "DAP" "Table 2D" "30ug" -"CLSI 2014" "DISK" "B_ENTRC" "DOX" "Table 2D" "30ug" 16 12 -"CLSI 2014" "DISK" "B_ENTRC" "ERY" "Table 2D" "15ug" 23 13 -"CLSI 2014" "DISK" "B_ENTRC" "FOS" "Table 2D" "200ug" 16 12 -"CLSI 2014" "DISK" "B_ENTRC" "GAT" "Table 2D" "5ug" 18 14 -"CLSI 2014" "DISK" "B_ENTRC" "GEH" "Table 2D" "120ug" 10 6 -"CLSI 2014" "DISK" "B_ENTRC" "LNZ" "Table 2D" "30ug" 23 20 -"CLSI 2014" "DISK" "B_ENTRC" "LVX" "Table 2D" "5ug" 17 13 -"CLSI 2014" "DISK" "B_ENTRC" "MNO" "Table 2D" "30ug" 19 14 -"CLSI 2014" "DISK" "B_ENTRC" "NIT" "Table 2D" "300ug" 17 14 -"CLSI 2014" "DISK" "B_ENTRC" "NOR" "Table 2D" "10ug" 17 12 -"CLSI 2014" "DISK" "B_ENTRC" "PEN" "Table 2D" "10units" 15 14 -"CLSI 2014" "DISK" "B_ENTRC" "QDA" "Table 2D" "15ug" 19 15 -"CLSI 2014" "DISK" "B_ENTRC" "RIF" "Table 2D" "5ug" 20 16 -"CLSI 2014" "DISK" "B_ENTRC" "STH" "Table 2D" "300ug" 10 6 -"CLSI 2014" "DISK" "B_ENTRC" "TCY" "Table 2D" "30ug" 19 14 -"CLSI 2014" "DISK" "B_ENTRC" "TEC" "Table 2D" "30ug" 14 10 -"CLSI 2014" "DISK" "B_ENTRC" "VAN" "Table 2D" "30ug" 17 14 -"CLSI 2014" "DISK" "B_HMPHL" "AMC" "Table 2E" "20/10ug" 20 19 -"CLSI 2014" "DISK" "B_HMPHL" "AMP" "Table 2E" "10ug" 22 18 -"CLSI 2014" "DISK" "B_HMPHL" "ATM" "Table 2E" "30ug" 26 -"CLSI 2014" "DISK" "B_HMPHL" "AZM" "Table 2E" "15ug" 12 -"CLSI 2014" "DISK" "B_HMPHL" "CAT" "Table 2E" "10ug" 18 14 -"CLSI 2014" "DISK" "B_HMPHL" "CAZ" "Table 2E" "30ug" 26 -"CLSI 2014" "DISK" "B_HMPHL" "CDR" "Table 2E" "5ug" 20 -"CLSI 2014" "DISK" "B_HMPHL" "CEC" "Table 2E" "30ug" 20 16 -"CLSI 2014" "DISK" "B_HMPHL" "CFM" "Table 2E" "5ug" 21 -"CLSI 2014" "DISK" "B_HMPHL" "CHL" "Table 2E" "30ug" 29 25 -"CLSI 2014" "DISK" "B_HMPHL" "CID" "Table 2E" "30ug" 20 16 -"CLSI 2014" "DISK" "B_HMPHL" "CIP" "Table 2E" "5ug" 21 -"CLSI 2014" "DISK" "B_HMPHL" "CLR" "Table 2E" "15ug" 13 10 -"CLSI 2014" "DISK" "B_HMPHL" "CPD" "Table 2E" "10ug" 21 -"CLSI 2014" "DISK" "B_HMPHL" "CPR" "Table 2E" "30ug" 18 14 -"CLSI 2014" "DISK" "B_HMPHL" "CRO" "Table 2E" "30ug" 26 -"CLSI 2014" "DISK" "B_HMPHL" "CTB" "Table 2E" "30ug" 28 -"CLSI 2014" "DISK" "B_HMPHL" "CTX" "Table 2E" "30ug" 26 -"CLSI 2014" "DISK" "B_HMPHL" "CXA" "Table 2E" "30ug" 20 16 -"CLSI 2014" "DISK" "Oral" "B_HMPHL" "CXM" "Table 2E" "30ug" 20 16 -"CLSI 2014" "DISK" "B_HMPHL" "CXM" "Table 2E" "30ug" 20 16 -"CLSI 2014" "DISK" "B_HMPHL" "CZX" "Table 2E" "30ug" 26 -"CLSI 2014" "DISK" "B_HMPHL" "DOR" "Table 2E" "10ug" 16 -"CLSI 2014" "DISK" "B_HMPHL" "ETP" "Table 2E" "10ug" 19 -"CLSI 2014" "DISK" "B_HMPHL" "FEP" "Table 2E" "30ug" 26 -"CLSI 2014" "DISK" "B_HMPHL" "FLE" "Table 2E" "5ug" 19 -"CLSI 2014" "DISK" "B_HMPHL" "GAT" "Table 2E" "5ug" 18 -"CLSI 2014" "DISK" "B_HMPHL" "GEM" "Table 2E" "5ug" 18 -"CLSI 2014" "DISK" "B_HMPHL" "GRX" "Table 2E" "5ug" 24 -"CLSI 2014" "DISK" "B_HMPHL" "IPM" "Table 2E" "10ug" 16 -"CLSI 2014" "DISK" "B_HMPHL" "LOM" "Table 2E" "10ug" 22 -"CLSI 2014" "DISK" "B_HMPHL" "LOR" "Table 2E" "30ug" 19 15 -"CLSI 2014" "DISK" "B_HMPHL" "LVX" "Table 2E" "5ug" 17 -"CLSI 2014" "DISK" "B_HMPHL" "MAN" "Table 2E" "30ug" -"CLSI 2014" "DISK" "B_HMPHL" "MEM" "Table 2E" "10ug" 20 -"CLSI 2014" "DISK" "B_HMPHL" "MFX" "Table 2E" "5ug" 18 -"CLSI 2014" "DISK" "B_HMPHL" "OFX" "Table 2E" "5ug" 16 -"CLSI 2014" "DISK" "B_HMPHL" "RIF" "Table 2E" "5ug" 20 16 -"CLSI 2014" "DISK" "B_HMPHL" "SAM" "Table 2E" "10/10ug" 20 19 -"CLSI 2014" "DISK" "B_HMPHL" "SPX" "Table 2E" "5ug" -"CLSI 2014" "DISK" "B_HMPHL" "SXT" "Table 2E" "1.25/23.75ug" 15 10 -"CLSI 2014" "DISK" "B_HMPHL" "TCY" "Table 2E" "30ug" 29 25 -"CLSI 2014" "DISK" "B_HMPHL" "TLT" "Table 2E" "15ug" 15 11 -"CLSI 2014" "DISK" "B_HMPHL" "TVA" "Table 2E" "10ug" 22 -"CLSI 2014" "DISK" "B_HMPHL" "TZP" "Table 2E" "100ug" 21 -"CLSI 2014" "DISK" "B_HMPHL_INFL" "CPT" "Table 2E" "30ug" 30 -"CLSI 2014" "DISK" "B_HSTPH_SOMN" "ENR" "Vet Table" "5ug" 21 16 -"CLSI 2014" "DISK" "B_HSTPH_SOMN" "SPT" "Vet Table" "100ug" 14 10 -"CLSI 2014" "DISK" "B_LISTR_MNCY" "AMP" "M45 Table 11" "10ug" -"CLSI 2014" "DISK" "B_LISTR_MNCY" "PEN" "M45 Table 11" "10units" -"CLSI 2014" "DISK" "B_MRXLL_CTRR" "AMC" "M45 Table 12" "20ug" 24 23 -"CLSI 2014" "DISK" "B_MRXLL_CTRR" "AZM" "M45 Table 12" "15ug" 26 -"CLSI 2014" "DISK" "B_MRXLL_CTRR" "CLR" "M45 Table 12" "15ug" 24 -"CLSI 2014" "DISK" "B_MRXLL_CTRR" "ERY" "M45 Table 12" "15ug" 21 -"CLSI 2014" "DISK" "B_MRXLL_CTRR" "SXT" "M45 Table 12" "1.25/23.75ug" 13 10 -"CLSI 2014" "DISK" "B_MRXLL_CTRR" "TCY" "M45 Table 12" "30ug" 29 24 -"CLSI 2014" "DISK" "B_NESSR_GNRR" "CAT" "Table 2F" "10ug" 29 -"CLSI 2014" "DISK" "B_NESSR_GNRR" "CAZ" "Table 2F" "30ug" 31 -"CLSI 2014" "DISK" "B_NESSR_GNRR" "CFM" "Table 2F" "5ug" 31 -"CLSI 2014" "DISK" "B_NESSR_GNRR" "CIP" "Table 2F" "5ug" 41 27 -"CLSI 2014" "DISK" "B_NESSR_GNRR" "CMZ" "Table 2F" "30ug" 33 27 -"CLSI 2014" "DISK" "B_NESSR_GNRR" "CPD" "Table 2F" "10ug" 29 -"CLSI 2014" "DISK" "B_NESSR_GNRR" "CRO" "Table 2F" "30ug" 35 -"CLSI 2014" "DISK" "B_NESSR_GNRR" "CTT" "Table 2F" "30ug" 26 19 -"CLSI 2014" "DISK" "B_NESSR_GNRR" "CTX" "Table 2F" "30ug" 31 -"CLSI 2014" "DISK" "B_NESSR_GNRR" "CXM" "Table 2F" "30ug" 31 25 -"CLSI 2014" "DISK" "B_NESSR_GNRR" "CZX" "Table 2F" "30ug" 38 -"CLSI 2014" "DISK" "B_NESSR_GNRR" "ENX" "Table 2F" "10ug" 36 31 -"CLSI 2014" "DISK" "B_NESSR_GNRR" "FEP" "Table 2F" "30ug" 31 -"CLSI 2014" "DISK" "B_NESSR_GNRR" "FLE" "Table 2F" "5ug" 35 28 -"CLSI 2014" "DISK" "B_NESSR_GNRR" "FOX" "Table 2F" "30ug" 28 23 -"CLSI 2014" "DISK" "B_NESSR_GNRR" "GAT" "Table 2F" "5ug" 38 33 -"CLSI 2014" "DISK" "B_NESSR_GNRR" "GRX" "Table 2F" "5ug" 37 27 -"CLSI 2014" "DISK" "B_NESSR_GNRR" "LOM" "Table 2F" "10ug" 38 26 -"CLSI 2014" "DISK" "B_NESSR_GNRR" "OFX" "Table 2F" "5ug" 31 24 -"CLSI 2014" "DISK" "B_NESSR_GNRR" "PEN" "Table 2F" "10units" 47 26 -"CLSI 2014" "DISK" "B_NESSR_GNRR" "SPT" "Table 2F" "100ug" 18 14 -"CLSI 2014" "DISK" "B_NESSR_GNRR" "TCY" "Table 2F" "30ug" 38 30 -"CLSI 2014" "DISK" "B_NESSR_GNRR" "TVA" "Table 2F" "10ug" 34 -"CLSI 2014" "DISK" "B_NESSR_MNNG" "AMP" "Table 2I" "10ug" -"CLSI 2014" "DISK" "B_NESSR_MNNG" "AZM" "Table 2I" "15ug" 20 -"CLSI 2014" "DISK" "B_NESSR_MNNG" "CHL" "Table 2I" "30ug" 26 19 -"CLSI 2014" "DISK" "B_NESSR_MNNG" "CIP" "Table 2I" "5ug" 35 32 -"CLSI 2014" "DISK" "B_NESSR_MNNG" "CRO" "Table 2I" "30ug" 34 -"CLSI 2014" "DISK" "B_NESSR_MNNG" "CTX" "Table 2I" "30ug" 34 -"CLSI 2014" "DISK" "B_NESSR_MNNG" "LVX" "Table 2I" "5ug" -"CLSI 2014" "DISK" "B_NESSR_MNNG" "MEM" "Table 2I" "10ug" 30 -"CLSI 2014" "DISK" "B_NESSR_MNNG" "MNO" "Table 2I" "30ug" 26 -"CLSI 2014" "DISK" "B_NESSR_MNNG" "NAL" "Table 2I" "30ug" 26 25 -"CLSI 2014" "DISK" "B_NESSR_MNNG" "PEN" "Table 2I" "10units" -"CLSI 2014" "DISK" "B_NESSR_MNNG" "RIF" "Table 2I" "5ug" 25 19 -"CLSI 2014" "DISK" "B_NESSR_MNNG" "SMX" "Table 2I" "200-300ug" -"CLSI 2014" "DISK" "B_NESSR_MNNG" "SOX" "Table 2I" "200-300ug" -"CLSI 2014" "DISK" "B_NESSR_MNNG" "SSS" "Table 2I" "200-300ug" -"CLSI 2014" "DISK" "B_NESSR_MNNG" "SXT" "Table 2I" "1.25/23.75ug" 30 25 -"CLSI 2014" "DISK" "B_PLSMN" "AMC" "M45 Table 2" "20ug" 18 13 -"CLSI 2014" "DISK" "B_PLSMN" "AMK" "M45 Table 2" "30ug" 17 14 -"CLSI 2014" "DISK" "B_PLSMN" "ATM" "M45 Table 2" "30ug" 21 17 -"CLSI 2014" "DISK" "B_PLSMN" "CAZ" "M45 Table 2" "30ug" 21 17 -"CLSI 2014" "DISK" "B_PLSMN" "CHL" "M45 Table 2" "30ug" 18 12 -"CLSI 2014" "DISK" "B_PLSMN" "CIP" "M45 Table 2" "5ug" 21 15 -"CLSI 2014" "DISK" "B_PLSMN" "CRO" "M45 Table 2" "30ug" 23 19 -"CLSI 2014" "DISK" "B_PLSMN" "CTX" "M45 Table 2" "30ug" 26 22 -"CLSI 2014" "DISK" "B_PLSMN" "CXM" "M45 Table 2" "30ug" 18 14 -"CLSI 2014" "DISK" "B_PLSMN" "ETP" "M45 Table 2" "10ug" 19 15 -"CLSI 2014" "DISK" "B_PLSMN" "FEP" "M45 Table 2" "30ug" 18 14 -"CLSI 2014" "DISK" "B_PLSMN" "FOX" "M45 Table 2" "30ug" 18 14 -"CLSI 2014" "DISK" "B_PLSMN" "GEN" "M45 Table 2" "10ug" 15 12 -"CLSI 2014" "DISK" "B_PLSMN" "IPM" "M45 Table 2" "10ug" 16 13 -"CLSI 2014" "DISK" "B_PLSMN" "LVX" "M45 Table 2" "5ug" 17 13 -"CLSI 2014" "DISK" "B_PLSMN" "MEM" "M45 Table 2" "10ug" 16 13 -"CLSI 2014" "DISK" "B_PLSMN" "SAM" "M45 Table 2" "10ug" 15 11 -"CLSI 2014" "DISK" "B_PLSMN" "SXT" "M45 Table 2" "1.25/23.75ug" 16 10 -"CLSI 2014" "DISK" "B_PLSMN" "TCY" "M45 Table 2" "30ug" 15 11 -"CLSI 2014" "DISK" "B_PLSMN" "TZP" "M45 Table 2" "100ug" 21 17 -"CLSI 2014" "DISK" "B_PRVDN_HMBC" "ENR" "Vet Table" "5ug" 21 16 -"CLSI 2014" "DISK" "B_PRVDN_HMBC" "SPT" "100ug" 14 10 -"CLSI 2014" "DISK" "B_PSDMN" "ETP" "10ug" -"CLSI 2014" "DISK" "B_PSDMN_AERG" "AMK" "Table 2B-1" "30ug" 17 14 -"CLSI 2014" "DISK" "B_PSDMN_AERG" "ATM" "Table 2B-1" "30ug" 22 15 -"CLSI 2014" "DISK" "B_PSDMN_AERG" "CAZ" "Table 2B-1" "30ug" 18 14 -"CLSI 2014" "DISK" "B_PSDMN_AERG" "CIP" "Table 2B-1" "5ug" 21 15 -"CLSI 2014" "DISK" "B_PSDMN_AERG" "COL" "Table 2B-1" "10ug" 11 10 -"CLSI 2014" "DISK" "B_PSDMN_AERG" "DOR" "Table 2B-1" "10ug" 19 15 -"CLSI 2014" "DISK" "B_PSDMN_AERG" "FEP" "Table 2B-1" "30ug" 18 14 -"CLSI 2014" "DISK" "B_PSDMN_AERG" "GAT" "Table 2B-1" "5ug" 18 14 -"CLSI 2014" "DISK" "B_PSDMN_AERG" "GEN" "Table 2B-1" "10ug" 15 12 -"CLSI 2014" "DISK" "B_PSDMN_AERG" "IPM" "Table 2B-1" "10ug" 19 15 -"CLSI 2014" "DISK" "B_PSDMN_AERG" "LOM" "Table 2B-1" "10ug" 22 18 -"CLSI 2014" "DISK" "B_PSDMN_AERG" "LVX" "Table 2B-1" "5ug" 17 13 -"CLSI 2014" "DISK" "B_PSDMN_AERG" "MEM" "Table 2B-1" "10ug" 19 15 -"CLSI 2014" "DISK" "B_PSDMN_AERG" "NET" "Table 2B-1" "30ug" 15 12 -"CLSI 2014" "DISK" "B_PSDMN_AERG" "NOR" "Table 2B-1" "10ug" 17 12 -"CLSI 2014" "DISK" "B_PSDMN_AERG" "OFX" "Table 2B-1" "5ug" 16 12 -"CLSI 2014" "DISK" "B_PSDMN_AERG" "PIP" "Table 2B-1" "100ug" 21 14 -"CLSI 2014" "DISK" "B_PSDMN_AERG" "PLB" "Table 2B-1" "300ug" 12 11 -"CLSI 2014" "DISK" "B_PSDMN_AERG" "TCC" "Table 2B-1" "75ug" 24 15 -"CLSI 2014" "DISK" "B_PSDMN_AERG" "TIC" "Table 2B-1" "75ug" 24 15 -"CLSI 2014" "DISK" "B_PSDMN_AERG" "TOB" "Table 2B-1" "10ug" 15 12 -"CLSI 2014" "DISK" "B_PSDMN_AERG" "TZP" "Table 2B-1" "100ug" 21 14 -"CLSI 2014" "DISK" "B_PSTRL" "AMC" "M45 Table 13" "20ug" 27 -"CLSI 2014" "DISK" "B_PSTRL" "AMP" "M45 Table 13" "10ug" 27 -"CLSI 2014" "DISK" "B_PSTRL" "AZM" "M45 Table 13" "15ug" 20 -"CLSI 2014" "DISK" "B_PSTRL" "CHL" "M45 Table 13" "30ug" 28 -"CLSI 2014" "DISK" "B_PSTRL" "CRO" "M45 Table 13" "30ug" 34 -"CLSI 2014" "DISK" "B_PSTRL" "DOX" "M45 Table 13" "30ug" 23 -"CLSI 2014" "DISK" "B_PSTRL" "ERY" "M45 Table 13" "15ug" 27 24 -"CLSI 2014" "DISK" "B_PSTRL" "LVX" "M45 Table 13" "5ug" 28 -"CLSI 2014" "DISK" "B_PSTRL" "MFX" "M45 Table 13" "5ug" 28 -"CLSI 2014" "DISK" "B_PSTRL" "PEN" "M45 Table 13" "10 Units" 25 -"CLSI 2014" "DISK" "B_PSTRL" "SXT" "M45 Table 13" "1.25/23.75ug" 24 -"CLSI 2014" "DISK" "B_PSTRL" "TCY" "M45 Table 13" "30ug" 23 -"CLSI 2014" "DISK" "B_PSTRL_MLTC" "ENR" "Vet Table" "5ug" 21 16 -"CLSI 2014" "DISK" "B_PSTRL_MLTC" "SPT" "100ug" 14 10 -"CLSI 2014" "DISK" "B_PSTRL_MLTC" "TIL" "Vet Table" "15ug" 11 10 -"CLSI 2014" "DISK" "Extraintestinal" "B_SLMNL" "CIP" "Table 2A" "5ug" 31 20 -"CLSI 2014" "DISK" "B_SLMNL" "CIP" "Table 2A" "5ug" 31 20 -"CLSI 2014" "DISK" "B_STNTR_MLTP" "CAZ" "Table 2B-4" "30ug" -"CLSI 2014" "DISK" "B_STNTR_MLTP" "CHL" "Table 2B-4" "30ug" -"CLSI 2014" "DISK" "B_STNTR_MLTP" "LVX" "Table 2B-4" "75ug" 17 13 -"CLSI 2014" "DISK" "B_STNTR_MLTP" "MNO" "Table 2B-4" "30ug" 19 14 -"CLSI 2014" "DISK" "B_STNTR_MLTP" "SXT" "Table 2B-4" "30ug" 16 10 -"CLSI 2014" "DISK" "B_STNTR_MLTP" "TCC" "Table 2B-4" "30ug" -"CLSI 2014" "DISK" "B_STPHY" "AMC" "Table 2C" "20ug" 20 19 -"CLSI 2014" "DISK" "B_STPHY" "AMK" "Table 2C" "30ug" 17 14 -"CLSI 2014" "DISK" "B_STPHY" "AMP" "Table 2C" "10ug" 29 28 -"CLSI 2014" "DISK" "B_STPHY" "AZM" "Table 2C" "15ug" 18 13 -"CLSI 2014" "DISK" "B_STPHY" "CAZ" "Table 2C" "30ug" 18 14 -"CLSI 2014" "DISK" "B_STPHY" "CDR" "Table 2C" "5ug" 20 16 -"CLSI 2014" "DISK" "B_STPHY" "CEC" "Table 2C" "30ug" 18 14 -"CLSI 2014" "DISK" "B_STPHY" "CEP" "Table 2C" "30ug" 18 14 -"CLSI 2014" "DISK" "B_STPHY" "CFP" "Table 2C" "75ug" 21 15 -"CLSI 2014" "DISK" "B_STPHY" "CHL" "Table 2C" "30ug" 18 12 -"CLSI 2014" "DISK" "B_STPHY" "CID" "Table 2C" "30ug" 18 14 -"CLSI 2014" "DISK" "B_STPHY" "CIP" "Table 2C" "5ug" 21 15 -"CLSI 2014" "DISK" "B_STPHY" "CLI" "Table 2C" "2ug" 21 14 -"CLSI 2014" "DISK" "B_STPHY" "CLR" "Table 2C" "15ug" 18 13 -"CLSI 2014" "DISK" "B_STPHY" "CMZ" "Table 2C" "30ug" 16 12 -"CLSI 2014" "DISK" "B_STPHY" "CPD" "Table 2C" "10ug" 21 17 -"CLSI 2014" "DISK" "B_STPHY" "CPR" "Table 2C" "30ug" 18 14 -"CLSI 2014" "DISK" "B_STPHY" "CRO" "Table 2C" "30ug" 21 13 -"CLSI 2014" "DISK" "B_STPHY" "CTT" "Table 2C" "30ug" 16 12 -"CLSI 2014" "DISK" "B_STPHY" "CTX" "Table 2C" "30ug" 23 14 -"CLSI 2014" "DISK" "B_STPHY" "CXA" "Table 2C" "30ug" 23 14 -"CLSI 2014" "DISK" "Oral" "B_STPHY" "CXM" "Table 2C" "30ug" 23 14 -"CLSI 2014" "DISK" "Parenteral" "B_STPHY" "CXM" "Table 2C" "30ug" 18 14 -"CLSI 2014" "DISK" "Oral" "B_STPHY" "CXM" "Table 2C" "30ug" 23 14 -"CLSI 2014" "DISK" "B_STPHY" "CZO" "Table 2C" "30ug" 18 14 -"CLSI 2014" "DISK" "B_STPHY" "CZX" "Table 2C" "30ug" 20 14 -"CLSI 2014" "DISK" "B_STPHY" "DAP" "Table 2C" "30ug" -"CLSI 2014" "DISK" "B_STPHY" "DIR" "Table 2C" "15ug" 19 15 -"CLSI 2014" "DISK" "B_STPHY" "DOR" "Table 2C" "10ug" 30 -"CLSI 2014" "DISK" "B_STPHY" "DOX" "Table 2C" "30ug" 16 12 -"CLSI 2014" "DISK" "B_STPHY" "ENX" "Table 2C" "10ug" 18 14 -"CLSI 2014" "DISK" "B_STPHY" "ERY" "Table 2C" "15ug" 23 13 -"CLSI 2014" "DISK" "B_STPHY" "ETP" "Table 2C" "10ug" 19 15 -"CLSI 2014" "DISK" "B_STPHY" "FEP" "Table 2C" "30ug" 18 14 -"CLSI 2014" "DISK" "B_STPHY" "FLE" "Table 2C" "5ug" 19 15 -"CLSI 2014" "DISK" "B_STPHY" "FOX" "Table 2C" "30ug" 25 24 -"CLSI 2014" "DISK" "B_STPHY" "GAT" "Table 2C" "10ug" 23 19 -"CLSI 2014" "DISK" "B_STPHY" "GEN" "Table 2C" "10ug" 15 12 -"CLSI 2014" "DISK" "B_STPHY" "GRX" "Table 2C" "5ug" 18 14 -"CLSI 2014" "DISK" "B_STPHY" "IPM" "Table 2C" "10ug" 16 13 -"CLSI 2014" "DISK" "B_STPHY" "KAN" "Table 2C" "30ug" 18 13 -"CLSI 2014" "DISK" "B_STPHY" "LNZ" "Table 2C" "30ug" 21 20 -"CLSI 2014" "DISK" "B_STPHY" "LOM" "Table 2C" "10ug" 22 18 -"CLSI 2014" "DISK" "B_STPHY" "LOR" "Table 2C" "30ug" 18 14 -"CLSI 2014" "DISK" "B_STPHY" "LTM" "Table 2C" "30ug" 23 14 -"CLSI 2014" "DISK" "B_STPHY" "LVX" "Table 2C" "10ug" 19 15 -"CLSI 2014" "DISK" "B_STPHY" "MAN" "Table 2C" "30ug" 18 14 -"CLSI 2014" "DISK" "B_STPHY" "MEM" "Table 2C" "10ug" 15 13 -"CLSI 2014" "DISK" "B_STPHY" "MET" "Table 2C" "5ug" 14 9 -"CLSI 2014" "DISK" "B_STPHY" "MFX" "Table 2C" "5ug" 24 20 -"CLSI 2014" "DISK" "B_STPHY" "MNO" "Table 2C" "30ug" 19 14 -"CLSI 2014" "DISK" "B_STPHY" "NAF" "Table 2C" "1ug" 13 10 -"CLSI 2014" "DISK" "B_STPHY" "NET" "Table 2C" "30ug" 15 12 -"CLSI 2014" "DISK" "B_STPHY" "NIT" "Table 2C" "300ug" 17 14 -"CLSI 2014" "DISK" "B_STPHY" "NOR" "Table 2C" "10ug" 17 12 -"CLSI 2014" "DISK" "B_STPHY" "OFX" "Table 2C" "5ug" 18 14 -"CLSI 2014" "DISK" "B_STPHY" "OXA" "Table 2C" "1ug" 13 10 -"CLSI 2014" "DISK" "B_STPHY" "PEN" "Table 2C" "10ug" 29 28 -"CLSI 2014" "DISK" "B_STPHY" "QDA" "Table 2C" "15ug" 19 15 -"CLSI 2014" "DISK" "B_STPHY" "RIF" "Table 2C" "5ug" 20 16 -"CLSI 2014" "DISK" "B_STPHY" "SAM" "Table 2C" "10ug" 15 11 -"CLSI 2014" "DISK" "B_STPHY" "SMX" "Table 2C" "200ug" 17 12 -"CLSI 2014" "DISK" "B_STPHY" "SOX" "Table 2C" "200ug" 17 12 -"CLSI 2014" "DISK" "B_STPHY" "SPX" "Table 2C" "5ug" 19 15 -"CLSI 2014" "DISK" "B_STPHY" "SSS" "Table 2C" "200ug" 17 12 -"CLSI 2014" "DISK" "B_STPHY" "SXT" "Table 2C" "1.25/23.75ug" 16 10 -"CLSI 2014" "DISK" "B_STPHY" "TCC" "Table 2C" "75/10ug" 23 22 -"CLSI 2014" "DISK" "B_STPHY" "TCY" "Table 2C" "30ug" 19 14 -"CLSI 2014" "DISK" "B_STPHY" "TEC" "Table 2C" "30ug" 14 10 -"CLSI 2014" "DISK" "B_STPHY" "TLT" "Table 2C" "15ug" 22 18 -"CLSI 2014" "DISK" "B_STPHY" "TMP" "Table 2C" "5ug" 16 10 -"CLSI 2014" "DISK" "B_STPHY" "TOB" "Table 2C" "10ug" 15 12 -"CLSI 2014" "DISK" "B_STPHY" "TZP" "Table 2C" "100/10ug" 18 17 -"CLSI 2014" "DISK" "B_STPHY" "VAN" "Table 2C" "30ug" -"CLSI 2014" "DISK" "B_STPHY_AURS" "CPT" "Table 2C" "30ug" 24 20 -"CLSI 2014" "DISK" "B_STPHY_AURS" "FOX" "Table 2C" "30ug" 22 21 -"CLSI 2014" "DISK" "B_STPHY_AURS" "OXA" "Table 2C" "1ug" 13 10 -"CLSI 2014" "DISK" "B_STPHY_LGDN" "FOX" "Table 2C" "30ug" 22 21 -"CLSI 2014" "DISK" "B_STPHY_LGDN" "OXA" "Table 2C" "1ug" -"CLSI 2014" "DISK" "B_STRPT" "AMC" "Table 2H-1" "20ug" -"CLSI 2014" "DISK" "B_STRPT" "AMP" "Table 2H-1" "10ug" 24 -"CLSI 2014" "DISK" "B_STRPT" "AMX" "Table 2H-1" "30ug" -"CLSI 2014" "DISK" "B_STRPT" "AZM" "Table 2H-1" "15ug" 18 13 -"CLSI 2014" "DISK" "B_STRPT" "CHL" "Table 2H-1" "30ug" 21 17 -"CLSI 2014" "DISK" "B_STRPT" "CLI" "Table 2H-1" "2ug" 19 15 -"CLSI 2014" "DISK" "B_STRPT" "CLR" "Table 2H-1" "15ug" 21 16 -"CLSI 2014" "DISK" "B_STRPT" "CPT" "Table 2H-1" "30ug" 26 -"CLSI 2014" "DISK" "B_STRPT" "CRO" "Table 2H-1" "30ug" 24 -"CLSI 2014" "DISK" "B_STRPT" "CTX" "Table 2H-1" "30ug" 24 -"CLSI 2014" "DISK" "B_STRPT" "CXM" "Table 2H-1" "30ug" -"CLSI 2014" "DISK" "B_STRPT" "DAP" "Table 2H-1" "30ug" 16 -"CLSI 2014" "DISK" "B_STRPT" "DIR" "Table 2H-1" "15ug" 18 13 -"CLSI 2014" "DISK" "B_STRPT" "DOR" "Table 2H-1" "10ug" -"CLSI 2014" "DISK" "B_STRPT" "ERY" "Table 2H-1" "15ug" 21 15 -"CLSI 2014" "DISK" "B_STRPT" "ETP" "Table 2H-1" "10ug" -"CLSI 2014" "DISK" "B_STRPT" "FEP" "Table 2H-1" "30ug" 24 -"CLSI 2014" "DISK" "B_STRPT" "GAT" "Table 2H-1" "5ug" 21 17 -"CLSI 2014" "DISK" "B_STRPT" "GEM" "Table 2H-1" "5ug" -"CLSI 2014" "DISK" "B_STRPT" "GRX" "Table 2H-1" "5ug" 19 15 -"CLSI 2014" "DISK" "B_STRPT" "IPM" "Table 2H-1" "10ug" -"CLSI 2014" "DISK" "B_STRPT" "LNZ" "Table 2H-1" "30ug" 21 -"CLSI 2014" "DISK" "B_STRPT" "LVX" "Table 2H-1" "5ug" 17 13 -"CLSI 2014" "DISK" "B_STRPT" "MEM" "Table 2H-1" "10ug" -"CLSI 2014" "DISK" "B_STRPT" "MFX" "Table 2H-1" "5ug" -"CLSI 2014" "DISK" "B_STRPT" "OFX" "Table 2H-1" "5ug" 16 12 -"CLSI 2014" "DISK" "B_STRPT" "PEN" "Table 2H-1" "10units" 24 -"CLSI 2014" "DISK" "B_STRPT" "QDA" "Table 2H-1" "15ug" 19 15 -"CLSI 2014" "DISK" "B_STRPT" "RIF" "Table 2H-1" "5ug" -"CLSI 2014" "DISK" "B_STRPT" "SPX" "Table 2H-1" "5ug" -"CLSI 2014" "DISK" "B_STRPT" "SXT" "Table 2H-1" "1.25/23.75ug" -"CLSI 2014" "DISK" "B_STRPT" "TCY" "Table 2H-1" "30ug" 23 18 -"CLSI 2014" "DISK" "B_STRPT" "TVA" "Table 2H-1" "10ug" 19 15 -"CLSI 2014" "DISK" "B_STRPT" "VAN" "Table 2H-1" "30ug" 17 -"CLSI 2014" "DISK" "B_STRPT_PNMN" "AMC" "Table 2G" "10/10ug" -"CLSI 2014" "DISK" "B_STRPT_PNMN" "AMP" "Table 2G" "10ug" -"CLSI 2014" "DISK" "B_STRPT_PNMN" "AMX" "Table 2G" "30ug" -"CLSI 2014" "DISK" "B_STRPT_PNMN" "AZM" "Table 2G" "15ug" 18 13 -"CLSI 2014" "DISK" "B_STRPT_PNMN" "CDR" "Table 2G" "5ug" -"CLSI 2014" "DISK" "B_STRPT_PNMN" "CEC" "Table 2G" "30ug" -"CLSI 2014" "DISK" "B_STRPT_PNMN" "CHL" "Table 2G" "30ug" 21 20 -"CLSI 2014" "DISK" "B_STRPT_PNMN" "CIP" "Table 2G" "5ug" -"CLSI 2014" "DISK" "B_STRPT_PNMN" "CLI" "Table 2G" "2ug" 19 15 -"CLSI 2014" "DISK" "B_STRPT_PNMN" "CLR" "Table 2G" "15ug" 21 16 -"CLSI 2014" "DISK" "B_STRPT_PNMN" "CPD" "Table 2G" "10ug" -"CLSI 2014" "DISK" "B_STRPT_PNMN" "CPR" "Table 2G" "30ug" -"CLSI 2014" "DISK" "B_STRPT_PNMN" "CPT" "Table 2G" "30ug" -"CLSI 2014" "DISK" "B_STRPT_PNMN" "CRO" "Table 2G" "30ug" -"CLSI 2014" "DISK" "B_STRPT_PNMN" "CTX" "Table 2G" "30ug" -"CLSI 2014" "DISK" "B_STRPT_PNMN" "CXA" "Table 2G" "30ug" -"CLSI 2014" "DISK" "Oral" "B_STRPT_PNMN" "CXM" "Table 2G" "30ug" -"CLSI 2014" "DISK" "B_STRPT_PNMN" "CXM" "Table 2G" "30ug" -"CLSI 2014" "DISK" "B_STRPT_PNMN" "DAP" "Table 2G" "30ug" -"CLSI 2014" "DISK" "B_STRPT_PNMN" "DIR" "Table 2G" "15ug" 18 13 -"CLSI 2014" "DISK" "B_STRPT_PNMN" "DOR" "Table 2G" "10ug" -"CLSI 2014" "DISK" "B_STRPT_PNMN" "DOX" "Table 2G" "30ug" 28 24 -"CLSI 2014" "DISK" "B_STRPT_PNMN" "ERY" "Table 2G" "15ug" 21 15 -"CLSI 2014" "DISK" "B_STRPT_PNMN" "ETP" "Table 2G" "10ug" -"CLSI 2014" "DISK" "B_STRPT_PNMN" "FEP" "Table 2G" "30ug" -"CLSI 2014" "DISK" "B_STRPT_PNMN" "GAT" "Table 2G" "5ug" 21 17 -"CLSI 2014" "DISK" "B_STRPT_PNMN" "GEM" "Table 2G" "5ug" 23 19 -"CLSI 2014" "DISK" "B_STRPT_PNMN" "GRX" "Table 2G" "5ug" 19 15 -"CLSI 2014" "DISK" "B_STRPT_PNMN" "IPM" "Table 2G" "10ug" -"CLSI 2014" "DISK" "B_STRPT_PNMN" "LNZ" "Table 2G" "30ug" 21 -"CLSI 2014" "DISK" "B_STRPT_PNMN" "LOR" "Table 2G" "30ug" -"CLSI 2014" "DISK" "B_STRPT_PNMN" "LVX" "Table 2G" "5ug" 17 13 -"CLSI 2014" "DISK" "B_STRPT_PNMN" "MEM" "Table 2G" "10ug" -"CLSI 2014" "DISK" "B_STRPT_PNMN" "MFX" "Table 2G" "5ug" 18 14 -"CLSI 2014" "DISK" "B_STRPT_PNMN" "NOR" "Table 2G" "5ug" -"CLSI 2014" "DISK" "B_STRPT_PNMN" "OFX" "Table 2G" "5ug" 16 12 -"CLSI 2014" "DISK" "B_STRPT_PNMN" "OXA" "Table 2G" "1ug" 20 -"CLSI 2014" "DISK" "B_STRPT_PNMN" "PEN" "Table 2G" "10units" -"CLSI 2014" "DISK" "B_STRPT_PNMN" "PNV" "Table 2G" "10ug" -"CLSI 2014" "DISK" "B_STRPT_PNMN" "QDA" "Table 2G" "15ug" 19 15 -"CLSI 2014" "DISK" "B_STRPT_PNMN" "RIF" "Table 2G" "5ug" 19 16 -"CLSI 2014" "DISK" "B_STRPT_PNMN" "SAM" "Table 2G" "10/10ug" -"CLSI 2014" "DISK" "B_STRPT_PNMN" "SPX" "Table 2G" "5ug" 19 15 -"CLSI 2014" "DISK" "B_STRPT_PNMN" "SXT" "Table 2G" "1.25/23.75ug" 19 15 -"CLSI 2014" "DISK" "B_STRPT_PNMN" "TCY" "Table 2G" "30ug" 28 24 -"CLSI 2014" "DISK" "B_STRPT_PNMN" "TLT" "Table 2G" "15ug" 19 15 -"CLSI 2014" "DISK" "B_STRPT_PNMN" "TVA" "Table 2G" "10ug" 19 15 -"CLSI 2014" "DISK" "B_STRPT_PNMN" "VAN" "Table 2G" "30ug" 17 -"CLSI 2014" "DISK" "B_STRPT_VIRI" "AMP" "Table 2H-2" "10ug" -"CLSI 2014" "DISK" "B_STRPT_VIRI" "AZM" "Table 2H-2" "15ug" 18 13 -"CLSI 2014" "DISK" "B_STRPT_VIRI" "CHL" "Table 2H-2" "30ug" 21 17 -"CLSI 2014" "DISK" "B_STRPT_VIRI" "CLI" "Table 2H-2" "2ug" 19 15 -"CLSI 2014" "DISK" "B_STRPT_VIRI" "CLR" "Table 2H-2" "15ug" 21 16 -"CLSI 2014" "DISK" "B_STRPT_VIRI" "CRO" "Table 2H-2" "30ug" 27 24 -"CLSI 2014" "DISK" "B_STRPT_VIRI" "CTX" "Table 2H-2" "30ug" 28 25 -"CLSI 2014" "DISK" "B_STRPT_VIRI" "DAP" "Table 2H-2" "30ug" -"CLSI 2014" "DISK" "B_STRPT_VIRI" "DIR" "Table 2H-2" "15ug" 18 13 -"CLSI 2014" "DISK" "B_STRPT_VIRI" "DOR" "Table 2H-2" "10ug" -"CLSI 2014" "DISK" "B_STRPT_VIRI" "ERY" "Table 2H-2" "15ug" 21 15 -"CLSI 2014" "DISK" "B_STRPT_VIRI" "ETP" "Table 2H-2" "10ug" -"CLSI 2014" "DISK" "B_STRPT_VIRI" "FEP" "Table 2H-2" "30ug" 24 21 -"CLSI 2014" "DISK" "B_STRPT_VIRI" "GAT" "Table 2H-2" "5ug" 21 17 -"CLSI 2014" "DISK" "B_STRPT_VIRI" "GRX" "Table 2H-2" "5ug" 19 15 -"CLSI 2014" "DISK" "B_STRPT_VIRI" "LNZ" "Table 2H-2" "30ug" 21 -"CLSI 2014" "DISK" "B_STRPT_VIRI" "LVX" "Table 2H-2" "5ug" 17 13 -"CLSI 2014" "DISK" "B_STRPT_VIRI" "MEM" "Table 2H-2" "10ug" -"CLSI 2014" "DISK" "B_STRPT_VIRI" "OFX" "Table 2H-2" "5ug" 16 12 -"CLSI 2014" "DISK" "B_STRPT_VIRI" "PEN" "Table 2H-2" "10units" -"CLSI 2014" "DISK" "B_STRPT_VIRI" "QDA" "Table 2H-2" "15ug" 19 15 -"CLSI 2014" "DISK" "B_STRPT_VIRI" "TCY" "Table 2H-2" "30ug" 23 18 -"CLSI 2014" "DISK" "B_STRPT_VIRI" "TVA" "Table 2H-2" "10ug" 19 15 -"CLSI 2014" "DISK" "B_STRPT_VIRI" "VAN" "Table 2H-2" "30ug" 17 -"CLSI 2013" "DISK" "B_ACNTB" "AMK" "Table 2B-2" "30ug" 17 14 -"CLSI 2013" "DISK" "B_ACNTB" "CAZ" "Table 2B-2" "30ug" 18 14 -"CLSI 2013" "DISK" "B_ACNTB" "CIP" "Table 2B-2" "5ug" 21 15 -"CLSI 2013" "DISK" "B_ACNTB" "COL" "Table 2B-2" "10ug" -"CLSI 2013" "DISK" "B_ACNTB" "CRO" "Table 2B-2" "30ug" 21 13 -"CLSI 2013" "DISK" "B_ACNTB" "CTX" "Table 2B-2" "30ug" 23 14 -"CLSI 2013" "DISK" "B_ACNTB" "DOX" "Table 2B-2" "30ug" 13 9 -"CLSI 2013" "DISK" "B_ACNTB" "ETP" "Table 2B-2" "10ug" -"CLSI 2013" "DISK" "B_ACNTB" "FEP" "Table 2B-2" "30ug" 18 14 -"CLSI 2013" "DISK" "B_ACNTB" "GAT" "Table 2B-2" "5ug" 18 14 -"CLSI 2013" "DISK" "B_ACNTB" "GEN" "Table 2B-2" "10ug" 15 12 -"CLSI 2013" "DISK" "B_ACNTB" "IPM" "Table 2B-2" "10ug" 16 13 -"CLSI 2013" "DISK" "B_ACNTB" "LVX" "Table 2B-2" "5ug" 17 13 -"CLSI 2013" "DISK" "B_ACNTB" "MEM" "Table 2B-2" "10ug" 16 13 -"CLSI 2013" "DISK" "B_ACNTB" "MEZ" "Table 2B-2" "75ug" 21 17 -"CLSI 2013" "DISK" "B_ACNTB" "MNO" "Table 2B-2" "30ug" 16 12 -"CLSI 2013" "DISK" "B_ACNTB" "NET" "Table 2B-2" "30ug" -"CLSI 2013" "DISK" "B_ACNTB" "PIP" "Table 2B-2" "100ug" 21 17 -"CLSI 2013" "DISK" "B_ACNTB" "PLB" "Table 2B-2" "300ug" -"CLSI 2013" "DISK" "B_ACNTB" "SAM" "Table 2B-2" "10ug" 15 11 -"CLSI 2013" "DISK" "B_ACNTB" "SXT" "Table 2B-2" "1.25/23.75ug" 16 10 -"CLSI 2013" "DISK" "B_ACNTB" "TCC" "Table 2B-2" "75ug" 20 14 -"CLSI 2013" "DISK" "B_ACNTB" "TCY" "Table 2B-2" "30ug" 15 11 -"CLSI 2013" "DISK" "B_ACNTB" "TIC" "Table 2B-2" "75ug" 20 14 -"CLSI 2013" "DISK" "B_ACNTB" "TOB" "Table 2B-2" "10ug" 15 12 -"CLSI 2013" "DISK" "B_ACNTB" "TZP" "Table 2B-2" "100ug" 21 17 -"CLSI 2013" "DISK" "B_ACTNB_PLRP" "TIL" "Vet Table" "15ug" 11 10 -"CLSI 2013" "DISK" "B_AERMN" "AMC" "M45 Table 2" "20ug" 18 13 -"CLSI 2013" "DISK" "B_AERMN" "AMK" "M45 Table 2" "30ug" 17 14 -"CLSI 2013" "DISK" "B_AERMN" "ATM" "M45 Table 2" "30ug" 21 17 -"CLSI 2013" "DISK" "B_AERMN" "CAZ" "M45 Table 2" "30ug" 21 17 -"CLSI 2013" "DISK" "B_AERMN" "CHL" "M45 Table 2" "30ug" 18 12 -"CLSI 2013" "DISK" "B_AERMN" "CIP" "M45 Table 2" "5ug" 21 15 -"CLSI 2013" "DISK" "B_AERMN" "CRO" "M45 Table 2" "30ug" 23 19 -"CLSI 2013" "DISK" "B_AERMN" "CTX" "M45 Table 2" "30ug" 26 22 -"CLSI 2013" "DISK" "B_AERMN" "CXM" "M45 Table 2" "30ug" 18 14 -"CLSI 2013" "DISK" "B_AERMN" "ETP" "M45 Table 2" "10ug" 19 15 -"CLSI 2013" "DISK" "B_AERMN" "FEP" "M45 Table 2" "30ug" 18 14 -"CLSI 2013" "DISK" "B_AERMN" "FOX" "M45 Table 2" "30ug" 18 14 -"CLSI 2013" "DISK" "B_AERMN" "GEN" "M45 Table 2" "10ug" 15 12 -"CLSI 2013" "DISK" "B_AERMN" "IPM" "M45 Table 2" "10ug" 16 13 -"CLSI 2013" "DISK" "B_AERMN" "LVX" "M45 Table 2" "5ug" 17 13 -"CLSI 2013" "DISK" "B_AERMN" "MEM" "M45 Table 2" "10ug" 16 13 -"CLSI 2013" "DISK" "B_AERMN" "SAM" "M45 Table 2" "10ug" 15 11 -"CLSI 2013" "DISK" "B_AERMN" "SXT" "M45 Table 2" "1.25/23.75ug" 16 10 -"CLSI 2013" "DISK" "B_AERMN" "TCY" "M45 Table 2" "30ug" 15 11 -"CLSI 2013" "DISK" "B_AERMN" "TZP" "M45 Table 2" "100ug" 21 17 -"CLSI 2013" "DISK" "B_BRKHL_CEPC" "CAZ" "Table 2B-3" "30ug" 21 17 -"CLSI 2013" "DISK" "B_BRKHL_CEPC" "CHL" "Table 2B-3" "30ug" -"CLSI 2013" "DISK" "B_BRKHL_CEPC" "LVX" "Table 2B-3" "5ug" -"CLSI 2013" "DISK" "B_BRKHL_CEPC" "MEM" "Table 2B-3" "10ug" 20 15 -"CLSI 2013" "DISK" "B_BRKHL_CEPC" "MNO" "Table 2B-3" "30ug" 19 14 -"CLSI 2013" "DISK" "B_BRKHL_CEPC" "SXT" "Table 2B-3" "1.25/23.75ug" 16 10 -"CLSI 2013" "DISK" "B_BRKHL_CEPC" "TCC" "Table 2B-3" "75ug" -"CLSI 2013" "DISK" "B_ENTRC" "AMP" "Table 2D" "10ug" 17 16 -"CLSI 2013" "DISK" "B_ENTRC" "CHL" "Table 2D" "30ug" 18 12 -"CLSI 2013" "DISK" "B_ENTRC" "CIP" "Table 2D" "5ug" 21 15 -"CLSI 2013" "DISK" "B_ENTRC" "DAP" "Table 2D" "30ug" -"CLSI 2013" "DISK" "B_ENTRC" "DOX" "Table 2D" "30ug" 16 12 -"CLSI 2013" "DISK" "B_ENTRC" "ERY" "Table 2D" "15ug" 23 13 -"CLSI 2013" "DISK" "B_ENTRC" "FOS" "Table 2D" "200ug" 16 12 -"CLSI 2013" "DISK" "B_ENTRC" "GAT" "Table 2D" "5ug" 18 14 -"CLSI 2013" "DISK" "B_ENTRC" "GEH" "Table 2D" "120ug" 10 6 -"CLSI 2013" "DISK" "B_ENTRC" "LNZ" "Table 2D" "30ug" 23 20 -"CLSI 2013" "DISK" "B_ENTRC" "LVX" "Table 2D" "5ug" 17 13 -"CLSI 2013" "DISK" "B_ENTRC" "MNO" "Table 2D" "30ug" 19 14 -"CLSI 2013" "DISK" "B_ENTRC" "NIT" "Table 2D" "300ug" 17 14 -"CLSI 2013" "DISK" "B_ENTRC" "NOR" "Table 2D" "10ug" 17 12 -"CLSI 2013" "DISK" "B_ENTRC" "PEN" "Table 2D" "10units" 15 14 -"CLSI 2013" "DISK" "B_ENTRC" "QDA" "Table 2D" "15ug" 19 15 -"CLSI 2013" "DISK" "B_ENTRC" "RIF" "Table 2D" "5ug" 20 16 -"CLSI 2013" "DISK" "B_ENTRC" "STH" "Table 2D" "300ug" 10 6 -"CLSI 2013" "DISK" "B_ENTRC" "TCY" "Table 2D" "30ug" 19 14 -"CLSI 2013" "DISK" "B_ENTRC" "TEC" "Table 2D" "30ug" 14 10 -"CLSI 2013" "DISK" "B_ENTRC" "VAN" "Table 2D" "30ug" 17 14 -"CLSI 2013" "DISK" "B_HMPHL" "AMC" "Table 2E" "20/10ug" 20 19 -"CLSI 2013" "DISK" "B_HMPHL" "AMP" "Table 2E" "10ug" 22 18 -"CLSI 2013" "DISK" "B_HMPHL" "ATM" "Table 2E" "30ug" 26 -"CLSI 2013" "DISK" "B_HMPHL" "AZM" "Table 2E" "15ug" 12 -"CLSI 2013" "DISK" "B_HMPHL" "CAT" "Table 2E" "10ug" 18 14 -"CLSI 2013" "DISK" "B_HMPHL" "CAZ" "Table 2E" "30ug" 26 -"CLSI 2013" "DISK" "B_HMPHL" "CDR" "Table 2E" "5ug" 20 -"CLSI 2013" "DISK" "B_HMPHL" "CEC" "Table 2E" "30ug" 20 16 -"CLSI 2013" "DISK" "B_HMPHL" "CFM" "Table 2E" "5ug" 21 -"CLSI 2013" "DISK" "B_HMPHL" "CHL" "Table 2E" "30ug" 29 25 -"CLSI 2013" "DISK" "B_HMPHL" "CID" "Table 2E" "30ug" 20 16 -"CLSI 2013" "DISK" "B_HMPHL" "CIP" "Table 2E" "5ug" 21 -"CLSI 2013" "DISK" "B_HMPHL" "CLR" "Table 2E" "15ug" 13 10 -"CLSI 2013" "DISK" "B_HMPHL" "CPD" "Table 2E" "10ug" 21 -"CLSI 2013" "DISK" "B_HMPHL" "CPR" "Table 2E" "30ug" 18 14 -"CLSI 2013" "DISK" "B_HMPHL" "CRO" "Table 2E" "30ug" 26 -"CLSI 2013" "DISK" "B_HMPHL" "CTB" "Table 2E" "30ug" 28 -"CLSI 2013" "DISK" "B_HMPHL" "CTX" "Table 2E" "30ug" 26 -"CLSI 2013" "DISK" "B_HMPHL" "CXA" "Table 2E" "30ug" 20 16 -"CLSI 2013" "DISK" "Oral" "B_HMPHL" "CXM" "Table 2E" "30ug" 20 16 -"CLSI 2013" "DISK" "B_HMPHL" "CXM" "Table 2E" "30ug" 20 16 -"CLSI 2013" "DISK" "B_HMPHL" "CZX" "Table 2E" "30ug" 26 -"CLSI 2013" "DISK" "B_HMPHL" "DOR" "Table 2E" "10ug" 16 -"CLSI 2013" "DISK" "B_HMPHL" "ETP" "Table 2E" "10ug" 19 -"CLSI 2013" "DISK" "B_HMPHL" "FEP" "Table 2E" "30ug" 26 -"CLSI 2013" "DISK" "B_HMPHL" "FLE" "Table 2E" "5ug" 19 -"CLSI 2013" "DISK" "B_HMPHL" "GAT" "Table 2E" "5ug" 18 -"CLSI 2013" "DISK" "B_HMPHL" "GEM" "Table 2E" "5ug" 18 -"CLSI 2013" "DISK" "B_HMPHL" "GRX" "Table 2E" "5ug" 24 -"CLSI 2013" "DISK" "B_HMPHL" "IPM" "Table 2E" "10ug" 16 -"CLSI 2013" "DISK" "B_HMPHL" "LOM" "Table 2E" "10ug" 22 -"CLSI 2013" "DISK" "B_HMPHL" "LOR" "Table 2E" "30ug" 19 15 -"CLSI 2013" "DISK" "B_HMPHL" "LVX" "Table 2E" "5ug" 17 -"CLSI 2013" "DISK" "B_HMPHL" "MAN" "Table 2E" "30ug" -"CLSI 2013" "DISK" "B_HMPHL" "MEM" "Table 2E" "10ug" 20 -"CLSI 2013" "DISK" "B_HMPHL" "MFX" "Table 2E" "5ug" 18 -"CLSI 2013" "DISK" "B_HMPHL" "OFX" "Table 2E" "5ug" 16 -"CLSI 2013" "DISK" "B_HMPHL" "RIF" "Table 2E" "5ug" 20 16 -"CLSI 2013" "DISK" "B_HMPHL" "SAM" "Table 2E" "10/10ug" 20 19 -"CLSI 2013" "DISK" "B_HMPHL" "SPX" "Table 2E" "5ug" -"CLSI 2013" "DISK" "B_HMPHL" "SXT" "Table 2E" "1.25/23.75ug" 15 10 -"CLSI 2013" "DISK" "B_HMPHL" "TCY" "Table 2E" "30ug" 29 25 -"CLSI 2013" "DISK" "B_HMPHL" "TLT" "Table 2E" "15ug" 15 11 -"CLSI 2013" "DISK" "B_HMPHL" "TVA" "Table 2E" "10ug" 22 -"CLSI 2013" "DISK" "B_HMPHL" "TZP" "Table 2E" "100ug" 21 -"CLSI 2013" "DISK" "B_HMPHL_INFL" "CPT" "Table 2E" "30ug" 30 -"CLSI 2013" "DISK" "B_HSTPH_SOMN" "ENR" "Vet Table" "5ug" 21 16 -"CLSI 2013" "DISK" "B_HSTPH_SOMN" "SPT" "Vet Table" "100ug" 14 10 -"CLSI 2013" "DISK" "B_LISTR_MNCY" "AMP" "M45 Table 11" "10ug" -"CLSI 2013" "DISK" "B_LISTR_MNCY" "PEN" "M45 Table 11" "10units" -"CLSI 2013" "DISK" "B_MRXLL_CTRR" "AMC" "M45 Table 12" "20ug" 24 23 -"CLSI 2013" "DISK" "B_MRXLL_CTRR" "AZM" "M45 Table 12" "15ug" 26 -"CLSI 2013" "DISK" "B_MRXLL_CTRR" "CLR" "M45 Table 12" "15ug" 24 -"CLSI 2013" "DISK" "B_MRXLL_CTRR" "ERY" "M45 Table 12" "15ug" 21 -"CLSI 2013" "DISK" "B_MRXLL_CTRR" "SXT" "M45 Table 12" "1.25/23.75ug" 13 10 -"CLSI 2013" "DISK" "B_MRXLL_CTRR" "TCY" "M45 Table 12" "30ug" 29 24 -"CLSI 2013" "DISK" "B_NESSR_GNRR" "CAT" "Table 2F" "10ug" 29 -"CLSI 2013" "DISK" "B_NESSR_GNRR" "CAZ" "Table 2F" "30ug" 31 -"CLSI 2013" "DISK" "B_NESSR_GNRR" "CFM" "Table 2F" "5ug" 31 -"CLSI 2013" "DISK" "B_NESSR_GNRR" "CIP" "Table 2F" "5ug" 41 27 -"CLSI 2013" "DISK" "B_NESSR_GNRR" "CMZ" "Table 2F" "30ug" 33 27 -"CLSI 2013" "DISK" "B_NESSR_GNRR" "CPD" "Table 2F" "10ug" 29 -"CLSI 2013" "DISK" "B_NESSR_GNRR" "CRO" "Table 2F" "30ug" 35 -"CLSI 2013" "DISK" "B_NESSR_GNRR" "CTT" "Table 2F" "30ug" 26 19 -"CLSI 2013" "DISK" "B_NESSR_GNRR" "CTX" "Table 2F" "30ug" 31 -"CLSI 2013" "DISK" "B_NESSR_GNRR" "CXM" "Table 2F" "30ug" 31 25 -"CLSI 2013" "DISK" "B_NESSR_GNRR" "CZX" "Table 2F" "30ug" 38 -"CLSI 2013" "DISK" "B_NESSR_GNRR" "ENX" "Table 2F" "10ug" 36 31 -"CLSI 2013" "DISK" "B_NESSR_GNRR" "FEP" "Table 2F" "30ug" 31 -"CLSI 2013" "DISK" "B_NESSR_GNRR" "FLE" "Table 2F" "5ug" 35 28 -"CLSI 2013" "DISK" "B_NESSR_GNRR" "FOX" "Table 2F" "30ug" 28 23 -"CLSI 2013" "DISK" "B_NESSR_GNRR" "GAT" "Table 2F" "5ug" 38 33 -"CLSI 2013" "DISK" "B_NESSR_GNRR" "GRX" "Table 2F" "5ug" 37 27 -"CLSI 2013" "DISK" "B_NESSR_GNRR" "LOM" "Table 2F" "10ug" 38 26 -"CLSI 2013" "DISK" "B_NESSR_GNRR" "OFX" "Table 2F" "5ug" 31 24 -"CLSI 2013" "DISK" "B_NESSR_GNRR" "PEN" "Table 2F" "10units" 47 26 -"CLSI 2013" "DISK" "B_NESSR_GNRR" "SPT" "Table 2F" "100ug" 18 14 -"CLSI 2013" "DISK" "B_NESSR_GNRR" "TCY" "Table 2F" "30ug" 38 30 -"CLSI 2013" "DISK" "B_NESSR_GNRR" "TVA" "Table 2F" "10ug" 34 -"CLSI 2013" "DISK" "B_NESSR_MNNG" "AMP" "Table 2I" "10ug" -"CLSI 2013" "DISK" "B_NESSR_MNNG" "AZM" "Table 2I" "15ug" 20 -"CLSI 2013" "DISK" "B_NESSR_MNNG" "CHL" "Table 2I" "30ug" 26 19 -"CLSI 2013" "DISK" "B_NESSR_MNNG" "CIP" "Table 2I" "5ug" 35 32 -"CLSI 2013" "DISK" "B_NESSR_MNNG" "CRO" "Table 2I" "30ug" 34 -"CLSI 2013" "DISK" "B_NESSR_MNNG" "CTX" "Table 2I" "30ug" 34 -"CLSI 2013" "DISK" "B_NESSR_MNNG" "LVX" "Table 2I" "5ug" -"CLSI 2013" "DISK" "B_NESSR_MNNG" "MEM" "Table 2I" "10ug" 30 -"CLSI 2013" "DISK" "B_NESSR_MNNG" "MNO" "Table 2I" "30ug" 26 -"CLSI 2013" "DISK" "B_NESSR_MNNG" "NAL" "Table 2I" "30ug" 26 25 -"CLSI 2013" "DISK" "B_NESSR_MNNG" "PEN" "Table 2I" "10units" -"CLSI 2013" "DISK" "B_NESSR_MNNG" "RIF" "Table 2I" "5ug" 25 19 -"CLSI 2013" "DISK" "B_NESSR_MNNG" "SMX" "Table 2I" "200-300ug" -"CLSI 2013" "DISK" "B_NESSR_MNNG" "SOX" "Table 2I" "200-300ug" -"CLSI 2013" "DISK" "B_NESSR_MNNG" "SSS" "Table 2I" "200-300ug" -"CLSI 2013" "DISK" "B_NESSR_MNNG" "SXT" "Table 2I" "1.25/23.75ug" 30 25 -"CLSI 2013" "DISK" "B_PLSMN" "AMC" "M45 Table 2" "20ug" 18 13 -"CLSI 2013" "DISK" "B_PLSMN" "AMK" "M45 Table 2" "30ug" 17 14 -"CLSI 2013" "DISK" "B_PLSMN" "ATM" "M45 Table 2" "30ug" 21 17 -"CLSI 2013" "DISK" "B_PLSMN" "CAZ" "M45 Table 2" "30ug" 21 17 -"CLSI 2013" "DISK" "B_PLSMN" "CHL" "M45 Table 2" "30ug" 18 12 -"CLSI 2013" "DISK" "B_PLSMN" "CIP" "M45 Table 2" "5ug" 21 15 -"CLSI 2013" "DISK" "B_PLSMN" "CRO" "M45 Table 2" "30ug" 23 19 -"CLSI 2013" "DISK" "B_PLSMN" "CTX" "M45 Table 2" "30ug" 26 22 -"CLSI 2013" "DISK" "B_PLSMN" "CXM" "M45 Table 2" "30ug" 18 14 -"CLSI 2013" "DISK" "B_PLSMN" "ETP" "M45 Table 2" "10ug" 19 15 -"CLSI 2013" "DISK" "B_PLSMN" "FEP" "M45 Table 2" "30ug" 18 14 -"CLSI 2013" "DISK" "B_PLSMN" "FOX" "M45 Table 2" "30ug" 18 14 -"CLSI 2013" "DISK" "B_PLSMN" "GEN" "M45 Table 2" "10ug" 15 12 -"CLSI 2013" "DISK" "B_PLSMN" "IPM" "M45 Table 2" "10ug" 16 13 -"CLSI 2013" "DISK" "B_PLSMN" "LVX" "M45 Table 2" "5ug" 17 13 -"CLSI 2013" "DISK" "B_PLSMN" "MEM" "M45 Table 2" "10ug" 16 13 -"CLSI 2013" "DISK" "B_PLSMN" "SAM" "M45 Table 2" "10ug" 15 11 -"CLSI 2013" "DISK" "B_PLSMN" "SXT" "M45 Table 2" "1.25/23.75ug" 16 10 -"CLSI 2013" "DISK" "B_PLSMN" "TCY" "M45 Table 2" "30ug" 15 11 -"CLSI 2013" "DISK" "B_PLSMN" "TZP" "M45 Table 2" "100ug" 21 17 -"CLSI 2013" "DISK" "B_PRVDN_HMBC" "ENR" "Vet Table" "5ug" 21 16 -"CLSI 2013" "DISK" "B_PRVDN_HMBC" "SPT" "100ug" 14 10 -"CLSI 2013" "DISK" "B_PSDMN" "ETP" "10ug" -"CLSI 2013" "DISK" "B_PSDMN_AERG" "AMK" "Table 2B-1" "30ug" 17 14 -"CLSI 2013" "DISK" "B_PSDMN_AERG" "ATM" "Table 2B-1" "30ug" 22 15 -"CLSI 2013" "DISK" "B_PSDMN_AERG" "CAZ" "Table 2B-1" "30ug" 18 14 -"CLSI 2013" "DISK" "B_PSDMN_AERG" "CIP" "Table 2B-1" "5ug" 21 15 -"CLSI 2013" "DISK" "B_PSDMN_AERG" "COL" "Table 2B-1" "10ug" 11 10 -"CLSI 2013" "DISK" "B_PSDMN_AERG" "DOR" "Table 2B-1" "10ug" 19 15 -"CLSI 2013" "DISK" "B_PSDMN_AERG" "FEP" "Table 2B-1" "30ug" 18 14 -"CLSI 2013" "DISK" "B_PSDMN_AERG" "GAT" "Table 2B-1" "5ug" 18 14 -"CLSI 2013" "DISK" "B_PSDMN_AERG" "GEN" "Table 2B-1" "10ug" 15 12 -"CLSI 2013" "DISK" "B_PSDMN_AERG" "IPM" "Table 2B-1" "10ug" 19 15 -"CLSI 2013" "DISK" "B_PSDMN_AERG" "LOM" "Table 2B-1" "10ug" 22 18 -"CLSI 2013" "DISK" "B_PSDMN_AERG" "LVX" "Table 2B-1" "5ug" 17 13 -"CLSI 2013" "DISK" "B_PSDMN_AERG" "MEM" "Table 2B-1" "10ug" 19 15 -"CLSI 2013" "DISK" "B_PSDMN_AERG" "NET" "Table 2B-1" "30ug" 15 12 -"CLSI 2013" "DISK" "B_PSDMN_AERG" "NOR" "Table 2B-1" "10ug" 17 12 -"CLSI 2013" "DISK" "B_PSDMN_AERG" "OFX" "Table 2B-1" "5ug" 16 12 -"CLSI 2013" "DISK" "B_PSDMN_AERG" "PIP" "Table 2B-1" "100ug" 21 14 -"CLSI 2013" "DISK" "B_PSDMN_AERG" "PLB" "Table 2B-1" "300ug" 12 11 -"CLSI 2013" "DISK" "B_PSDMN_AERG" "TCC" "Table 2B-1" "75ug" 24 15 -"CLSI 2013" "DISK" "B_PSDMN_AERG" "TIC" "Table 2B-1" "75ug" 24 15 -"CLSI 2013" "DISK" "B_PSDMN_AERG" "TOB" "Table 2B-1" "10ug" 15 12 -"CLSI 2013" "DISK" "B_PSDMN_AERG" "TZP" "Table 2B-1" "100ug" 21 14 -"CLSI 2013" "DISK" "B_PSTRL" "AMC" "M45 Table 13" "20ug" 27 -"CLSI 2013" "DISK" "B_PSTRL" "AMP" "M45 Table 13" "10ug" 27 -"CLSI 2013" "DISK" "B_PSTRL" "AZM" "M45 Table 13" "15ug" 20 -"CLSI 2013" "DISK" "B_PSTRL" "CHL" "M45 Table 13" "30ug" 28 -"CLSI 2013" "DISK" "B_PSTRL" "CRO" "M45 Table 13" "30ug" 34 -"CLSI 2013" "DISK" "B_PSTRL" "DOX" "M45 Table 13" "30ug" 23 -"CLSI 2013" "DISK" "B_PSTRL" "ERY" "M45 Table 13" "15ug" 27 24 -"CLSI 2013" "DISK" "B_PSTRL" "LVX" "M45 Table 13" "5ug" 28 -"CLSI 2013" "DISK" "B_PSTRL" "MFX" "M45 Table 13" "5ug" 28 -"CLSI 2013" "DISK" "B_PSTRL" "PEN" "M45 Table 13" "10 Units" 25 -"CLSI 2013" "DISK" "B_PSTRL" "SXT" "M45 Table 13" "1.25/23.75ug" 24 -"CLSI 2013" "DISK" "B_PSTRL" "TCY" "M45 Table 13" "30ug" 23 -"CLSI 2013" "DISK" "B_PSTRL_MLTC" "ENR" "Vet Table" "5ug" 21 16 -"CLSI 2013" "DISK" "B_PSTRL_MLTC" "SPT" "100ug" 14 10 -"CLSI 2013" "DISK" "B_PSTRL_MLTC" "TIL" "Vet Table" "15ug" 11 10 -"CLSI 2013" "DISK" "Intestinal" "B_SLMNL" "CIP" "Table 2A" "5ug" 21 15 -"CLSI 2013" "DISK" "Extraintestinal" "B_SLMNL" "CIP" "Table 2A" "5ug" 31 20 -"CLSI 2013" "DISK" "B_SLMNL" "CIP" "Table 2A" "5ug" 31 20 -"CLSI 2013" "DISK" "B_STNTR_MLTP" "CAZ" "Table 2B-4" "30ug" -"CLSI 2013" "DISK" "B_STNTR_MLTP" "CHL" "Table 2B-4" "30ug" -"CLSI 2013" "DISK" "B_STNTR_MLTP" "LVX" "Table 2B-4" "75ug" 17 13 -"CLSI 2013" "DISK" "B_STNTR_MLTP" "MNO" "Table 2B-4" "30ug" 19 14 -"CLSI 2013" "DISK" "B_STNTR_MLTP" "SXT" "Table 2B-4" "30ug" 16 10 -"CLSI 2013" "DISK" "B_STNTR_MLTP" "TCC" "Table 2B-4" "30ug" -"CLSI 2013" "DISK" "B_STPHY" "AMC" "Table 2C" "20ug" 20 19 -"CLSI 2013" "DISK" "B_STPHY" "AMK" "Table 2C" "30ug" 17 14 -"CLSI 2013" "DISK" "B_STPHY" "AMP" "Table 2C" "10ug" 29 28 -"CLSI 2013" "DISK" "B_STPHY" "AZM" "Table 2C" "15ug" 18 13 -"CLSI 2013" "DISK" "B_STPHY" "CAZ" "Table 2C" "30ug" 18 14 -"CLSI 2013" "DISK" "B_STPHY" "CDR" "Table 2C" "5ug" 20 16 -"CLSI 2013" "DISK" "B_STPHY" "CEC" "Table 2C" "30ug" 18 14 -"CLSI 2013" "DISK" "B_STPHY" "CEP" "Table 2C" "30ug" 18 14 -"CLSI 2013" "DISK" "B_STPHY" "CFP" "Table 2C" "75ug" 21 15 -"CLSI 2013" "DISK" "B_STPHY" "CHL" "Table 2C" "30ug" 18 12 -"CLSI 2013" "DISK" "B_STPHY" "CID" "Table 2C" "30ug" 18 14 -"CLSI 2013" "DISK" "B_STPHY" "CIP" "Table 2C" "5ug" 21 15 -"CLSI 2013" "DISK" "B_STPHY" "CLI" "Table 2C" "2ug" 21 14 -"CLSI 2013" "DISK" "B_STPHY" "CLR" "Table 2C" "15ug" 18 13 -"CLSI 2013" "DISK" "B_STPHY" "CMZ" "Table 2C" "30ug" 16 12 -"CLSI 2013" "DISK" "B_STPHY" "CPD" "Table 2C" "10ug" 21 17 -"CLSI 2013" "DISK" "B_STPHY" "CPR" "Table 2C" "30ug" 18 14 -"CLSI 2013" "DISK" "B_STPHY" "CRO" "Table 2C" "30ug" 21 13 -"CLSI 2013" "DISK" "B_STPHY" "CTT" "Table 2C" "30ug" 16 12 -"CLSI 2013" "DISK" "B_STPHY" "CTX" "Table 2C" "30ug" 23 14 -"CLSI 2013" "DISK" "B_STPHY" "CXA" "Table 2C" "30ug" 23 14 -"CLSI 2013" "DISK" "Oral" "B_STPHY" "CXM" "Table 2C" "30ug" 23 14 -"CLSI 2013" "DISK" "Parenteral" "B_STPHY" "CXM" "Table 2C" "30ug" 18 14 -"CLSI 2013" "DISK" "Oral" "B_STPHY" "CXM" "Table 2C" "30ug" 23 14 -"CLSI 2013" "DISK" "B_STPHY" "CZO" "Table 2C" "30ug" 18 14 -"CLSI 2013" "DISK" "B_STPHY" "CZX" "Table 2C" "30ug" 20 14 -"CLSI 2013" "DISK" "B_STPHY" "DAP" "Table 2C" "30ug" -"CLSI 2013" "DISK" "B_STPHY" "DIR" "Table 2C" "15ug" 19 15 -"CLSI 2013" "DISK" "B_STPHY" "DOR" "Table 2C" "10ug" 30 -"CLSI 2013" "DISK" "B_STPHY" "DOX" "Table 2C" "30ug" 16 12 -"CLSI 2013" "DISK" "B_STPHY" "ENX" "Table 2C" "10ug" 18 14 -"CLSI 2013" "DISK" "B_STPHY" "ERY" "Table 2C" "15ug" 23 13 -"CLSI 2013" "DISK" "B_STPHY" "ETP" "Table 2C" "10ug" 19 15 -"CLSI 2013" "DISK" "B_STPHY" "FEP" "Table 2C" "30ug" 18 14 -"CLSI 2013" "DISK" "B_STPHY" "FLE" "Table 2C" "5ug" 19 15 -"CLSI 2013" "DISK" "B_STPHY" "FOX" "Table 2C" "30ug" 25 24 -"CLSI 2013" "DISK" "B_STPHY" "GAT" "Table 2C" "10ug" 23 19 -"CLSI 2013" "DISK" "B_STPHY" "GEN" "Table 2C" "10ug" 15 12 -"CLSI 2013" "DISK" "B_STPHY" "GRX" "Table 2C" "5ug" 18 14 -"CLSI 2013" "DISK" "B_STPHY" "IPM" "Table 2C" "10ug" 16 13 -"CLSI 2013" "DISK" "B_STPHY" "KAN" "Table 2C" "30ug" 18 13 -"CLSI 2013" "DISK" "B_STPHY" "LNZ" "Table 2C" "30ug" 21 20 -"CLSI 2013" "DISK" "B_STPHY" "LOM" "Table 2C" "10ug" 22 18 -"CLSI 2013" "DISK" "B_STPHY" "LOR" "Table 2C" "30ug" 18 14 -"CLSI 2013" "DISK" "B_STPHY" "LTM" "Table 2C" "30ug" 23 14 -"CLSI 2013" "DISK" "B_STPHY" "LVX" "Table 2C" "10ug" 19 15 -"CLSI 2013" "DISK" "B_STPHY" "MAN" "Table 2C" "30ug" 18 14 -"CLSI 2013" "DISK" "B_STPHY" "MEM" "Table 2C" "10ug" 15 13 -"CLSI 2013" "DISK" "B_STPHY" "MET" "Table 2C" "5ug" 14 9 -"CLSI 2013" "DISK" "B_STPHY" "MFX" "Table 2C" "5ug" 24 20 -"CLSI 2013" "DISK" "B_STPHY" "MNO" "Table 2C" "30ug" 19 14 -"CLSI 2013" "DISK" "B_STPHY" "NAF" "Table 2C" "1ug" 13 10 -"CLSI 2013" "DISK" "B_STPHY" "NET" "Table 2C" "30ug" 15 12 -"CLSI 2013" "DISK" "B_STPHY" "NIT" "Table 2C" "300ug" 17 14 -"CLSI 2013" "DISK" "B_STPHY" "NOR" "Table 2C" "10ug" 17 12 -"CLSI 2013" "DISK" "B_STPHY" "OFX" "Table 2C" "5ug" 18 14 -"CLSI 2013" "DISK" "B_STPHY" "OXA" "Table 2C" "1ug" 13 10 -"CLSI 2013" "DISK" "B_STPHY" "PEN" "Table 2C" "10ug" 29 28 -"CLSI 2013" "DISK" "B_STPHY" "QDA" "Table 2C" "15ug" 19 15 -"CLSI 2013" "DISK" "B_STPHY" "RIF" "Table 2C" "5ug" 20 16 -"CLSI 2013" "DISK" "B_STPHY" "SAM" "Table 2C" "10ug" 15 11 -"CLSI 2013" "DISK" "B_STPHY" "SMX" "Table 2C" "200ug" 17 12 -"CLSI 2013" "DISK" "B_STPHY" "SOX" "Table 2C" "200ug" 17 12 -"CLSI 2013" "DISK" "B_STPHY" "SPX" "Table 2C" "5ug" 19 15 -"CLSI 2013" "DISK" "B_STPHY" "SSS" "Table 2C" "200ug" 17 12 -"CLSI 2013" "DISK" "B_STPHY" "SXT" "Table 2C" "1.25/23.75ug" 16 10 -"CLSI 2013" "DISK" "B_STPHY" "TCC" "Table 2C" "75/10ug" 23 22 -"CLSI 2013" "DISK" "B_STPHY" "TCY" "Table 2C" "30ug" 19 14 -"CLSI 2013" "DISK" "B_STPHY" "TEC" "Table 2C" "30ug" 14 10 -"CLSI 2013" "DISK" "B_STPHY" "TLT" "Table 2C" "15ug" 22 18 -"CLSI 2013" "DISK" "B_STPHY" "TMP" "Table 2C" "5ug" 16 10 -"CLSI 2013" "DISK" "B_STPHY" "TOB" "Table 2C" "10ug" 15 12 -"CLSI 2013" "DISK" "B_STPHY" "TZP" "Table 2C" "100/10ug" 18 17 -"CLSI 2013" "DISK" "B_STPHY" "VAN" "Table 2C" "30ug" -"CLSI 2013" "DISK" "B_STPHY_AURS" "CPT" "Table 2C" "30ug" 24 20 -"CLSI 2013" "DISK" "B_STPHY_AURS" "FOX" "Table 2C" "30ug" 22 21 -"CLSI 2013" "DISK" "B_STPHY_AURS" "OXA" "Table 2C" "1ug" 13 10 -"CLSI 2013" "DISK" "B_STPHY_LGDN" "FOX" "Table 2C" "30ug" 22 21 -"CLSI 2013" "DISK" "B_STPHY_LGDN" "OXA" "Table 2C" "1ug" -"CLSI 2013" "DISK" "B_STRPT" "AMC" "Table 2H-1" "20ug" -"CLSI 2013" "DISK" "B_STRPT" "AMP" "Table 2H-1" "10ug" 24 -"CLSI 2013" "DISK" "B_STRPT" "AMX" "Table 2H-1" "30ug" -"CLSI 2013" "DISK" "B_STRPT" "AZM" "Table 2H-1" "15ug" 18 13 -"CLSI 2013" "DISK" "B_STRPT" "CHL" "Table 2H-1" "30ug" 21 17 -"CLSI 2013" "DISK" "B_STRPT" "CLI" "Table 2H-1" "2ug" 19 15 -"CLSI 2013" "DISK" "B_STRPT" "CLR" "Table 2H-1" "15ug" 21 16 -"CLSI 2013" "DISK" "B_STRPT" "CPT" "Table 2H-1" "30ug" 26 -"CLSI 2013" "DISK" "B_STRPT" "CRO" "Table 2H-1" "30ug" 24 -"CLSI 2013" "DISK" "B_STRPT" "CTX" "Table 2H-1" "30ug" 24 -"CLSI 2013" "DISK" "B_STRPT" "CXM" "Table 2H-1" "30ug" -"CLSI 2013" "DISK" "B_STRPT" "DAP" "Table 2H-1" "30ug" 16 -"CLSI 2013" "DISK" "B_STRPT" "DIR" "Table 2H-1" "15ug" 18 13 -"CLSI 2013" "DISK" "B_STRPT" "DOR" "Table 2H-1" "10ug" -"CLSI 2013" "DISK" "B_STRPT" "ERY" "Table 2H-1" "15ug" 21 15 -"CLSI 2013" "DISK" "B_STRPT" "ETP" "Table 2H-1" "10ug" -"CLSI 2013" "DISK" "B_STRPT" "FEP" "Table 2H-1" "30ug" 24 -"CLSI 2013" "DISK" "B_STRPT" "GAT" "Table 2H-1" "5ug" 21 17 -"CLSI 2013" "DISK" "B_STRPT" "GEM" "Table 2H-1" "5ug" -"CLSI 2013" "DISK" "B_STRPT" "GRX" "Table 2H-1" "5ug" 19 15 -"CLSI 2013" "DISK" "B_STRPT" "IPM" "Table 2H-1" "10ug" -"CLSI 2013" "DISK" "B_STRPT" "LNZ" "Table 2H-1" "30ug" 21 -"CLSI 2013" "DISK" "B_STRPT" "LVX" "Table 2H-1" "5ug" 17 13 -"CLSI 2013" "DISK" "B_STRPT" "MEM" "Table 2H-1" "10ug" -"CLSI 2013" "DISK" "B_STRPT" "MFX" "Table 2H-1" "5ug" -"CLSI 2013" "DISK" "B_STRPT" "OFX" "Table 2H-1" "5ug" 16 12 -"CLSI 2013" "DISK" "B_STRPT" "PEN" "Table 2H-1" "10units" 24 -"CLSI 2013" "DISK" "B_STRPT" "QDA" "Table 2H-1" "15ug" 19 15 -"CLSI 2013" "DISK" "B_STRPT" "RIF" "Table 2H-1" "5ug" -"CLSI 2013" "DISK" "B_STRPT" "SPX" "Table 2H-1" "5ug" -"CLSI 2013" "DISK" "B_STRPT" "SXT" "Table 2H-1" "1.25/23.75ug" -"CLSI 2013" "DISK" "B_STRPT" "TCY" "Table 2H-1" "30ug" 23 18 -"CLSI 2013" "DISK" "B_STRPT" "TVA" "Table 2H-1" "10ug" 19 15 -"CLSI 2013" "DISK" "B_STRPT" "VAN" "Table 2H-1" "30ug" 17 -"CLSI 2013" "DISK" "B_STRPT_PNMN" "AMC" "Table 2G" "10/10ug" -"CLSI 2013" "DISK" "B_STRPT_PNMN" "AMP" "Table 2G" "10ug" -"CLSI 2013" "DISK" "B_STRPT_PNMN" "AMX" "Table 2G" "30ug" -"CLSI 2013" "DISK" "B_STRPT_PNMN" "AZM" "Table 2G" "15ug" 18 13 -"CLSI 2013" "DISK" "B_STRPT_PNMN" "CDR" "Table 2G" "5ug" -"CLSI 2013" "DISK" "B_STRPT_PNMN" "CEC" "Table 2G" "30ug" -"CLSI 2013" "DISK" "B_STRPT_PNMN" "CHL" "Table 2G" "30ug" 21 20 -"CLSI 2013" "DISK" "B_STRPT_PNMN" "CIP" "Table 2G" "5ug" -"CLSI 2013" "DISK" "B_STRPT_PNMN" "CLI" "Table 2G" "2ug" 19 15 -"CLSI 2013" "DISK" "B_STRPT_PNMN" "CLR" "Table 2G" "15ug" 21 16 -"CLSI 2013" "DISK" "B_STRPT_PNMN" "CPD" "Table 2G" "10ug" -"CLSI 2013" "DISK" "B_STRPT_PNMN" "CPR" "Table 2G" "30ug" -"CLSI 2013" "DISK" "B_STRPT_PNMN" "CPT" "Table 2G" "30ug" -"CLSI 2013" "DISK" "B_STRPT_PNMN" "CRO" "Table 2G" "30ug" -"CLSI 2013" "DISK" "B_STRPT_PNMN" "CTX" "Table 2G" "30ug" -"CLSI 2013" "DISK" "B_STRPT_PNMN" "CXA" "Table 2G" "30ug" -"CLSI 2013" "DISK" "Oral" "B_STRPT_PNMN" "CXM" "Table 2G" "30ug" -"CLSI 2013" "DISK" "B_STRPT_PNMN" "CXM" "Table 2G" "30ug" -"CLSI 2013" "DISK" "B_STRPT_PNMN" "DAP" "Table 2G" "30ug" -"CLSI 2013" "DISK" "B_STRPT_PNMN" "DIR" "Table 2G" "15ug" 18 13 -"CLSI 2013" "DISK" "B_STRPT_PNMN" "DOR" "Table 2G" "10ug" -"CLSI 2013" "DISK" "B_STRPT_PNMN" "DOX" "Table 2G" "30ug" 28 24 -"CLSI 2013" "DISK" "B_STRPT_PNMN" "ERY" "Table 2G" "15ug" 21 15 -"CLSI 2013" "DISK" "B_STRPT_PNMN" "ETP" "Table 2G" "10ug" -"CLSI 2013" "DISK" "B_STRPT_PNMN" "FEP" "Table 2G" "30ug" -"CLSI 2013" "DISK" "B_STRPT_PNMN" "GAT" "Table 2G" "5ug" 21 17 -"CLSI 2013" "DISK" "B_STRPT_PNMN" "GEM" "Table 2G" "5ug" 23 19 -"CLSI 2013" "DISK" "B_STRPT_PNMN" "GRX" "Table 2G" "5ug" 19 15 -"CLSI 2013" "DISK" "B_STRPT_PNMN" "IPM" "Table 2G" "10ug" -"CLSI 2013" "DISK" "B_STRPT_PNMN" "LNZ" "Table 2G" "30ug" 21 -"CLSI 2013" "DISK" "B_STRPT_PNMN" "LOR" "Table 2G" "30ug" -"CLSI 2013" "DISK" "B_STRPT_PNMN" "LVX" "Table 2G" "5ug" 17 13 -"CLSI 2013" "DISK" "B_STRPT_PNMN" "MEM" "Table 2G" "10ug" -"CLSI 2013" "DISK" "B_STRPT_PNMN" "MFX" "Table 2G" "5ug" 18 14 -"CLSI 2013" "DISK" "B_STRPT_PNMN" "NOR" "Table 2G" "5ug" -"CLSI 2013" "DISK" "B_STRPT_PNMN" "OFX" "Table 2G" "5ug" 16 12 -"CLSI 2013" "DISK" "B_STRPT_PNMN" "OXA" "Table 2G" "1ug" 20 -"CLSI 2013" "DISK" "B_STRPT_PNMN" "PEN" "Table 2G" "10units" -"CLSI 2013" "DISK" "B_STRPT_PNMN" "PNV" "Table 2G" "10ug" -"CLSI 2013" "DISK" "B_STRPT_PNMN" "QDA" "Table 2G" "15ug" 19 15 -"CLSI 2013" "DISK" "B_STRPT_PNMN" "RIF" "Table 2G" "5ug" 19 16 -"CLSI 2013" "DISK" "B_STRPT_PNMN" "SAM" "Table 2G" "10/10ug" -"CLSI 2013" "DISK" "B_STRPT_PNMN" "SPX" "Table 2G" "5ug" 19 15 -"CLSI 2013" "DISK" "B_STRPT_PNMN" "SXT" "Table 2G" "1.25/23.75ug" 19 15 -"CLSI 2013" "DISK" "B_STRPT_PNMN" "TCY" "Table 2G" "30ug" 28 24 -"CLSI 2013" "DISK" "B_STRPT_PNMN" "TLT" "Table 2G" "15ug" 19 15 -"CLSI 2013" "DISK" "B_STRPT_PNMN" "TVA" "Table 2G" "10ug" 19 15 -"CLSI 2013" "DISK" "B_STRPT_PNMN" "VAN" "Table 2G" "30ug" 17 -"CLSI 2013" "DISK" "B_STRPT_VIRI" "AMP" "Table 2H-2" "10ug" -"CLSI 2013" "DISK" "B_STRPT_VIRI" "AZM" "Table 2H-2" "15ug" 18 13 -"CLSI 2013" "DISK" "B_STRPT_VIRI" "CHL" "Table 2H-2" "30ug" 21 17 -"CLSI 2013" "DISK" "B_STRPT_VIRI" "CLI" "Table 2H-2" "2ug" 19 15 -"CLSI 2013" "DISK" "B_STRPT_VIRI" "CLR" "Table 2H-2" "15ug" 21 16 -"CLSI 2013" "DISK" "B_STRPT_VIRI" "CRO" "Table 2H-2" "30ug" 27 24 -"CLSI 2013" "DISK" "B_STRPT_VIRI" "CTX" "Table 2H-2" "30ug" 28 25 -"CLSI 2013" "DISK" "B_STRPT_VIRI" "DAP" "Table 2H-2" "30ug" -"CLSI 2013" "DISK" "B_STRPT_VIRI" "DIR" "Table 2H-2" "15ug" 18 13 -"CLSI 2013" "DISK" "B_STRPT_VIRI" "DOR" "Table 2H-2" "10ug" -"CLSI 2013" "DISK" "B_STRPT_VIRI" "ERY" "Table 2H-2" "15ug" 21 15 -"CLSI 2013" "DISK" "B_STRPT_VIRI" "ETP" "Table 2H-2" "10ug" -"CLSI 2013" "DISK" "B_STRPT_VIRI" "FEP" "Table 2H-2" "30ug" 24 21 -"CLSI 2013" "DISK" "B_STRPT_VIRI" "GAT" "Table 2H-2" "5ug" 21 17 -"CLSI 2013" "DISK" "B_STRPT_VIRI" "GRX" "Table 2H-2" "5ug" 19 15 -"CLSI 2013" "DISK" "B_STRPT_VIRI" "LNZ" "Table 2H-2" "30ug" 21 -"CLSI 2013" "DISK" "B_STRPT_VIRI" "LVX" "Table 2H-2" "5ug" 17 13 -"CLSI 2013" "DISK" "B_STRPT_VIRI" "MEM" "Table 2H-2" "10ug" -"CLSI 2013" "DISK" "B_STRPT_VIRI" "OFX" "Table 2H-2" "5ug" 16 12 -"CLSI 2013" "DISK" "B_STRPT_VIRI" "PEN" "Table 2H-2" "10units" -"CLSI 2013" "DISK" "B_STRPT_VIRI" "QDA" "Table 2H-2" "15ug" 19 15 -"CLSI 2013" "DISK" "B_STRPT_VIRI" "TCY" "Table 2H-2" "30ug" 23 18 -"CLSI 2013" "DISK" "B_STRPT_VIRI" "TVA" "Table 2H-2" "10ug" 19 15 -"CLSI 2013" "DISK" "B_STRPT_VIRI" "VAN" "Table 2H-2" "30ug" 17 -"CLSI 2012" "DISK" "B_ACNTB" "AMK" "Table 2B-2" "30ug" 17 14 -"CLSI 2012" "DISK" "B_ACNTB" "CAZ" "Table 2B-2" "30ug" 18 14 -"CLSI 2012" "DISK" "B_ACNTB" "CIP" "Table 2B-2" "5ug" 21 15 -"CLSI 2012" "DISK" "B_ACNTB" "COL" "Table 2B-2" "10ug" -"CLSI 2012" "DISK" "B_ACNTB" "CRO" "Table 2B-2" "30ug" 21 13 -"CLSI 2012" "DISK" "B_ACNTB" "CTX" "Table 2B-2" "30ug" 23 14 -"CLSI 2012" "DISK" "B_ACNTB" "DOX" "Table 2B-2" "30ug" 13 9 -"CLSI 2012" "DISK" "B_ACNTB" "ETP" "Table 2B-2" "10ug" -"CLSI 2012" "DISK" "B_ACNTB" "FEP" "Table 2B-2" "30ug" 18 14 -"CLSI 2012" "DISK" "B_ACNTB" "GAT" "Table 2B-2" "5ug" 18 14 -"CLSI 2012" "DISK" "B_ACNTB" "GEN" "Table 2B-2" "10ug" 15 12 -"CLSI 2012" "DISK" "B_ACNTB" "IPM" "Table 2B-2" "10ug" 16 13 -"CLSI 2012" "DISK" "B_ACNTB" "LVX" "Table 2B-2" "5ug" 17 13 -"CLSI 2012" "DISK" "B_ACNTB" "MEM" "Table 2B-2" "10ug" 16 13 -"CLSI 2012" "DISK" "B_ACNTB" "MEZ" "Table 2B-2" "75ug" 21 17 -"CLSI 2012" "DISK" "B_ACNTB" "MNO" "Table 2B-2" "30ug" 16 12 -"CLSI 2012" "DISK" "B_ACNTB" "NET" "Table 2B-2" "30ug" -"CLSI 2012" "DISK" "B_ACNTB" "PIP" "Table 2B-2" "100ug" 21 17 -"CLSI 2012" "DISK" "B_ACNTB" "PLB" "Table 2B-2" "300ug" -"CLSI 2012" "DISK" "B_ACNTB" "SAM" "Table 2B-2" "10ug" 15 11 -"CLSI 2012" "DISK" "B_ACNTB" "SXT" "Table 2B-2" "1.25/23.75ug" 16 10 -"CLSI 2012" "DISK" "B_ACNTB" "TCC" "Table 2B-2" "75ug" 20 14 -"CLSI 2012" "DISK" "B_ACNTB" "TCY" "Table 2B-2" "30ug" 15 11 -"CLSI 2012" "DISK" "B_ACNTB" "TIC" "Table 2B-2" "75ug" 20 14 -"CLSI 2012" "DISK" "B_ACNTB" "TOB" "Table 2B-2" "10ug" 15 12 -"CLSI 2012" "DISK" "B_ACNTB" "TZP" "Table 2B-2" "100ug" 21 17 -"CLSI 2012" "DISK" "B_ACTNB_PLRP" "TIL" "Vet Table" "15ug" 11 10 -"CLSI 2012" "DISK" "B_AERMN" "AMC" "M45 Table 2" "20ug" 18 13 -"CLSI 2012" "DISK" "B_AERMN" "AMK" "M45 Table 2" "30ug" 17 14 -"CLSI 2012" "DISK" "B_AERMN" "ATM" "M45 Table 2" "30ug" 21 17 -"CLSI 2012" "DISK" "B_AERMN" "CAZ" "M45 Table 2" "30ug" 21 17 -"CLSI 2012" "DISK" "B_AERMN" "CHL" "M45 Table 2" "30ug" 18 12 -"CLSI 2012" "DISK" "B_AERMN" "CIP" "M45 Table 2" "5ug" 21 15 -"CLSI 2012" "DISK" "B_AERMN" "CRO" "M45 Table 2" "30ug" 23 19 -"CLSI 2012" "DISK" "B_AERMN" "CTX" "M45 Table 2" "30ug" 26 22 -"CLSI 2012" "DISK" "B_AERMN" "CXM" "M45 Table 2" "30ug" 18 14 -"CLSI 2012" "DISK" "B_AERMN" "ETP" "M45 Table 2" "10ug" 19 15 -"CLSI 2012" "DISK" "B_AERMN" "FEP" "M45 Table 2" "30ug" 18 14 -"CLSI 2012" "DISK" "B_AERMN" "FOX" "M45 Table 2" "30ug" 18 14 -"CLSI 2012" "DISK" "B_AERMN" "GEN" "M45 Table 2" "10ug" 15 12 -"CLSI 2012" "DISK" "B_AERMN" "IPM" "M45 Table 2" "10ug" 16 13 -"CLSI 2012" "DISK" "B_AERMN" "LVX" "M45 Table 2" "5ug" 17 13 -"CLSI 2012" "DISK" "B_AERMN" "MEM" "M45 Table 2" "10ug" 16 13 -"CLSI 2012" "DISK" "B_AERMN" "SAM" "M45 Table 2" "10ug" 15 11 -"CLSI 2012" "DISK" "B_AERMN" "SXT" "M45 Table 2" "1.25/23.75ug" 16 10 -"CLSI 2012" "DISK" "B_AERMN" "TCY" "M45 Table 2" "30ug" 15 11 -"CLSI 2012" "DISK" "B_AERMN" "TZP" "M45 Table 2" "100ug" 21 17 -"CLSI 2012" "DISK" "B_BRKHL_CEPC" "CAZ" "Table 2B-3" "30ug" 21 17 -"CLSI 2012" "DISK" "B_BRKHL_CEPC" "CHL" "Table 2B-3" "30ug" -"CLSI 2012" "DISK" "B_BRKHL_CEPC" "LVX" "Table 2B-3" "5ug" -"CLSI 2012" "DISK" "B_BRKHL_CEPC" "MEM" "Table 2B-3" "10ug" 20 15 -"CLSI 2012" "DISK" "B_BRKHL_CEPC" "MNO" "Table 2B-3" "30ug" 19 14 -"CLSI 2012" "DISK" "B_BRKHL_CEPC" "SXT" "Table 2B-3" "1.25/23.75ug" 16 10 -"CLSI 2012" "DISK" "B_BRKHL_CEPC" "TCC" "Table 2B-3" "75ug" -"CLSI 2012" "DISK" "B_ENTRC" "AMP" "Table 2D" "10ug" 17 16 -"CLSI 2012" "DISK" "B_ENTRC" "CHL" "Table 2D" "30ug" 18 12 -"CLSI 2012" "DISK" "B_ENTRC" "CIP" "Table 2D" "5ug" 21 15 -"CLSI 2012" "DISK" "B_ENTRC" "DAP" "Table 2D" "30ug" -"CLSI 2012" "DISK" "B_ENTRC" "DOX" "Table 2D" "30ug" 16 12 -"CLSI 2012" "DISK" "B_ENTRC" "ERY" "Table 2D" "15ug" 23 13 -"CLSI 2012" "DISK" "B_ENTRC" "FOS" "Table 2D" "200ug" 16 12 -"CLSI 2012" "DISK" "B_ENTRC" "GAT" "Table 2D" "5ug" 18 14 -"CLSI 2012" "DISK" "B_ENTRC" "GEH" "Table 2D" "120ug" 10 6 -"CLSI 2012" "DISK" "B_ENTRC" "LNZ" "Table 2D" "30ug" 23 20 -"CLSI 2012" "DISK" "B_ENTRC" "LVX" "Table 2D" "5ug" 17 13 -"CLSI 2012" "DISK" "B_ENTRC" "MNO" "Table 2D" "30ug" 19 14 -"CLSI 2012" "DISK" "B_ENTRC" "NIT" "Table 2D" "300ug" 17 14 -"CLSI 2012" "DISK" "B_ENTRC" "NOR" "Table 2D" "10ug" 17 12 -"CLSI 2012" "DISK" "B_ENTRC" "PEN" "Table 2D" "10units" 15 14 -"CLSI 2012" "DISK" "B_ENTRC" "QDA" "Table 2D" "15ug" 19 15 -"CLSI 2012" "DISK" "B_ENTRC" "RIF" "Table 2D" "5ug" 20 16 -"CLSI 2012" "DISK" "B_ENTRC" "STH" "Table 2D" "300ug" 10 6 -"CLSI 2012" "DISK" "B_ENTRC" "TCY" "Table 2D" "30ug" 19 14 -"CLSI 2012" "DISK" "B_ENTRC" "TEC" "Table 2D" "30ug" 14 10 -"CLSI 2012" "DISK" "B_ENTRC" "VAN" "Table 2D" "30ug" 17 14 -"CLSI 2012" "DISK" "B_HMPHL" "AMC" "Table 2E" "20/10ug" 20 19 -"CLSI 2012" "DISK" "B_HMPHL" "AMP" "Table 2E" "10ug" 22 18 -"CLSI 2012" "DISK" "B_HMPHL" "ATM" "Table 2E" "30ug" 26 -"CLSI 2012" "DISK" "B_HMPHL" "AZM" "Table 2E" "15ug" 12 -"CLSI 2012" "DISK" "B_HMPHL" "CAT" "Table 2E" "10ug" 18 14 -"CLSI 2012" "DISK" "B_HMPHL" "CAZ" "Table 2E" "30ug" 26 -"CLSI 2012" "DISK" "B_HMPHL" "CDR" "Table 2E" "5ug" 20 -"CLSI 2012" "DISK" "B_HMPHL" "CEC" "Table 2E" "30ug" 20 16 -"CLSI 2012" "DISK" "B_HMPHL" "CFM" "Table 2E" "5ug" 21 -"CLSI 2012" "DISK" "B_HMPHL" "CHL" "Table 2E" "30ug" 29 25 -"CLSI 2012" "DISK" "B_HMPHL" "CID" "Table 2E" "30ug" 20 16 -"CLSI 2012" "DISK" "B_HMPHL" "CIP" "Table 2E" "5ug" 21 -"CLSI 2012" "DISK" "B_HMPHL" "CLR" "Table 2E" "15ug" 13 10 -"CLSI 2012" "DISK" "B_HMPHL" "CPD" "Table 2E" "10ug" 21 -"CLSI 2012" "DISK" "B_HMPHL" "CPR" "Table 2E" "30ug" 18 14 -"CLSI 2012" "DISK" "B_HMPHL" "CRO" "Table 2E" "30ug" 26 -"CLSI 2012" "DISK" "B_HMPHL" "CTB" "Table 2E" "30ug" 28 -"CLSI 2012" "DISK" "B_HMPHL" "CTX" "Table 2E" "30ug" 26 -"CLSI 2012" "DISK" "B_HMPHL" "CXA" "Table 2E" "30ug" 20 16 -"CLSI 2012" "DISK" "B_HMPHL" "CXM" "Table 2E" "30ug" 20 16 -"CLSI 2012" "DISK" "B_HMPHL" "CZX" "Table 2E" "30ug" 26 -"CLSI 2012" "DISK" "B_HMPHL" "DOR" "Table 2E" "10ug" 16 -"CLSI 2012" "DISK" "B_HMPHL" "ETP" "Table 2E" "10ug" 19 -"CLSI 2012" "DISK" "B_HMPHL" "FEP" "Table 2E" "30ug" 26 -"CLSI 2012" "DISK" "B_HMPHL" "FLE" "Table 2E" "5ug" 19 -"CLSI 2012" "DISK" "B_HMPHL" "GAT" "Table 2E" "5ug" 18 -"CLSI 2012" "DISK" "B_HMPHL" "GEM" "Table 2E" "5ug" 18 -"CLSI 2012" "DISK" "B_HMPHL" "GRX" "Table 2E" "5ug" 24 -"CLSI 2012" "DISK" "B_HMPHL" "IPM" "Table 2E" "10ug" 16 -"CLSI 2012" "DISK" "B_HMPHL" "LOM" "Table 2E" "10ug" 22 -"CLSI 2012" "DISK" "B_HMPHL" "LOR" "Table 2E" "30ug" 19 15 -"CLSI 2012" "DISK" "B_HMPHL" "LVX" "Table 2E" "5ug" 17 -"CLSI 2012" "DISK" "B_HMPHL" "MAN" "Table 2E" "30ug" -"CLSI 2012" "DISK" "B_HMPHL" "MEM" "Table 2E" "10ug" 20 -"CLSI 2012" "DISK" "B_HMPHL" "MFX" "Table 2E" "5ug" 18 -"CLSI 2012" "DISK" "B_HMPHL" "OFX" "Table 2E" "5ug" 16 -"CLSI 2012" "DISK" "B_HMPHL" "RIF" "Table 2E" "5ug" 20 16 -"CLSI 2012" "DISK" "B_HMPHL" "SAM" "Table 2E" "10/10ug" 20 19 -"CLSI 2012" "DISK" "B_HMPHL" "SPX" "Table 2E" "5ug" -"CLSI 2012" "DISK" "B_HMPHL" "SXT" "Table 2E" "1.25/23.75ug" 15 10 -"CLSI 2012" "DISK" "B_HMPHL" "TCY" "Table 2E" "30ug" 29 25 -"CLSI 2012" "DISK" "B_HMPHL" "TLT" "Table 2E" "15ug" 15 11 -"CLSI 2012" "DISK" "B_HMPHL" "TVA" "Table 2E" "10ug" 22 -"CLSI 2012" "DISK" "B_HMPHL" "TZP" "Table 2E" "100ug" 21 -"CLSI 2012" "DISK" "B_HSTPH_SOMN" "ENR" "Vet Table" "5ug" 21 16 -"CLSI 2012" "DISK" "B_HSTPH_SOMN" "SPT" "Vet Table" "100ug" 14 10 -"CLSI 2012" "DISK" "B_LISTR_MNCY" "AMP" "M45 Table 11" "10ug" -"CLSI 2012" "DISK" "B_LISTR_MNCY" "PEN" "M45 Table 11" "10units" -"CLSI 2012" "DISK" "B_MRXLL_CTRR" "AMC" "M45 Table 12" "20ug" 24 23 -"CLSI 2012" "DISK" "B_MRXLL_CTRR" "AZM" "M45 Table 12" "15ug" 26 -"CLSI 2012" "DISK" "B_MRXLL_CTRR" "CLR" "M45 Table 12" "15ug" 24 -"CLSI 2012" "DISK" "B_MRXLL_CTRR" "ERY" "M45 Table 12" "15ug" 21 -"CLSI 2012" "DISK" "B_MRXLL_CTRR" "SXT" "M45 Table 12" "1.25/23.75ug" 13 10 -"CLSI 2012" "DISK" "B_MRXLL_CTRR" "TCY" "M45 Table 12" "30ug" 29 24 -"CLSI 2012" "DISK" "B_NESSR_GNRR" "CAT" "Table 2F" "10ug" 29 -"CLSI 2012" "DISK" "B_NESSR_GNRR" "CAZ" "Table 2F" "30ug" 31 -"CLSI 2012" "DISK" "B_NESSR_GNRR" "CFM" "Table 2F" "5ug" 31 -"CLSI 2012" "DISK" "B_NESSR_GNRR" "CIP" "Table 2F" "5ug" 41 27 -"CLSI 2012" "DISK" "B_NESSR_GNRR" "CMZ" "Table 2F" "30ug" 33 27 -"CLSI 2012" "DISK" "B_NESSR_GNRR" "CPD" "Table 2F" "10ug" 29 -"CLSI 2012" "DISK" "B_NESSR_GNRR" "CRO" "Table 2F" "30ug" 35 -"CLSI 2012" "DISK" "B_NESSR_GNRR" "CTT" "Table 2F" "30ug" 26 19 -"CLSI 2012" "DISK" "B_NESSR_GNRR" "CTX" "Table 2F" "30ug" 31 -"CLSI 2012" "DISK" "B_NESSR_GNRR" "CXM" "Table 2F" "30ug" 31 25 -"CLSI 2012" "DISK" "B_NESSR_GNRR" "CZX" "Table 2F" "30ug" 38 -"CLSI 2012" "DISK" "B_NESSR_GNRR" "ENX" "Table 2F" "10ug" 36 31 -"CLSI 2012" "DISK" "B_NESSR_GNRR" "FEP" "Table 2F" "30ug" 31 -"CLSI 2012" "DISK" "B_NESSR_GNRR" "FLE" "Table 2F" "5ug" 35 28 -"CLSI 2012" "DISK" "B_NESSR_GNRR" "FOX" "Table 2F" "30ug" 28 23 -"CLSI 2012" "DISK" "B_NESSR_GNRR" "GAT" "Table 2F" "5ug" 38 33 -"CLSI 2012" "DISK" "B_NESSR_GNRR" "GRX" "Table 2F" "5ug" 37 27 -"CLSI 2012" "DISK" "B_NESSR_GNRR" "LOM" "Table 2F" "10ug" 38 26 -"CLSI 2012" "DISK" "B_NESSR_GNRR" "OFX" "Table 2F" "5ug" 31 24 -"CLSI 2012" "DISK" "B_NESSR_GNRR" "PEN" "Table 2F" "10units" 47 26 -"CLSI 2012" "DISK" "B_NESSR_GNRR" "SPT" "Table 2F" "100ug" 18 14 -"CLSI 2012" "DISK" "B_NESSR_GNRR" "TCY" "Table 2F" "30ug" 38 30 -"CLSI 2012" "DISK" "B_NESSR_GNRR" "TVA" "Table 2F" "10ug" 34 -"CLSI 2012" "DISK" "B_NESSR_MNNG" "AMP" "Table 2I" "10ug" -"CLSI 2012" "DISK" "B_NESSR_MNNG" "AZM" "Table 2I" "15ug" 20 -"CLSI 2012" "DISK" "B_NESSR_MNNG" "CHL" "Table 2I" "30ug" 26 19 -"CLSI 2012" "DISK" "B_NESSR_MNNG" "CIP" "Table 2I" "5ug" 35 32 -"CLSI 2012" "DISK" "B_NESSR_MNNG" "CRO" "Table 2I" "30ug" 34 -"CLSI 2012" "DISK" "B_NESSR_MNNG" "CTX" "Table 2I" "30ug" 34 -"CLSI 2012" "DISK" "B_NESSR_MNNG" "LVX" "Table 2I" "5ug" -"CLSI 2012" "DISK" "B_NESSR_MNNG" "MEM" "Table 2I" "10ug" 30 -"CLSI 2012" "DISK" "B_NESSR_MNNG" "MNO" "Table 2I" "30ug" 26 -"CLSI 2012" "DISK" "B_NESSR_MNNG" "NAL" "Table 2I" "30ug" 26 25 -"CLSI 2012" "DISK" "B_NESSR_MNNG" "PEN" "Table 2I" "10units" -"CLSI 2012" "DISK" "B_NESSR_MNNG" "RIF" "Table 2I" "5ug" 25 19 -"CLSI 2012" "DISK" "B_NESSR_MNNG" "SMX" "Table 2I" "200-300ug" -"CLSI 2012" "DISK" "B_NESSR_MNNG" "SOX" "Table 2I" "200-300ug" -"CLSI 2012" "DISK" "B_NESSR_MNNG" "SSS" "Table 2I" "200-300ug" -"CLSI 2012" "DISK" "B_NESSR_MNNG" "SXT" "Table 2I" "1.25/23.75ug" 30 25 -"CLSI 2012" "DISK" "B_PLSMN" "AMC" "M45 Table 2" "20ug" 18 13 -"CLSI 2012" "DISK" "B_PLSMN" "AMK" "M45 Table 2" "30ug" 17 14 -"CLSI 2012" "DISK" "B_PLSMN" "ATM" "M45 Table 2" "30ug" 21 17 -"CLSI 2012" "DISK" "B_PLSMN" "CAZ" "M45 Table 2" "30ug" 21 17 -"CLSI 2012" "DISK" "B_PLSMN" "CHL" "M45 Table 2" "30ug" 18 12 -"CLSI 2012" "DISK" "B_PLSMN" "CIP" "M45 Table 2" "5ug" 21 15 -"CLSI 2012" "DISK" "B_PLSMN" "CRO" "M45 Table 2" "30ug" 23 19 -"CLSI 2012" "DISK" "B_PLSMN" "CTX" "M45 Table 2" "30ug" 26 22 -"CLSI 2012" "DISK" "B_PLSMN" "CXM" "M45 Table 2" "30ug" 18 14 -"CLSI 2012" "DISK" "B_PLSMN" "ETP" "M45 Table 2" "10ug" 19 15 -"CLSI 2012" "DISK" "B_PLSMN" "FEP" "M45 Table 2" "30ug" 18 14 -"CLSI 2012" "DISK" "B_PLSMN" "FOX" "M45 Table 2" "30ug" 18 14 -"CLSI 2012" "DISK" "B_PLSMN" "GEN" "M45 Table 2" "10ug" 15 12 -"CLSI 2012" "DISK" "B_PLSMN" "IPM" "M45 Table 2" "10ug" 16 13 -"CLSI 2012" "DISK" "B_PLSMN" "LVX" "M45 Table 2" "5ug" 17 13 -"CLSI 2012" "DISK" "B_PLSMN" "MEM" "M45 Table 2" "10ug" 16 13 -"CLSI 2012" "DISK" "B_PLSMN" "SAM" "M45 Table 2" "10ug" 15 11 -"CLSI 2012" "DISK" "B_PLSMN" "SXT" "M45 Table 2" "1.25/23.75ug" 16 10 -"CLSI 2012" "DISK" "B_PLSMN" "TCY" "M45 Table 2" "30ug" 15 11 -"CLSI 2012" "DISK" "B_PLSMN" "TZP" "M45 Table 2" "100ug" 21 17 -"CLSI 2012" "DISK" "B_PRVDN_HMBC" "ENR" "Vet Table" "5ug" 21 16 -"CLSI 2012" "DISK" "B_PRVDN_HMBC" "SPT" "100ug" 14 10 -"CLSI 2012" "DISK" "B_PSDMN" "ETP" "10ug" -"CLSI 2012" "DISK" "B_PSDMN_AERG" "AMK" "Table 2B-1" "30ug" 17 14 -"CLSI 2012" "DISK" "B_PSDMN_AERG" "ATM" "Table 2B-1" "30ug" 22 15 -"CLSI 2012" "DISK" "B_PSDMN_AERG" "CAZ" "Table 2B-1" "30ug" 18 14 -"CLSI 2012" "DISK" "B_PSDMN_AERG" "CIP" "Table 2B-1" "5ug" 21 15 -"CLSI 2012" "DISK" "B_PSDMN_AERG" "COL" "Table 2B-1" "10ug" 11 10 -"CLSI 2012" "DISK" "B_PSDMN_AERG" "DOR" "Table 2B-1" "10ug" 19 15 -"CLSI 2012" "DISK" "B_PSDMN_AERG" "FEP" "Table 2B-1" "30ug" 18 14 -"CLSI 2012" "DISK" "B_PSDMN_AERG" "GAT" "Table 2B-1" "5ug" 18 14 -"CLSI 2012" "DISK" "B_PSDMN_AERG" "GEN" "Table 2B-1" "10ug" 15 12 -"CLSI 2012" "DISK" "B_PSDMN_AERG" "IPM" "Table 2B-1" "10ug" 19 15 -"CLSI 2012" "DISK" "B_PSDMN_AERG" "LOM" "Table 2B-1" "10ug" 22 18 -"CLSI 2012" "DISK" "B_PSDMN_AERG" "LVX" "Table 2B-1" "5ug" 17 13 -"CLSI 2012" "DISK" "B_PSDMN_AERG" "MEM" "Table 2B-1" "10ug" 19 15 -"CLSI 2012" "DISK" "B_PSDMN_AERG" "NET" "Table 2B-1" "30ug" 15 12 -"CLSI 2012" "DISK" "B_PSDMN_AERG" "NOR" "Table 2B-1" "10ug" 17 12 -"CLSI 2012" "DISK" "B_PSDMN_AERG" "OFX" "Table 2B-1" "5ug" 16 12 -"CLSI 2012" "DISK" "B_PSDMN_AERG" "PIP" "Table 2B-1" "100ug" 21 14 -"CLSI 2012" "DISK" "B_PSDMN_AERG" "PLB" "Table 2B-1" "300ug" 12 11 -"CLSI 2012" "DISK" "B_PSDMN_AERG" "TCC" "Table 2B-1" "75ug" 24 15 -"CLSI 2012" "DISK" "B_PSDMN_AERG" "TIC" "Table 2B-1" "75ug" 24 15 -"CLSI 2012" "DISK" "B_PSDMN_AERG" "TOB" "Table 2B-1" "10ug" 15 12 -"CLSI 2012" "DISK" "B_PSDMN_AERG" "TZP" "Table 2B-1" "100ug" 21 14 -"CLSI 2012" "DISK" "B_PSTRL" "AMC" "M45 Table 13" "20ug" 27 -"CLSI 2012" "DISK" "B_PSTRL" "AMP" "M45 Table 13" "10ug" 27 -"CLSI 2012" "DISK" "B_PSTRL" "AZM" "M45 Table 13" "15ug" 20 -"CLSI 2012" "DISK" "B_PSTRL" "CHL" "M45 Table 13" "30ug" 28 -"CLSI 2012" "DISK" "B_PSTRL" "CRO" "M45 Table 13" "30ug" 34 -"CLSI 2012" "DISK" "B_PSTRL" "DOX" "M45 Table 13" "30ug" 23 -"CLSI 2012" "DISK" "B_PSTRL" "ERY" "M45 Table 13" "15ug" 27 24 -"CLSI 2012" "DISK" "B_PSTRL" "LVX" "M45 Table 13" "5ug" 28 -"CLSI 2012" "DISK" "B_PSTRL" "MFX" "M45 Table 13" "5ug" 28 -"CLSI 2012" "DISK" "B_PSTRL" "PEN" "M45 Table 13" "10 Units" 25 -"CLSI 2012" "DISK" "B_PSTRL" "SXT" "M45 Table 13" "1.25/23.75ug" 24 -"CLSI 2012" "DISK" "B_PSTRL" "TCY" "M45 Table 13" "30ug" 23 -"CLSI 2012" "DISK" "B_PSTRL_MLTC" "ENR" "Vet Table" "5ug" 21 16 -"CLSI 2012" "DISK" "B_PSTRL_MLTC" "SPT" "100ug" 14 10 -"CLSI 2012" "DISK" "B_PSTRL_MLTC" "TIL" "Vet Table" "15ug" 11 10 -"CLSI 2012" "DISK" "Intestinal" "B_SLMNL" "CIP" "Table 2A" "5ug" 21 15 -"CLSI 2012" "DISK" "Extraintestinal" "B_SLMNL" "CIP" "Table 2A" "5ug" 31 20 -"CLSI 2012" "DISK" "B_SLMNL_ENTR" "CIP" "Table 2A" "5ug" 31 20 -"CLSI 2012" "DISK" "B_STNTR_MLTP" "CAZ" "Table 2B-4" "30ug" -"CLSI 2012" "DISK" "B_STNTR_MLTP" "CHL" "Table 2B-4" "30ug" -"CLSI 2012" "DISK" "B_STNTR_MLTP" "LVX" "Table 2B-4" "75ug" 17 13 -"CLSI 2012" "DISK" "B_STNTR_MLTP" "MNO" "Table 2B-4" "30ug" 19 14 -"CLSI 2012" "DISK" "B_STNTR_MLTP" "SXT" "Table 2B-4" "30ug" 16 10 -"CLSI 2012" "DISK" "B_STNTR_MLTP" "TCC" "Table 2B-4" "30ug" -"CLSI 2012" "DISK" "B_STPHY" "AMC" "Table 2C" "20ug" 20 19 -"CLSI 2012" "DISK" "B_STPHY" "AMK" "Table 2C" "30ug" 17 14 -"CLSI 2012" "DISK" "B_STPHY" "AMP" "Table 2C" "10ug" 29 28 -"CLSI 2012" "DISK" "B_STPHY" "AZM" "Table 2C" "15ug" 18 13 -"CLSI 2012" "DISK" "B_STPHY" "CAZ" "Table 2C" "30ug" 18 14 -"CLSI 2012" "DISK" "B_STPHY" "CDR" "Table 2C" "5ug" 20 16 -"CLSI 2012" "DISK" "B_STPHY" "CEC" "Table 2C" "30ug" 18 14 -"CLSI 2012" "DISK" "B_STPHY" "CEP" "Table 2C" "30ug" 18 14 -"CLSI 2012" "DISK" "B_STPHY" "CFP" "Table 2C" "75ug" 21 15 -"CLSI 2012" "DISK" "B_STPHY" "CHL" "Table 2C" "30ug" 18 12 -"CLSI 2012" "DISK" "B_STPHY" "CID" "Table 2C" "30ug" 18 14 -"CLSI 2012" "DISK" "B_STPHY" "CIP" "Table 2C" "5ug" 21 15 -"CLSI 2012" "DISK" "B_STPHY" "CLI" "Table 2C" "2ug" 21 14 -"CLSI 2012" "DISK" "B_STPHY" "CLR" "Table 2C" "15ug" 18 13 -"CLSI 2012" "DISK" "B_STPHY" "CMZ" "Table 2C" "30ug" 16 12 -"CLSI 2012" "DISK" "B_STPHY" "CPD" "Table 2C" "10ug" 21 17 -"CLSI 2012" "DISK" "B_STPHY" "CPR" "Table 2C" "30ug" 18 14 -"CLSI 2012" "DISK" "B_STPHY" "CRO" "Table 2C" "30ug" 21 13 -"CLSI 2012" "DISK" "B_STPHY" "CTT" "Table 2C" "30ug" 16 12 -"CLSI 2012" "DISK" "B_STPHY" "CTX" "Table 2C" "30ug" 23 14 -"CLSI 2012" "DISK" "B_STPHY" "CXA" "Table 2C" "30ug" 23 14 -"CLSI 2012" "DISK" "Parenteral" "B_STPHY" "CXM" "Table 2C" "30ug" 18 14 -"CLSI 2012" "DISK" "Oral" "B_STPHY" "CXM" "Table 2C" "30ug" 23 14 -"CLSI 2012" "DISK" "B_STPHY" "CZO" "Table 2C" "30ug" 18 14 -"CLSI 2012" "DISK" "B_STPHY" "CZX" "Table 2C" "30ug" 20 14 -"CLSI 2012" "DISK" "B_STPHY" "DAP" "Table 2C" "30ug" -"CLSI 2012" "DISK" "B_STPHY" "DIR" "Table 2C" "15ug" 19 15 -"CLSI 2012" "DISK" "B_STPHY" "DOR" "Table 2C" "10ug" 30 -"CLSI 2012" "DISK" "B_STPHY" "DOX" "Table 2C" "30ug" 16 12 -"CLSI 2012" "DISK" "B_STPHY" "ENX" "Table 2C" "10ug" 18 14 -"CLSI 2012" "DISK" "B_STPHY" "ERY" "Table 2C" "15ug" 23 13 -"CLSI 2012" "DISK" "B_STPHY" "ETP" "Table 2C" "10ug" 19 15 -"CLSI 2012" "DISK" "B_STPHY" "FEP" "Table 2C" "30ug" 18 14 -"CLSI 2012" "DISK" "B_STPHY" "FLE" "Table 2C" "5ug" 19 15 -"CLSI 2012" "DISK" "B_STPHY" "FOX" "Table 2C" "30ug" 25 24 -"CLSI 2012" "DISK" "B_STPHY" "GAT" "Table 2C" "10ug" 23 19 -"CLSI 2012" "DISK" "B_STPHY" "GEN" "Table 2C" "10ug" 15 12 -"CLSI 2012" "DISK" "B_STPHY" "GRX" "Table 2C" "5ug" 18 14 -"CLSI 2012" "DISK" "B_STPHY" "IPM" "Table 2C" "10ug" 16 13 -"CLSI 2012" "DISK" "B_STPHY" "KAN" "Table 2C" "30ug" 18 13 -"CLSI 2012" "DISK" "B_STPHY" "LNZ" "Table 2C" "30ug" 21 20 -"CLSI 2012" "DISK" "B_STPHY" "LOM" "Table 2C" "10ug" 22 18 -"CLSI 2012" "DISK" "B_STPHY" "LOR" "Table 2C" "30ug" 18 14 -"CLSI 2012" "DISK" "B_STPHY" "LTM" "Table 2C" "30ug" 23 14 -"CLSI 2012" "DISK" "B_STPHY" "LVX" "Table 2C" "10ug" 19 15 -"CLSI 2012" "DISK" "B_STPHY" "MAN" "Table 2C" "30ug" 18 14 -"CLSI 2012" "DISK" "B_STPHY" "MEM" "Table 2C" "10ug" 15 13 -"CLSI 2012" "DISK" "B_STPHY" "MET" "Table 2C" "5ug" 14 9 -"CLSI 2012" "DISK" "B_STPHY" "MFX" "Table 2C" "5ug" 24 20 -"CLSI 2012" "DISK" "B_STPHY" "MNO" "Table 2C" "30ug" 19 14 -"CLSI 2012" "DISK" "B_STPHY" "NAF" "Table 2C" "1ug" 13 10 -"CLSI 2012" "DISK" "B_STPHY" "NET" "Table 2C" "30ug" 15 12 -"CLSI 2012" "DISK" "B_STPHY" "NIT" "Table 2C" "300ug" 17 14 -"CLSI 2012" "DISK" "B_STPHY" "NOR" "Table 2C" "10ug" 17 12 -"CLSI 2012" "DISK" "B_STPHY" "OFX" "Table 2C" "5ug" 18 14 -"CLSI 2012" "DISK" "B_STPHY" "OXA" "Table 2C" "1ug" 13 10 -"CLSI 2012" "DISK" "B_STPHY" "PEN" "Table 2C" "10ug" 29 28 -"CLSI 2012" "DISK" "B_STPHY" "QDA" "Table 2C" "15ug" 19 15 -"CLSI 2012" "DISK" "B_STPHY" "RIF" "Table 2C" "5ug" 20 16 -"CLSI 2012" "DISK" "B_STPHY" "SAM" "Table 2C" "10ug" 15 11 -"CLSI 2012" "DISK" "B_STPHY" "SMX" "Table 2C" "200ug" 17 12 -"CLSI 2012" "DISK" "B_STPHY" "SOX" "Table 2C" "200ug" 17 12 -"CLSI 2012" "DISK" "B_STPHY" "SPX" "Table 2C" "5ug" 19 15 -"CLSI 2012" "DISK" "B_STPHY" "SSS" "Table 2C" "200ug" 17 12 -"CLSI 2012" "DISK" "B_STPHY" "SXT" "Table 2C" "1.25/23.75ug" 16 10 -"CLSI 2012" "DISK" "B_STPHY" "TCC" "Table 2C" "75/10ug" 23 22 -"CLSI 2012" "DISK" "B_STPHY" "TCY" "Table 2C" "30ug" 19 14 -"CLSI 2012" "DISK" "B_STPHY" "TEC" "Table 2C" "30ug" 14 10 -"CLSI 2012" "DISK" "B_STPHY" "TLT" "Table 2C" "15ug" 22 18 -"CLSI 2012" "DISK" "B_STPHY" "TMP" "Table 2C" "5ug" 16 10 -"CLSI 2012" "DISK" "B_STPHY" "TOB" "Table 2C" "10ug" 15 12 -"CLSI 2012" "DISK" "B_STPHY" "TZP" "Table 2C" "100/10ug" 18 17 -"CLSI 2012" "DISK" "B_STPHY" "VAN" "Table 2C" "30ug" -"CLSI 2012" "DISK" "B_STPHY_AURS" "FOX" "Table 2C" "30ug" 22 21 -"CLSI 2012" "DISK" "B_STPHY_AURS" "OXA" "Table 2C" "1ug" 13 10 -"CLSI 2012" "DISK" "B_STPHY_LGDN" "FOX" "Table 2C" "30ug" 22 21 -"CLSI 2012" "DISK" "B_STPHY_LGDN" "OXA" "Table 2C" "1ug" -"CLSI 2012" "DISK" "B_STRPT" "AMC" "Table 2H-1" "20ug" -"CLSI 2012" "DISK" "B_STRPT" "AMP" "Table 2H-1" "10ug" 24 -"CLSI 2012" "DISK" "B_STRPT" "AMX" "Table 2H-1" "30ug" -"CLSI 2012" "DISK" "B_STRPT" "AZM" "Table 2H-1" "15ug" 18 13 -"CLSI 2012" "DISK" "B_STRPT" "CHL" "Table 2H-1" "30ug" 21 17 -"CLSI 2012" "DISK" "B_STRPT" "CLI" "Table 2H-1" "2ug" 19 15 -"CLSI 2012" "DISK" "B_STRPT" "CLR" "Table 2H-1" "15ug" 21 16 -"CLSI 2012" "DISK" "B_STRPT" "CRO" "Table 2H-1" "30ug" 24 -"CLSI 2012" "DISK" "B_STRPT" "CTX" "Table 2H-1" "30ug" 24 -"CLSI 2012" "DISK" "B_STRPT" "CXM" "Table 2H-1" "30ug" -"CLSI 2012" "DISK" "B_STRPT" "DAP" "Table 2H-1" "30ug" 16 -"CLSI 2012" "DISK" "B_STRPT" "DIR" "Table 2H-1" "15ug" 18 13 -"CLSI 2012" "DISK" "B_STRPT" "DOR" "Table 2H-1" "10ug" -"CLSI 2012" "DISK" "B_STRPT" "ERY" "Table 2H-1" "15ug" 21 15 -"CLSI 2012" "DISK" "B_STRPT" "ETP" "Table 2H-1" "10ug" -"CLSI 2012" "DISK" "B_STRPT" "FEP" "Table 2H-1" "30ug" 24 -"CLSI 2012" "DISK" "B_STRPT" "GAT" "Table 2H-1" "5ug" 21 17 -"CLSI 2012" "DISK" "B_STRPT" "GEM" "Table 2H-1" "5ug" -"CLSI 2012" "DISK" "B_STRPT" "GRX" "Table 2H-1" "5ug" 19 15 -"CLSI 2012" "DISK" "B_STRPT" "IPM" "Table 2H-1" "10ug" -"CLSI 2012" "DISK" "B_STRPT" "LNZ" "Table 2H-1" "30ug" 21 -"CLSI 2012" "DISK" "B_STRPT" "LVX" "Table 2H-1" "5ug" 17 13 -"CLSI 2012" "DISK" "B_STRPT" "MEM" "Table 2H-1" "10ug" -"CLSI 2012" "DISK" "B_STRPT" "MFX" "Table 2H-1" "5ug" -"CLSI 2012" "DISK" "B_STRPT" "OFX" "Table 2H-1" "5ug" 16 12 -"CLSI 2012" "DISK" "B_STRPT" "PEN" "Table 2H-1" "10units" 24 -"CLSI 2012" "DISK" "B_STRPT" "QDA" "Table 2H-1" "15ug" 19 15 -"CLSI 2012" "DISK" "B_STRPT" "RIF" "Table 2H-1" "5ug" -"CLSI 2012" "DISK" "B_STRPT" "SPX" "Table 2H-1" "5ug" -"CLSI 2012" "DISK" "B_STRPT" "SXT" "Table 2H-1" "1.25/23.75ug" -"CLSI 2012" "DISK" "B_STRPT" "TCY" "Table 2H-1" "30ug" 23 18 -"CLSI 2012" "DISK" "B_STRPT" "TVA" "Table 2H-1" "10ug" 19 15 -"CLSI 2012" "DISK" "B_STRPT" "VAN" "Table 2H-1" "30ug" 17 -"CLSI 2012" "DISK" "B_STRPT_PNMN" "AMC" "Table 2G" "10/10ug" -"CLSI 2012" "DISK" "B_STRPT_PNMN" "AMP" "Table 2G" "10ug" -"CLSI 2012" "DISK" "B_STRPT_PNMN" "AMX" "Table 2G" "30ug" -"CLSI 2012" "DISK" "B_STRPT_PNMN" "AZM" "Table 2G" "15ug" 18 13 -"CLSI 2012" "DISK" "B_STRPT_PNMN" "CDR" "Table 2G" "5ug" -"CLSI 2012" "DISK" "B_STRPT_PNMN" "CEC" "Table 2G" "30ug" -"CLSI 2012" "DISK" "B_STRPT_PNMN" "CHL" "Table 2G" "30ug" 21 20 -"CLSI 2012" "DISK" "B_STRPT_PNMN" "CIP" "Table 2G" "5ug" -"CLSI 2012" "DISK" "B_STRPT_PNMN" "CLI" "Table 2G" "2ug" 19 15 -"CLSI 2012" "DISK" "B_STRPT_PNMN" "CLR" "Table 2G" "15ug" 21 16 -"CLSI 2012" "DISK" "B_STRPT_PNMN" "CPD" "Table 2G" "10ug" -"CLSI 2012" "DISK" "B_STRPT_PNMN" "CPR" "Table 2G" "30ug" -"CLSI 2012" "DISK" "B_STRPT_PNMN" "CRO" "Table 2G" "30ug" -"CLSI 2012" "DISK" "B_STRPT_PNMN" "CTX" "Table 2G" "30ug" -"CLSI 2012" "DISK" "B_STRPT_PNMN" "CXA" "Table 2G" "30ug" -"CLSI 2012" "DISK" "B_STRPT_PNMN" "CXM" "Table 2G" "30ug" -"CLSI 2012" "DISK" "B_STRPT_PNMN" "DAP" "Table 2G" "30ug" -"CLSI 2012" "DISK" "B_STRPT_PNMN" "DIR" "Table 2G" "15ug" 18 13 -"CLSI 2012" "DISK" "B_STRPT_PNMN" "DOR" "Table 2G" "10ug" -"CLSI 2012" "DISK" "B_STRPT_PNMN" "ERY" "Table 2G" "15ug" 21 15 -"CLSI 2012" "DISK" "B_STRPT_PNMN" "ETP" "Table 2G" "10ug" -"CLSI 2012" "DISK" "B_STRPT_PNMN" "FEP" "Table 2G" "30ug" -"CLSI 2012" "DISK" "B_STRPT_PNMN" "GAT" "Table 2G" "5ug" 21 17 -"CLSI 2012" "DISK" "B_STRPT_PNMN" "GEM" "Table 2G" "5ug" 23 19 -"CLSI 2012" "DISK" "B_STRPT_PNMN" "GRX" "Table 2G" "5ug" 19 15 -"CLSI 2012" "DISK" "B_STRPT_PNMN" "IPM" "Table 2G" "10ug" -"CLSI 2012" "DISK" "B_STRPT_PNMN" "LNZ" "Table 2G" "30ug" 21 -"CLSI 2012" "DISK" "B_STRPT_PNMN" "LOR" "Table 2G" "30ug" -"CLSI 2012" "DISK" "B_STRPT_PNMN" "LVX" "Table 2G" "5ug" 17 13 -"CLSI 2012" "DISK" "B_STRPT_PNMN" "MEM" "Table 2G" "10ug" -"CLSI 2012" "DISK" "B_STRPT_PNMN" "MFX" "Table 2G" "5ug" 18 14 -"CLSI 2012" "DISK" "B_STRPT_PNMN" "NOR" "Table 2G" "5ug" -"CLSI 2012" "DISK" "B_STRPT_PNMN" "OFX" "Table 2G" "5ug" 16 12 -"CLSI 2012" "DISK" "B_STRPT_PNMN" "OXA" "Table 2G" "1ug" 20 -"CLSI 2012" "DISK" "B_STRPT_PNMN" "PEN" "Table 2G" "10units" -"CLSI 2012" "DISK" "B_STRPT_PNMN" "PNV" "Table 2G" "10ug" -"CLSI 2012" "DISK" "B_STRPT_PNMN" "QDA" "Table 2G" "15ug" 19 15 -"CLSI 2012" "DISK" "B_STRPT_PNMN" "RIF" "Table 2G" "5ug" 19 16 -"CLSI 2012" "DISK" "B_STRPT_PNMN" "SAM" "Table 2G" "10/10ug" -"CLSI 2012" "DISK" "B_STRPT_PNMN" "SPX" "Table 2G" "5ug" 19 15 -"CLSI 2012" "DISK" "B_STRPT_PNMN" "SXT" "Table 2G" "1.25/23.75ug" 19 15 -"CLSI 2012" "DISK" "B_STRPT_PNMN" "TCY" "Table 2G" "30ug" 23 18 -"CLSI 2012" "DISK" "B_STRPT_PNMN" "TLT" "Table 2G" "15ug" 19 15 -"CLSI 2012" "DISK" "B_STRPT_PNMN" "TVA" "Table 2G" "10ug" 19 15 -"CLSI 2012" "DISK" "B_STRPT_PNMN" "VAN" "Table 2G" "30ug" 17 -"CLSI 2012" "DISK" "B_STRPT_VIRI" "AMP" "Table 2H-2" "10ug" -"CLSI 2012" "DISK" "B_STRPT_VIRI" "AZM" "Table 2H-2" "15ug" 18 13 -"CLSI 2012" "DISK" "B_STRPT_VIRI" "CHL" "Table 2H-2" "30ug" 21 17 -"CLSI 2012" "DISK" "B_STRPT_VIRI" "CLI" "Table 2H-2" "2ug" 19 15 -"CLSI 2012" "DISK" "B_STRPT_VIRI" "CLR" "Table 2H-2" "15ug" 21 16 -"CLSI 2012" "DISK" "B_STRPT_VIRI" "CRO" "Table 2H-2" "30ug" 27 24 -"CLSI 2012" "DISK" "B_STRPT_VIRI" "CTX" "Table 2H-2" "30ug" 28 25 -"CLSI 2012" "DISK" "B_STRPT_VIRI" "DAP" "Table 2H-2" "30ug" -"CLSI 2012" "DISK" "B_STRPT_VIRI" "DIR" "Table 2H-2" "15ug" 18 13 -"CLSI 2012" "DISK" "B_STRPT_VIRI" "DOR" "Table 2H-2" "10ug" -"CLSI 2012" "DISK" "B_STRPT_VIRI" "ERY" "Table 2H-2" "15ug" 21 15 -"CLSI 2012" "DISK" "B_STRPT_VIRI" "ETP" "Table 2H-2" "10ug" -"CLSI 2012" "DISK" "B_STRPT_VIRI" "FEP" "Table 2H-2" "30ug" 24 21 -"CLSI 2012" "DISK" "B_STRPT_VIRI" "GAT" "Table 2H-2" "5ug" 21 17 -"CLSI 2012" "DISK" "B_STRPT_VIRI" "GRX" "Table 2H-2" "5ug" 19 15 -"CLSI 2012" "DISK" "B_STRPT_VIRI" "LNZ" "Table 2H-2" "30ug" 21 -"CLSI 2012" "DISK" "B_STRPT_VIRI" "LVX" "Table 2H-2" "5ug" 17 13 -"CLSI 2012" "DISK" "B_STRPT_VIRI" "MEM" "Table 2H-2" "10ug" -"CLSI 2012" "DISK" "B_STRPT_VIRI" "OFX" "Table 2H-2" "5ug" 16 12 -"CLSI 2012" "DISK" "B_STRPT_VIRI" "PEN" "Table 2H-2" "10units" -"CLSI 2012" "DISK" "B_STRPT_VIRI" "QDA" "Table 2H-2" "15ug" 19 15 -"CLSI 2012" "DISK" "B_STRPT_VIRI" "TCY" "Table 2H-2" "30ug" 23 18 -"CLSI 2012" "DISK" "B_STRPT_VIRI" "TVA" "Table 2H-2" "10ug" 19 15 -"CLSI 2012" "DISK" "B_STRPT_VIRI" "VAN" "Table 2H-2" "30ug" 17 -"CLSI 2011" "DISK" "B_ACNTB" "COL" "10ug" -"CLSI 2011" "DISK" "B_ACNTB" "DOX" "30ug" 13 9 -"CLSI 2011" "DISK" "B_ACNTB" "ETP" "10ug" -"CLSI 2011" "DISK" "B_ACNTB" "NET" "30ug" -"CLSI 2011" "DISK" "B_ACNTB" "PLB" "300ug" -"CLSI 2011" "DISK" "B_ACTNB_PLRP" "TIL" "15ug" 11 10 -"CLSI 2011" "DISK" "B_AERMN" "AMC" "20ug" 18 13 -"CLSI 2011" "DISK" "B_AERMN" "AMK" "30ug" 17 14 -"CLSI 2011" "DISK" "B_AERMN" "ATM" "30ug" 21 17 -"CLSI 2011" "DISK" "B_AERMN" "CAZ" "30ug" 21 17 -"CLSI 2011" "DISK" "B_AERMN" "CHL" "30ug" 18 12 -"CLSI 2011" "DISK" "B_AERMN" "CIP" "5ug" 21 15 -"CLSI 2011" "DISK" "B_AERMN" "CRO" "30ug" 23 19 -"CLSI 2011" "DISK" "B_AERMN" "CTX" "30ug" 26 22 -"CLSI 2011" "DISK" "B_AERMN" "CXM" "30ug" 18 14 -"CLSI 2011" "DISK" "B_AERMN" "ETP" "10ug" 19 15 -"CLSI 2011" "DISK" "B_AERMN" "FEP" "30ug" 18 14 -"CLSI 2011" "DISK" "B_AERMN" "FOX" "30ug" 18 14 -"CLSI 2011" "DISK" "B_AERMN" "GEN" "10ug" 15 12 -"CLSI 2011" "DISK" "B_AERMN" "IPM" "10ug" 16 13 -"CLSI 2011" "DISK" "B_AERMN" "LVX" "5ug" 17 13 -"CLSI 2011" "DISK" "B_AERMN" "MEM" "10ug" 16 13 -"CLSI 2011" "DISK" "B_AERMN" "SAM" "10ug" 15 11 -"CLSI 2011" "DISK" "B_AERMN" "SXT" "1.25/23.75ug" 16 10 -"CLSI 2011" "DISK" "B_AERMN" "TCY" "30ug" 15 11 -"CLSI 2011" "DISK" "B_AERMN" "TZP" "100ug" 21 17 -"CLSI 2011" "DISK" "B_BCLLS_CERS" "CAZ" "30ug" 21 17 -"CLSI 2011" "DISK" "B_BCLLS_CERS" "CHL" "30ug" -"CLSI 2011" "DISK" "B_BCLLS_CERS" "LVX" "5ug" -"CLSI 2011" "DISK" "B_BCLLS_CERS" "MEM" "10ug" 20 15 -"CLSI 2011" "DISK" "B_BCLLS_CERS" "TCC" "75ug" -"CLSI 2011" "DISK" "B_BRKHL_CEPC" "CAZ" "30ug" 21 17 -"CLSI 2011" "DISK" "B_BRKHL_CEPC" "CAZ" "30ug" 21 17 -"CLSI 2011" "DISK" "B_BRKHL_CEPC" "MEM" "10ug" 20 15 -"CLSI 2011" "DISK" "B_BRKHL_CEPC" "MEM" "10ug" 20 15 -"CLSI 2011" "DISK" "B_BRKHL_CEPC" "MNO" "30ug" 19 14 -"CLSI 2011" "DISK" "B_ENTRC" "AMP" "10ug" 17 16 -"CLSI 2011" "DISK" "B_ENTRC" "DAP" "30ug" 11 -"CLSI 2011" "DISK" "B_ENTRC" "DOX" "30ug" 16 12 -"CLSI 2011" "DISK" "B_ENTRC" "LNZ" "30ug" 23 20 -"CLSI 2011" "DISK" "B_ENTRC" "MNO" "30ug" 19 14 -"CLSI 2011" "DISK" "B_ENTRC" "PEN" "10units" 15 14 -"CLSI 2011" "DISK" "B_ENTRC" "TCY" "30ug" 19 14 -"CLSI 2011" "DISK" "B_ENTRC" "VAN" "30ug" 17 14 -"CLSI 2011" "DISK" "B_HMPHL" "AMC" "20/10ug" 20 19 -"CLSI 2011" "DISK" "B_HMPHL" "AMP" "10ug" 22 18 -"CLSI 2011" "DISK" "B_HMPHL" "ATM" "30ug" 26 -"CLSI 2011" "DISK" "B_HMPHL" "AZM" "15ug" 12 -"CLSI 2011" "DISK" "B_HMPHL" "CAT" "10ug" 18 14 -"CLSI 2011" "DISK" "B_HMPHL" "CAZ" "30ug" 26 -"CLSI 2011" "DISK" "B_HMPHL" "CDR" "5ug" 20 -"CLSI 2011" "DISK" "B_HMPHL" "CEC" "30ug" 20 16 -"CLSI 2011" "DISK" "B_HMPHL" "CFM" "5ug" 21 -"CLSI 2011" "DISK" "B_HMPHL" "CHL" "30ug" 29 25 -"CLSI 2011" "DISK" "B_HMPHL" "CID" "30ug" 20 16 -"CLSI 2011" "DISK" "B_HMPHL" "CIP" "5ug" 21 -"CLSI 2011" "DISK" "B_HMPHL" "CLR" "15ug" 13 10 -"CLSI 2011" "DISK" "B_HMPHL" "CPD" "10ug" 21 -"CLSI 2011" "DISK" "B_HMPHL" "CPR" "30ug" 18 14 -"CLSI 2011" "DISK" "B_HMPHL" "CRO" "30ug" 26 -"CLSI 2011" "DISK" "B_HMPHL" "CTB" "30ug" 28 -"CLSI 2011" "DISK" "B_HMPHL" "CTX" "30ug" 26 -"CLSI 2011" "DISK" "B_HMPHL" "CXA" "30ug" 20 16 -"CLSI 2011" "DISK" "B_HMPHL" "CXM" "30ug" 20 16 -"CLSI 2011" "DISK" "B_HMPHL" "CZX" "30ug" 26 -"CLSI 2011" "DISK" "B_HMPHL" "ETP" "10ug" 19 -"CLSI 2011" "DISK" "B_HMPHL" "FEP" "30ug" 26 -"CLSI 2011" "DISK" "B_HMPHL" "FLE" "5ug" 19 -"CLSI 2011" "DISK" "B_HMPHL" "GAT" "5ug" 18 -"CLSI 2011" "DISK" "B_HMPHL" "GEM" "5ug" 18 -"CLSI 2011" "DISK" "B_HMPHL" "GRX" "5ug" 24 -"CLSI 2011" "DISK" "B_HMPHL" "IPM" "10ug" 16 -"CLSI 2011" "DISK" "B_HMPHL" "LOM" "10ug" 22 -"CLSI 2011" "DISK" "B_HMPHL" "LOR" "30ug" 19 15 -"CLSI 2011" "DISK" "B_HMPHL" "LVX" "5ug" 17 -"CLSI 2011" "DISK" "B_HMPHL" "MAN" "30ug" -"CLSI 2011" "DISK" "B_HMPHL" "MEM" "10ug" 20 -"CLSI 2011" "DISK" "B_HMPHL" "MFX" "5ug" 18 -"CLSI 2011" "DISK" "B_HMPHL" "OFX" "5ug" 16 -"CLSI 2011" "DISK" "B_HMPHL" "SAM" "10/10ug" 20 19 -"CLSI 2011" "DISK" "B_HMPHL" "SPX" "5ug" -"CLSI 2011" "DISK" "B_HMPHL" "TCY" "30ug" 29 25 -"CLSI 2011" "DISK" "B_HMPHL" "TLT" "15ug" 15 11 -"CLSI 2011" "DISK" "B_HMPHL" "TVA" "10ug" 22 -"CLSI 2011" "DISK" "B_HMPHL" "TZP" "100ug" 21 -"CLSI 2011" "DISK" "B_HSTPH_SOMN" "ENR" "5ug" 21 16 -"CLSI 2011" "DISK" "B_HSTPH_SOMN" "SPT" "100ug" 14 10 -"CLSI 2011" "DISK" "B_LISTR_MNCY" "AMP" "10ug" -"CLSI 2011" "DISK" "B_LISTR_MNCY" "PEN" "10units" -"CLSI 2011" "DISK" "B_MRXLL_CTRR" "AMC" "200ug" 24 23 -"CLSI 2011" "DISK" "B_MRXLL_CTRR" "AZM" "15ug" 26 -"CLSI 2011" "DISK" "B_MRXLL_CTRR" "CLR" "15ug" 24 -"CLSI 2011" "DISK" "B_MRXLL_CTRR" "ERY" "15ug" 21 -"CLSI 2011" "DISK" "B_MRXLL_CTRR" "SXT" "1.25/23.75ug" 13 10 -"CLSI 2011" "DISK" "B_MRXLL_CTRR" "TCY" "30ug" 29 24 -"CLSI 2011" "DISK" "B_NESSR_GNRR" "CAT" "10ug" 29 -"CLSI 2011" "DISK" "B_NESSR_GNRR" "CAZ" "30ug" 31 -"CLSI 2011" "DISK" "B_NESSR_GNRR" "CFM" "5ug" 31 -"CLSI 2011" "DISK" "B_NESSR_GNRR" "CIP" "5ug" 41 27 -"CLSI 2011" "DISK" "B_NESSR_GNRR" "CMZ" "30ug" 33 27 -"CLSI 2011" "DISK" "B_NESSR_GNRR" "CPD" "10ug" 29 -"CLSI 2011" "DISK" "B_NESSR_GNRR" "CRO" "30ug" 35 -"CLSI 2011" "DISK" "B_NESSR_GNRR" "CTT" "30ug" 26 19 -"CLSI 2011" "DISK" "B_NESSR_GNRR" "CTX" "30ug" 31 -"CLSI 2011" "DISK" "B_NESSR_GNRR" "CXM" "30ug" 31 25 -"CLSI 2011" "DISK" "B_NESSR_GNRR" "CZX" "30ug" 38 -"CLSI 2011" "DISK" "B_NESSR_GNRR" "ENX" "10ug" 36 31 -"CLSI 2011" "DISK" "B_NESSR_GNRR" "FEP" "30ug" 31 -"CLSI 2011" "DISK" "B_NESSR_GNRR" "FLE" "5ug" 35 28 -"CLSI 2011" "DISK" "B_NESSR_GNRR" "FOX" "30ug" 28 23 -"CLSI 2011" "DISK" "B_NESSR_GNRR" "GAT" "5ug" 38 33 -"CLSI 2011" "DISK" "B_NESSR_GNRR" "GRX" "5ug" 37 27 -"CLSI 2011" "DISK" "B_NESSR_GNRR" "LOM" "10ug" 38 26 -"CLSI 2011" "DISK" "B_NESSR_GNRR" "OFX" "5ug" 31 24 -"CLSI 2011" "DISK" "B_NESSR_GNRR" "PEN" "10units" 47 26 -"CLSI 2011" "DISK" "B_NESSR_GNRR" "TCY" "30ug" 38 30 -"CLSI 2011" "DISK" "B_NESSR_GNRR" "TVA" "10ug" 34 -"CLSI 2011" "DISK" "B_NESSR_MNNG" "AMP" "10ug" -"CLSI 2011" "DISK" "B_NESSR_MNNG" "AZM" "15ug" 20 -"CLSI 2011" "DISK" "B_NESSR_MNNG" "CHL" "30ug" 26 19 -"CLSI 2011" "DISK" "B_NESSR_MNNG" "CIP" "5ug" 35 32 -"CLSI 2011" "DISK" "B_NESSR_MNNG" "CRO" "30ug" 34 -"CLSI 2011" "DISK" "B_NESSR_MNNG" "CTX" "30ug" 34 -"CLSI 2011" "DISK" "B_NESSR_MNNG" "LVX" "5ug" -"CLSI 2011" "DISK" "B_NESSR_MNNG" "MEM" "10ug" 30 -"CLSI 2011" "DISK" "B_NESSR_MNNG" "MNO" "30ug" 26 -"CLSI 2011" "DISK" "B_NESSR_MNNG" "NAL" "30ug" 26 25 -"CLSI 2011" "DISK" "B_NESSR_MNNG" "PEN" "10units" -"CLSI 2011" "DISK" "B_NESSR_MNNG" "RIF" "5ug" 25 19 -"CLSI 2011" "DISK" "B_NESSR_MNNG" "SMX" "200-300ug" -"CLSI 2011" "DISK" "B_NESSR_MNNG" "SOX" "200-300ug" -"CLSI 2011" "DISK" "B_NESSR_MNNG" "SSS" "200-300ug" -"CLSI 2011" "DISK" "B_NESSR_MNNG" "SXT" "1.25/23.75ug" 30 25 -"CLSI 2011" "DISK" "B_PLSMN" "AMC" "20ug" 18 13 -"CLSI 2011" "DISK" "B_PLSMN" "AMK" "30ug" 17 14 -"CLSI 2011" "DISK" "B_PLSMN" "ATM" "30ug" 21 17 -"CLSI 2011" "DISK" "B_PLSMN" "CAZ" "30ug" 21 17 -"CLSI 2011" "DISK" "B_PLSMN" "CHL" "30ug" 18 12 -"CLSI 2011" "DISK" "B_PLSMN" "CIP" "5ug" 21 15 -"CLSI 2011" "DISK" "B_PLSMN" "CRO" "30ug" 23 19 -"CLSI 2011" "DISK" "B_PLSMN" "CTX" "30ug" 26 22 -"CLSI 2011" "DISK" "B_PLSMN" "CXM" "30ug" 18 14 -"CLSI 2011" "DISK" "B_PLSMN" "ETP" "10ug" 19 15 -"CLSI 2011" "DISK" "B_PLSMN" "FEP" "30ug" 18 14 -"CLSI 2011" "DISK" "B_PLSMN" "FOX" "30ug" 18 14 -"CLSI 2011" "DISK" "B_PLSMN" "GEN" "10ug" 15 12 -"CLSI 2011" "DISK" "B_PLSMN" "IPM" "10ug" 16 13 -"CLSI 2011" "DISK" "B_PLSMN" "LVX" "5ug" 17 13 -"CLSI 2011" "DISK" "B_PLSMN" "MEM" "10ug" 16 13 -"CLSI 2011" "DISK" "B_PLSMN" "SAM" "10ug" 15 11 -"CLSI 2011" "DISK" "B_PLSMN" "SXT" "1.25/23.75ug" 16 10 -"CLSI 2011" "DISK" "B_PLSMN" "TCY" "30ug" 15 11 -"CLSI 2011" "DISK" "B_PLSMN" "TZP" "100ug" 21 17 -"CLSI 2011" "DISK" "B_PRVDN_HMBC" "ENR" "5ug" 21 16 -"CLSI 2011" "DISK" "B_PRVDN_HMBC" "SPT" "100ug" 14 10 -"CLSI 2011" "DISK" "B_PSDMN" "ETP" "10ug" -"CLSI 2011" "DISK" "B_PSDMN_AERG" "CRB" "100ug" 17 13 -"CLSI 2011" "DISK" "B_PSDMN_AERG" "MEZ" "75ug" 16 15 -"CLSI 2011" "DISK" "B_PSDMN_AERG" "PIP" "100ug" 18 17 -"CLSI 2011" "DISK" "B_PSDMN_AERG" "SAM" "10/10ug" -"CLSI 2011" "DISK" "B_PSDMN_AERG" "TCC" "75/10ug" 15 14 -"CLSI 2011" "DISK" "B_PSDMN_AERG" "TIC" "75ug" 15 14 -"CLSI 2011" "DISK" "B_PSDMN_AERG" "TZP" "100/10ug" 18 17 -"CLSI 2011" "DISK" "B_PSTRL" "AMC" "20ug" 27 -"CLSI 2011" "DISK" "B_PSTRL" "AMP" "10ug" 27 -"CLSI 2011" "DISK" "B_PSTRL" "AZM" "15ug" 20 -"CLSI 2011" "DISK" "B_PSTRL" "CHL" "30ug" 28 -"CLSI 2011" "DISK" "B_PSTRL" "CRO" "30ug" 34 -"CLSI 2011" "DISK" "B_PSTRL" "DOX" "30ug" 23 -"CLSI 2011" "DISK" "B_PSTRL" "ERY" "15ug" 27 24 -"CLSI 2011" "DISK" "B_PSTRL" "LVX" "5ug" 28 -"CLSI 2011" "DISK" "B_PSTRL" "MFX" "5ug" 28 -"CLSI 2011" "DISK" "B_PSTRL" "PEN" "10ug" 25 -"CLSI 2011" "DISK" "B_PSTRL" "SXT" "1.25/23.75ug" 24 -"CLSI 2011" "DISK" "B_PSTRL" "TCY" "30ug" 23 -"CLSI 2011" "DISK" "B_PSTRL_MLTC" "ENR" "5ug" 21 16 -"CLSI 2011" "DISK" "B_PSTRL_MLTC" "SPT" "100ug" 14 10 -"CLSI 2011" "DISK" "B_PSTRL_MLTC" "TIL" "15ug" 11 10 -"CLSI 2011" "DISK" "B_STNTR_MLTP" "CAZ" "30ug" -"CLSI 2011" "DISK" "B_STNTR_MLTP" "CHL" "30ug" -"CLSI 2011" "DISK" "B_STNTR_MLTP" "MNO" "30ug" 19 14 -"CLSI 2011" "DISK" "B_STNTR_MLTP" "TCC" "75ug" -"CLSI 2011" "DISK" "B_STPHY" "AMC" "20/10ug" 20 19 -"CLSI 2011" "DISK" "B_STPHY" "AMP" "10ug" 29 28 -"CLSI 2011" "DISK" "B_STPHY" "DOX" "30ug" 16 12 -"CLSI 2011" "DISK" "B_STPHY" "FOX" "30ug" 25 24 -"CLSI 2011" "DISK" "B_STPHY" "GAT" "10ug" 23 19 -"CLSI 2011" "DISK" "B_STPHY" "LVX" "10ug" 19 15 -"CLSI 2011" "DISK" "B_STPHY" "MFX" "5ug" 24 20 -"CLSI 2011" "DISK" "B_STPHY" "MNO" "30ug" 19 14 -"CLSI 2011" "DISK" "B_STPHY" "OFX" "10ug" 18 14 -"CLSI 2011" "DISK" "B_STPHY" "OXA" "1ug" -"CLSI 2011" "DISK" "B_STPHY" "TCC" "75/10ug" 23 22 -"CLSI 2011" "DISK" "B_STPHY" "TCY" "30ug" 19 14 -"CLSI 2011" "DISK" "B_STPHY" "TZP" "100/10ug" 18 17 -"CLSI 2011" "DISK" "B_STPHY_AURS" "FOX" "30ug" 22 21 -"CLSI 2011" "DISK" "B_STPHY_AURS" "OXA" "1ug" 13 10 -"CLSI 2011" "DISK" "B_STPHY_LGDN" "FOX" "30ug" 22 21 -"CLSI 2011" "DISK" "B_STPHY_LGDN" "OXA" "1ug" -"CLSI 2011" "DISK" "B_STRPT" "AMP" "10ug" 24 -"CLSI 2011" "DISK" "B_STRPT" "CHL" "30ug" 21 17 -"CLSI 2011" "DISK" "B_STRPT" "CLI" "2ug" 19 15 -"CLSI 2011" "DISK" "B_STRPT" "CLR" "15ug" 21 16 -"CLSI 2011" "DISK" "B_STRPT" "CRO" "30ug" 24 -"CLSI 2011" "DISK" "B_STRPT" "CTX" "30ug" 24 -"CLSI 2011" "DISK" "B_STRPT" "DAP" "30ug" 16 -"CLSI 2011" "DISK" "B_STRPT" "DIR" "15ug" 18 13 -"CLSI 2011" "DISK" "B_STRPT" "ERY" "15ug" 21 15 -"CLSI 2011" "DISK" "B_STRPT" "ETP" "10ug" -"CLSI 2011" "DISK" "B_STRPT" "FEP" "30ug" 24 -"CLSI 2011" "DISK" "B_STRPT" "GAT" "5ug" 21 17 -"CLSI 2011" "DISK" "B_STRPT" "GEM" "5ug" -"CLSI 2011" "DISK" "B_STRPT" "GRX" "5ug" 19 15 -"CLSI 2011" "DISK" "B_STRPT" "LNZ" "30ug" 21 -"CLSI 2011" "DISK" "B_STRPT" "LVX" "5ug" 17 13 -"CLSI 2011" "DISK" "B_STRPT" "MEM" "10ug" -"CLSI 2011" "DISK" "B_STRPT" "MFX" "5ug" -"CLSI 2011" "DISK" "B_STRPT" "OFX" "5ug" 16 12 -"CLSI 2011" "DISK" "B_STRPT" "PEN" "10units" 24 -"CLSI 2011" "DISK" "B_STRPT" "QDA" "15ug" 19 15 -"CLSI 2011" "DISK" "B_STRPT" "RIF" "5ug" -"CLSI 2011" "DISK" "B_STRPT" "SPX" "5ug" -"CLSI 2011" "DISK" "B_STRPT" "SXT" "1.25/23.75ug" -"CLSI 2011" "DISK" "B_STRPT" "TCY" "30ug" 23 18 -"CLSI 2011" "DISK" "B_STRPT" "TVA" "10ug" 19 15 -"CLSI 2011" "DISK" "B_STRPT" "VAN" "30ug" 17 -"CLSI 2011" "DISK" "B_STRPT_PNMN" "AMC" "10/10ug" -"CLSI 2011" "DISK" "B_STRPT_PNMN" "AMP" "10ug" -"CLSI 2011" "DISK" "B_STRPT_PNMN" "AMX" "30ug" -"CLSI 2011" "DISK" "B_STRPT_PNMN" "AZM" "15ug" 18 13 -"CLSI 2011" "DISK" "B_STRPT_PNMN" "CAC" "30ug" -"CLSI 2011" "DISK" "B_STRPT_PNMN" "CDR" "5ug" -"CLSI 2011" "DISK" "B_STRPT_PNMN" "CHL" "30ug" 21 20 -"CLSI 2011" "DISK" "B_STRPT_PNMN" "CIP" "5ug" -"CLSI 2011" "DISK" "B_STRPT_PNMN" "CLI" "2ug" 19 15 -"CLSI 2011" "DISK" "B_STRPT_PNMN" "CLR" "15ug" 21 16 -"CLSI 2011" "DISK" "B_STRPT_PNMN" "CPD" "10ug" -"CLSI 2011" "DISK" "B_STRPT_PNMN" "CPR" "30ug" -"CLSI 2011" "DISK" "B_STRPT_PNMN" "CRO" "30ug" -"CLSI 2011" "DISK" "B_STRPT_PNMN" "CTX" "30ug" -"CLSI 2011" "DISK" "B_STRPT_PNMN" "CXA" "30ug" -"CLSI 2011" "DISK" "B_STRPT_PNMN" "CXM" "30ug" -"CLSI 2011" "DISK" "B_STRPT_PNMN" "DAP" "30ug" -"CLSI 2011" "DISK" "B_STRPT_PNMN" "DIR" "15ug" 18 13 -"CLSI 2011" "DISK" "B_STRPT_PNMN" "ERY" "15ug" 21 15 -"CLSI 2011" "DISK" "B_STRPT_PNMN" "ETP" "10ug" -"CLSI 2011" "DISK" "B_STRPT_PNMN" "FEP" "30ug" -"CLSI 2011" "DISK" "B_STRPT_PNMN" "GAT" "5ug" 21 17 -"CLSI 2011" "DISK" "B_STRPT_PNMN" "GEM" "5ug" 23 19 -"CLSI 2011" "DISK" "B_STRPT_PNMN" "GRX" "5ug" 19 15 -"CLSI 2011" "DISK" "B_STRPT_PNMN" "IPM" "10ug" -"CLSI 2011" "DISK" "B_STRPT_PNMN" "LNZ" "30ug" 21 -"CLSI 2011" "DISK" "B_STRPT_PNMN" "LOR" "30ug" -"CLSI 2011" "DISK" "B_STRPT_PNMN" "LVX" "5ug" 17 13 -"CLSI 2011" "DISK" "B_STRPT_PNMN" "MEM" "10ug" -"CLSI 2011" "DISK" "B_STRPT_PNMN" "MFX" "5ug" 18 14 -"CLSI 2011" "DISK" "B_STRPT_PNMN" "NOR" "5ug" -"CLSI 2011" "DISK" "B_STRPT_PNMN" "OFX" "5ug" 16 12 -"CLSI 2011" "DISK" "B_STRPT_PNMN" "OXA" "1ug" 20 -"CLSI 2011" "DISK" "B_STRPT_PNMN" "PEN" "10units" -"CLSI 2011" "DISK" "B_STRPT_PNMN" "PNV" "10ug" -"CLSI 2011" "DISK" "B_STRPT_PNMN" "QDA" "15ug" 19 15 -"CLSI 2011" "DISK" "B_STRPT_PNMN" "RIF" "5ug" 19 16 -"CLSI 2011" "DISK" "B_STRPT_PNMN" "SAM" "10/10ug" -"CLSI 2011" "DISK" "B_STRPT_PNMN" "SPX" "5ug" 19 15 -"CLSI 2011" "DISK" "B_STRPT_PNMN" "SXT" "1.25/23.75ug" 19 15 -"CLSI 2011" "DISK" "B_STRPT_PNMN" "TCY" "30ug" 23 18 -"CLSI 2011" "DISK" "B_STRPT_PNMN" "TLT" "15ug" 19 15 -"CLSI 2011" "DISK" "B_STRPT_PNMN" "TVA" "10ug" 19 15 -"CLSI 2011" "DISK" "B_STRPT_PNMN" "VAN" "30ug" 17 -"CLSI 2011" "DISK" "B_STRPT_VIRI" "AMP" "10ug" -"CLSI 2011" "DISK" "B_STRPT_VIRI" "AZM" "15ug" 18 13 -"CLSI 2011" "DISK" "B_STRPT_VIRI" "CHL" "30ug" 21 17 -"CLSI 2011" "DISK" "B_STRPT_VIRI" "CLI" "2ug" 19 15 -"CLSI 2011" "DISK" "B_STRPT_VIRI" "CLR" "15ug" 21 16 -"CLSI 2011" "DISK" "B_STRPT_VIRI" "CRO" "30ug" 27 24 -"CLSI 2011" "DISK" "B_STRPT_VIRI" "CRO" "30ug" 27 24 -"CLSI 2011" "DISK" "B_STRPT_VIRI" "CTX" "30ug" 28 25 -"CLSI 2011" "DISK" "B_STRPT_VIRI" "CTX" "30ug" 28 25 -"CLSI 2011" "DISK" "B_STRPT_VIRI" "DAP" "30ug" -"CLSI 2011" "DISK" "B_STRPT_VIRI" "DIR" "15ug" 18 13 -"CLSI 2011" "DISK" "B_STRPT_VIRI" "ERY" "15ug" 21 15 -"CLSI 2011" "DISK" "B_STRPT_VIRI" "ETP" "10ug" -"CLSI 2011" "DISK" "B_STRPT_VIRI" "FEP" "30ug" 24 21 -"CLSI 2011" "DISK" "B_STRPT_VIRI" "FEP" "30ug" 24 21 -"CLSI 2011" "DISK" "B_STRPT_VIRI" "GAT" "5ug" 21 17 -"CLSI 2011" "DISK" "B_STRPT_VIRI" "GRX" "5ug" 19 15 -"CLSI 2011" "DISK" "B_STRPT_VIRI" "LNZ" "30ug" 21 -"CLSI 2011" "DISK" "B_STRPT_VIRI" "LVX" "5ug" 17 13 -"CLSI 2011" "DISK" "B_STRPT_VIRI" "MEM" "10ug" -"CLSI 2011" "DISK" "B_STRPT_VIRI" "OFX" "5ug" 16 12 -"CLSI 2011" "DISK" "B_STRPT_VIRI" "PEN" "10units" -"CLSI 2011" "DISK" "B_STRPT_VIRI" "QDA" "15ug" 19 15 -"CLSI 2011" "DISK" "B_STRPT_VIRI" "TCY" "30ug" 23 18 -"CLSI 2011" "DISK" "B_STRPT_VIRI" "TVA" "10ug" 19 15 -"CLSI 2011" "DISK" "B_STRPT_VIRI" "VAN" "30ug" 17 +"guideline" "method" "site" "mo" "ab" "ref_tbl" "disk_dose" "breakpoint_S" "breakpoint_R" "uti" +"EUCAST 2020" "DISK" "Enterobacterales" "Amoxicillin/clavulanic acid" "Enterobacterales" "20-10ug" 19 19 FALSE +"EUCAST 2020" "DISK" "UTI" "Enterobacterales" "Amoxicillin/clavulanic acid" "Enterobacterales" "20-10ug" 16 16 TRUE +"EUCAST 2020" "MIC" "Enterobacterales" "Amoxicillin/clavulanic acid" "Enterobacterales" 8 8 FALSE +"EUCAST 2020" "MIC" "UTI" "Enterobacterales" "Amoxicillin/clavulanic acid" "Enterobacterales" 32 32 TRUE +"EUCAST 2020" "MIC" "Actinomyces" "Amoxicillin/clavulanic acid" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Bacteroides" "Amoxicillin/clavulanic acid" "Anaerobes, Gramnegative" 4 8 FALSE +"EUCAST 2020" "MIC" "Bifidobacterium" "Amoxicillin/clavulanic acid" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Bilophila" "Amoxicillin/clavulanic acid" "Anaerobes, Gramnegative" 4 8 FALSE +"EUCAST 2020" "DISK" "Burkholderia pseudomallei" "Amoxicillin/clavulanic acid" "B.pseudomallei" "20-10ug" 50 22 FALSE +"EUCAST 2020" "MIC" "Burkholderia pseudomallei" "Amoxicillin/clavulanic acid" "B.pseudomallei" 0.001 8 FALSE +"EUCAST 2020" "MIC" "Cutibacterium" "Amoxicillin/clavulanic acid" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Clostridioides" "Amoxicillin/clavulanic acid" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Clostridium" "Amoxicillin/clavulanic acid" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Eubacterium" "Amoxicillin/clavulanic acid" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Eggerthella" "Amoxicillin/clavulanic acid" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Enterococcus" "Amoxicillin/clavulanic acid" "Enterococcus" 4 8 FALSE +"EUCAST 2020" "MIC" "Fusobacterium" "Amoxicillin/clavulanic acid" "Anaerobes, Gramnegative" 4 8 FALSE +"EUCAST 2020" "DISK" "iv" "Haemophilus influenzae" "Amoxicillin/clavulanic acid" "H.influenzae" "2-1ug" 15 15 FALSE +"EUCAST 2020" "DISK" "oral" "Haemophilus influenzae" "Amoxicillin/clavulanic acid" "H.influenzae" "2-1ug" 50 15 FALSE +"EUCAST 2020" "MIC" "iv" "Haemophilus influenzae" "Amoxicillin/clavulanic acid" "H.influenzae" 2 2 FALSE +"EUCAST 2020" "MIC" "oral" "Haemophilus influenzae" "Amoxicillin/clavulanic acid" "H.influenzae" 0.0015 2 FALSE +"EUCAST 2020" "MIC" "Lactobacillus" "Amoxicillin/clavulanic acid" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Mobiluncus" "Amoxicillin/clavulanic acid" "Anaerobes, Gramnegative" 4 8 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" "M.catarrhalis" "2-1ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" "M.catarrhalis" 1 1 FALSE +"EUCAST 2020" "MIC" "Parabacteroides" "Amoxicillin/clavulanic acid" "Anaerobes, Gramnegative" 4 8 FALSE +"EUCAST 2020" "MIC" "Porphyromonas" "Amoxicillin/clavulanic acid" "Anaerobes, Gramnegative" 4 8 FALSE +"EUCAST 2020" "MIC" "Propionibacterium" "Amoxicillin/clavulanic acid" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Prevotella" "Amoxicillin/clavulanic acid" "Anaerobes, Gramnegative" 4 8 FALSE +"EUCAST 2020" "DISK" "Pasteurella multocida" "Amoxicillin/clavulanic acid" "P.multocida" "2-1ug" 15 15 FALSE +"EUCAST 2020" "MIC" "Pasteurella multocida" "Amoxicillin/clavulanic acid" "P.multocida" 1 1 FALSE +"EUCAST 2020" "MIC" "Staphylococcus saccharolyticus" "Amoxicillin/clavulanic acid" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "oral" "Streptococcus pneumoniae" "Amoxicillin/clavulanic acid" "S.pneumoniae" 0.5 1 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Amoxicillin/clavulanic acid" "PK PD breakpoints" 2 8 FALSE +"EUCAST 2020" "DISK" "Systemic" "Enterobacterales" "Amikacin" "Enterobacterales" "30ug" 18 18 FALSE +"EUCAST 2020" "DISK" "UTI" "Enterobacterales" "Amikacin" "Enterobacterales" "30ug" 18 18 TRUE +"EUCAST 2020" "MIC" "Systemic" "Enterobacterales" "Amikacin" "Enterobacterales" 8 8 FALSE +"EUCAST 2020" "MIC" "UTI" "Enterobacterales" "Amikacin" "Enterobacterales" 8 8 TRUE +"EUCAST 2020" "DISK" "Systemic" "Acinetobacter" "Amikacin" "Acinetobacter" "30ug" 19 19 FALSE +"EUCAST 2020" "DISK" "UTI" "Acinetobacter" "Amikacin" "Acinetobacter" "30ug" 19 19 TRUE +"EUCAST 2020" "MIC" "Systemic" "Acinetobacter" "Amikacin" "Acinetobacter" 8 8 FALSE +"EUCAST 2020" "MIC" "UTI" "Acinetobacter" "Amikacin" "Acinetobacter" 8 8 TRUE +"EUCAST 2020" "DISK" "Systemic" "Pseudomonas" "Amikacin" "Pseudomonas" "30ug" 15 15 FALSE +"EUCAST 2020" "DISK" "UTI" "Pseudomonas" "Amikacin" "Pseudomonas" "30ug" 15 15 TRUE +"EUCAST 2020" "MIC" "Systemic" "Pseudomonas" "Amikacin" "Pseudomonas" 16 16 FALSE +"EUCAST 2020" "MIC" "UTI" "Pseudomonas" "Amikacin" "Pseudomonas" 1 1 TRUE +"EUCAST 2020" "DISK" "Staphylococcus" "Amikacin" "Staphylococcus" "30ug" 22 22 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" "Amikacin" "Staphylococcus" 8 8 FALSE +"EUCAST 2020" "DISK" "Staphylococcus aureus" "Amikacin" "Staphylococcus" "30ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus" "Amikacin" "Staphylococcus" 8 8 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Amikacin" "PK PD breakpoints" 1 1 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" "Ampicillin" "Enterobacterales" "10ug" 14 14 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" "Ampicillin" "Enterobacterales" 8 8 FALSE +"EUCAST 2020" "DISK" "Aerococcus sanguinicola" "Ampicillin" "A.sanguinicola_A.urinae" "2ug" 26 26 FALSE +"EUCAST 2020" "MIC" "Aerococcus sanguinicola" "Ampicillin" "A.sanguinicola_A.urinae" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Aerococcus urinae" "Ampicillin" "A.sanguinicola_A.urinae" "2ug" 26 26 FALSE +"EUCAST 2020" "MIC" "Aerococcus urinae" "Ampicillin" "A.sanguinicola_A.urinae" 0.25 0.25 FALSE +"EUCAST 2020" "MIC" "Actinomyces" "Ampicillin" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Bacteroides" "Ampicillin" "Anaerobes, Gramnegative" 0.5 2 FALSE +"EUCAST 2020" "MIC" "Bifidobacterium" "Ampicillin" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Bilophila" "Ampicillin" "Anaerobes, Gramnegative" 0.5 2 FALSE +"EUCAST 2020" "MIC" "Cutibacterium" "Ampicillin" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Clostridioides" "Ampicillin" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Clostridium" "Ampicillin" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Eubacterium" "Ampicillin" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Eggerthella" "Ampicillin" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "DISK" "Enterococcus" "Ampicillin" "Enterococcus" "2ug" 10 8 FALSE +"EUCAST 2020" "MIC" "Enterococcus" "Ampicillin" "Enterococcus" 4 8 FALSE +"EUCAST 2020" "MIC" "Fusobacterium" "Ampicillin" "Anaerobes, Gramnegative" 0.5 2 FALSE +"EUCAST 2020" "DISK" "Haemophilus influenzae" "Ampicillin" "H.influenzae" "2ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Haemophilus influenzae" "Ampicillin" "H.influenzae" 1 1 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" "Ampicillin" "K.kingae" 0.062 0.062 FALSE +"EUCAST 2020" "MIC" "Lactobacillus" "Ampicillin" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "DISK" "iv" "Listeria monocytogenes" "Ampicillin" "L.monocytogenes" "2ug" 16 16 FALSE +"EUCAST 2020" "MIC" "iv" "Listeria monocytogenes" "Ampicillin" "L.monocytogenes" 1 1 FALSE +"EUCAST 2020" "MIC" "Mobiluncus" "Ampicillin" "Anaerobes, Gramnegative" 0.5 2 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" "Ampicillin" "M.catarrhalis" -1 -1 FALSE +"EUCAST 2020" "MIC" "Neisseria meningitidis" "Ampicillin" "N.meningitidis" 0.125 1 FALSE +"EUCAST 2020" "MIC" "Parabacteroides" "Ampicillin" "Anaerobes, Gramnegative" 0.5 2 FALSE +"EUCAST 2020" "MIC" "Porphyromonas" "Ampicillin" "Anaerobes, Gramnegative" 0.5 2 FALSE +"EUCAST 2020" "MIC" "Propionibacterium" "Ampicillin" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Prevotella" "Ampicillin" "Anaerobes, Gramnegative" 0.5 2 FALSE +"EUCAST 2020" "MIC" "Pasteurella multocida" "Ampicillin" "P.multocida" 1 1 FALSE +"EUCAST 2020" "MIC" "Staphylococcus saccharolyticus" "Ampicillin" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" "Ampicillin" "S.pneumoniae" "2ug" 22 16 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" "Ampicillin" "S.pneumoniae" 0.5 2 FALSE +"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" "Ampicillin" "Viridans group streptococci" "2ug" 21 15 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" "Ampicillin" "Viridans group streptococci" 0.5 2 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Ampicillin" "PK PD breakpoints" 2 8 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" "Amoxicillin" "Enterobacterales" 8 8 FALSE +"EUCAST 2020" "MIC" "Actinomyces" "Amoxicillin" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Bacteroides" "Amoxicillin" "Anaerobes, Gramnegative" 0.5 2 FALSE +"EUCAST 2020" "MIC" "Bifidobacterium" "Amoxicillin" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Bilophila" "Amoxicillin" "Anaerobes, Gramnegative" 0.5 2 FALSE +"EUCAST 2020" "MIC" "Cutibacterium" "Amoxicillin" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Clostridioides" "Amoxicillin" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Clostridium" "Amoxicillin" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Eubacterium" "Amoxicillin" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Eggerthella" "Amoxicillin" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Enterococcus" "Amoxicillin" "Enterococcus" 4 8 FALSE +"EUCAST 2020" "MIC" "Fusobacterium" "Amoxicillin" "Anaerobes, Gramnegative" 0.5 2 FALSE +"EUCAST 2020" "MIC" "oral" "Helicobacter pylori" "Amoxicillin" "H.pylori" 0.125 0.125 FALSE +"EUCAST 2020" "MIC" "iv" "Haemophilus influenzae" "Amoxicillin" "H.influenzae" 2 2 FALSE +"EUCAST 2020" "MIC" "oral" "Haemophilus influenzae" "Amoxicillin" "H.influenzae" 0.001 2 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" "Amoxicillin" "K.kingae" 0.1252 0.1252 FALSE +"EUCAST 2020" "MIC" "Lactobacillus" "Amoxicillin" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Mobiluncus" "Amoxicillin" "Anaerobes, Gramnegative" 0.5 2 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" "Amoxicillin" "M.catarrhalis" -1 -1 FALSE +"EUCAST 2020" "MIC" "Neisseria meningitidis" "Amoxicillin" "N.meningitidis" 0.125 1 FALSE +"EUCAST 2020" "MIC" "Parabacteroides" "Amoxicillin" "Anaerobes, Gramnegative" 0.5 2 FALSE +"EUCAST 2020" "MIC" "Porphyromonas" "Amoxicillin" "Anaerobes, Gramnegative" 0.5 2 FALSE +"EUCAST 2020" "MIC" "Propionibacterium" "Amoxicillin" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Prevotella" "Amoxicillin" "Anaerobes, Gramnegative" 0.5 2 FALSE +"EUCAST 2020" "MIC" "Pasteurella multocida" "Amoxicillin" "P.multocida" 1 1 FALSE +"EUCAST 2020" "MIC" "Staphylococcus saccharolyticus" "Amoxicillin" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "oral" "Streptococcus pneumoniae" "Amoxicillin" "S.pneumoniae" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" "Amoxicillin" "Viridans group streptococci" 0.5 2 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Amoxicillin" "PK PD breakpoints" 2 8 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" "Aztreonam" "Enterobacterales" "30ug" 26 21 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" "Aztreonam" "Enterobacterales" 1 4 FALSE +"EUCAST 2020" "DISK" "Aeromonas" "Aztreonam" "Aeromonas" "30ug" 29 26 FALSE +"EUCAST 2020" "MIC" "Aeromonas" "Aztreonam" "Aeromonas" 1 4 FALSE +"EUCAST 2020" "DISK" "Pseudomonas" "Aztreonam" "Pseudomonas" "30ug" 50 18 FALSE +"EUCAST 2020" "MIC" "Pseudomonas" "Aztreonam" "Pseudomonas" 0.001 1 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Aztreonam" "PK PD breakpoints" 4 8 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" "Azithromycin" "K.kingae" 0.25 0.25 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" "Azithromycin" "M.catarrhalis" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" "Azithromycin" "Staphylococcus" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus agalactiae" "Azithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" "Azithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae" "Azithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae dysgalactiae" "Azithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae equisimilis" "Azithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi" "Azithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi equi" "Azithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi ruminatorum" "Azithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi zooepidemicus" "Azithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus group A" "Azithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus group B" "Azithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus group C" "Azithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus group D" "Azithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus group F" "Azithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus group G" "Azithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus group H" "Azithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus group K" "Azithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" "Azithromycin" "S.pneumoniae" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus pyogenes" "Azithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus salivarius" "Azithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus sanguinis" "Azithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Mycobacterium tuberculosis" "Bedaquiline" "M.tuberculosis" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" "Ceftobiprole" "Enterobacterales" "5ug" 23 23 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" "Ceftobiprole" "Enterobacterales" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Staphylococcus aureus" "Ceftobiprole" "Staphylococcus" "5ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus" "Ceftobiprole" "Staphylococcus" 2 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" "Ceftobiprole" "S.pneumoniae" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Ceftobiprole" "PK PD breakpoints" 4 4 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" "Ceftazidime" "Enterobacterales" "10ug" 22 19 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" "Ceftazidime" "Enterobacterales" 1 4 FALSE +"EUCAST 2020" "DISK" "Aeromonas" "Ceftazidime" "Aeromonas" "10ug" 24 21 FALSE +"EUCAST 2020" "MIC" "Aeromonas" "Ceftazidime" "Aeromonas" 1 4 FALSE +"EUCAST 2020" "DISK" "Burkholderia pseudomallei" "Ceftazidime" "B.pseudomallei" "10ug" 50 18 FALSE +"EUCAST 2020" "MIC" "Burkholderia pseudomallei" "Ceftazidime" "B.pseudomallei" 0.001 8 FALSE +"EUCAST 2020" "DISK" "Pseudomonas" "Ceftazidime" "Pseudomonas" "10ug" 50 17 FALSE +"EUCAST 2020" "MIC" "Pseudomonas" "Ceftazidime" "Pseudomonas" 0.001 8 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Ceftazidime" "PK PD breakpoints" 4 8 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" "Cefaclor" "S.pneumoniae" "30ug" 50 28 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" "Cefaclor" "S.pneumoniae" 0.001 0.5 FALSE +"EUCAST 2020" "DISK" "UTI" "Enterobacterales" "Cefixime" "Enterobacterales" "5ug" 17 17 TRUE +"EUCAST 2020" "MIC" "UTI" "Enterobacterales" "Cefixime" "Enterobacterales" 1 1 TRUE +"EUCAST 2020" "DISK" "Haemophilus influenzae" "Cefixime" "H.influenzae" "5ug" 26 26 FALSE +"EUCAST 2020" "MIC" "Haemophilus influenzae" "Cefixime" "H.influenzae" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" "Cefixime" "M.catarrhalis" "5ug" 21 18 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" "Cefixime" "M.catarrhalis" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Neisseria gonorrhoeae" "Cefixime" "N.gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "UTI" "Enterobacterales" "Cefadroxil" "Enterobacterales" "30ug" 12 12 TRUE +"EUCAST 2020" "MIC" "UTI" "Enterobacterales" "Cefadroxil" "Enterobacterales" 1 1 TRUE +"EUCAST 2020" "DISK" "Enterobacterales" "Chloramphenicol" "Enterobacterales" "30ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" "Chloramphenicol" "Enterobacterales" 8 8 FALSE +"EUCAST 2020" "MIC" "Actinomyces" "Chloramphenicol" "Anaerobes, Grampositive" 8 8 FALSE +"EUCAST 2020" "MIC" "Bacteroides" "Chloramphenicol" "Anaerobes, Gramnegative" 8 8 FALSE +"EUCAST 2020" "MIC" "Bifidobacterium" "Chloramphenicol" "Anaerobes, Grampositive" 8 8 FALSE +"EUCAST 2020" "MIC" "Bilophila" "Chloramphenicol" "Anaerobes, Gramnegative" 8 8 FALSE +"EUCAST 2020" "DISK" "Burkholderia pseudomallei" "Chloramphenicol" "B.pseudomallei" "30ug" 50 22 FALSE +"EUCAST 2020" "MIC" "Burkholderia pseudomallei" "Chloramphenicol" "B.pseudomallei" 0.001 8 FALSE +"EUCAST 2020" "MIC" "Cutibacterium" "Chloramphenicol" "Anaerobes, Grampositive" 8 8 FALSE +"EUCAST 2020" "MIC" "Clostridioides" "Chloramphenicol" "Anaerobes, Grampositive" 8 8 FALSE +"EUCAST 2020" "MIC" "Clostridium" "Chloramphenicol" "Anaerobes, Grampositive" 8 8 FALSE +"EUCAST 2020" "MIC" "Eubacterium" "Chloramphenicol" "Anaerobes, Grampositive" 8 8 FALSE +"EUCAST 2020" "MIC" "Eggerthella" "Chloramphenicol" "Anaerobes, Grampositive" 8 8 FALSE +"EUCAST 2020" "MIC" "Fusobacterium" "Chloramphenicol" "Anaerobes, Gramnegative" 8 8 FALSE +"EUCAST 2020" "DISK" "Haemophilus influenzae" "Chloramphenicol" "H.influenzae" "30ug" 28 28 FALSE +"EUCAST 2020" "MIC" "Haemophilus influenzae" "Chloramphenicol" "H.influenzae" 2 2 FALSE +"EUCAST 2020" "MIC" "Lactobacillus" "Chloramphenicol" "Anaerobes, Grampositive" 8 8 FALSE +"EUCAST 2020" "MIC" "Mobiluncus" "Chloramphenicol" "Anaerobes, Gramnegative" 8 8 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" "Chloramphenicol" "M.catarrhalis" "30ug" 30 30 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" "Chloramphenicol" "M.catarrhalis" 2 2 FALSE +"EUCAST 2020" "MIC" "Neisseria meningitidis" "Chloramphenicol" "N.meningitidis" 2 2 FALSE +"EUCAST 2020" "MIC" "Parabacteroides" "Chloramphenicol" "Anaerobes, Gramnegative" 8 8 FALSE +"EUCAST 2020" "MIC" "Porphyromonas" "Chloramphenicol" "Anaerobes, Gramnegative" 8 8 FALSE +"EUCAST 2020" "MIC" "Propionibacterium" "Chloramphenicol" "Anaerobes, Grampositive" 8 8 FALSE +"EUCAST 2020" "MIC" "Prevotella" "Chloramphenicol" "Anaerobes, Gramnegative" 8 8 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" "Chloramphenicol" "Staphylococcus" "30ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" "Chloramphenicol" "Staphylococcus" 8 8 FALSE +"EUCAST 2020" "MIC" "Staphylococcus saccharolyticus" "Chloramphenicol" "Anaerobes, Grampositive" 8 8 FALSE +"EUCAST 2020" "DISK" "Streptococcus agalactiae" "Chloramphenicol" "Streptococcus A,B,C,G" "30ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus agalactiae" "Chloramphenicol" "Streptococcus A,B,C,G" 8 8 FALSE +"EUCAST 2020" "DISK" "Streptococcus anginosus" "Chloramphenicol" "Streptococcus A,B,C,G" "30ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" "Chloramphenicol" "Streptococcus A,B,C,G" 8 8 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae" "Chloramphenicol" "Streptococcus A,B,C,G" "30ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae" "Chloramphenicol" "Streptococcus A,B,C,G" 8 8 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae dysgalactiae" "Chloramphenicol" "Streptococcus A,B,C,G" "30ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae dysgalactiae" "Chloramphenicol" "Streptococcus A,B,C,G" 8 8 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae equisimilis" "Chloramphenicol" "Streptococcus A,B,C,G" "30ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae equisimilis" "Chloramphenicol" "Streptococcus A,B,C,G" 8 8 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi" "Chloramphenicol" "Streptococcus A,B,C,G" "30ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi" "Chloramphenicol" "Streptococcus A,B,C,G" 8 8 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi equi" "Chloramphenicol" "Streptococcus A,B,C,G" "30ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi equi" "Chloramphenicol" "Streptococcus A,B,C,G" 8 8 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi ruminatorum" "Chloramphenicol" "Streptococcus A,B,C,G" "30ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi ruminatorum" "Chloramphenicol" "Streptococcus A,B,C,G" 8 8 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi zooepidemicus" "Chloramphenicol" "Streptococcus A,B,C,G" "30ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi zooepidemicus" "Chloramphenicol" "Streptococcus A,B,C,G" 8 8 FALSE +"EUCAST 2020" "DISK" "Streptococcus group A" "Chloramphenicol" "Streptococcus A,B,C,G" "30ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group A" "Chloramphenicol" "Streptococcus A,B,C,G" 8 8 FALSE +"EUCAST 2020" "DISK" "Streptococcus group B" "Chloramphenicol" "Streptococcus A,B,C,G" "30ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group B" "Chloramphenicol" "Streptococcus A,B,C,G" 8 8 FALSE +"EUCAST 2020" "DISK" "Streptococcus group C" "Chloramphenicol" "Streptococcus A,B,C,G" "30ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group C" "Chloramphenicol" "Streptococcus A,B,C,G" 8 8 FALSE +"EUCAST 2020" "DISK" "Streptococcus group D" "Chloramphenicol" "Streptococcus A,B,C,G" "30ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group D" "Chloramphenicol" "Streptococcus A,B,C,G" 8 8 FALSE +"EUCAST 2020" "DISK" "Streptococcus group F" "Chloramphenicol" "Streptococcus A,B,C,G" "30ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group F" "Chloramphenicol" "Streptococcus A,B,C,G" 8 8 FALSE +"EUCAST 2020" "DISK" "Streptococcus group G" "Chloramphenicol" "Streptococcus A,B,C,G" "30ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group G" "Chloramphenicol" "Streptococcus A,B,C,G" 8 8 FALSE +"EUCAST 2020" "DISK" "Streptococcus group H" "Chloramphenicol" "Streptococcus A,B,C,G" "30ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group H" "Chloramphenicol" "Streptococcus A,B,C,G" 8 8 FALSE +"EUCAST 2020" "DISK" "Streptococcus group K" "Chloramphenicol" "Streptococcus A,B,C,G" "30ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group K" "Chloramphenicol" "Streptococcus A,B,C,G" 8 8 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" "Chloramphenicol" "S.pneumoniae" "30ug" 21 21 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" "Chloramphenicol" "S.pneumoniae" 8 8 FALSE +"EUCAST 2020" "DISK" "Streptococcus pyogenes" "Chloramphenicol" "Streptococcus A,B,C,G" "30ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus pyogenes" "Chloramphenicol" "Streptococcus A,B,C,G" 8 8 FALSE +"EUCAST 2020" "DISK" "Streptococcus salivarius" "Chloramphenicol" "Streptococcus A,B,C,G" "30ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus salivarius" "Chloramphenicol" "Streptococcus A,B,C,G" 8 8 FALSE +"EUCAST 2020" "DISK" "Streptococcus sanguinis" "Chloramphenicol" "Streptococcus A,B,C,G" "30ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus sanguinis" "Chloramphenicol" "Streptococcus A,B,C,G" 8 8 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" "Ciprofloxacin" "Enterobacterales" "5ug" 25 22 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" "Ciprofloxacin" "Enterobacterales" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Acinetobacter" "Ciprofloxacin" "Acinetobacter" "5ug" 50 21 FALSE +"EUCAST 2020" "MIC" "Acinetobacter" "Ciprofloxacin" "Acinetobacter" 0.001 1 FALSE +"EUCAST 2020" "DISK" "UTI" "Aerococcus sanguinicola" "Ciprofloxacin" "A.sanguinicola_A.urinae" "5ug" 21 21 TRUE +"EUCAST 2020" "MIC" "UTI" "Aerococcus sanguinicola" "Ciprofloxacin" "A.sanguinicola_A.urinae" 2 2 TRUE +"EUCAST 2020" "DISK" "UTI" "Aerococcus urinae" "Ciprofloxacin" "A.sanguinicola_A.urinae" "5ug" 21 21 TRUE +"EUCAST 2020" "MIC" "UTI" "Aerococcus urinae" "Ciprofloxacin" "A.sanguinicola_A.urinae" 2 2 TRUE +"EUCAST 2020" "DISK" "Aeromonas" "Ciprofloxacin" "Aeromonas" "5ug" 27 24 FALSE +"EUCAST 2020" "MIC" "Aeromonas" "Ciprofloxacin" "Aeromonas" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Campylobacter coli" "Ciprofloxacin" "C.jejuni_C.coli" "5ug" 26 26 FALSE +"EUCAST 2020" "MIC" "Campylobacter coli" "Ciprofloxacin" "C.jejuni_C.coli" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Campylobacter jejuni" "Ciprofloxacin" "C.jejuni_C.coli" "5ug" 26 26 FALSE +"EUCAST 2020" "MIC" "Campylobacter jejuni" "Ciprofloxacin" "C.jejuni_C.coli" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Corynebacterium" "Ciprofloxacin" "Corynebacterium" "5ug" 25 25 FALSE +"EUCAST 2020" "MIC" "Corynebacterium" "Ciprofloxacin" "Corynebacterium" 1 1 FALSE +"EUCAST 2020" "DISK" "UTI" "Enterococcus" "Ciprofloxacin" "Enterococcus" "5ug" 15 15 TRUE +"EUCAST 2020" "MIC" "UTI" "Enterococcus" "Ciprofloxacin" "Enterococcus" 4 4 TRUE +"EUCAST 2020" "DISK" "Haemophilus influenzae" "Ciprofloxacin" "H.influenzae" "5ug" 30 30 FALSE +"EUCAST 2020" "MIC" "Haemophilus influenzae" "Ciprofloxacin" "H.influenzae" 0.06 0.06 FALSE +"EUCAST 2020" "DISK" "Kingella kingae" "Ciprofloxacin" "K.kingae" "5ug" 28 28 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" "Ciprofloxacin" "K.kingae" 0.06 0.06 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" "Ciprofloxacin" "M.catarrhalis" "5ug" 31 31 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" "Ciprofloxacin" "M.catarrhalis" 0.125 0.125 FALSE +"EUCAST 2020" "MIC" "Neisseria gonorrhoeae" "Ciprofloxacin" "N.gonorrhoeae" 0.03 0.06 FALSE +"EUCAST 2020" "MIC" "Neisseria meningitidis" "Ciprofloxacin" "N.meningitidis" 0.03 0.03 FALSE +"EUCAST 2020" "DISK" "Pseudomonas" "Ciprofloxacin" "Pseudomonas" "5ug" 50 26 FALSE +"EUCAST 2020" "MIC" "Pseudomonas" "Ciprofloxacin" "Pseudomonas" 0.001 0.5 FALSE +"EUCAST 2020" "DISK" "Pasteurella multocida" "Ciprofloxacin" "P.multocida" "5ug" 27 27 FALSE +"EUCAST 2020" "MIC" "Pasteurella multocida" "Ciprofloxacin" "P.multocida" 0.06 0.06 FALSE +"EUCAST 2020" "MIC" "Salmonella" "Ciprofloxacin" "Enterobacterales" 0.06 0.06 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" "Ciprofloxacin" "Staphylococcus" "5ug" 50 24 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" "Ciprofloxacin" "Staphylococcus" 0.001 1 FALSE +"EUCAST 2020" "DISK" "Staphylococcus aureus" "Ciprofloxacin" "Staphylococcus" "5ug" 50 21 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus" "Ciprofloxacin" "Staphylococcus" 0.001 1 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Ciprofloxacin" "PK PD breakpoints" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Actinomyces" "Clindamycin" "Anaerobes, Grampositive" 4 4 FALSE +"EUCAST 2020" "MIC" "Bacteroides" "Clindamycin" "Anaerobes, Gramnegative" 4 4 FALSE +"EUCAST 2020" "MIC" "Bifidobacterium" "Clindamycin" "Anaerobes, Grampositive" 4 4 FALSE +"EUCAST 2020" "MIC" "Bilophila" "Clindamycin" "Anaerobes, Gramnegative" 4 4 FALSE +"EUCAST 2020" "MIC" "Cutibacterium" "Clindamycin" "Anaerobes, Grampositive" 4 4 FALSE +"EUCAST 2020" "MIC" "Clostridioides" "Clindamycin" "Anaerobes, Grampositive" 4 4 FALSE +"EUCAST 2020" "DISK" "Corynebacterium" "Clindamycin" "Corynebacterium" "2ug" 20 20 FALSE +"EUCAST 2020" "MIC" "Corynebacterium" "Clindamycin" "Corynebacterium" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Clostridium" "Clindamycin" "Anaerobes, Grampositive" 4 4 FALSE +"EUCAST 2020" "MIC" "Eubacterium" "Clindamycin" "Anaerobes, Grampositive" 4 4 FALSE +"EUCAST 2020" "MIC" "Eggerthella" "Clindamycin" "Anaerobes, Grampositive" 4 4 FALSE +"EUCAST 2020" "MIC" "Fusobacterium" "Clindamycin" "Anaerobes, Gramnegative" 4 4 FALSE +"EUCAST 2020" "MIC" "Lactobacillus" "Clindamycin" "Anaerobes, Grampositive" 4 4 FALSE +"EUCAST 2020" "MIC" "Mobiluncus" "Clindamycin" "Anaerobes, Gramnegative" 4 4 FALSE +"EUCAST 2020" "MIC" "Parabacteroides" "Clindamycin" "Anaerobes, Gramnegative" 4 4 FALSE +"EUCAST 2020" "MIC" "Porphyromonas" "Clindamycin" "Anaerobes, Gramnegative" 4 4 FALSE +"EUCAST 2020" "MIC" "Propionibacterium" "Clindamycin" "Anaerobes, Grampositive" 4 4 FALSE +"EUCAST 2020" "MIC" "Prevotella" "Clindamycin" "Anaerobes, Gramnegative" 4 4 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" "Clindamycin" "Staphylococcus" "2ug" 22 19 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" "Clindamycin" "Staphylococcus" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Staphylococcus saccharolyticus" "Clindamycin" "Anaerobes, Grampositive" 4 4 FALSE +"EUCAST 2020" "DISK" "Streptococcus agalactiae" "Clindamycin" "Streptococcus A,B,C,G" "2ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus agalactiae" "Clindamycin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus anginosus" "Clindamycin" "Streptococcus A,B,C,G" "2ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" "Clindamycin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae" "Clindamycin" "Streptococcus A,B,C,G" "2ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae" "Clindamycin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae dysgalactiae" "Clindamycin" "Streptococcus A,B,C,G" "2ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae dysgalactiae" "Clindamycin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae equisimilis" "Clindamycin" "Streptococcus A,B,C,G" "2ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae equisimilis" "Clindamycin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi" "Clindamycin" "Streptococcus A,B,C,G" "2ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi" "Clindamycin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi equi" "Clindamycin" "Streptococcus A,B,C,G" "2ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi equi" "Clindamycin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi ruminatorum" "Clindamycin" "Streptococcus A,B,C,G" "2ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi ruminatorum" "Clindamycin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi zooepidemicus" "Clindamycin" "Streptococcus A,B,C,G" "2ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi zooepidemicus" "Clindamycin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group A" "Clindamycin" "Streptococcus A,B,C,G" "2ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus group A" "Clindamycin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group B" "Clindamycin" "Streptococcus A,B,C,G" "2ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus group B" "Clindamycin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group C" "Clindamycin" "Streptococcus A,B,C,G" "2ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus group C" "Clindamycin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group D" "Clindamycin" "Streptococcus A,B,C,G" "2ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus group D" "Clindamycin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group F" "Clindamycin" "Streptococcus A,B,C,G" "2ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus group F" "Clindamycin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group G" "Clindamycin" "Streptococcus A,B,C,G" "2ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus group G" "Clindamycin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group H" "Clindamycin" "Streptococcus A,B,C,G" "2ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus group H" "Clindamycin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group K" "Clindamycin" "Streptococcus A,B,C,G" "2ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus group K" "Clindamycin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" "Clindamycin" "S.pneumoniae" "2ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" "Clindamycin" "S.pneumoniae" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus pyogenes" "Clindamycin" "Streptococcus A,B,C,G" "2ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus pyogenes" "Clindamycin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus salivarius" "Clindamycin" "Streptococcus A,B,C,G" "2ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus salivarius" "Clindamycin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus sanguinis" "Clindamycin" "Streptococcus A,B,C,G" "2ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus sanguinis" "Clindamycin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" "Clindamycin" "Viridans group streptococci" "2ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" "Clindamycin" "Viridans group streptococci" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Helicobacter pylori" "Clarithromycin" "H.pylori" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" "Clarithromycin" "K.kingae" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" "Clarithromycin" "M.catarrhalis" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" "Clarithromycin" "Staphylococcus" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus agalactiae" "Clarithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" "Clarithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae" "Clarithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae dysgalactiae" "Clarithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae equisimilis" "Clarithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi" "Clarithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi equi" "Clarithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi ruminatorum" "Clarithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi zooepidemicus" "Clarithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus group A" "Clarithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus group B" "Clarithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus group C" "Clarithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus group D" "Clarithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus group F" "Clarithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus group G" "Clarithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus group H" "Clarithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus group K" "Clarithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" "Clarithromycin" "S.pneumoniae" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus pyogenes" "Clarithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus salivarius" "Clarithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus sanguinis" "Clarithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" "Colistin" "Enterobacterales" 2 2 FALSE +"EUCAST 2020" "MIC" "Acinetobacter" "Colistin" "Acinetobacter" 2 2 FALSE +"EUCAST 2020" "MIC" "Pseudomonas" "Colistin" "Pseudomonas" 2 2 FALSE +"EUCAST 2020" "DISK" "UTI" "Enterobacterales" "Cefpodoxime" "Enterobacterales" "10ug" 21 21 TRUE +"EUCAST 2020" "MIC" "UTI" "Enterobacterales" "Cefpodoxime" "Enterobacterales" 1 1 TRUE +"EUCAST 2020" "DISK" "Haemophilus influenzae" "Cefpodoxime" "H.influenzae" "10ug" 26 26 FALSE +"EUCAST 2020" "MIC" "Haemophilus influenzae" "Cefpodoxime" "H.influenzae" 0.25 0.25 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" "Cefpodoxime" "S.pneumoniae" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" "Ceftaroline" "Enterobacterales" "5ug" 23 23 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" "Ceftaroline" "Enterobacterales" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Haemophilus influenzae" "Ceftaroline" "H.influenzae" 0.03 0.03 FALSE +"EUCAST 2020" "DISK" "Staphylococcus aureus" "Ceftaroline" "Staphylococcus" "5ug" 20 17 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus" "Ceftaroline" "Staphylococcus" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" "Ceftaroline" "S.pneumoniae" 0.25 0.25 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Ceftaroline" "PK PD breakpoints" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" "Ceftriaxone" "Enterobacterales" "30ug" 25 22 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" "Ceftriaxone" "Enterobacterales" 1 2 FALSE +"EUCAST 2020" "DISK" "Haemophilus influenzae" "Ceftriaxone" "H.influenzae" "30ug" 32 32 FALSE +"EUCAST 2020" "MIC" "Haemophilus influenzae" "Ceftriaxone" "H.influenzae" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Kingella kingae" "Ceftriaxone" "K.kingae" "30ug" 30 30 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" "Ceftriaxone" "K.kingae" 0.06 0.06 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" "Ceftriaxone" "M.catarrhalis" "30ug" 24 21 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" "Ceftriaxone" "M.catarrhalis" 1 2 FALSE +"EUCAST 2020" "MIC" "Neisseria gonorrhoeae" "Ceftriaxone" "N.gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2020" "MIC" "Neisseria meningitidis" "Ceftriaxone" "N.meningitidis" 0.125 0.125 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" "Ceftriaxone" "S.pneumoniae" 0.5 2 FALSE +"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" "Viridans group streptococci" "30ug" 27 27 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" "Viridans group streptococci" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Ceftriaxone" "PK PD breakpoints" 1 2 FALSE +"EUCAST 2020" "DISK" "UTI" "Enterobacterales" "Ceftibuten" "Enterobacterales" "30ug" 23 23 TRUE +"EUCAST 2020" "MIC" "UTI" "Enterobacterales" "Ceftibuten" "Enterobacterales" 1 1 TRUE +"EUCAST 2020" "DISK" "Haemophilus influenzae" "Ceftibuten" "H.influenzae" "30ug" 25 25 FALSE +"EUCAST 2020" "MIC" "Haemophilus influenzae" "Ceftibuten" "H.influenzae" 1 1 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" "Cefotaxime" "Enterobacterales" "5ug" 20 17 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" "Cefotaxime" "Enterobacterales" 1 2 FALSE +"EUCAST 2020" "DISK" "Haemophilus influenzae" "Cefotaxime" "H.influenzae" "5ug" 27 27 FALSE +"EUCAST 2020" "MIC" "Haemophilus influenzae" "Cefotaxime" "H.influenzae" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Kingella kingae" "Cefotaxime" "K.kingae" "5ug" 27 27 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" "Cefotaxime" "K.kingae" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" "Cefotaxime" "M.catarrhalis" "5ug" 20 17 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" "Cefotaxime" "M.catarrhalis" 1 2 FALSE +"EUCAST 2020" "MIC" "Neisseria gonorrhoeae" "Cefotaxime" "N.gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2020" "MIC" "Neisseria meningitidis" "Cefotaxime" "N.meningitidis" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Pasteurella multocida" "Cefotaxime" "P.multocida" "5ug" 26 26 FALSE +"EUCAST 2020" "MIC" "Pasteurella multocida" "Cefotaxime" "P.multocida" 0.03 0.03 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" "Cefotaxime" "S.pneumoniae" 0.5 2 FALSE +"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" "Cefotaxime" "Viridans group streptococci" "5ug" 23 23 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" "Cefotaxime" "Viridans group streptococci" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Cefotaxime" "PK PD breakpoints" 1 2 FALSE +"EUCAST 2020" "DISK" "iv" "Escherichia coli" "Cefuroxime" "Enterobacterales" "30ug" 50 19 FALSE +"EUCAST 2020" "DISK" "UTI" "Escherichia coli" "Cefuroxime" "Enterobacterales" "30ug" 19 19 TRUE +"EUCAST 2020" "MIC" "iv" "Escherichia coli" "Cefuroxime" "Enterobacterales" 0.001 8 FALSE +"EUCAST 2020" "MIC" "UTI" "Escherichia coli" "Cefuroxime" "Enterobacterales" 8 8 TRUE +"EUCAST 2020" "DISK" "iv" "Haemophilus influenzae" "Cefuroxime" "H.influenzae" "30ug" 27 25 FALSE +"EUCAST 2020" "DISK" "oral" "Haemophilus influenzae" "Cefuroxime" "H.influenzae" "30ug" 50 27 FALSE +"EUCAST 2020" "MIC" "iv" "Haemophilus influenzae" "Cefuroxime" "H.influenzae" 1 2 FALSE +"EUCAST 2020" "MIC" "oral" "Haemophilus influenzae" "Cefuroxime" "H.influenzae" 0.001 1 FALSE +"EUCAST 2020" "DISK" "iv" "Kingella kingae" "Cefuroxime" "K.kingae" "30ug" 29 29 FALSE +"EUCAST 2020" "MIC" "iv" "Kingella kingae" "Cefuroxime" "K.kingae" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "iv" "Klebsiella" "Cefuroxime" "Enterobacterales" "30ug" 50 19 FALSE +"EUCAST 2020" "DISK" "UTI" "Klebsiella" "Cefuroxime" "Enterobacterales" "30ug" 19 19 TRUE +"EUCAST 2020" "MIC" "iv" "Klebsiella" "Cefuroxime" "Enterobacterales" 0.001 8 FALSE +"EUCAST 2020" "MIC" "UTI" "Klebsiella" "Cefuroxime" "Enterobacterales" 8 8 TRUE +"EUCAST 2020" "DISK" "iv" "Moraxella catarrhalis" "Cefuroxime" "M.catarrhalis" "30ug" 21 18 FALSE +"EUCAST 2020" "DISK" "oral" "Moraxella catarrhalis" "Cefuroxime" "M.catarrhalis" "30ug" 50 21 FALSE +"EUCAST 2020" "MIC" "iv" "Moraxella catarrhalis" "Cefuroxime" "M.catarrhalis" 4 8 FALSE +"EUCAST 2020" "MIC" "oral" "Moraxella catarrhalis" "Cefuroxime" "M.catarrhalis" 0.001 4 FALSE +"EUCAST 2020" "DISK" "iv" "Proteus mirabilis" "Cefuroxime" "Enterobacterales" "30ug" 50 19 FALSE +"EUCAST 2020" "DISK" "UTI" "Proteus mirabilis" "Cefuroxime" "Enterobacterales" "30ug" 19 19 TRUE +"EUCAST 2020" "MIC" "iv" "Proteus mirabilis" "Cefuroxime" "Enterobacterales" 0.001 8 FALSE +"EUCAST 2020" "MIC" "UTI" "Proteus mirabilis" "Cefuroxime" "Enterobacterales" 8 8 TRUE +"EUCAST 2020" "DISK" "iv" "Raoultella" "Cefuroxime" "Enterobacterales" "30ug" 50 19 FALSE +"EUCAST 2020" "DISK" "UTI" "Raoultella" "Cefuroxime" "Enterobacterales" "30ug" 19 19 TRUE +"EUCAST 2020" "MIC" "iv" "Raoultella" "Cefuroxime" "Enterobacterales" 0.001 8 FALSE +"EUCAST 2020" "MIC" "UTI" "Raoultella" "Cefuroxime" "Enterobacterales" 8 8 TRUE +"EUCAST 2020" "MIC" "iv" "Streptococcus pneumoniae" "Cefuroxime" "S.pneumoniae" 0.5 1 FALSE +"EUCAST 2020" "MIC" "oral" "Streptococcus pneumoniae" "Cefuroxime" "S.pneumoniae" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "iv" "Viridans Group Streptococcus (VGS)" "Cefuroxime" "Viridans group streptococci" "30ug" 26 26 FALSE +"EUCAST 2020" "MIC" "iv" "Viridans Group Streptococcus (VGS)" "Cefuroxime" "Viridans group streptococci" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "iv" "(unknown name)" "Cefuroxime" "PK PD breakpoints" 4 8 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" "Ceftazidime/avibactam" "Enterobacterales" "10-4ug" 13 13 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" "Ceftazidime/avibactam" "Enterobacterales" 8 8 FALSE +"EUCAST 2020" "DISK" "Pseudomonas aeruginosa" "Ceftazidime/avibactam" "Pseudomonas" "10-4ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Pseudomonas aeruginosa" "Ceftazidime/avibactam" "Pseudomonas" 8 8 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Ceftazidime/avibactam" "PK PD breakpoints" 8 8 FALSE +"EUCAST 2020" "MIC" "UTI" "Escherichia coli" "Cefazolin" "Enterobacterales" 0.001 4 TRUE +"EUCAST 2020" "MIC" "UTI" "Klebsiella" "Cefazolin" "Enterobacterales" 0.001 4 TRUE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" "Cefazolin" "Viridans group streptococci" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Cefazolin" "PK PD breakpoints" 1 2 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" "Ceftolozane/tazobactam" "Enterobacterales" "30-10ug" 22 22 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" "Ceftolozane/tazobactam" "Enterobacterales" 2 2 FALSE +"EUCAST 2020" "MIC" "Haemophilus influenzae" "Ceftolozane/tazobactam" "H.influenzae" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Pseudomonas aeruginosa" "Ceftolozane/tazobactam" "Pseudomonas" "30-10ug" 24 24 FALSE +"EUCAST 2020" "MIC" "Pseudomonas aeruginosa" "Ceftolozane/tazobactam" "Pseudomonas" 4 4 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Ceftolozane/tazobactam" "PK PD breakpoints" 43.4 43.4 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" "Dalbavancin" "Staphylococcus" 0.125 0.1253 FALSE +"EUCAST 2020" "MIC" "Streptococcus agalactiae" "Dalbavancin" "Streptococcus A,B,C,G" 0.125 0.1252 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" "Dalbavancin" "Streptococcus A,B,C,G" 0.125 0.1252 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" "Dalbavancin" "Viridans group streptococci" 0.125 0.1252 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae" "Dalbavancin" "Streptococcus A,B,C,G" 0.125 0.1252 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae dysgalactiae" "Dalbavancin" "Streptococcus A,B,C,G" 0.125 0.1252 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae equisimilis" "Dalbavancin" "Streptococcus A,B,C,G" 0.125 0.1252 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi" "Dalbavancin" "Streptococcus A,B,C,G" 0.125 0.1252 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi equi" "Dalbavancin" "Streptococcus A,B,C,G" 0.125 0.1252 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi ruminatorum" "Dalbavancin" "Streptococcus A,B,C,G" 0.125 0.1252 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi zooepidemicus" "Dalbavancin" "Streptococcus A,B,C,G" 0.125 0.1252 FALSE +"EUCAST 2020" "MIC" "Streptococcus group A" "Dalbavancin" "Streptococcus A,B,C,G" 0.125 0.1252 FALSE +"EUCAST 2020" "MIC" "Streptococcus group B" "Dalbavancin" "Streptococcus A,B,C,G" 0.125 0.1252 FALSE +"EUCAST 2020" "MIC" "Streptococcus group C" "Dalbavancin" "Streptococcus A,B,C,G" 0.125 0.1252 FALSE +"EUCAST 2020" "MIC" "Streptococcus group D" "Dalbavancin" "Streptococcus A,B,C,G" 0.125 0.1252 FALSE +"EUCAST 2020" "MIC" "Streptococcus group F" "Dalbavancin" "Streptococcus A,B,C,G" 0.125 0.1252 FALSE +"EUCAST 2020" "MIC" "Streptococcus group G" "Dalbavancin" "Streptococcus A,B,C,G" 0.125 0.1252 FALSE +"EUCAST 2020" "MIC" "Streptococcus group H" "Dalbavancin" "Streptococcus A,B,C,G" 0.125 0.1252 FALSE +"EUCAST 2020" "MIC" "Streptococcus group K" "Dalbavancin" "Streptococcus A,B,C,G" 0.125 0.1252 FALSE +"EUCAST 2020" "MIC" "Streptococcus pyogenes" "Dalbavancin" "Streptococcus A,B,C,G" 0.125 0.1252 FALSE +"EUCAST 2020" "MIC" "Streptococcus salivarius" "Dalbavancin" "Streptococcus A,B,C,G" 0.125 0.1252 FALSE +"EUCAST 2020" "MIC" "Streptococcus sanguinis" "Dalbavancin" "Streptococcus A,B,C,G" 0.125 0.1252 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Dalbavancin" "PK PD breakpoints" 0.25 0.25 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" "Daptomycin" "Staphylococcus" 1 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus agalactiae" "Daptomycin" "Streptococcus A,B,C,G" 1 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" "Daptomycin" "Streptococcus A,B,C,G" 1 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae" "Daptomycin" "Streptococcus A,B,C,G" 1 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae dysgalactiae" "Daptomycin" "Streptococcus A,B,C,G" 1 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae equisimilis" "Daptomycin" "Streptococcus A,B,C,G" 1 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi" "Daptomycin" "Streptococcus A,B,C,G" 1 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi equi" "Daptomycin" "Streptococcus A,B,C,G" 1 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi ruminatorum" "Daptomycin" "Streptococcus A,B,C,G" 1 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi zooepidemicus" "Daptomycin" "Streptococcus A,B,C,G" 1 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus group A" "Daptomycin" "Streptococcus A,B,C,G" 1 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus group B" "Daptomycin" "Streptococcus A,B,C,G" 1 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus group C" "Daptomycin" "Streptococcus A,B,C,G" 1 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus group D" "Daptomycin" "Streptococcus A,B,C,G" 1 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus group F" "Daptomycin" "Streptococcus A,B,C,G" 1 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus group G" "Daptomycin" "Streptococcus A,B,C,G" 1 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus group H" "Daptomycin" "Streptococcus A,B,C,G" 1 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus group K" "Daptomycin" "Streptococcus A,B,C,G" 1 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus pyogenes" "Daptomycin" "Streptococcus A,B,C,G" 1 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus salivarius" "Daptomycin" "Streptococcus A,B,C,G" 1 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus sanguinis" "Daptomycin" "Streptococcus A,B,C,G" 1 1 FALSE +"EUCAST 2020" "MIC" "Escherichia coli" "Delafloxacin" "Enterobacterales" 0.125 0.125 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus" "Delafloxacin" "Staphylococcus" 0.25 0.25 FALSE +"EUCAST 2020" "MIC" "Streptococcus agalactiae" "Delafloxacin" "Streptococcus A,B,C,G" 0.03 0.03 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" "Delafloxacin" "Streptococcus A,B,C,G" 0.03 0.03 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" "Delafloxacin" "Viridans group streptococci" 0.03 0.03 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae" "Delafloxacin" "Streptococcus A,B,C,G" 0.03 0.03 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae dysgalactiae" "Delafloxacin" "Streptococcus A,B,C,G" 0.03 0.03 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae equisimilis" "Delafloxacin" "Streptococcus A,B,C,G" 0.03 0.03 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi" "Delafloxacin" "Streptococcus A,B,C,G" 0.03 0.03 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi equi" "Delafloxacin" "Streptococcus A,B,C,G" 0.03 0.03 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi ruminatorum" "Delafloxacin" "Streptococcus A,B,C,G" 0.03 0.03 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi zooepidemicus" "Delafloxacin" "Streptococcus A,B,C,G" 0.03 0.03 FALSE +"EUCAST 2020" "MIC" "Streptococcus group A" "Delafloxacin" "Streptococcus A,B,C,G" 0.03 0.03 FALSE +"EUCAST 2020" "MIC" "Streptococcus group B" "Delafloxacin" "Streptococcus A,B,C,G" 0.03 0.03 FALSE +"EUCAST 2020" "MIC" "Streptococcus group C" "Delafloxacin" "Streptococcus A,B,C,G" 0.03 0.03 FALSE +"EUCAST 2020" "MIC" "Streptococcus group D" "Delafloxacin" "Streptococcus A,B,C,G" 0.03 0.03 FALSE +"EUCAST 2020" "MIC" "Streptococcus group F" "Delafloxacin" "Streptococcus A,B,C,G" 0.03 0.03 FALSE +"EUCAST 2020" "MIC" "Streptococcus group G" "Delafloxacin" "Streptococcus A,B,C,G" 0.03 0.03 FALSE +"EUCAST 2020" "MIC" "Streptococcus group H" "Delafloxacin" "Streptococcus A,B,C,G" 0.03 0.03 FALSE +"EUCAST 2020" "MIC" "Streptococcus group K" "Delafloxacin" "Streptococcus A,B,C,G" 0.03 0.03 FALSE +"EUCAST 2020" "MIC" "Streptococcus pyogenes" "Delafloxacin" "Streptococcus A,B,C,G" 0.03 0.03 FALSE +"EUCAST 2020" "MIC" "Streptococcus salivarius" "Delafloxacin" "Streptococcus A,B,C,G" 0.03 0.03 FALSE +"EUCAST 2020" "MIC" "Streptococcus sanguinis" "Delafloxacin" "Streptococcus A,B,C,G" 0.03 0.03 FALSE +"EUCAST 2020" "MIC" "Mycobacterium tuberculosis" "Delamanid" "M.tuberculosis" 0.06 0.06 FALSE +"EUCAST 2020" "MIC" "Burkholderia pseudomallei" "Doxycycline" "B.pseudomallei" 0.001 2 FALSE +"EUCAST 2020" "MIC" "Haemophilus influenzae" "Doxycycline" "H.influenzae" 1 2 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" "Doxycycline" "K.kingae" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" "Doxycycline" "M.catarrhalis" 1 2 FALSE +"EUCAST 2020" "MIC" "Pasteurella multocida" "Doxycycline" "P.multocida" 1 1 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" "Doxycycline" "Staphylococcus" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus agalactiae" "Doxycycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" "Doxycycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae" "Doxycycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae dysgalactiae" "Doxycycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae equisimilis" "Doxycycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi" "Doxycycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi equi" "Doxycycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi ruminatorum" "Doxycycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi zooepidemicus" "Doxycycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus group A" "Doxycycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus group B" "Doxycycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus group C" "Doxycycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus group D" "Doxycycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus group F" "Doxycycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus group G" "Doxycycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus group H" "Doxycycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus group K" "Doxycycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" "Doxycycline" "S.pneumoniae" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus pyogenes" "Doxycycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus salivarius" "Doxycycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus sanguinis" "Doxycycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Enterococcus faecium" "Eravacycline" "Enterococcus" "20ug" 24 24 FALSE +"EUCAST 2020" "MIC" "Enterococcus faecium" "Eravacycline" "Enterococcus" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Enterococcus faecalis" "Eravacycline" "Enterococcus" "20ug" 22 22 FALSE +"EUCAST 2020" "MIC" "Enterococcus faecalis" "Eravacycline" "Enterococcus" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Escherichia coli" "Eravacycline" "Enterobacterales" "20ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Escherichia coli" "Eravacycline" "Enterobacterales" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Staphylococcus aureus" "Eravacycline" "Staphylococcus" "20ug" 20 20 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus" "Eravacycline" "Staphylococcus" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" "Eravacycline" "Viridans group streptococci" "20ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" "Eravacycline" "Viridans group streptococci" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Campylobacter coli" "Erythromycin" "C.jejuni_C.coli" "15ug" 24 24 FALSE +"EUCAST 2020" "MIC" "Campylobacter coli" "Erythromycin" "C.jejuni_C.coli" 8 8 FALSE +"EUCAST 2020" "DISK" "Campylobacter jejuni" "Erythromycin" "C.jejuni_C.coli" "15ug" 20 20 FALSE +"EUCAST 2020" "MIC" "Campylobacter jejuni" "Erythromycin" "C.jejuni_C.coli" 4 4 FALSE +"EUCAST 2020" "DISK" "Kingella kingae" "Erythromycin" "K.kingae" "15ug" 20 20 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" "Erythromycin" "K.kingae" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Listeria monocytogenes" "Erythromycin" "L.monocytogenes" "15ug" 25 25 FALSE +"EUCAST 2020" "MIC" "Listeria monocytogenes" "Erythromycin" "L.monocytogenes" 1 1 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" "Erythromycin" "M.catarrhalis" "15ug" 23 20 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" "Erythromycin" "M.catarrhalis" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" "Erythromycin" "Staphylococcus" "15ug" 21 18 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" "Erythromycin" "Staphylococcus" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus agalactiae" "Erythromycin" "Streptococcus A,B,C,G" "15ug" 21 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus agalactiae" "Erythromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus anginosus" "Erythromycin" "Streptococcus A,B,C,G" "15ug" 21 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" "Erythromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae" "Erythromycin" "Streptococcus A,B,C,G" "15ug" 21 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae" "Erythromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae dysgalactiae" "Erythromycin" "Streptococcus A,B,C,G" "15ug" 21 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae dysgalactiae" "Erythromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae equisimilis" "Erythromycin" "Streptococcus A,B,C,G" "15ug" 21 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae equisimilis" "Erythromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi" "Erythromycin" "Streptococcus A,B,C,G" "15ug" 21 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi" "Erythromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi equi" "Erythromycin" "Streptococcus A,B,C,G" "15ug" 21 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi equi" "Erythromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi ruminatorum" "Erythromycin" "Streptococcus A,B,C,G" "15ug" 21 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi ruminatorum" "Erythromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi zooepidemicus" "Erythromycin" "Streptococcus A,B,C,G" "15ug" 21 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi zooepidemicus" "Erythromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group A" "Erythromycin" "Streptococcus A,B,C,G" "15ug" 21 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus group A" "Erythromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group B" "Erythromycin" "Streptococcus A,B,C,G" "15ug" 21 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus group B" "Erythromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group C" "Erythromycin" "Streptococcus A,B,C,G" "15ug" 21 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus group C" "Erythromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group D" "Erythromycin" "Streptococcus A,B,C,G" "15ug" 21 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus group D" "Erythromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group F" "Erythromycin" "Streptococcus A,B,C,G" "15ug" 21 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus group F" "Erythromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group G" "Erythromycin" "Streptococcus A,B,C,G" "15ug" 21 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus group G" "Erythromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group H" "Erythromycin" "Streptococcus A,B,C,G" "15ug" 21 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus group H" "Erythromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group K" "Erythromycin" "Streptococcus A,B,C,G" "15ug" 21 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus group K" "Erythromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" "Erythromycin" "S.pneumoniae" "15ug" 22 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" "Erythromycin" "S.pneumoniae" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus pyogenes" "Erythromycin" "Streptococcus A,B,C,G" "15ug" 21 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus pyogenes" "Erythromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus salivarius" "Erythromycin" "Streptococcus A,B,C,G" "15ug" 21 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus salivarius" "Erythromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus sanguinis" "Erythromycin" "Streptococcus A,B,C,G" "15ug" 21 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus sanguinis" "Erythromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" "Ertapenem" "Enterobacterales" "10ug" 25 25 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" "Ertapenem" "Enterobacterales" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Actinomyces" "Ertapenem" "Anaerobes, Grampositive" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Bacteroides" "Ertapenem" "Anaerobes, Gramnegative" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Bifidobacterium" "Ertapenem" "Anaerobes, Grampositive" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Bilophila" "Ertapenem" "Anaerobes, Gramnegative" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Cutibacterium" "Ertapenem" "Anaerobes, Grampositive" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Clostridioides" "Ertapenem" "Anaerobes, Grampositive" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Clostridium" "Ertapenem" "Anaerobes, Grampositive" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Eubacterium" "Ertapenem" "Anaerobes, Grampositive" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Eggerthella" "Ertapenem" "Anaerobes, Grampositive" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Fusobacterium" "Ertapenem" "Anaerobes, Gramnegative" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Haemophilus influenzae" "Ertapenem" "H.influenzae" "10ug" 23 23 FALSE +"EUCAST 2020" "MIC" "Haemophilus influenzae" "Ertapenem" "H.influenzae" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Lactobacillus" "Ertapenem" "Anaerobes, Grampositive" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Mobiluncus" "Ertapenem" "Anaerobes, Gramnegative" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" "Ertapenem" "M.catarrhalis" "10ug" 29 29 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" "Ertapenem" "M.catarrhalis" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Parabacteroides" "Ertapenem" "Anaerobes, Gramnegative" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Porphyromonas" "Ertapenem" "Anaerobes, Gramnegative" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Propionibacterium" "Ertapenem" "Anaerobes, Grampositive" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Prevotella" "Ertapenem" "Anaerobes, Gramnegative" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Staphylococcus saccharolyticus" "Ertapenem" "Anaerobes, Grampositive" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" "Ertapenem" "S.pneumoniae" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" "Ertapenem" "Viridans group streptococci" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Ertapenem" "PK PD breakpoints" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Clostridium difficile" "Fidaxomicin" "C.difficile" 4 4 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" "Cefepime" "Enterobacterales" "30ug" 27 24 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" "Cefepime" "Enterobacterales" 1 4 FALSE +"EUCAST 2020" "DISK" "Aeromonas" "Cefepime" "Aeromonas" "30ug" 27 24 FALSE +"EUCAST 2020" "MIC" "Aeromonas" "Cefepime" "Aeromonas" 1 4 FALSE +"EUCAST 2020" "DISK" "Haemophilus influenzae" "Cefepime" "H.influenzae" "30ug" 28 28 FALSE +"EUCAST 2020" "MIC" "Haemophilus influenzae" "Cefepime" "H.influenzae" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" "Cefepime" "M.catarrhalis" "30ug" 20 20 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" "Cefepime" "M.catarrhalis" 4 4 FALSE +"EUCAST 2020" "DISK" "Pseudomonas" "Cefepime" "Pseudomonas" "30ug" 50 21 FALSE +"EUCAST 2020" "MIC" "Pseudomonas" "Cefepime" "Pseudomonas" 0.001 8 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" "Cefepime" "S.pneumoniae" 1 2 FALSE +"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" "Cefepime" "Viridans group streptococci" "30ug" 25 25 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" "Cefepime" "Viridans group streptococci" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Cefepime" "PK PD breakpoints" 4 8 FALSE +"EUCAST 2020" "DISK" "iv" "Enterobacterales" "Fosfomycin" "Enterobacterales" "200ug" 24 24 FALSE +"EUCAST 2020" "DISK" "UTI" "Enterobacterales" "Fosfomycin" "Enterobacterales" "200ug" 24 24 TRUE +"EUCAST 2020" "MIC" "iv" "Enterobacterales" "Fosfomycin" "Enterobacterales" 32 32 FALSE +"EUCAST 2020" "MIC" "UTI" "Enterobacterales" "Fosfomycin" "Enterobacterales" 32 32 TRUE +"EUCAST 2020" "MIC" "iv" "Staphylococcus" "Fosfomycin" "Staphylococcus" 32 32 FALSE +"EUCAST 2020" "MIC" "Clostridium difficile" "Fusidic acid" "C.difficile" -3 -3 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" "Fusidic acid" "Staphylococcus" "10ug" 24 24 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" "Fusidic acid" "Staphylococcus" 1 1 FALSE +"EUCAST 2020" "DISK" "Systemic" "Enterobacterales" "Gentamicin" "Enterobacterales" "10ug" 17 17 FALSE +"EUCAST 2020" "DISK" "UTI" "Enterobacterales" "Gentamicin" "Enterobacterales" "10ug" 17 17 TRUE +"EUCAST 2020" "MIC" "Systemic" "Enterobacterales" "Gentamicin" "Enterobacterales" 2 2 FALSE +"EUCAST 2020" "MIC" "UTI" "Enterobacterales" "Gentamicin" "Enterobacterales" 2 2 TRUE +"EUCAST 2020" "DISK" "Systemic" "Acinetobacter" "Gentamicin" "Acinetobacter" "10ug" 17 17 FALSE +"EUCAST 2020" "DISK" "UTI" "Acinetobacter" "Gentamicin" "Acinetobacter" "10ug" 17 17 TRUE +"EUCAST 2020" "MIC" "Systemic" "Acinetobacter" "Gentamicin" "Acinetobacter" 4 4 FALSE +"EUCAST 2020" "MIC" "UTI" "Acinetobacter" "Gentamicin" "Acinetobacter" 4 4 TRUE +"EUCAST 2020" "DISK" "Staphylococcus" "Gentamicin" "Staphylococcus" "10ug" 22 22 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" "Gentamicin" "Staphylococcus" 1 1 FALSE +"EUCAST 2020" "DISK" "Staphylococcus aureus" "Gentamicin" "Staphylococcus" "10ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus" "Gentamicin" "Staphylococcus" 1 1 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Gentamicin" "PK PD breakpoints" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" "Imipenem/relebactam" "Enterobacterales" 2 2 FALSE +"EUCAST 2020" "MIC" "Acinetobacter" "Imipenem/relebactam" "Acinetobacter" 2 2 FALSE +"EUCAST 2020" "MIC" "Actinomyces" "Imipenem/relebactam" "Anaerobes, Grampositive" 2 2 FALSE +"EUCAST 2020" "MIC" "Bacteroides" "Imipenem/relebactam" "Anaerobes, Gramnegative" 2 2 FALSE +"EUCAST 2020" "MIC" "Bifidobacterium" "Imipenem/relebactam" "Anaerobes, Grampositive" 2 2 FALSE +"EUCAST 2020" "MIC" "Bilophila" "Imipenem/relebactam" "Anaerobes, Gramnegative" 2 2 FALSE +"EUCAST 2020" "MIC" "Cutibacterium" "Imipenem/relebactam" "Anaerobes, Grampositive" 2 2 FALSE +"EUCAST 2020" "MIC" "Clostridioides" "Imipenem/relebactam" "Anaerobes, Grampositive" 2 2 FALSE +"EUCAST 2020" "MIC" "Clostridium" "Imipenem/relebactam" "Anaerobes, Grampositive" 2 2 FALSE +"EUCAST 2020" "MIC" "Eubacterium" "Imipenem/relebactam" "Anaerobes, Grampositive" 2 2 FALSE +"EUCAST 2020" "MIC" "Eggerthella" "Imipenem/relebactam" "Anaerobes, Grampositive" 2 2 FALSE +"EUCAST 2020" "MIC" "Fusobacterium" "Imipenem/relebactam" "Anaerobes, Gramnegative" 2 2 FALSE +"EUCAST 2020" "MIC" "Lactobacillus" "Imipenem/relebactam" "Anaerobes, Grampositive" 2 2 FALSE +"EUCAST 2020" "MIC" "Mobiluncus" "Imipenem/relebactam" "Anaerobes, Gramnegative" 2 2 FALSE +"EUCAST 2020" "MIC" "Parabacteroides" "Imipenem/relebactam" "Anaerobes, Gramnegative" 2 2 FALSE +"EUCAST 2020" "MIC" "Porphyromonas" "Imipenem/relebactam" "Anaerobes, Gramnegative" 2 2 FALSE +"EUCAST 2020" "MIC" "Propionibacterium" "Imipenem/relebactam" "Anaerobes, Grampositive" 2 2 FALSE +"EUCAST 2020" "MIC" "Prevotella" "Imipenem/relebactam" "Anaerobes, Gramnegative" 2 2 FALSE +"EUCAST 2020" "MIC" "Pseudomonas aeruginosa" "Imipenem/relebactam" "Pseudomonas" 2 2 FALSE +"EUCAST 2020" "MIC" "Staphylococcus saccharolyticus" "Imipenem/relebactam" "Anaerobes, Grampositive" 2 2 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" "Imipenem/relebactam" "Viridans group streptococci" 2 2 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Imipenem/relebactam" "PK PD breakpoints" 2 2 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" "Imipenem" "Enterobacterales" "10ug" 22 17 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" "Imipenem" "Enterobacterales" 2 4 FALSE +"EUCAST 2020" "DISK" "Acinetobacter" "Imipenem" "Acinetobacter" "10ug" 24 21 FALSE +"EUCAST 2020" "MIC" "Acinetobacter" "Imipenem" "Acinetobacter" 2 4 FALSE +"EUCAST 2020" "MIC" "Actinomyces" "Imipenem" "Anaerobes, Grampositive" 2 4 FALSE +"EUCAST 2020" "MIC" "Bacteroides" "Imipenem" "Anaerobes, Gramnegative" 2 4 FALSE +"EUCAST 2020" "MIC" "Bifidobacterium" "Imipenem" "Anaerobes, Grampositive" 2 4 FALSE +"EUCAST 2020" "MIC" "Bilophila" "Imipenem" "Anaerobes, Gramnegative" 2 4 FALSE +"EUCAST 2020" "DISK" "Burkholderia pseudomallei" "Imipenem" "B.pseudomallei" "10ug" 29 29 FALSE +"EUCAST 2020" "MIC" "Burkholderia pseudomallei" "Imipenem" "B.pseudomallei" 2 2 FALSE +"EUCAST 2020" "MIC" "Cutibacterium" "Imipenem" "Anaerobes, Grampositive" 2 4 FALSE +"EUCAST 2020" "MIC" "Clostridioides" "Imipenem" "Anaerobes, Grampositive" 2 4 FALSE +"EUCAST 2020" "MIC" "Clostridium" "Imipenem" "Anaerobes, Grampositive" 2 4 FALSE +"EUCAST 2020" "MIC" "Eubacterium" "Imipenem" "Anaerobes, Grampositive" 2 4 FALSE +"EUCAST 2020" "MIC" "Eggerthella" "Imipenem" "Anaerobes, Grampositive" 2 4 FALSE +"EUCAST 2020" "DISK" "Enterococcus" "Imipenem" "Enterococcus" "10ug" 50 21 FALSE +"EUCAST 2020" "MIC" "Enterococcus" "Imipenem" "Enterococcus" 0.001 4 FALSE +"EUCAST 2020" "MIC" "Fusobacterium" "Imipenem" "Anaerobes, Gramnegative" 2 4 FALSE +"EUCAST 2020" "DISK" "Haemophilus influenzae" "Imipenem" "H.influenzae" "10ug" 20 20 FALSE +"EUCAST 2020" "MIC" "Haemophilus influenzae" "Imipenem" "H.influenzae" 2 2 FALSE +"EUCAST 2020" "MIC" "Lactobacillus" "Imipenem" "Anaerobes, Grampositive" 2 4 FALSE +"EUCAST 2020" "MIC" "Mobiluncus" "Imipenem" "Anaerobes, Gramnegative" 2 4 FALSE +"EUCAST 2020" "DISK" "Morganella morganii" "Imipenem" "Enterobacterales" "10ug" 50 17 FALSE +"EUCAST 2020" "MIC" "Morganella morganii" "Imipenem" "Enterobacterales" 0.001 4 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" "Imipenem" "M.catarrhalis" "10ug" 29 29 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" "Imipenem" "M.catarrhalis" 2 2 FALSE +"EUCAST 2020" "MIC" "Parabacteroides" "Imipenem" "Anaerobes, Gramnegative" 2 4 FALSE +"EUCAST 2020" "DISK" "Proteus" "Imipenem" "Enterobacterales" "10ug" 50 17 FALSE +"EUCAST 2020" "MIC" "Proteus" "Imipenem" "Enterobacterales" 0.001 4 FALSE +"EUCAST 2020" "MIC" "Porphyromonas" "Imipenem" "Anaerobes, Gramnegative" 2 4 FALSE +"EUCAST 2020" "MIC" "Propionibacterium" "Imipenem" "Anaerobes, Grampositive" 2 4 FALSE +"EUCAST 2020" "DISK" "Providencia" "Imipenem" "Enterobacterales" "10ug" 50 17 FALSE +"EUCAST 2020" "MIC" "Providencia" "Imipenem" "Enterobacterales" 0.001 4 FALSE +"EUCAST 2020" "MIC" "Prevotella" "Imipenem" "Anaerobes, Gramnegative" 2 4 FALSE +"EUCAST 2020" "DISK" "Pseudomonas" "Imipenem" "Pseudomonas" "10ug" 50 20 FALSE +"EUCAST 2020" "MIC" "Pseudomonas" "Imipenem" "Pseudomonas" 0.001 4 FALSE +"EUCAST 2020" "MIC" "Staphylococcus saccharolyticus" "Imipenem" "Anaerobes, Grampositive" 2 4 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" "Imipenem" "S.pneumoniae" 2 2 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" "Imipenem" "Viridans group streptococci" 2 2 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Imipenem" "PK PD breakpoints" 2 4 FALSE +"EUCAST 2020" "DISK" "UTI" "Enterobacterales" "Cephalexin" "Enterobacterales" "30ug" 14 14 TRUE +"EUCAST 2020" "MIC" "UTI" "Enterobacterales" "Cephalexin" "Enterobacterales" 1 1 TRUE +"EUCAST 2020" "DISK" "Corynebacterium" "Linezolid" "Corynebacterium" "10ug" 25 25 FALSE +"EUCAST 2020" "MIC" "Corynebacterium" "Linezolid" "Corynebacterium" 2 2 FALSE +"EUCAST 2020" "DISK" "Enterococcus" "Linezolid" "Enterococcus" "10ug" 20 20 FALSE +"EUCAST 2020" "MIC" "Enterococcus" "Linezolid" "Enterococcus" 4 4 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" "Linezolid" "Staphylococcus" "10ug" 21 21 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" "Linezolid" "Staphylococcus" 4 4 FALSE +"EUCAST 2020" "DISK" "Streptococcus agalactiae" "Linezolid" "Streptococcus A,B,C,G" "10ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus agalactiae" "Linezolid" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus anginosus" "Linezolid" "Streptococcus A,B,C,G" "10ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" "Linezolid" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae" "Linezolid" "Streptococcus A,B,C,G" "10ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae" "Linezolid" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae dysgalactiae" "Linezolid" "Streptococcus A,B,C,G" "10ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae dysgalactiae" "Linezolid" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae equisimilis" "Linezolid" "Streptococcus A,B,C,G" "10ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae equisimilis" "Linezolid" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi" "Linezolid" "Streptococcus A,B,C,G" "10ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi" "Linezolid" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi equi" "Linezolid" "Streptococcus A,B,C,G" "10ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi equi" "Linezolid" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi ruminatorum" "Linezolid" "Streptococcus A,B,C,G" "10ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi ruminatorum" "Linezolid" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi zooepidemicus" "Linezolid" "Streptococcus A,B,C,G" "10ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi zooepidemicus" "Linezolid" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group A" "Linezolid" "Streptococcus A,B,C,G" "10ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group A" "Linezolid" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group B" "Linezolid" "Streptococcus A,B,C,G" "10ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group B" "Linezolid" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group C" "Linezolid" "Streptococcus A,B,C,G" "10ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group C" "Linezolid" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group D" "Linezolid" "Streptococcus A,B,C,G" "10ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group D" "Linezolid" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group F" "Linezolid" "Streptococcus A,B,C,G" "10ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group F" "Linezolid" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group G" "Linezolid" "Streptococcus A,B,C,G" "10ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group G" "Linezolid" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group H" "Linezolid" "Streptococcus A,B,C,G" "10ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group H" "Linezolid" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group K" "Linezolid" "Streptococcus A,B,C,G" "10ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group K" "Linezolid" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" "Linezolid" "S.pneumoniae" "10ug" 22 22 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" "Linezolid" "S.pneumoniae" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus pyogenes" "Linezolid" "Streptococcus A,B,C,G" "10ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus pyogenes" "Linezolid" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus salivarius" "Linezolid" "Streptococcus A,B,C,G" "10ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus salivarius" "Linezolid" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus sanguinis" "Linezolid" "Streptococcus A,B,C,G" "10ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus sanguinis" "Linezolid" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Linezolid" "PK PD breakpoints" 2 2 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" "Levofloxacin" "Enterobacterales" "5ug" 23 19 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" "Levofloxacin" "Enterobacterales" 0.5 1 FALSE +"EUCAST 2020" "DISK" "Acinetobacter" "Levofloxacin" "Acinetobacter" "5ug" 23 20 FALSE +"EUCAST 2020" "MIC" "Acinetobacter" "Levofloxacin" "Acinetobacter" 0.5 1 FALSE +"EUCAST 2020" "MIC" "UTI" "Aerococcus sanguinicola" "Levofloxacin" "A.sanguinicola_A.urinae" 2 2 TRUE +"EUCAST 2020" "MIC" "UTI" "Aerococcus urinae" "Levofloxacin" "A.sanguinicola_A.urinae" 2 2 TRUE +"EUCAST 2020" "DISK" "Aeromonas" "Levofloxacin" "Aeromonas" "5ug" 27 24 FALSE +"EUCAST 2020" "MIC" "Aeromonas" "Levofloxacin" "Aeromonas" 0.5 1 FALSE +"EUCAST 2020" "DISK" "UTI" "Enterococcus" "Levofloxacin" "Enterococcus" "5ug" 15 15 TRUE +"EUCAST 2020" "MIC" "UTI" "Enterococcus" "Levofloxacin" "Enterococcus" 4 4 TRUE +"EUCAST 2020" "MIC" "Helicobacter pylori" "Levofloxacin" "H.pylori" 1 1 FALSE +"EUCAST 2020" "DISK" "Haemophilus influenzae" "Levofloxacin" "H.influenzae" "5ug" 30 30 FALSE +"EUCAST 2020" "MIC" "Haemophilus influenzae" "Levofloxacin" "H.influenzae" 0.06 0.06 FALSE +"EUCAST 2020" "DISK" "Kingella kingae" "Levofloxacin" "K.kingae" "5ug" 28 28 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" "Levofloxacin" "K.kingae" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" "Levofloxacin" "M.catarrhalis" "5ug" 29 29 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" "Levofloxacin" "M.catarrhalis" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Pseudomonas" "Levofloxacin" "Pseudomonas" "5ug" 50 22 FALSE +"EUCAST 2020" "MIC" "Pseudomonas" "Levofloxacin" "Pseudomonas" 0.001 1 FALSE +"EUCAST 2020" "DISK" "Pasteurella multocida" "Levofloxacin" "P.multocida" "5ug" 27 27 FALSE +"EUCAST 2020" "MIC" "Pasteurella multocida" "Levofloxacin" "P.multocida" 0.06 0.06 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" "Levofloxacin" "Staphylococcus" "5ug" 50 24 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" "Levofloxacin" "Staphylococcus" 0.001 1 FALSE +"EUCAST 2020" "DISK" "Staphylococcus aureus" "Levofloxacin" "Staphylococcus" "5ug" 50 22 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus" "Levofloxacin" "Staphylococcus" 0.001 1 FALSE +"EUCAST 2020" "DISK" "Streptococcus agalactiae" "Levofloxacin" "Streptococcus A,B,C,G" "5ug" 50 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus agalactiae" "Levofloxacin" "Streptococcus A,B,C,G" 0.001 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus anginosus" "Levofloxacin" "Streptococcus A,B,C,G" "5ug" 50 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" "Levofloxacin" "Streptococcus A,B,C,G" 0.001 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae" "Levofloxacin" "Streptococcus A,B,C,G" "5ug" 50 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae" "Levofloxacin" "Streptococcus A,B,C,G" 0.001 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae dysgalactiae" "Levofloxacin" "Streptococcus A,B,C,G" "5ug" 50 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae dysgalactiae" "Levofloxacin" "Streptococcus A,B,C,G" 0.001 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae equisimilis" "Levofloxacin" "Streptococcus A,B,C,G" "5ug" 50 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae equisimilis" "Levofloxacin" "Streptococcus A,B,C,G" 0.001 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi" "Levofloxacin" "Streptococcus A,B,C,G" "5ug" 50 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi" "Levofloxacin" "Streptococcus A,B,C,G" 0.001 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi equi" "Levofloxacin" "Streptococcus A,B,C,G" "5ug" 50 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi equi" "Levofloxacin" "Streptococcus A,B,C,G" 0.001 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi ruminatorum" "Levofloxacin" "Streptococcus A,B,C,G" "5ug" 50 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi ruminatorum" "Levofloxacin" "Streptococcus A,B,C,G" 0.001 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi zooepidemicus" "Levofloxacin" "Streptococcus A,B,C,G" "5ug" 50 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi zooepidemicus" "Levofloxacin" "Streptococcus A,B,C,G" 0.001 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group A" "Levofloxacin" "Streptococcus A,B,C,G" "5ug" 50 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus group A" "Levofloxacin" "Streptococcus A,B,C,G" 0.001 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group B" "Levofloxacin" "Streptococcus A,B,C,G" "5ug" 50 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus group B" "Levofloxacin" "Streptococcus A,B,C,G" 0.001 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group C" "Levofloxacin" "Streptococcus A,B,C,G" "5ug" 50 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus group C" "Levofloxacin" "Streptococcus A,B,C,G" 0.001 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group D" "Levofloxacin" "Streptococcus A,B,C,G" "5ug" 50 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus group D" "Levofloxacin" "Streptococcus A,B,C,G" 0.001 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group F" "Levofloxacin" "Streptococcus A,B,C,G" "5ug" 50 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus group F" "Levofloxacin" "Streptococcus A,B,C,G" 0.001 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group G" "Levofloxacin" "Streptococcus A,B,C,G" "5ug" 50 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus group G" "Levofloxacin" "Streptococcus A,B,C,G" 0.001 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group H" "Levofloxacin" "Streptococcus A,B,C,G" "5ug" 50 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus group H" "Levofloxacin" "Streptococcus A,B,C,G" 0.001 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group K" "Levofloxacin" "Streptococcus A,B,C,G" "5ug" 50 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus group K" "Levofloxacin" "Streptococcus A,B,C,G" 0.001 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" "Levofloxacin" "S.pneumoniae" "5ug" 50 16 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" "Levofloxacin" "S.pneumoniae" 0.001 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus pyogenes" "Levofloxacin" "Streptococcus A,B,C,G" "5ug" 50 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus pyogenes" "Levofloxacin" "Streptococcus A,B,C,G" 0.001 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus salivarius" "Levofloxacin" "Streptococcus A,B,C,G" "5ug" 50 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus salivarius" "Levofloxacin" "Streptococcus A,B,C,G" 0.001 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus sanguinis" "Levofloxacin" "Streptococcus A,B,C,G" "5ug" 50 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus sanguinis" "Levofloxacin" "Streptococcus A,B,C,G" 0.001 2 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Levofloxacin" "PK PD breakpoints" 0.5 1 FALSE +"EUCAST 2020" "DISK" "UTI" "Citrobacter" "Mecillinam (Amdinocillin)" "Enterobacterales" "10ug" 15 15 TRUE +"EUCAST 2020" "MIC" "UTI" "Citrobacter" "Mecillinam (Amdinocillin)" "Enterobacterales" 8 8 TRUE +"EUCAST 2020" "DISK" "UTI" "Enterobacter" "Mecillinam (Amdinocillin)" "Enterobacterales" "10ug" 15 15 TRUE +"EUCAST 2020" "MIC" "UTI" "Enterobacter" "Mecillinam (Amdinocillin)" "Enterobacterales" 8 8 TRUE +"EUCAST 2020" "DISK" "UTI" "Escherichia coli" "Mecillinam (Amdinocillin)" "Enterobacterales" "10ug" 15 15 TRUE +"EUCAST 2020" "MIC" "UTI" "Escherichia coli" "Mecillinam (Amdinocillin)" "Enterobacterales" 8 8 TRUE +"EUCAST 2020" "DISK" "UTI" "Klebsiella" "Mecillinam (Amdinocillin)" "Enterobacterales" "10ug" 15 15 TRUE +"EUCAST 2020" "MIC" "UTI" "Klebsiella" "Mecillinam (Amdinocillin)" "Enterobacterales" 8 8 TRUE +"EUCAST 2020" "DISK" "UTI" "Proteus mirabilis" "Mecillinam (Amdinocillin)" "Enterobacterales" "10ug" 15 15 TRUE +"EUCAST 2020" "MIC" "UTI" "Proteus mirabilis" "Mecillinam (Amdinocillin)" "Enterobacterales" 8 8 TRUE +"EUCAST 2020" "DISK" "UTI" "Raoultella" "Mecillinam (Amdinocillin)" "Enterobacterales" "10ug" 15 15 TRUE +"EUCAST 2020" "MIC" "UTI" "Raoultella" "Mecillinam (Amdinocillin)" "Enterobacterales" 8 8 TRUE +"EUCAST 2020" "DISK" "Enterobacterales" "Meropenem" "Enterobacterales" "10ug" 22 16 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" "Meropenem" "Enterobacterales" 2 8 FALSE +"EUCAST 2020" "DISK" "Acinetobacter" "Meropenem" "Acinetobacter" "10ug" 21 15 FALSE +"EUCAST 2020" "MIC" "Acinetobacter" "Meropenem" "Acinetobacter" 2 8 FALSE +"EUCAST 2020" "DISK" "Aerococcus sanguinicola" "Meropenem" "A.sanguinicola_A.urinae" "10ug" 31 31 FALSE +"EUCAST 2020" "MIC" "Aerococcus sanguinicola" "Meropenem" "A.sanguinicola_A.urinae" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Aerococcus urinae" "Meropenem" "A.sanguinicola_A.urinae" "10ug" 31 31 FALSE +"EUCAST 2020" "MIC" "Aerococcus urinae" "Meropenem" "A.sanguinicola_A.urinae" 0.25 0.25 FALSE +"EUCAST 2020" "MIC" "Actinomyces" "Meropenem" "Anaerobes, Grampositive" 2 8 FALSE +"EUCAST 2020" "MIC" "Bacteroides" "Meropenem" "Anaerobes, Gramnegative" 2 8 FALSE +"EUCAST 2020" "MIC" "Bifidobacterium" "Meropenem" "Anaerobes, Grampositive" 2 8 FALSE +"EUCAST 2020" "MIC" "Bilophila" "Meropenem" "Anaerobes, Gramnegative" 2 8 FALSE +"EUCAST 2020" "DISK" "Burkholderia pseudomallei" "Meropenem" "B.pseudomallei" "10ug" 24 24 FALSE +"EUCAST 2020" "MIC" "Burkholderia pseudomallei" "Meropenem" "B.pseudomallei" 2 2 FALSE +"EUCAST 2020" "MIC" "Cutibacterium" "Meropenem" "Anaerobes, Grampositive" 2 8 FALSE +"EUCAST 2020" "MIC" "Clostridioides" "Meropenem" "Anaerobes, Grampositive" 2 8 FALSE +"EUCAST 2020" "MIC" "Clostridium" "Meropenem" "Anaerobes, Grampositive" 2 8 FALSE +"EUCAST 2020" "MIC" "Eubacterium" "Meropenem" "Anaerobes, Grampositive" 2 8 FALSE +"EUCAST 2020" "MIC" "Eggerthella" "Meropenem" "Anaerobes, Grampositive" 2 8 FALSE +"EUCAST 2020" "MIC" "Fusobacterium" "Meropenem" "Anaerobes, Gramnegative" 2 8 FALSE +"EUCAST 2020" "DISK" "Haemophilus influenzae" "Meropenem" "H.influenzae" "10ug" 20 20 FALSE +"EUCAST 2020" "MIC" "Haemophilus influenzae" "Meropenem" "H.influenzae" 2 2 FALSE +"EUCAST 2020" "DISK" "Kingella kingae" "Meropenem" "K.kingae" "10ug" 30 30 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" "Meropenem" "K.kingae" 0.03 0.03 FALSE +"EUCAST 2020" "MIC" "Lactobacillus" "Meropenem" "Anaerobes, Grampositive" 2 8 FALSE +"EUCAST 2020" "DISK" "Listeria monocytogenes" "Meropenem" "L.monocytogenes" "10ug" 26 26 FALSE +"EUCAST 2020" "MIC" "Listeria monocytogenes" "Meropenem" "L.monocytogenes" 0.25 0.25 FALSE +"EUCAST 2020" "MIC" "Mobiluncus" "Meropenem" "Anaerobes, Gramnegative" 2 8 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" "Meropenem" "M.catarrhalis" "10ug" 33 33 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" "Meropenem" "M.catarrhalis" 2 2 FALSE +"EUCAST 2020" "MIC" "Neisseria meningitidis" "Meropenem" "N.meningitidis" 0.25 0.25 FALSE +"EUCAST 2020" "MIC" "Parabacteroides" "Meropenem" "Anaerobes, Gramnegative" 2 8 FALSE +"EUCAST 2020" "MIC" "Porphyromonas" "Meropenem" "Anaerobes, Gramnegative" 2 8 FALSE +"EUCAST 2020" "MIC" "Propionibacterium" "Meropenem" "Anaerobes, Grampositive" 2 8 FALSE +"EUCAST 2020" "MIC" "Prevotella" "Meropenem" "Anaerobes, Gramnegative" 2 8 FALSE +"EUCAST 2020" "DISK" "Pseudomonas" "Meropenem" "Pseudomonas" "10ug" 24 18 FALSE +"EUCAST 2020" "MIC" "Pseudomonas" "Meropenem" "Pseudomonas" 2 8 FALSE +"EUCAST 2020" "MIC" "Staphylococcus saccharolyticus" "Meropenem" "Anaerobes, Grampositive" 2 8 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" "Meropenem" "S.pneumoniae" 2 2 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" "Meropenem" "Viridans group streptococci" 2 2 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Meropenem" "PK PD breakpoints" 2 8 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" "Meropenem/vaborbactam" "Enterobacterales" 8 8 FALSE +"EUCAST 2020" "MIC" "Pseudomonas aeruginosa" "Meropenem/vaborbactam" "Pseudomonas" 8 8 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Meropenem/vaborbactam" "PK PD breakpoints" 8 8 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" "Moxifloxacin" "Enterobacterales" "5ug" 22 22 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" "Moxifloxacin" "Enterobacterales" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Corynebacterium" "Moxifloxacin" "Corynebacterium" "5ug" 25 25 FALSE +"EUCAST 2020" "MIC" "Corynebacterium" "Moxifloxacin" "Corynebacterium" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Clostridium difficile" "Moxifloxacin" "C.difficile" -1 -1 FALSE +"EUCAST 2020" "DISK" "Haemophilus influenzae" "Moxifloxacin" "H.influenzae" "5ug" 28 28 FALSE +"EUCAST 2020" "MIC" "Haemophilus influenzae" "Moxifloxacin" "H.influenzae" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" "Moxifloxacin" "M.catarrhalis" "5ug" 26 26 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" "Moxifloxacin" "M.catarrhalis" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" "Moxifloxacin" "Staphylococcus" "5ug" 28 28 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" "Moxifloxacin" "Staphylococcus" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Staphylococcus aureus" "Moxifloxacin" "Staphylococcus" "5ug" 25 25 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus" "Moxifloxacin" "Staphylococcus" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Streptococcus agalactiae" "Moxifloxacin" "Streptococcus A,B,C,G" "5ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus agalactiae" "Moxifloxacin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus anginosus" "Moxifloxacin" "Streptococcus A,B,C,G" "5ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" "Moxifloxacin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae" "Moxifloxacin" "Streptococcus A,B,C,G" "5ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae" "Moxifloxacin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae dysgalactiae" "Moxifloxacin" "Streptococcus A,B,C,G" "5ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae dysgalactiae" "Moxifloxacin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae equisimilis" "Moxifloxacin" "Streptococcus A,B,C,G" "5ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae equisimilis" "Moxifloxacin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi" "Moxifloxacin" "Streptococcus A,B,C,G" "5ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi" "Moxifloxacin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi equi" "Moxifloxacin" "Streptococcus A,B,C,G" "5ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi equi" "Moxifloxacin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi ruminatorum" "Moxifloxacin" "Streptococcus A,B,C,G" "5ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi ruminatorum" "Moxifloxacin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi zooepidemicus" "Moxifloxacin" "Streptococcus A,B,C,G" "5ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi zooepidemicus" "Moxifloxacin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group A" "Moxifloxacin" "Streptococcus A,B,C,G" "5ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group A" "Moxifloxacin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group B" "Moxifloxacin" "Streptococcus A,B,C,G" "5ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group B" "Moxifloxacin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group C" "Moxifloxacin" "Streptococcus A,B,C,G" "5ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group C" "Moxifloxacin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group D" "Moxifloxacin" "Streptococcus A,B,C,G" "5ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group D" "Moxifloxacin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group F" "Moxifloxacin" "Streptococcus A,B,C,G" "5ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group F" "Moxifloxacin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group G" "Moxifloxacin" "Streptococcus A,B,C,G" "5ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group G" "Moxifloxacin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group H" "Moxifloxacin" "Streptococcus A,B,C,G" "5ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group H" "Moxifloxacin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group K" "Moxifloxacin" "Streptococcus A,B,C,G" "5ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group K" "Moxifloxacin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" "Moxifloxacin" "S.pneumoniae" "5ug" 22 22 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" "Moxifloxacin" "S.pneumoniae" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus pyogenes" "Moxifloxacin" "Streptococcus A,B,C,G" "5ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus pyogenes" "Moxifloxacin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus salivarius" "Moxifloxacin" "Streptococcus A,B,C,G" "5ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus salivarius" "Moxifloxacin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus sanguinis" "Moxifloxacin" "Streptococcus A,B,C,G" "5ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus sanguinis" "Moxifloxacin" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Moxifloxacin" "PK PD breakpoints" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Haemophilus influenzae" "Minocycline" "H.influenzae" "30ug" 24 24 FALSE +"EUCAST 2020" "MIC" "Haemophilus influenzae" "Minocycline" "H.influenzae" 1 1 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" "Minocycline" "M.catarrhalis" "30ug" 25 25 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" "Minocycline" "M.catarrhalis" 1 1 FALSE +"EUCAST 2020" "MIC" "Neisseria meningitidis" "Minocycline" "N.meningitidis" 1 1 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" "Minocycline" "Staphylococcus" "30ug" 23 23 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" "Minocycline" "Staphylococcus" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus agalactiae" "Minocycline" "Streptococcus A,B,C,G" "30ug" 23 23 FALSE +"EUCAST 2020" "MIC" "Streptococcus agalactiae" "Minocycline" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus anginosus" "Minocycline" "Streptococcus A,B,C,G" "30ug" 23 23 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" "Minocycline" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae" "Minocycline" "Streptococcus A,B,C,G" "30ug" 23 23 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae" "Minocycline" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae dysgalactiae" "Minocycline" "Streptococcus A,B,C,G" "30ug" 23 23 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae dysgalactiae" "Minocycline" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae equisimilis" "Minocycline" "Streptococcus A,B,C,G" "30ug" 23 23 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae equisimilis" "Minocycline" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi" "Minocycline" "Streptococcus A,B,C,G" "30ug" 23 23 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi" "Minocycline" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi equi" "Minocycline" "Streptococcus A,B,C,G" "30ug" 23 23 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi equi" "Minocycline" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi ruminatorum" "Minocycline" "Streptococcus A,B,C,G" "30ug" 23 23 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi ruminatorum" "Minocycline" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi zooepidemicus" "Minocycline" "Streptococcus A,B,C,G" "30ug" 23 23 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi zooepidemicus" "Minocycline" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group A" "Minocycline" "Streptococcus A,B,C,G" "30ug" 23 23 FALSE +"EUCAST 2020" "MIC" "Streptococcus group A" "Minocycline" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group B" "Minocycline" "Streptococcus A,B,C,G" "30ug" 23 23 FALSE +"EUCAST 2020" "MIC" "Streptococcus group B" "Minocycline" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group C" "Minocycline" "Streptococcus A,B,C,G" "30ug" 23 23 FALSE +"EUCAST 2020" "MIC" "Streptococcus group C" "Minocycline" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group D" "Minocycline" "Streptococcus A,B,C,G" "30ug" 23 23 FALSE +"EUCAST 2020" "MIC" "Streptococcus group D" "Minocycline" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group F" "Minocycline" "Streptococcus A,B,C,G" "30ug" 23 23 FALSE +"EUCAST 2020" "MIC" "Streptococcus group F" "Minocycline" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group G" "Minocycline" "Streptococcus A,B,C,G" "30ug" 23 23 FALSE +"EUCAST 2020" "MIC" "Streptococcus group G" "Minocycline" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group H" "Minocycline" "Streptococcus A,B,C,G" "30ug" 23 23 FALSE +"EUCAST 2020" "MIC" "Streptococcus group H" "Minocycline" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group K" "Minocycline" "Streptococcus A,B,C,G" "30ug" 23 23 FALSE +"EUCAST 2020" "MIC" "Streptococcus group K" "Minocycline" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" "Minocycline" "S.pneumoniae" "30ug" 24 24 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" "Minocycline" "S.pneumoniae" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus pyogenes" "Minocycline" "Streptococcus A,B,C,G" "30ug" 23 23 FALSE +"EUCAST 2020" "MIC" "Streptococcus pyogenes" "Minocycline" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus salivarius" "Minocycline" "Streptococcus A,B,C,G" "30ug" 23 23 FALSE +"EUCAST 2020" "MIC" "Streptococcus salivarius" "Minocycline" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus sanguinis" "Minocycline" "Streptococcus A,B,C,G" "30ug" 23 23 FALSE +"EUCAST 2020" "MIC" "Streptococcus sanguinis" "Minocycline" "Streptococcus A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Actinomyces" "Metronidazole" "Anaerobes, Grampositive" 4 4 FALSE +"EUCAST 2020" "MIC" "Bacteroides" "Metronidazole" "Anaerobes, Gramnegative" 4 4 FALSE +"EUCAST 2020" "MIC" "Bifidobacterium" "Metronidazole" "Anaerobes, Grampositive" 4 4 FALSE +"EUCAST 2020" "MIC" "Bilophila" "Metronidazole" "Anaerobes, Gramnegative" 4 4 FALSE +"EUCAST 2020" "MIC" "Cutibacterium" "Metronidazole" "Anaerobes, Grampositive" 4 4 FALSE +"EUCAST 2020" "MIC" "Clostridioides" "Metronidazole" "Anaerobes, Grampositive" 4 4 FALSE +"EUCAST 2020" "MIC" "Clostridium" "Metronidazole" "Anaerobes, Grampositive" 4 4 FALSE +"EUCAST 2020" "MIC" "Clostridium difficile" "Metronidazole" "C.difficile" 2 2 FALSE +"EUCAST 2020" "MIC" "Eubacterium" "Metronidazole" "Anaerobes, Grampositive" 4 4 FALSE +"EUCAST 2020" "MIC" "Eggerthella" "Metronidazole" "Anaerobes, Grampositive" 4 4 FALSE +"EUCAST 2020" "MIC" "Fusobacterium" "Metronidazole" "Anaerobes, Gramnegative" 4 4 FALSE +"EUCAST 2020" "MIC" "Helicobacter pylori" "Metronidazole" "H.pylori" 8 8 FALSE +"EUCAST 2020" "MIC" "Lactobacillus" "Metronidazole" "Anaerobes, Grampositive" 4 4 FALSE +"EUCAST 2020" "MIC" "Mobiluncus" "Metronidazole" "Anaerobes, Gramnegative" 4 4 FALSE +"EUCAST 2020" "MIC" "Parabacteroides" "Metronidazole" "Anaerobes, Gramnegative" 4 4 FALSE +"EUCAST 2020" "MIC" "Porphyromonas" "Metronidazole" "Anaerobes, Gramnegative" 4 4 FALSE +"EUCAST 2020" "MIC" "Propionibacterium" "Metronidazole" "Anaerobes, Grampositive" 4 4 FALSE +"EUCAST 2020" "MIC" "Prevotella" "Metronidazole" "Anaerobes, Gramnegative" 4 4 FALSE +"EUCAST 2020" "MIC" "Staphylococcus saccharolyticus" "Metronidazole" "Anaerobes, Grampositive" 4 4 FALSE +"EUCAST 2020" "DISK" "UTI" "Aerococcus sanguinicola" "Nitrofurantoin" "A.sanguinicola_A.urinae" "100ug" 16 16 TRUE +"EUCAST 2020" "MIC" "UTI" "Aerococcus sanguinicola" "Nitrofurantoin" "A.sanguinicola_A.urinae" 1 1 TRUE +"EUCAST 2020" "DISK" "UTI" "Aerococcus urinae" "Nitrofurantoin" "A.sanguinicola_A.urinae" "100ug" 16 16 TRUE +"EUCAST 2020" "MIC" "UTI" "Aerococcus urinae" "Nitrofurantoin" "A.sanguinicola_A.urinae" 1 1 TRUE +"EUCAST 2020" "DISK" "UTI" "Enterococcus faecalis" "Nitrofurantoin" "Enterococcus" "100ug" 15 15 TRUE +"EUCAST 2020" "MIC" "UTI" "Enterococcus faecalis" "Nitrofurantoin" "Enterococcus" 64 64 TRUE +"EUCAST 2020" "DISK" "UTI" "Escherichia coli" "Nitrofurantoin" "Enterobacterales" "100ug" 11 11 TRUE +"EUCAST 2020" "MIC" "UTI" "Escherichia coli" "Nitrofurantoin" "Enterobacterales" 64 64 TRUE +"EUCAST 2020" "DISK" "UTI" "Staphylococcus saprophyticus" "Nitrofurantoin" "Staphylococcus" "100ug" 13 13 TRUE +"EUCAST 2020" "MIC" "UTI" "Staphylococcus saprophyticus" "Nitrofurantoin" "Staphylococcus" 64 64 TRUE +"EUCAST 2020" "DISK" "UTI" "Streptococcus agalactiae" "Nitrofurantoin" "Streptococcus A,B,C,G" "100ug" 15 15 TRUE +"EUCAST 2020" "MIC" "UTI" "Streptococcus agalactiae" "Nitrofurantoin" "Streptococcus A,B,C,G" 64 64 TRUE +"EUCAST 2020" "DISK" "UTI" "Enterobacterales" "Norfloxacin" "Enterobacterales" "10ug" 22 22 TRUE +"EUCAST 2020" "MIC" "UTI" "Enterobacterales" "Norfloxacin" "Enterobacterales" 0.5 0.5 TRUE +"EUCAST 2020" "DISK" "UTI" "Escherichia coli" "Nitroxoline" "Enterobacterales" "30ug" 15 15 TRUE +"EUCAST 2020" "MIC" "UTI" "Escherichia coli" "Nitroxoline" "Enterobacterales" 1 1 TRUE +"EUCAST 2020" "DISK" "Enterobacterales" "Ofloxacin" "Enterobacterales" "5ug" 24 22 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" "Ofloxacin" "Enterobacterales" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Haemophilus influenzae" "Ofloxacin" "H.influenzae" "5ug" 30 30 FALSE +"EUCAST 2020" "MIC" "Haemophilus influenzae" "Ofloxacin" "H.influenzae" 0.06 0.06 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" "Ofloxacin" "M.catarrhalis" "5ug" 28 28 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" "Ofloxacin" "M.catarrhalis" 0.25 0.25 FALSE +"EUCAST 2020" "MIC" "Neisseria gonorrhoeae" "Ofloxacin" "N.gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" "Ofloxacin" "Staphylococcus" "5ug" 50 24 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" "Ofloxacin" "Staphylococcus" 0.001 1 FALSE +"EUCAST 2020" "DISK" "Staphylococcus aureus" "Ofloxacin" "Staphylococcus" "5ug" 50 20 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus" "Ofloxacin" "Staphylococcus" 0.001 1 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Ofloxacin" "PK PD breakpoints" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus" "Oritavancin" "Staphylococcus" 0.125 0.1253 FALSE +"EUCAST 2020" "MIC" "Streptococcus agalactiae" "Oritavancin" "Streptococcus A,B,C,G" 0.25 0.252 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" "Oritavancin" "Streptococcus A,B,C,G" 0.25 0.252 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" "Oritavancin" "Viridans group streptococci" 0.25 0.252 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae" "Oritavancin" "Streptococcus A,B,C,G" 0.25 0.252 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae dysgalactiae" "Oritavancin" "Streptococcus A,B,C,G" 0.25 0.252 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae equisimilis" "Oritavancin" "Streptococcus A,B,C,G" 0.25 0.252 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi" "Oritavancin" "Streptococcus A,B,C,G" 0.25 0.252 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi equi" "Oritavancin" "Streptococcus A,B,C,G" 0.25 0.252 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi ruminatorum" "Oritavancin" "Streptococcus A,B,C,G" 0.25 0.252 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi zooepidemicus" "Oritavancin" "Streptococcus A,B,C,G" 0.25 0.252 FALSE +"EUCAST 2020" "MIC" "Streptococcus group A" "Oritavancin" "Streptococcus A,B,C,G" 0.25 0.252 FALSE +"EUCAST 2020" "MIC" "Streptococcus group B" "Oritavancin" "Streptococcus A,B,C,G" 0.25 0.252 FALSE +"EUCAST 2020" "MIC" "Streptococcus group C" "Oritavancin" "Streptococcus A,B,C,G" 0.25 0.252 FALSE +"EUCAST 2020" "MIC" "Streptococcus group D" "Oritavancin" "Streptococcus A,B,C,G" 0.25 0.252 FALSE +"EUCAST 2020" "MIC" "Streptococcus group F" "Oritavancin" "Streptococcus A,B,C,G" 0.25 0.252 FALSE +"EUCAST 2020" "MIC" "Streptococcus group G" "Oritavancin" "Streptococcus A,B,C,G" 0.25 0.252 FALSE +"EUCAST 2020" "MIC" "Streptococcus group H" "Oritavancin" "Streptococcus A,B,C,G" 0.25 0.252 FALSE +"EUCAST 2020" "MIC" "Streptococcus group K" "Oritavancin" "Streptococcus A,B,C,G" 0.25 0.252 FALSE +"EUCAST 2020" "MIC" "Streptococcus pyogenes" "Oritavancin" "Streptococcus A,B,C,G" 0.25 0.252 FALSE +"EUCAST 2020" "MIC" "Streptococcus salivarius" "Oritavancin" "Streptococcus A,B,C,G" 0.25 0.252 FALSE +"EUCAST 2020" "MIC" "Streptococcus sanguinis" "Oritavancin" "Streptococcus A,B,C,G" 0.25 0.252 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Oritavancin" "PK PD breakpoints" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Aerococcus sanguinicola" "Penicillin G" "A.sanguinicola_A.urinae" "1ug" 21 21 FALSE +"EUCAST 2020" "MIC" "Aerococcus sanguinicola" "Penicillin G" "A.sanguinicola_A.urinae" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Aerococcus urinae" "Penicillin G" "A.sanguinicola_A.urinae" "1ug" 21 21 FALSE +"EUCAST 2020" "MIC" "Aerococcus urinae" "Penicillin G" "A.sanguinicola_A.urinae" 0.125 0.125 FALSE +"EUCAST 2020" "MIC" "Actinomyces" "Penicillin G" "Anaerobes, Grampositive" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Bacteroides" "Penicillin G" "Anaerobes, Gramnegative" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Bifidobacterium" "Penicillin G" "Anaerobes, Grampositive" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Bilophila" "Penicillin G" "Anaerobes, Gramnegative" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Cutibacterium" "Penicillin G" "Anaerobes, Grampositive" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Clostridioides" "Penicillin G" "Anaerobes, Grampositive" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Corynebacterium" "Penicillin G" "Corynebacterium" "1ug" 29 29 FALSE +"EUCAST 2020" "MIC" "Corynebacterium" "Penicillin G" "Corynebacterium" 0.125 0.125 FALSE +"EUCAST 2020" "MIC" "Clostridium" "Penicillin G" "Anaerobes, Grampositive" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Eubacterium" "Penicillin G" "Anaerobes, Grampositive" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Eggerthella" "Penicillin G" "Anaerobes, Grampositive" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Fusobacterium" "Penicillin G" "Anaerobes, Gramnegative" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Kingella kingae" "Penicillin G" "K.kingae" "1ug" 25 25 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" "Penicillin G" "K.kingae" 0.03 0.03 FALSE +"EUCAST 2020" "MIC" "Lactobacillus" "Penicillin G" "Anaerobes, Grampositive" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Listeria monocytogenes" "Penicillin G" "L.monocytogenes" "1ug" 13 13 FALSE +"EUCAST 2020" "MIC" "Listeria monocytogenes" "Penicillin G" "L.monocytogenes" 1 1 FALSE +"EUCAST 2020" "MIC" "Mobiluncus" "Penicillin G" "Anaerobes, Gramnegative" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Neisseria gonorrhoeae" "Penicillin G" "N.gonorrhoeae" 0.06 1 FALSE +"EUCAST 2020" "MIC" "Neisseria meningitidis" "Penicillin G" "N.meningitidis" 0.06 0.25 FALSE +"EUCAST 2020" "MIC" "Parabacteroides" "Penicillin G" "Anaerobes, Gramnegative" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Porphyromonas" "Penicillin G" "Anaerobes, Gramnegative" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Propionibacterium" "Penicillin G" "Anaerobes, Grampositive" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Prevotella" "Penicillin G" "Anaerobes, Gramnegative" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Pasteurella multocida" "Penicillin G" "P.multocida" "1ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Pasteurella multocida" "Penicillin G" "P.multocida" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Staphylococcus aureus" "Penicillin G" "Staphylococcus" "1ug" 26 26 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus" "Penicillin G" "Staphylococcus" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Staphylococcus lugdunensis" "Penicillin G" "Staphylococcus" "1ug" 26 26 FALSE +"EUCAST 2020" "MIC" "Staphylococcus lugdunensis" "Penicillin G" "Staphylococcus" 0.125 0.125 FALSE +"EUCAST 2020" "MIC" "Staphylococcus saccharolyticus" "Penicillin G" "Anaerobes, Grampositive" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus agalactiae" "Penicillin G" "Streptococcus A,B,C,G" "1ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus agalactiae" "Penicillin G" "Streptococcus A,B,C,G" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Streptococcus anginosus" "Penicillin G" "Streptococcus A,B,C,G" "1ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" "Penicillin G" "Streptococcus A,B,C,G" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae" "Penicillin G" "Streptococcus A,B,C,G" "1ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae" "Penicillin G" "Streptococcus A,B,C,G" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae dysgalactiae" "Penicillin G" "Streptococcus A,B,C,G" "1ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae dysgalactiae" "Penicillin G" "Streptococcus A,B,C,G" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae equisimilis" "Penicillin G" "Streptococcus A,B,C,G" "1ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae equisimilis" "Penicillin G" "Streptococcus A,B,C,G" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi" "Penicillin G" "Streptococcus A,B,C,G" "1ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi" "Penicillin G" "Streptococcus A,B,C,G" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi equi" "Penicillin G" "Streptococcus A,B,C,G" "1ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi equi" "Penicillin G" "Streptococcus A,B,C,G" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi ruminatorum" "Penicillin G" "Streptococcus A,B,C,G" "1ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi ruminatorum" "Penicillin G" "Streptococcus A,B,C,G" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi zooepidemicus" "Penicillin G" "Streptococcus A,B,C,G" "1ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi zooepidemicus" "Penicillin G" "Streptococcus A,B,C,G" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Streptococcus group A" "Penicillin G" "Streptococcus A,B,C,G" "1ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus group A" "Penicillin G" "Streptococcus A,B,C,G" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Streptococcus group B" "Penicillin G" "Streptococcus A,B,C,G" "1ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus group B" "Penicillin G" "Streptococcus A,B,C,G" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Streptococcus group C" "Penicillin G" "Streptococcus A,B,C,G" "1ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus group C" "Penicillin G" "Streptococcus A,B,C,G" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Streptococcus group D" "Penicillin G" "Streptococcus A,B,C,G" "1ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus group D" "Penicillin G" "Streptococcus A,B,C,G" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Streptococcus group F" "Penicillin G" "Streptococcus A,B,C,G" "1ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus group F" "Penicillin G" "Streptococcus A,B,C,G" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Streptococcus group G" "Penicillin G" "Streptococcus A,B,C,G" "1ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus group G" "Penicillin G" "Streptococcus A,B,C,G" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Streptococcus group H" "Penicillin G" "Streptococcus A,B,C,G" "1ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus group H" "Penicillin G" "Streptococcus A,B,C,G" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Streptococcus group K" "Penicillin G" "Streptococcus A,B,C,G" "1ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus group K" "Penicillin G" "Streptococcus A,B,C,G" 0.25 0.25 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" "Penicillin G" "S.pneumoniae" 0.06 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus pyogenes" "Penicillin G" "Streptococcus A,B,C,G" "1ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus pyogenes" "Penicillin G" "Streptococcus A,B,C,G" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Streptococcus salivarius" "Penicillin G" "Streptococcus A,B,C,G" "1ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus salivarius" "Penicillin G" "Streptococcus A,B,C,G" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Streptococcus sanguinis" "Penicillin G" "Streptococcus A,B,C,G" "1ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus sanguinis" "Penicillin G" "Streptococcus A,B,C,G" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" "Penicillin G" "Viridans group streptococci" "1ug" 18 12 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" "Penicillin G" "Viridans group streptococci" 0.25 2 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Penicillin G" "PK PD breakpoints" 0.25 2 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" "Piperacillin" "Enterobacterales" "30ug" 20 17 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" "Piperacillin" "Enterobacterales" 8 1 FALSE +"EUCAST 2020" "MIC" "Actinomyces" "Piperacillin" "Anaerobes, Grampositive" 8 1 FALSE +"EUCAST 2020" "MIC" "Bacteroides" "Piperacillin" "Anaerobes, Gramnegative" 1 1 FALSE +"EUCAST 2020" "MIC" "Bifidobacterium" "Piperacillin" "Anaerobes, Grampositive" 8 1 FALSE +"EUCAST 2020" "MIC" "Bilophila" "Piperacillin" "Anaerobes, Gramnegative" 1 1 FALSE +"EUCAST 2020" "MIC" "Cutibacterium" "Piperacillin" "Anaerobes, Grampositive" 8 1 FALSE +"EUCAST 2020" "MIC" "Clostridioides" "Piperacillin" "Anaerobes, Grampositive" 8 1 FALSE +"EUCAST 2020" "MIC" "Clostridium" "Piperacillin" "Anaerobes, Grampositive" 8 1 FALSE +"EUCAST 2020" "MIC" "Eubacterium" "Piperacillin" "Anaerobes, Grampositive" 8 1 FALSE +"EUCAST 2020" "MIC" "Eggerthella" "Piperacillin" "Anaerobes, Grampositive" 8 1 FALSE +"EUCAST 2020" "MIC" "Fusobacterium" "Piperacillin" "Anaerobes, Gramnegative" 1 1 FALSE +"EUCAST 2020" "MIC" "Lactobacillus" "Piperacillin" "Anaerobes, Grampositive" 8 1 FALSE +"EUCAST 2020" "MIC" "Mobiluncus" "Piperacillin" "Anaerobes, Gramnegative" 1 1 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" "Piperacillin" "M.catarrhalis" -1 -1 FALSE +"EUCAST 2020" "MIC" "Parabacteroides" "Piperacillin" "Anaerobes, Gramnegative" 1 1 FALSE +"EUCAST 2020" "MIC" "Porphyromonas" "Piperacillin" "Anaerobes, Gramnegative" 1 1 FALSE +"EUCAST 2020" "MIC" "Propionibacterium" "Piperacillin" "Anaerobes, Grampositive" 8 1 FALSE +"EUCAST 2020" "MIC" "Prevotella" "Piperacillin" "Anaerobes, Gramnegative" 1 1 FALSE +"EUCAST 2020" "DISK" "Pseudomonas" "Piperacillin" "Pseudomonas" "30ug" 50 18 FALSE +"EUCAST 2020" "MIC" "Pseudomonas" "Piperacillin" "Pseudomonas" 0.001 1 FALSE +"EUCAST 2020" "MIC" "Staphylococcus saccharolyticus" "Piperacillin" "Anaerobes, Grampositive" 8 1 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Piperacillin" "PK PD breakpoints" 4 1 FALSE +"EUCAST 2020" "DISK" "Enterococcus faecium" "Quinupristin/dalfopristin" "Enterococcus" "15ug" 22 20 FALSE +"EUCAST 2020" "MIC" "Enterococcus faecium" "Quinupristin/dalfopristin" "Enterococcus" 1 4 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" "Quinupristin/dalfopristin" "Staphylococcus" "15ug" 21 18 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" "Quinupristin/dalfopristin" "Staphylococcus" 1 2 FALSE +"EUCAST 2020" "DISK" "Aerococcus sanguinicola" "Rifampicin" "A.sanguinicola_A.urinae" "5ug" 25 25 FALSE +"EUCAST 2020" "MIC" "Aerococcus sanguinicola" "Rifampicin" "A.sanguinicola_A.urinae" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Aerococcus urinae" "Rifampicin" "A.sanguinicola_A.urinae" "5ug" 25 25 FALSE +"EUCAST 2020" "MIC" "Aerococcus urinae" "Rifampicin" "A.sanguinicola_A.urinae" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Corynebacterium" "Rifampicin" "Corynebacterium" "5ug" 30 25 FALSE +"EUCAST 2020" "MIC" "Corynebacterium" "Rifampicin" "Corynebacterium" 0.06 0.5 FALSE +"EUCAST 2020" "MIC" "Clostridium difficile" "Rifampicin" "C.difficile" -6 -6 FALSE +"EUCAST 2020" "MIC" "Helicobacter pylori" "Rifampicin" "H.pylori" 1 1 FALSE +"EUCAST 2020" "DISK" "Haemophilus influenzae" "Rifampicin" "H.influenzae" "5ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Haemophilus influenzae" "Rifampicin" "H.influenzae" 1 1 FALSE +"EUCAST 2020" "DISK" "Kingella kingae" "Rifampicin" "K.kingae" "5ug" 20 20 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" "Rifampicin" "K.kingae" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Neisseria meningitidis" "Rifampicin" "N.meningitidis" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" "Rifampicin" "Staphylococcus" "5ug" 26 23 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" "Rifampicin" "Staphylococcus" 0.06 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus agalactiae" "Rifampicin" "Streptococcus A,B,C,G" "5ug" 21 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus agalactiae" "Rifampicin" "Streptococcus A,B,C,G" 0.06 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus anginosus" "Rifampicin" "Streptococcus A,B,C,G" "5ug" 21 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" "Rifampicin" "Streptococcus A,B,C,G" 0.06 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae" "Rifampicin" "Streptococcus A,B,C,G" "5ug" 21 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae" "Rifampicin" "Streptococcus A,B,C,G" 0.06 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae dysgalactiae" "Rifampicin" "Streptococcus A,B,C,G" "5ug" 21 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae dysgalactiae" "Rifampicin" "Streptococcus A,B,C,G" 0.06 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae equisimilis" "Rifampicin" "Streptococcus A,B,C,G" "5ug" 21 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae equisimilis" "Rifampicin" "Streptococcus A,B,C,G" 0.06 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi" "Rifampicin" "Streptococcus A,B,C,G" "5ug" 21 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi" "Rifampicin" "Streptococcus A,B,C,G" 0.06 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi equi" "Rifampicin" "Streptococcus A,B,C,G" "5ug" 21 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi equi" "Rifampicin" "Streptococcus A,B,C,G" 0.06 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi ruminatorum" "Rifampicin" "Streptococcus A,B,C,G" "5ug" 21 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi ruminatorum" "Rifampicin" "Streptococcus A,B,C,G" 0.06 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi zooepidemicus" "Rifampicin" "Streptococcus A,B,C,G" "5ug" 21 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi zooepidemicus" "Rifampicin" "Streptococcus A,B,C,G" 0.06 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group A" "Rifampicin" "Streptococcus A,B,C,G" "5ug" 21 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus group A" "Rifampicin" "Streptococcus A,B,C,G" 0.06 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group B" "Rifampicin" "Streptococcus A,B,C,G" "5ug" 21 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus group B" "Rifampicin" "Streptococcus A,B,C,G" 0.06 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group C" "Rifampicin" "Streptococcus A,B,C,G" "5ug" 21 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus group C" "Rifampicin" "Streptococcus A,B,C,G" 0.06 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group D" "Rifampicin" "Streptococcus A,B,C,G" "5ug" 21 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus group D" "Rifampicin" "Streptococcus A,B,C,G" 0.06 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group F" "Rifampicin" "Streptococcus A,B,C,G" "5ug" 21 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus group F" "Rifampicin" "Streptococcus A,B,C,G" 0.06 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group G" "Rifampicin" "Streptococcus A,B,C,G" "5ug" 21 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus group G" "Rifampicin" "Streptococcus A,B,C,G" 0.06 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group H" "Rifampicin" "Streptococcus A,B,C,G" "5ug" 21 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus group H" "Rifampicin" "Streptococcus A,B,C,G" 0.06 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group K" "Rifampicin" "Streptococcus A,B,C,G" "5ug" 21 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus group K" "Rifampicin" "Streptococcus A,B,C,G" 0.06 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" "Rifampicin" "S.pneumoniae" "5ug" 22 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" "Rifampicin" "S.pneumoniae" 0.125 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus pyogenes" "Rifampicin" "Streptococcus A,B,C,G" "5ug" 21 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus pyogenes" "Rifampicin" "Streptococcus A,B,C,G" 0.06 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus salivarius" "Rifampicin" "Streptococcus A,B,C,G" "5ug" 21 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus salivarius" "Rifampicin" "Streptococcus A,B,C,G" 0.06 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus sanguinis" "Rifampicin" "Streptococcus A,B,C,G" "5ug" 21 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus sanguinis" "Rifampicin" "Streptococcus A,B,C,G" 0.06 0.5 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" "Roxithromycin" "M.catarrhalis" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" "Roxithromycin" "Staphylococcus" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus agalactiae" "Roxithromycin" "Streptococcus A,B,C,G" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" "Roxithromycin" "Streptococcus A,B,C,G" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae" "Roxithromycin" "Streptococcus A,B,C,G" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae dysgalactiae" "Roxithromycin" "Streptococcus A,B,C,G" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae equisimilis" "Roxithromycin" "Streptococcus A,B,C,G" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi" "Roxithromycin" "Streptococcus A,B,C,G" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi equi" "Roxithromycin" "Streptococcus A,B,C,G" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi ruminatorum" "Roxithromycin" "Streptococcus A,B,C,G" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi zooepidemicus" "Roxithromycin" "Streptococcus A,B,C,G" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus group A" "Roxithromycin" "Streptococcus A,B,C,G" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus group B" "Roxithromycin" "Streptococcus A,B,C,G" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus group C" "Roxithromycin" "Streptococcus A,B,C,G" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus group D" "Roxithromycin" "Streptococcus A,B,C,G" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus group F" "Roxithromycin" "Streptococcus A,B,C,G" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus group G" "Roxithromycin" "Streptococcus A,B,C,G" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus group H" "Roxithromycin" "Streptococcus A,B,C,G" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus group K" "Roxithromycin" "Streptococcus A,B,C,G" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" "Roxithromycin" "S.pneumoniae" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus pyogenes" "Roxithromycin" "Streptococcus A,B,C,G" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus salivarius" "Roxithromycin" "Streptococcus A,B,C,G" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus sanguinis" "Roxithromycin" "Streptococcus A,B,C,G" 0.5 1 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" "Ampicillin/sulbactam" "Enterobacterales" "10-10ug" 14 14 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" "Ampicillin/sulbactam" "Enterobacterales" 8 8 FALSE +"EUCAST 2020" "MIC" "Actinomyces" "Ampicillin/sulbactam" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Bacteroides" "Ampicillin/sulbactam" "Anaerobes, Gramnegative" 4 8 FALSE +"EUCAST 2020" "MIC" "Bifidobacterium" "Ampicillin/sulbactam" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Bilophila" "Ampicillin/sulbactam" "Anaerobes, Gramnegative" 4 8 FALSE +"EUCAST 2020" "MIC" "Cutibacterium" "Ampicillin/sulbactam" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Clostridioides" "Ampicillin/sulbactam" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Clostridium" "Ampicillin/sulbactam" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Eubacterium" "Ampicillin/sulbactam" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Eggerthella" "Ampicillin/sulbactam" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Enterococcus" "Ampicillin/sulbactam" "Enterococcus" 4 8 FALSE +"EUCAST 2020" "MIC" "Fusobacterium" "Ampicillin/sulbactam" "Anaerobes, Gramnegative" 4 8 FALSE +"EUCAST 2020" "MIC" "Haemophilus influenzae" "Ampicillin/sulbactam" "H.influenzae" 1 1 FALSE +"EUCAST 2020" "MIC" "Lactobacillus" "Ampicillin/sulbactam" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Mobiluncus" "Ampicillin/sulbactam" "Anaerobes, Gramnegative" 4 8 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" "Ampicillin/sulbactam" "M.catarrhalis" 1 1 FALSE +"EUCAST 2020" "MIC" "Parabacteroides" "Ampicillin/sulbactam" "Anaerobes, Gramnegative" 4 8 FALSE +"EUCAST 2020" "MIC" "Porphyromonas" "Ampicillin/sulbactam" "Anaerobes, Gramnegative" 4 8 FALSE +"EUCAST 2020" "MIC" "Propionibacterium" "Ampicillin/sulbactam" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "Prevotella" "Ampicillin/sulbactam" "Anaerobes, Gramnegative" 4 8 FALSE +"EUCAST 2020" "MIC" "Staphylococcus saccharolyticus" "Ampicillin/sulbactam" "Anaerobes, Grampositive" 4 8 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Ampicillin/sulbactam" "PK PD breakpoints" 2 8 FALSE +"EUCAST 2020" "MIC" "Neisseria gonorrhoeae" "Spectinomycin" "N.gonorrhoeae" 64 64 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" "Trimethoprim/sulfamethoxazole" "Enterobacterales" "1.25-23.75ug" 14 11 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" "Trimethoprim/sulfamethoxazole" "Enterobacterales" 2 4 FALSE +"EUCAST 2020" "DISK" "Acinetobacter" "Trimethoprim/sulfamethoxazole" "Acinetobacter" "1.25-23.75ug" 14 11 FALSE +"EUCAST 2020" "MIC" "Acinetobacter" "Trimethoprim/sulfamethoxazole" "Acinetobacter" 2 4 FALSE +"EUCAST 2020" "DISK" "Aeromonas" "Trimethoprim/sulfamethoxazole" "Aeromonas" "1.25-23.75ug" 19 16 FALSE +"EUCAST 2020" "MIC" "Aeromonas" "Trimethoprim/sulfamethoxazole" "Aeromonas" 2 4 FALSE +"EUCAST 2020" "DISK" "Burkholderia pseudomallei" "Trimethoprim/sulfamethoxazole" "B.pseudomallei" "1.25-23.75ug" 50 17 FALSE +"EUCAST 2020" "MIC" "Burkholderia pseudomallei" "Trimethoprim/sulfamethoxazole" "B.pseudomallei" 0.001 4 FALSE +"EUCAST 2020" "DISK" "Haemophilus influenzae" "Trimethoprim/sulfamethoxazole" "H.influenzae" "1.25-23.75ug" 23 20 FALSE +"EUCAST 2020" "MIC" "Haemophilus influenzae" "Trimethoprim/sulfamethoxazole" "H.influenzae" 0.5 1 FALSE +"EUCAST 2020" "DISK" "Kingella kingae" "Trimethoprim/sulfamethoxazole" "K.kingae" "1.25-23.75ug" 28 28 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" "Trimethoprim/sulfamethoxazole" "K.kingae" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Listeria monocytogenes" "Trimethoprim/sulfamethoxazole" "L.monocytogenes" "1.25-23.75ug" 29 29 FALSE +"EUCAST 2020" "MIC" "Listeria monocytogenes" "Trimethoprim/sulfamethoxazole" "L.monocytogenes" 0.06 0.06 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" "M.catarrhalis" "1.25-23.75ug" 18 15 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" "M.catarrhalis" 0.5 1 FALSE +"EUCAST 2020" "DISK" "Pasteurella multocida" "Trimethoprim/sulfamethoxazole" "P.multocida" "1.25-23.75ug" 23 23 FALSE +"EUCAST 2020" "MIC" "Pasteurella multocida" "Trimethoprim/sulfamethoxazole" "P.multocida" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Stenotrophomonas maltophilia" "Trimethoprim/sulfamethoxazole" "S.maltophilia" "1.25-23.75ug" 50 16 FALSE +"EUCAST 2020" "MIC" "Stenotrophomonas maltophilia" "Trimethoprim/sulfamethoxazole" "S.maltophilia" 0.001 4 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" "Trimethoprim/sulfamethoxazole" "Staphylococcus" "1.25-23.75ug" 17 14 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" "Trimethoprim/sulfamethoxazole" "Staphylococcus" 2 4 FALSE +"EUCAST 2020" "DISK" "Streptococcus agalactiae" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" "1.25-23.75ug" 18 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus agalactiae" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus anginosus" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" "1.25-23.75ug" 18 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" "1.25-23.75ug" 18 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae dysgalactiae" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" "1.25-23.75ug" 18 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae dysgalactiae" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae equisimilis" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" "1.25-23.75ug" 18 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae equisimilis" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" "1.25-23.75ug" 18 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi equi" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" "1.25-23.75ug" 18 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi equi" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi ruminatorum" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" "1.25-23.75ug" 18 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi ruminatorum" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi zooepidemicus" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" "1.25-23.75ug" 18 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi zooepidemicus" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group A" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" "1.25-23.75ug" 18 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus group A" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group B" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" "1.25-23.75ug" 18 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus group B" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group C" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" "1.25-23.75ug" 18 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus group C" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group D" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" "1.25-23.75ug" 18 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus group D" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group F" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" "1.25-23.75ug" 18 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus group F" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group G" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" "1.25-23.75ug" 18 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus group G" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group H" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" "1.25-23.75ug" 18 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus group H" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group K" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" "1.25-23.75ug" 18 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus group K" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" "S.pneumoniae" "1.25-23.75ug" 13 10 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" "S.pneumoniae" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus pyogenes" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" "1.25-23.75ug" 18 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus pyogenes" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus salivarius" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" "1.25-23.75ug" 18 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus salivarius" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus sanguinis" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" "1.25-23.75ug" 18 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus sanguinis" "Trimethoprim/sulfamethoxazole" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" "Ticarcillin/clavulanic acid" "Enterobacterales" "75-10ug" 23 20 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" "Ticarcillin/clavulanic acid" "Enterobacterales" 8 16 FALSE +"EUCAST 2020" "MIC" "Actinomyces" "Ticarcillin/clavulanic acid" "Anaerobes, Grampositive" 8 16 FALSE +"EUCAST 2020" "MIC" "Bacteroides" "Ticarcillin/clavulanic acid" "Anaerobes, Gramnegative" 8 16 FALSE +"EUCAST 2020" "MIC" "Bifidobacterium" "Ticarcillin/clavulanic acid" "Anaerobes, Grampositive" 8 16 FALSE +"EUCAST 2020" "MIC" "Bilophila" "Ticarcillin/clavulanic acid" "Anaerobes, Gramnegative" 8 16 FALSE +"EUCAST 2020" "MIC" "Cutibacterium" "Ticarcillin/clavulanic acid" "Anaerobes, Grampositive" 8 16 FALSE +"EUCAST 2020" "MIC" "Clostridioides" "Ticarcillin/clavulanic acid" "Anaerobes, Grampositive" 8 16 FALSE +"EUCAST 2020" "MIC" "Clostridium" "Ticarcillin/clavulanic acid" "Anaerobes, Grampositive" 8 16 FALSE +"EUCAST 2020" "MIC" "Eubacterium" "Ticarcillin/clavulanic acid" "Anaerobes, Grampositive" 8 16 FALSE +"EUCAST 2020" "MIC" "Eggerthella" "Ticarcillin/clavulanic acid" "Anaerobes, Grampositive" 8 16 FALSE +"EUCAST 2020" "MIC" "Fusobacterium" "Ticarcillin/clavulanic acid" "Anaerobes, Gramnegative" 8 16 FALSE +"EUCAST 2020" "MIC" "Lactobacillus" "Ticarcillin/clavulanic acid" "Anaerobes, Grampositive" 8 16 FALSE +"EUCAST 2020" "MIC" "Mobiluncus" "Ticarcillin/clavulanic acid" "Anaerobes, Gramnegative" 8 16 FALSE +"EUCAST 2020" "MIC" "Parabacteroides" "Ticarcillin/clavulanic acid" "Anaerobes, Gramnegative" 8 16 FALSE +"EUCAST 2020" "MIC" "Porphyromonas" "Ticarcillin/clavulanic acid" "Anaerobes, Gramnegative" 8 16 FALSE +"EUCAST 2020" "MIC" "Propionibacterium" "Ticarcillin/clavulanic acid" "Anaerobes, Grampositive" 8 16 FALSE +"EUCAST 2020" "MIC" "Prevotella" "Ticarcillin/clavulanic acid" "Anaerobes, Gramnegative" 8 16 FALSE +"EUCAST 2020" "DISK" "Pseudomonas" "Ticarcillin/clavulanic acid" "Pseudomonas" "75-10ug" 50 18 FALSE +"EUCAST 2020" "MIC" "Pseudomonas" "Ticarcillin/clavulanic acid" "Pseudomonas" 0.0012 16 FALSE +"EUCAST 2020" "MIC" "Staphylococcus saccharolyticus" "Ticarcillin/clavulanic acid" "Anaerobes, Grampositive" 8 16 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Ticarcillin/clavulanic acid" "PK PD breakpoints" 8 16 FALSE +"EUCAST 2020" "DISK" "Campylobacter coli" "Tetracycline" "C.jejuni_C.coli" "30ug" 30 30 FALSE +"EUCAST 2020" "MIC" "Campylobacter coli" "Tetracycline" "C.jejuni_C.coli" 2 2 FALSE +"EUCAST 2020" "DISK" "Campylobacter jejuni" "Tetracycline" "C.jejuni_C.coli" "30ug" 30 30 FALSE +"EUCAST 2020" "MIC" "Campylobacter jejuni" "Tetracycline" "C.jejuni_C.coli" 2 2 FALSE +"EUCAST 2020" "DISK" "Corynebacterium" "Tetracycline" "Corynebacterium" "30ug" 24 24 FALSE +"EUCAST 2020" "MIC" "Corynebacterium" "Tetracycline" "Corynebacterium" 2 2 FALSE +"EUCAST 2020" "MIC" "Helicobacter pylori" "Tetracycline" "H.pylori" 1 1 FALSE +"EUCAST 2020" "DISK" "Haemophilus influenzae" "Tetracycline" "H.influenzae" "30ug" 25 22 FALSE +"EUCAST 2020" "MIC" "Haemophilus influenzae" "Tetracycline" "H.influenzae" 1 2 FALSE +"EUCAST 2020" "DISK" "Kingella kingae" "Tetracycline" "K.kingae" "30ug" 28 28 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" "Tetracycline" "K.kingae" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" "Tetracycline" "M.catarrhalis" "30ug" 28 25 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" "Tetracycline" "M.catarrhalis" 1 2 FALSE +"EUCAST 2020" "MIC" "Neisseria gonorrhoeae" "Tetracycline" "N.gonorrhoeae" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Neisseria meningitidis" "Tetracycline" "N.meningitidis" 2 2 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" "Tetracycline" "Staphylococcus" "30ug" 22 19 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" "Tetracycline" "Staphylococcus" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus agalactiae" "Tetracycline" "Streptococcus A,B,C,G" "30ug" 23 20 FALSE +"EUCAST 2020" "MIC" "Streptococcus agalactiae" "Tetracycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus anginosus" "Tetracycline" "Streptococcus A,B,C,G" "30ug" 23 20 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" "Tetracycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae" "Tetracycline" "Streptococcus A,B,C,G" "30ug" 23 20 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae" "Tetracycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae dysgalactiae" "Tetracycline" "Streptococcus A,B,C,G" "30ug" 23 20 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae dysgalactiae" "Tetracycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae equisimilis" "Tetracycline" "Streptococcus A,B,C,G" "30ug" 23 20 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae equisimilis" "Tetracycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi" "Tetracycline" "Streptococcus A,B,C,G" "30ug" 23 20 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi" "Tetracycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi equi" "Tetracycline" "Streptococcus A,B,C,G" "30ug" 23 20 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi equi" "Tetracycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi ruminatorum" "Tetracycline" "Streptococcus A,B,C,G" "30ug" 23 20 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi ruminatorum" "Tetracycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi zooepidemicus" "Tetracycline" "Streptococcus A,B,C,G" "30ug" 23 20 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi zooepidemicus" "Tetracycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group A" "Tetracycline" "Streptococcus A,B,C,G" "30ug" 23 20 FALSE +"EUCAST 2020" "MIC" "Streptococcus group A" "Tetracycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group B" "Tetracycline" "Streptococcus A,B,C,G" "30ug" 23 20 FALSE +"EUCAST 2020" "MIC" "Streptococcus group B" "Tetracycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group C" "Tetracycline" "Streptococcus A,B,C,G" "30ug" 23 20 FALSE +"EUCAST 2020" "MIC" "Streptococcus group C" "Tetracycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group D" "Tetracycline" "Streptococcus A,B,C,G" "30ug" 23 20 FALSE +"EUCAST 2020" "MIC" "Streptococcus group D" "Tetracycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group F" "Tetracycline" "Streptococcus A,B,C,G" "30ug" 23 20 FALSE +"EUCAST 2020" "MIC" "Streptococcus group F" "Tetracycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group G" "Tetracycline" "Streptococcus A,B,C,G" "30ug" 23 20 FALSE +"EUCAST 2020" "MIC" "Streptococcus group G" "Tetracycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group H" "Tetracycline" "Streptococcus A,B,C,G" "30ug" 23 20 FALSE +"EUCAST 2020" "MIC" "Streptococcus group H" "Tetracycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group K" "Tetracycline" "Streptococcus A,B,C,G" "30ug" 23 20 FALSE +"EUCAST 2020" "MIC" "Streptococcus group K" "Tetracycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" "Tetracycline" "S.pneumoniae" "30ug" 25 22 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" "Tetracycline" "S.pneumoniae" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus pyogenes" "Tetracycline" "Streptococcus A,B,C,G" "30ug" 23 20 FALSE +"EUCAST 2020" "MIC" "Streptococcus pyogenes" "Tetracycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus salivarius" "Tetracycline" "Streptococcus A,B,C,G" "30ug" 23 20 FALSE +"EUCAST 2020" "MIC" "Streptococcus salivarius" "Tetracycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus sanguinis" "Tetracycline" "Streptococcus A,B,C,G" "30ug" 23 20 FALSE +"EUCAST 2020" "MIC" "Streptococcus sanguinis" "Tetracycline" "Streptococcus A,B,C,G" 1 2 FALSE +"EUCAST 2020" "DISK" "Enterococcus" "Teicoplanin" "Enterococcus" "30ug" 16 16 FALSE +"EUCAST 2020" "MIC" "Enterococcus" "Teicoplanin" "Enterococcus" 2 2 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" "Teicoplanin" "Staphylococcus" 4 4 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus" "Teicoplanin" "Staphylococcus" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus agalactiae" "Teicoplanin" "Streptococcus A,B,C,G" "30ug" 15 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus agalactiae" "Teicoplanin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus anginosus" "Teicoplanin" "Streptococcus A,B,C,G" "30ug" 15 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" "Teicoplanin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae" "Teicoplanin" "Streptococcus A,B,C,G" "30ug" 15 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae" "Teicoplanin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae dysgalactiae" "Teicoplanin" "Streptococcus A,B,C,G" "30ug" 15 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae dysgalactiae" "Teicoplanin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae equisimilis" "Teicoplanin" "Streptococcus A,B,C,G" "30ug" 15 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae equisimilis" "Teicoplanin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi" "Teicoplanin" "Streptococcus A,B,C,G" "30ug" 15 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi" "Teicoplanin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi equi" "Teicoplanin" "Streptococcus A,B,C,G" "30ug" 15 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi equi" "Teicoplanin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi ruminatorum" "Teicoplanin" "Streptococcus A,B,C,G" "30ug" 15 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi ruminatorum" "Teicoplanin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi zooepidemicus" "Teicoplanin" "Streptococcus A,B,C,G" "30ug" 15 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi zooepidemicus" "Teicoplanin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group A" "Teicoplanin" "Streptococcus A,B,C,G" "30ug" 15 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus group A" "Teicoplanin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group B" "Teicoplanin" "Streptococcus A,B,C,G" "30ug" 15 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus group B" "Teicoplanin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group C" "Teicoplanin" "Streptococcus A,B,C,G" "30ug" 15 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus group C" "Teicoplanin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group D" "Teicoplanin" "Streptococcus A,B,C,G" "30ug" 15 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus group D" "Teicoplanin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group F" "Teicoplanin" "Streptococcus A,B,C,G" "30ug" 15 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus group F" "Teicoplanin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group G" "Teicoplanin" "Streptococcus A,B,C,G" "30ug" 15 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus group G" "Teicoplanin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group H" "Teicoplanin" "Streptococcus A,B,C,G" "30ug" 15 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus group H" "Teicoplanin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group K" "Teicoplanin" "Streptococcus A,B,C,G" "30ug" 15 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus group K" "Teicoplanin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" "Teicoplanin" "S.pneumoniae" "30ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" "Teicoplanin" "S.pneumoniae" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus pyogenes" "Teicoplanin" "Streptococcus A,B,C,G" "30ug" 15 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus pyogenes" "Teicoplanin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus salivarius" "Teicoplanin" "Streptococcus A,B,C,G" "30ug" 15 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus salivarius" "Teicoplanin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus sanguinis" "Teicoplanin" "Streptococcus A,B,C,G" "30ug" 15 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus sanguinis" "Teicoplanin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" "Teicoplanin" "Viridans group streptococci" "30ug" 16 16 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" "Teicoplanin" "Viridans group streptococci" 2 2 FALSE +"EUCAST 2020" "DISK" "Citrobacter koseri" "Tigecycline" "Enterobacterales" "15ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Citrobacter koseri" "Tigecycline" "Enterobacterales" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Enterococcus faecium" "Tigecycline" "Enterococcus" "15ug" 22 22 FALSE +"EUCAST 2020" "MIC" "Enterococcus faecium" "Tigecycline" "Enterococcus" 0.252 0.252 FALSE +"EUCAST 2020" "DISK" "Enterococcus faecalis" "Tigecycline" "Enterococcus" "15ug" 20 20 FALSE +"EUCAST 2020" "MIC" "Enterococcus faecalis" "Tigecycline" "Enterococcus" 0.252 0.252 FALSE +"EUCAST 2020" "DISK" "Escherichia coli" "Tigecycline" "Enterobacterales" "15ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Escherichia coli" "Tigecycline" "Enterobacterales" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" "Tigecycline" "Staphylococcus" "15ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" "Tigecycline" "Staphylococcus" 0.53 0.53 FALSE +"EUCAST 2020" "DISK" "Streptococcus agalactiae" "Tigecycline" "Streptococcus A,B,C,G" "15ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus agalactiae" "Tigecycline" "Streptococcus A,B,C,G" 0.1253 0.1253 FALSE +"EUCAST 2020" "DISK" "Streptococcus anginosus" "Tigecycline" "Streptococcus A,B,C,G" "15ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" "Tigecycline" "Streptococcus A,B,C,G" 0.1253 0.1253 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae" "Tigecycline" "Streptococcus A,B,C,G" "15ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae" "Tigecycline" "Streptococcus A,B,C,G" 0.1253 0.1253 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae dysgalactiae" "Tigecycline" "Streptococcus A,B,C,G" "15ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae dysgalactiae" "Tigecycline" "Streptococcus A,B,C,G" 0.1253 0.1253 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae equisimilis" "Tigecycline" "Streptococcus A,B,C,G" "15ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae equisimilis" "Tigecycline" "Streptococcus A,B,C,G" 0.1253 0.1253 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi" "Tigecycline" "Streptococcus A,B,C,G" "15ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi" "Tigecycline" "Streptococcus A,B,C,G" 0.1253 0.1253 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi equi" "Tigecycline" "Streptococcus A,B,C,G" "15ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi equi" "Tigecycline" "Streptococcus A,B,C,G" 0.1253 0.1253 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi ruminatorum" "Tigecycline" "Streptococcus A,B,C,G" "15ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi ruminatorum" "Tigecycline" "Streptococcus A,B,C,G" 0.1253 0.1253 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi zooepidemicus" "Tigecycline" "Streptococcus A,B,C,G" "15ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi zooepidemicus" "Tigecycline" "Streptococcus A,B,C,G" 0.1253 0.1253 FALSE +"EUCAST 2020" "DISK" "Streptococcus group A" "Tigecycline" "Streptococcus A,B,C,G" "15ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group A" "Tigecycline" "Streptococcus A,B,C,G" 0.1253 0.1253 FALSE +"EUCAST 2020" "DISK" "Streptococcus group B" "Tigecycline" "Streptococcus A,B,C,G" "15ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group B" "Tigecycline" "Streptococcus A,B,C,G" 0.1253 0.1253 FALSE +"EUCAST 2020" "DISK" "Streptococcus group C" "Tigecycline" "Streptococcus A,B,C,G" "15ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group C" "Tigecycline" "Streptococcus A,B,C,G" 0.1253 0.1253 FALSE +"EUCAST 2020" "DISK" "Streptococcus group D" "Tigecycline" "Streptococcus A,B,C,G" "15ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group D" "Tigecycline" "Streptococcus A,B,C,G" 0.1253 0.1253 FALSE +"EUCAST 2020" "DISK" "Streptococcus group F" "Tigecycline" "Streptococcus A,B,C,G" "15ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group F" "Tigecycline" "Streptococcus A,B,C,G" 0.1253 0.1253 FALSE +"EUCAST 2020" "DISK" "Streptococcus group G" "Tigecycline" "Streptococcus A,B,C,G" "15ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group G" "Tigecycline" "Streptococcus A,B,C,G" 0.1253 0.1253 FALSE +"EUCAST 2020" "DISK" "Streptococcus group H" "Tigecycline" "Streptococcus A,B,C,G" "15ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group H" "Tigecycline" "Streptococcus A,B,C,G" 0.1253 0.1253 FALSE +"EUCAST 2020" "DISK" "Streptococcus group K" "Tigecycline" "Streptococcus A,B,C,G" "15ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus group K" "Tigecycline" "Streptococcus A,B,C,G" 0.1253 0.1253 FALSE +"EUCAST 2020" "DISK" "Streptococcus pyogenes" "Tigecycline" "Streptococcus A,B,C,G" "15ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus pyogenes" "Tigecycline" "Streptococcus A,B,C,G" 0.1253 0.1253 FALSE +"EUCAST 2020" "DISK" "Streptococcus salivarius" "Tigecycline" "Streptococcus A,B,C,G" "15ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus salivarius" "Tigecycline" "Streptococcus A,B,C,G" 0.1253 0.1253 FALSE +"EUCAST 2020" "DISK" "Streptococcus sanguinis" "Tigecycline" "Streptococcus A,B,C,G" "15ug" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus sanguinis" "Tigecycline" "Streptococcus A,B,C,G" 0.1253 0.1253 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Tigecycline" "PK PD breakpoints" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" "Ticarcillin" "Enterobacterales" "75ug" 23 20 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" "Ticarcillin" "Enterobacterales" 8 1 FALSE +"EUCAST 2020" "MIC" "Actinomyces" "Ticarcillin" "Anaerobes, Grampositive" 8 1 FALSE +"EUCAST 2020" "MIC" "Bacteroides" "Ticarcillin" "Anaerobes, Gramnegative" 1 1 FALSE +"EUCAST 2020" "MIC" "Bifidobacterium" "Ticarcillin" "Anaerobes, Grampositive" 8 1 FALSE +"EUCAST 2020" "MIC" "Bilophila" "Ticarcillin" "Anaerobes, Gramnegative" 1 1 FALSE +"EUCAST 2020" "MIC" "Cutibacterium" "Ticarcillin" "Anaerobes, Grampositive" 8 1 FALSE +"EUCAST 2020" "MIC" "Clostridioides" "Ticarcillin" "Anaerobes, Grampositive" 8 1 FALSE +"EUCAST 2020" "MIC" "Clostridium" "Ticarcillin" "Anaerobes, Grampositive" 8 1 FALSE +"EUCAST 2020" "MIC" "Eubacterium" "Ticarcillin" "Anaerobes, Grampositive" 8 1 FALSE +"EUCAST 2020" "MIC" "Eggerthella" "Ticarcillin" "Anaerobes, Grampositive" 8 1 FALSE +"EUCAST 2020" "MIC" "Fusobacterium" "Ticarcillin" "Anaerobes, Gramnegative" 1 1 FALSE +"EUCAST 2020" "MIC" "Lactobacillus" "Ticarcillin" "Anaerobes, Grampositive" 8 1 FALSE +"EUCAST 2020" "MIC" "Mobiluncus" "Ticarcillin" "Anaerobes, Gramnegative" 1 1 FALSE +"EUCAST 2020" "MIC" "Parabacteroides" "Ticarcillin" "Anaerobes, Gramnegative" 1 1 FALSE +"EUCAST 2020" "MIC" "Porphyromonas" "Ticarcillin" "Anaerobes, Gramnegative" 1 1 FALSE +"EUCAST 2020" "MIC" "Propionibacterium" "Ticarcillin" "Anaerobes, Grampositive" 8 1 FALSE +"EUCAST 2020" "MIC" "Prevotella" "Ticarcillin" "Anaerobes, Gramnegative" 1 1 FALSE +"EUCAST 2020" "DISK" "Pseudomonas" "Ticarcillin" "Pseudomonas" "75ug" 50 18 FALSE +"EUCAST 2020" "MIC" "Pseudomonas" "Ticarcillin" "Pseudomonas" 0.001 1 FALSE +"EUCAST 2020" "MIC" "Staphylococcus saccharolyticus" "Ticarcillin" "Anaerobes, Grampositive" 8 1 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Ticarcillin" "PK PD breakpoints" 8 1 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" "Telithromycin" "M.catarrhalis" "15ug" 23 20 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" "Telithromycin" "M.catarrhalis" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus agalactiae" "Telithromycin" "Streptococcus A,B,C,G" "15ug" 20 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus agalactiae" "Telithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus anginosus" "Telithromycin" "Streptococcus A,B,C,G" "15ug" 20 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" "Telithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae" "Telithromycin" "Streptococcus A,B,C,G" "15ug" 20 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae" "Telithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae dysgalactiae" "Telithromycin" "Streptococcus A,B,C,G" "15ug" 20 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae dysgalactiae" "Telithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae equisimilis" "Telithromycin" "Streptococcus A,B,C,G" "15ug" 20 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae equisimilis" "Telithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi" "Telithromycin" "Streptococcus A,B,C,G" "15ug" 20 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi" "Telithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi equi" "Telithromycin" "Streptococcus A,B,C,G" "15ug" 20 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi equi" "Telithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi ruminatorum" "Telithromycin" "Streptococcus A,B,C,G" "15ug" 20 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi ruminatorum" "Telithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi zooepidemicus" "Telithromycin" "Streptococcus A,B,C,G" "15ug" 20 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi zooepidemicus" "Telithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group A" "Telithromycin" "Streptococcus A,B,C,G" "15ug" 20 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus group A" "Telithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group B" "Telithromycin" "Streptococcus A,B,C,G" "15ug" 20 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus group B" "Telithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group C" "Telithromycin" "Streptococcus A,B,C,G" "15ug" 20 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus group C" "Telithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group D" "Telithromycin" "Streptococcus A,B,C,G" "15ug" 20 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus group D" "Telithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group F" "Telithromycin" "Streptococcus A,B,C,G" "15ug" 20 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus group F" "Telithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group G" "Telithromycin" "Streptococcus A,B,C,G" "15ug" 20 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus group G" "Telithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group H" "Telithromycin" "Streptococcus A,B,C,G" "15ug" 20 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus group H" "Telithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group K" "Telithromycin" "Streptococcus A,B,C,G" "15ug" 20 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus group K" "Telithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" "Telithromycin" "S.pneumoniae" "15ug" 23 20 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" "Telithromycin" "S.pneumoniae" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus pyogenes" "Telithromycin" "Streptococcus A,B,C,G" "15ug" 20 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus pyogenes" "Telithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus salivarius" "Telithromycin" "Streptococcus A,B,C,G" "15ug" 20 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus salivarius" "Telithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus sanguinis" "Telithromycin" "Streptococcus A,B,C,G" "15ug" 20 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus sanguinis" "Telithromycin" "Streptococcus A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" "Telavancin" "Staphylococcus" 0.125 0.1253 FALSE +"EUCAST 2020" "DISK" "UTI" "Enterobacterales" "Trimethoprim" "Enterobacterales" "5ug" 15 15 TRUE +"EUCAST 2020" "MIC" "UTI" "Enterobacterales" "Trimethoprim" "Enterobacterales" 4 4 TRUE +"EUCAST 2020" "DISK" "UTI" "Staphylococcus" "Trimethoprim" "Staphylococcus" "5ug" 14 14 TRUE +"EUCAST 2020" "MIC" "UTI" "Staphylococcus" "Trimethoprim" "Staphylococcus" 4 4 TRUE +"EUCAST 2020" "MIC" "UTI" "Streptococcus agalactiae" "Trimethoprim" "Streptococcus A,B,C,G" 2 2 TRUE +"EUCAST 2020" "DISK" "Systemic" "Enterobacterales" "Tobramycin" "Enterobacterales" "10ug" 17 17 FALSE +"EUCAST 2020" "DISK" "UTI" "Enterobacterales" "Tobramycin" "Enterobacterales" "10ug" 17 17 TRUE +"EUCAST 2020" "MIC" "Systemic" "Enterobacterales" "Tobramycin" "Enterobacterales" 2 2 FALSE +"EUCAST 2020" "MIC" "UTI" "Enterobacterales" "Tobramycin" "Enterobacterales" 2 2 TRUE +"EUCAST 2020" "DISK" "Systemic" "Acinetobacter" "Tobramycin" "Acinetobacter" "10ug" 17 17 FALSE +"EUCAST 2020" "DISK" "UTI" "Acinetobacter" "Tobramycin" "Acinetobacter" "10ug" 17 17 TRUE +"EUCAST 2020" "MIC" "Systemic" "Acinetobacter" "Tobramycin" "Acinetobacter" 4 4 FALSE +"EUCAST 2020" "MIC" "UTI" "Acinetobacter" "Tobramycin" "Acinetobacter" 4 4 TRUE +"EUCAST 2020" "DISK" "Systemic" "Pseudomonas" "Tobramycin" "Pseudomonas" "10ug" 18 18 FALSE +"EUCAST 2020" "DISK" "UTI" "Pseudomonas" "Tobramycin" "Pseudomonas" "10ug" 18 18 TRUE +"EUCAST 2020" "MIC" "Systemic" "Pseudomonas" "Tobramycin" "Pseudomonas" 2 2 FALSE +"EUCAST 2020" "MIC" "UTI" "Pseudomonas" "Tobramycin" "Pseudomonas" 2 2 TRUE +"EUCAST 2020" "DISK" "Staphylococcus" "Tobramycin" "Staphylococcus" "10ug" 22 22 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" "Tobramycin" "Staphylococcus" 1 1 FALSE +"EUCAST 2020" "DISK" "Staphylococcus aureus" "Tobramycin" "Staphylococcus" "10ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus" "Tobramycin" "Staphylococcus" 1 1 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Tobramycin" "PK PD breakpoints" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" "Tedizolid" "Staphylococcus" "2ug" 21 21 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" "Tedizolid" "Staphylococcus" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus agalactiae" "Tedizolid" "Streptococcus A,B,C,G" "2ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus agalactiae" "Tedizolid" "Streptococcus A,B,C,G" 0.52 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus anginosus" "Tedizolid" "Streptococcus A,B,C,G" "2ug" 18 18 FALSE +"EUCAST 2020" "DISK" "Streptococcus anginosus" "Tedizolid" "Viridans group streptococci" "2ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" "Tedizolid" "Streptococcus A,B,C,G" 0.52 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" "Tedizolid" "Viridans group streptococci" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae" "Tedizolid" "Streptococcus A,B,C,G" "2ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae" "Tedizolid" "Streptococcus A,B,C,G" 0.52 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae dysgalactiae" "Tedizolid" "Streptococcus A,B,C,G" "2ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae dysgalactiae" "Tedizolid" "Streptococcus A,B,C,G" 0.52 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae equisimilis" "Tedizolid" "Streptococcus A,B,C,G" "2ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae equisimilis" "Tedizolid" "Streptococcus A,B,C,G" 0.52 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi" "Tedizolid" "Streptococcus A,B,C,G" "2ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi" "Tedizolid" "Streptococcus A,B,C,G" 0.52 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi equi" "Tedizolid" "Streptococcus A,B,C,G" "2ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi equi" "Tedizolid" "Streptococcus A,B,C,G" 0.52 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi ruminatorum" "Tedizolid" "Streptococcus A,B,C,G" "2ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi ruminatorum" "Tedizolid" "Streptococcus A,B,C,G" 0.52 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi zooepidemicus" "Tedizolid" "Streptococcus A,B,C,G" "2ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi zooepidemicus" "Tedizolid" "Streptococcus A,B,C,G" 0.52 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group A" "Tedizolid" "Streptococcus A,B,C,G" "2ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus group A" "Tedizolid" "Streptococcus A,B,C,G" 0.52 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group B" "Tedizolid" "Streptococcus A,B,C,G" "2ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus group B" "Tedizolid" "Streptococcus A,B,C,G" 0.52 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group C" "Tedizolid" "Streptococcus A,B,C,G" "2ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus group C" "Tedizolid" "Streptococcus A,B,C,G" 0.52 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group D" "Tedizolid" "Streptococcus A,B,C,G" "2ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus group D" "Tedizolid" "Streptococcus A,B,C,G" 0.52 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group F" "Tedizolid" "Streptococcus A,B,C,G" "2ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus group F" "Tedizolid" "Streptococcus A,B,C,G" 0.52 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group G" "Tedizolid" "Streptococcus A,B,C,G" "2ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus group G" "Tedizolid" "Streptococcus A,B,C,G" 0.52 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group H" "Tedizolid" "Streptococcus A,B,C,G" "2ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus group H" "Tedizolid" "Streptococcus A,B,C,G" 0.52 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus group K" "Tedizolid" "Streptococcus A,B,C,G" "2ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus group K" "Tedizolid" "Streptococcus A,B,C,G" 0.52 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus pyogenes" "Tedizolid" "Streptococcus A,B,C,G" "2ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus pyogenes" "Tedizolid" "Streptococcus A,B,C,G" 0.52 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus salivarius" "Tedizolid" "Streptococcus A,B,C,G" "2ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus salivarius" "Tedizolid" "Streptococcus A,B,C,G" 0.52 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus sanguinis" "Tedizolid" "Streptococcus A,B,C,G" "2ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus sanguinis" "Tedizolid" "Streptococcus A,B,C,G" 0.52 0.5 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" "Piperacillin/tazobactam" "Enterobacterales" "30-6ug" 20 17 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" "Piperacillin/tazobactam" "Enterobacterales" 8 16 FALSE +"EUCAST 2020" "MIC" "Actinomyces" "Piperacillin/tazobactam" "Anaerobes, Grampositive" 8 16 FALSE +"EUCAST 2020" "MIC" "Bacteroides" "Piperacillin/tazobactam" "Anaerobes, Gramnegative" 8 16 FALSE +"EUCAST 2020" "MIC" "Bifidobacterium" "Piperacillin/tazobactam" "Anaerobes, Grampositive" 8 16 FALSE +"EUCAST 2020" "MIC" "Bilophila" "Piperacillin/tazobactam" "Anaerobes, Gramnegative" 8 16 FALSE +"EUCAST 2020" "MIC" "Cutibacterium" "Piperacillin/tazobactam" "Anaerobes, Grampositive" 8 16 FALSE +"EUCAST 2020" "MIC" "Clostridioides" "Piperacillin/tazobactam" "Anaerobes, Grampositive" 8 16 FALSE +"EUCAST 2020" "MIC" "Clostridium" "Piperacillin/tazobactam" "Anaerobes, Grampositive" 8 16 FALSE +"EUCAST 2020" "MIC" "Eubacterium" "Piperacillin/tazobactam" "Anaerobes, Grampositive" 8 16 FALSE +"EUCAST 2020" "MIC" "Eggerthella" "Piperacillin/tazobactam" "Anaerobes, Grampositive" 8 16 FALSE +"EUCAST 2020" "MIC" "Fusobacterium" "Piperacillin/tazobactam" "Anaerobes, Gramnegative" 8 16 FALSE +"EUCAST 2020" "DISK" "Haemophilus influenzae" "Piperacillin/tazobactam" "H.influenzae" "30-6ug" 27 27 FALSE +"EUCAST 2020" "MIC" "Haemophilus influenzae" "Piperacillin/tazobactam" "H.influenzae" 0.256 0.256 FALSE +"EUCAST 2020" "MIC" "Lactobacillus" "Piperacillin/tazobactam" "Anaerobes, Grampositive" 8 16 FALSE +"EUCAST 2020" "MIC" "Mobiluncus" "Piperacillin/tazobactam" "Anaerobes, Gramnegative" 8 16 FALSE +"EUCAST 2020" "MIC" "Parabacteroides" "Piperacillin/tazobactam" "Anaerobes, Gramnegative" 8 16 FALSE +"EUCAST 2020" "MIC" "Porphyromonas" "Piperacillin/tazobactam" "Anaerobes, Gramnegative" 8 16 FALSE +"EUCAST 2020" "MIC" "Propionibacterium" "Piperacillin/tazobactam" "Anaerobes, Grampositive" 8 16 FALSE +"EUCAST 2020" "MIC" "Prevotella" "Piperacillin/tazobactam" "Anaerobes, Gramnegative" 8 16 FALSE +"EUCAST 2020" "DISK" "Pseudomonas" "Piperacillin/tazobactam" "Pseudomonas" "30-6ug" 50 18 FALSE +"EUCAST 2020" "MIC" "Pseudomonas" "Piperacillin/tazobactam" "Pseudomonas" 0.001 16 FALSE +"EUCAST 2020" "MIC" "Staphylococcus saccharolyticus" "Piperacillin/tazobactam" "Anaerobes, Grampositive" 8 16 FALSE +"EUCAST 2020" "MIC" "(unknown name)" "Piperacillin/tazobactam" "PK PD breakpoints" 4 16 FALSE +"EUCAST 2020" "DISK" "Aerococcus sanguinicola" "Vancomycin" "A.sanguinicola_A.urinae" "5ug" 16 16 FALSE +"EUCAST 2020" "MIC" "Aerococcus sanguinicola" "Vancomycin" "A.sanguinicola_A.urinae" 1 1 FALSE +"EUCAST 2020" "DISK" "Aerococcus urinae" "Vancomycin" "A.sanguinicola_A.urinae" "5ug" 16 16 FALSE +"EUCAST 2020" "MIC" "Aerococcus urinae" "Vancomycin" "A.sanguinicola_A.urinae" 1 1 FALSE +"EUCAST 2020" "MIC" "Actinomyces" "Vancomycin" "Anaerobes, Grampositive" 2 2 FALSE +"EUCAST 2020" "MIC" "Bifidobacterium" "Vancomycin" "Anaerobes, Grampositive" 2 2 FALSE +"EUCAST 2020" "MIC" "Cutibacterium" "Vancomycin" "Anaerobes, Grampositive" 2 2 FALSE +"EUCAST 2020" "MIC" "Clostridioides" "Vancomycin" "Anaerobes, Grampositive" 2 2 FALSE +"EUCAST 2020" "DISK" "Corynebacterium" "Vancomycin" "Corynebacterium" "5ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Corynebacterium" "Vancomycin" "Corynebacterium" 2 2 FALSE +"EUCAST 2020" "MIC" "Clostridium" "Vancomycin" "Anaerobes, Grampositive" 2 2 FALSE +"EUCAST 2020" "MIC" "Clostridium difficile" "Vancomycin" "C.difficile" 2 2 FALSE +"EUCAST 2020" "MIC" "Eubacterium" "Vancomycin" "Anaerobes, Grampositive" 2 2 FALSE +"EUCAST 2020" "MIC" "Eggerthella" "Vancomycin" "Anaerobes, Grampositive" 2 2 FALSE +"EUCAST 2020" "DISK" "Enterococcus" "Vancomycin" "Enterococcus" "5ug" 12 12 FALSE +"EUCAST 2020" "MIC" "Enterococcus" "Vancomycin" "Enterococcus" 4 4 FALSE +"EUCAST 2020" "MIC" "Lactobacillus" "Vancomycin" "Anaerobes, Grampositive" 2 2 FALSE +"EUCAST 2020" "MIC" "Propionibacterium" "Vancomycin" "Anaerobes, Grampositive" 2 2 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" "Vancomycin" "Staphylococcus" 4 4 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus" "Vancomycin" "Staphylococcus" 2 2 FALSE +"EUCAST 2020" "MIC" "Staphylococcus saccharolyticus" "Vancomycin" "Anaerobes, Grampositive" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus agalactiae" "Vancomycin" "Streptococcus A,B,C,G" "5ug" 13 13 FALSE +"EUCAST 2020" "MIC" "Streptococcus agalactiae" "Vancomycin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus anginosus" "Vancomycin" "Streptococcus A,B,C,G" "5ug" 13 13 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" "Vancomycin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae" "Vancomycin" "Streptococcus A,B,C,G" "5ug" 13 13 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae" "Vancomycin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae dysgalactiae" "Vancomycin" "Streptococcus A,B,C,G" "5ug" 13 13 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae dysgalactiae" "Vancomycin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus dysgalactiae equisimilis" "Vancomycin" "Streptococcus A,B,C,G" "5ug" 13 13 FALSE +"EUCAST 2020" "MIC" "Streptococcus dysgalactiae equisimilis" "Vancomycin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi" "Vancomycin" "Streptococcus A,B,C,G" "5ug" 13 13 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi" "Vancomycin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi equi" "Vancomycin" "Streptococcus A,B,C,G" "5ug" 13 13 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi equi" "Vancomycin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi ruminatorum" "Vancomycin" "Streptococcus A,B,C,G" "5ug" 13 13 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi ruminatorum" "Vancomycin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus equi zooepidemicus" "Vancomycin" "Streptococcus A,B,C,G" "5ug" 13 13 FALSE +"EUCAST 2020" "MIC" "Streptococcus equi zooepidemicus" "Vancomycin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group A" "Vancomycin" "Streptococcus A,B,C,G" "5ug" 13 13 FALSE +"EUCAST 2020" "MIC" "Streptococcus group A" "Vancomycin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group B" "Vancomycin" "Streptococcus A,B,C,G" "5ug" 13 13 FALSE +"EUCAST 2020" "MIC" "Streptococcus group B" "Vancomycin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group C" "Vancomycin" "Streptococcus A,B,C,G" "5ug" 13 13 FALSE +"EUCAST 2020" "MIC" "Streptococcus group C" "Vancomycin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group D" "Vancomycin" "Streptococcus A,B,C,G" "5ug" 13 13 FALSE +"EUCAST 2020" "MIC" "Streptococcus group D" "Vancomycin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group F" "Vancomycin" "Streptococcus A,B,C,G" "5ug" 13 13 FALSE +"EUCAST 2020" "MIC" "Streptococcus group F" "Vancomycin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group G" "Vancomycin" "Streptococcus A,B,C,G" "5ug" 13 13 FALSE +"EUCAST 2020" "MIC" "Streptococcus group G" "Vancomycin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group H" "Vancomycin" "Streptococcus A,B,C,G" "5ug" 13 13 FALSE +"EUCAST 2020" "MIC" "Streptococcus group H" "Vancomycin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus group K" "Vancomycin" "Streptococcus A,B,C,G" "5ug" 13 13 FALSE +"EUCAST 2020" "MIC" "Streptococcus group K" "Vancomycin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" "Vancomycin" "S.pneumoniae" "5ug" 16 16 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" "Vancomycin" "S.pneumoniae" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus pyogenes" "Vancomycin" "Streptococcus A,B,C,G" "5ug" 13 13 FALSE +"EUCAST 2020" "MIC" "Streptococcus pyogenes" "Vancomycin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus salivarius" "Vancomycin" "Streptococcus A,B,C,G" "5ug" 13 13 FALSE +"EUCAST 2020" "MIC" "Streptococcus salivarius" "Vancomycin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus sanguinis" "Vancomycin" "Streptococcus A,B,C,G" "5ug" 13 13 FALSE +"EUCAST 2020" "MIC" "Streptococcus sanguinis" "Vancomycin" "Streptococcus A,B,C,G" 2 2 FALSE +"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" "Vancomycin" "Viridans group streptococci" "5ug" 15 15 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" "Vancomycin" "Viridans group streptococci" 2 2 FALSE +"EUCAST 2019" "MIC" "Aspergillus fumigatus" "Amphotericin B" "Aspergillus" 1 4 FALSE +"EUCAST 2019" "MIC" "Aspergillus nidulans" "Amphotericin B" "Aspergillus" 1 4 FALSE +"EUCAST 2019" "MIC" "Candida" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2019" "MIC" "Candida albicans" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2019" "MIC" "Candida glabrata" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2019" "MIC" "Candida parapsilosis" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2019" "MIC" "Candida tropicalis" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2019" "MIC" "UTI" "Enterobacteriaceae" "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 32 64 TRUE +"EUCAST 2019" "MIC" "Enterococcus" "Amoxicillin/clavulanic acid" "Enterococcus" 4 16 FALSE +"EUCAST 2019" "MIC" "Haemophilus influenzae" "Amoxicillin/clavulanic acid" "H. influenzae" 2 4 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" "M. catarrhalis" 1 2 FALSE +"EUCAST 2019" "MIC" "Pasteurella multocida" "Amoxicillin/clavulanic acid" "Pasteurella multocida" 1 2 FALSE +"EUCAST 2019" "MIC" "Oral" "Streptococcus pneumoniae" "Amoxicillin/clavulanic acid" "Pneumo" 0.5 2 FALSE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Amikacin" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2019" "MIC" "Acinetobacter" "Amikacin" "Acinetobacter spp." 8 32 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" "Amikacin" "Pseudo" 8 32 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus" "Amikacin" "Staphs" 8 32 FALSE +"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Amikacin" "Staphs" 8 32 FALSE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Ampicillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2019" "MIC" "Aerococcus" "Ampicillin" "Aerococcus" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Enterococcus" "Ampicillin" "Enterococcus" 4 16 FALSE +"EUCAST 2019" "MIC" "Haemophilus influenzae" "Ampicillin" "H. influenzae" 1 2 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" "Ampicillin" "Kingella" 0.064 0.12 FALSE +"EUCAST 2019" "MIC" "Listeria monocytogenes" "Ampicillin" "Listeria monocytogenes" 1 2 FALSE +"EUCAST 2019" "MIC" "Neisseria meningitidis" "Ampicillin" "N. meningitidis" 0.125 2 FALSE +"EUCAST 2019" "MIC" "Pasteurella multocida" "Ampicillin" "Pasteurella multocida" 1 2 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" "Ampicillin" "Pneumo" 0.5 4 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Ampicillin" "Viridans strept" 0.5 4 FALSE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Amoxicillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2019" "MIC" "Enterococcus" "Amoxicillin" "Enterococcus" 4 16 FALSE +"EUCAST 2019" "MIC" "Helicobacter pylori" "Amoxicillin" "H. pylori" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Haemophilus influenzae" "Amoxicillin" "H. influenzae" 2 4 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" "Amoxicillin" "Kingella" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Neisseria meningitidis" "Amoxicillin" "N. meningitidis" 0.125 2 FALSE +"EUCAST 2019" "MIC" "Pasteurella multocida" "Amoxicillin" "Pasteurella multocida" 1 2 FALSE +"EUCAST 2019" "MIC" "Oral" "Streptococcus pneumoniae" "Amoxicillin" "Pneumo" 0.5 2 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Amoxicillin" "Viridans strept" 0.5 4 FALSE +"EUCAST 2019" "MIC" "Candida" "Anidulafungin" "Candida" 0.064 0.12 FALSE +"EUCAST 2019" "MIC" "Candida albicans" "Anidulafungin" "Candida" 0.032 0.06 FALSE +"EUCAST 2019" "MIC" "Candida glabrata" "Anidulafungin" "Candida" 0.064 0.12 FALSE +"EUCAST 2019" "MIC" "Candida parapsilosis" "Anidulafungin" "Candida" 0.002 8 FALSE +"EUCAST 2019" "MIC" "Candida tropicalis" "Anidulafungin" "Candida" 0.064 0.12 FALSE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Aztreonam" "Enterobacteriaceae" 1 8 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" "Aztreonam" "Pseudo" 16 32 FALSE +"EUCAST 2019" "MIC" "Haemophilus influenzae" "Azithromycin" "H. influenzae" 4 8 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" "Azithromycin" "Kingella" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" "Azithromycin" "M. catarrhalis" 0.25 1 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" "Azithromycin" "Staphs" 1 4 FALSE +"EUCAST 2019" "MIC" "Streptococcus" "Azithromycin" "Strep A, B, C, G" 0.25 1 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" "Azithromycin" "Pneumo" 0.25 1 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus" "Ceftobiprole" "Staphs" 2 4 FALSE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Ceftazidime" "Enterobacteriaceae" 1 8 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" "Ceftazidime" "Pseudo" 8 16 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" "Cefaclor" "Pneumo" 0.032 1 FALSE +"EUCAST 2019" "MIC" "UTI" "Enterobacteriaceae" "Cefixime" "Enterobacteriaceae" 1 2 TRUE +"EUCAST 2019" "MIC" "Haemophilus influenzae" "Cefixime" "H. influenzae" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" "Cefixime" "M. catarrhalis" 0.5 2 FALSE +"EUCAST 2019" "MIC" "Neisseria gonorrhoeae" "Cefixime" "N. gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "UTI" "Enterobacteriaceae" "Cefadroxil" "Enterobacteriaceae" 16 32 TRUE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Chloramphenicol" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2019" "MIC" "Haemophilus influenzae" "Chloramphenicol" "H. influenzae" 2 4 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" "Chloramphenicol" "M. catarrhalis" 2 4 FALSE +"EUCAST 2019" "MIC" "Neisseria meningitidis" "Chloramphenicol" "N. meningitidis" 2 4 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" "Chloramphenicol" "Staphs" 8 16 FALSE +"EUCAST 2019" "MIC" "Streptococcus" "Chloramphenicol" "Strep A, B, C, G" 8 16 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" "Chloramphenicol" "Pneumo" 8 16 FALSE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Ciprofloxacin" "Enterobacteriaceae" 0.25 1 FALSE +"EUCAST 2019" "MIC" "Acinetobacter" "Ciprofloxacin" "Acinetobacter spp." 0.064 2 FALSE +"EUCAST 2019" "MIC" "Aerococcus" "Ciprofloxacin" "Aerococcus" 2 4 FALSE +"EUCAST 2019" "MIC" "Campylobacter" "Ciprofloxacin" "Campylobacter jejuni and coli" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Corynebacterium" "Ciprofloxacin" "Corynebacterium spp." 1 2 FALSE +"EUCAST 2019" "MIC" "UTI" "Enterococcus" "Ciprofloxacin" "Enterococcus" 4 8 TRUE +"EUCAST 2019" "MIC" "Haemophilus influenzae" "Ciprofloxacin" "H. influenzae" 0.064 0.12 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" "Ciprofloxacin" "Kingella" 0.064 0.12 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" "Ciprofloxacin" "M. catarrhalis" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Neisseria gonorrhoeae" "Ciprofloxacin" "N. gonorrhoeae" 0.032 0.12 FALSE +"EUCAST 2019" "MIC" "Neisseria meningitidis" "Ciprofloxacin" "N. meningitidis" 0.032 0.06 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" "Ciprofloxacin" "Pseudo" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Pasteurella multocida" "Ciprofloxacin" "Pasteurella multocida" 0.064 0.12 FALSE +"EUCAST 2019" "MIC" "Salmonella" "Ciprofloxacin" "Enterobacteriaceae" 0.064 0.12 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus" "Ciprofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Ciprofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" "Ciprofloxacin" "Pneumo" FALSE +"EUCAST 2019" "MIC" "Corynebacterium" "Clindamycin" "Corynebacterium spp." 0.5 1 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" "Clindamycin" "Staphs" 0.25 1 FALSE +"EUCAST 2019" "MIC" "Streptococcus" "Clindamycin" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" "Clindamycin" "Pneumo" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Clindamycin" "Viridans strept" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Helicobacter pylori" "Clarithromycin" "H. pylori" 0.25 1 FALSE +"EUCAST 2019" "MIC" "Haemophilus influenzae" "Clarithromycin" "H. influenzae" 32 64 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" "Clarithromycin" "Kingella" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" "Clarithromycin" "M. catarrhalis" 0.25 1 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" "Clarithromycin" "Staphs" 1 4 FALSE +"EUCAST 2019" "MIC" "Streptococcus" "Clarithromycin" "Strep A, B, C, G" 0.25 1 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" "Clarithromycin" "Pneumo" 0.25 1 FALSE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Colistin" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2019" "MIC" "Acinetobacter" "Colistin" "Acinetobacter spp." 2 4 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" "Colistin" "Pseudo" 4 8 FALSE +"EUCAST 2019" "MIC" "UTI" "Enterobacteriaceae" "Cefpodoxime" "Enterobacteriaceae" 1 2 TRUE +"EUCAST 2019" "MIC" "Haemophilus influenzae" "Cefpodoxime" "H. influenzae" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" "Cefpodoxime" "Pneumo" 0.25 1 FALSE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Ceftaroline" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Haemophilus influenzae" "Ceftaroline" "H. influenzae" 0.032 0.06 FALSE +"EUCAST 2019" "MIC" "Pneumonia" "Staphylococcus aureus" "Ceftaroline" "Staphs" 1 2 FALSE +"EUCAST 2019" "MIC" "Non-pneumonia" "Staphylococcus aureus" "Ceftaroline" "Staphs" 1 4 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" "Ceftaroline" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Oral" "Enterobacteriaceae" "Ceftriaxone" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2019" "MIC" "Haemophilus influenzae" "Ceftriaxone" "H. influenzae" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" "Ceftriaxone" "Kingella" 0.064 0.12 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" "Ceftriaxone" "M. catarrhalis" 1 4 FALSE +"EUCAST 2019" "MIC" "Neisseria gonorrhoeae" "Ceftriaxone" "N. gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Neisseria meningitidis" "Ceftriaxone" "N. meningitidis" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" "Ceftriaxone" "Pneumo" 0.5 4 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" "Viridans strept" 0.5 1 FALSE +"EUCAST 2019" "MIC" "UTI" "Enterobacteriaceae" "Ceftibuten" "Enterobacteriaceae" 1 2 TRUE +"EUCAST 2019" "MIC" "Haemophilus influenzae" "Ceftibuten" "H. influenzae" 1 2 FALSE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Cefotaxime" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2019" "MIC" "Haemophilus influenzae" "Cefotaxime" "H. influenzae" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" "Cefotaxime" "Kingella" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" "Cefotaxime" "M. catarrhalis" 1 4 FALSE +"EUCAST 2019" "MIC" "Neisseria gonorrhoeae" "Cefotaxime" "N. gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Neisseria meningitidis" "Cefotaxime" "N. meningitidis" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Pasteurella multocida" "Cefotaxime" "Pasteurella multocida" 0.032 0.06 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" "Cefotaxime" "Pneumo" 0.5 4 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Cefotaxime" "Viridans strept" 0.5 1 FALSE +"EUCAST 2019" "MIC" "IV" "Enterobacteriaceae" "Cefuroxime" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2019" "MIC" "UTI" "Enterobacteriaceae" "Cefuroxime" "Enterobacteriaceae" 8 16 TRUE +"EUCAST 2019" "MIC" "IV" "Haemophilus influenzae" "Cefuroxime" "H. influenzae" 1 4 FALSE +"EUCAST 2019" "MIC" "Oral" "Haemophilus influenzae" "Cefuroxime" "H. influenzae" 0.125 2 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" "Cefuroxime" "Kingella" 0.5 1 FALSE +"EUCAST 2019" "MIC" "IV" "Moraxella catarrhalis" "Cefuroxime" "M. catarrhalis" 4 16 FALSE +"EUCAST 2019" "MIC" "Oral" "Moraxella catarrhalis" "Cefuroxime" "M. catarrhalis" 0.125 8 FALSE +"EUCAST 2019" "MIC" "IV" "Streptococcus pneumoniae" "Cefuroxime" "Pneumo" 0.5 2 FALSE +"EUCAST 2019" "MIC" "Oral" "Streptococcus pneumoniae" "Cefuroxime" "Pneumo" 0.25 1 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Cefuroxime" "Viridans strept" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Ceftazidime/avibactam" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" "Ceftazidime/avibactam" "Pseudo" 8 16 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Cefazolin" "Viridans strept" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Ceftolozane/tazobactam" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2019" "MIC" "Pseudomonas aeruginosa" "Ceftolozane/tazobactam" "Pseudo" 4 8 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" "Dalbavancin" "Staphs" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Streptococcus" "Dalbavancin" "Strep A, B, C, G" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Dalbavancin" "Viridans strept" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Clostridium difficile" "Daptomycin" "C. difficile" 4 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" "Daptomycin" "Staphs" 1 2 FALSE +"EUCAST 2019" "MIC" "Streptococcus" "Daptomycin" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2019" "MIC" "Haemophilus influenzae" "Doxycycline" "H. influenzae" 1 4 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" "Doxycycline" "Kingella" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" "Doxycycline" "M. catarrhalis" 1 4 FALSE +"EUCAST 2019" "MIC" "Pasteurella multocida" "Doxycycline" "Pasteurella multocida" 1 2 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" "Doxycycline" "Staphs" 1 4 FALSE +"EUCAST 2019" "MIC" "Streptococcus" "Doxycycline" "Strep A, B, C, G" 1 4 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" "Doxycycline" "Pneumo" 1 4 FALSE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Eravacycline" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Enterococcus" "Eravacycline" "Enterococcus" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus" "Eravacycline" "Staphs" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Coagulase-positive Staphylococcus (CoPS)" "Eravacycline" "Staphs" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Eravacycline" "Viridans strept" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Campylobacter coli" "Erythromycin" "Campylobacter jejuni and coli" 8 16 FALSE +"EUCAST 2019" "MIC" "Campylobacter jejuni" "Erythromycin" "Campylobacter jejuni and coli" 4 8 FALSE +"EUCAST 2019" "MIC" "Haemophilus influenzae" "Erythromycin" "H. influenzae" 16 32 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" "Erythromycin" "Kingella" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Listeria monocytogenes" "Erythromycin" "Listeria monocytogenes" 1 2 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" "Erythromycin" "M. catarrhalis" 0.25 1 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" "Erythromycin" "Staphs" 1 4 FALSE +"EUCAST 2019" "MIC" "Streptococcus" "Erythromycin" "Strep A, B, C, G" 0.25 1 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" "Erythromycin" "Pneumo" 0.25 1 FALSE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Ertapenem" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Haemophilus influenzae" "Ertapenem" "H. influenzae" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" "Ertapenem" "M. catarrhalis" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" "Ertapenem" "Pneumo" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Ertapenem" "Viridans strept" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Cefepime" "Enterobacteriaceae" 1 8 FALSE +"EUCAST 2019" "MIC" "Haemophilus influenzae" "Cefepime" "H. influenzae" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" "Cefepime" "M. catarrhalis" 4 8 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" "Cefepime" "Pseudo" 8 16 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" "Cefepime" "Pneumo" 1 4 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Cefepime" "Viridans strept" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Candida" "Fluconazole" "Candida" 2 8 FALSE +"EUCAST 2019" "MIC" "Candida albicans" "Fluconazole" "Candida" 2 8 FALSE +"EUCAST 2019" "MIC" "Candida glabrata" "Fluconazole" "Candida" 0.002 64 FALSE +"EUCAST 2019" "MIC" "Candida parapsilosis" "Fluconazole" "Candida" 2 8 FALSE +"EUCAST 2019" "MIC" "Candida tropicalis" "Fluconazole" "Candida" 2 8 FALSE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Fosfomycin" "Enterobacteriaceae" 32 64 FALSE +"EUCAST 2019" "MIC" "UTI" "Enterobacteriaceae" "Fosfomycin" "Enterobacteriaceae" 32 64 TRUE +"EUCAST 2019" "MIC" "Staphylococcus" "Fosfomycin" "Staphs" 32 64 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" "Cefoxitin" "Staphs" 8 16 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" "Cefoxitin" "Staphs" FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus" "Cefoxitin" "Staphs" 4 8 FALSE +"EUCAST 2019" "MIC" "Staphylococcus lugdunensis" "Cefoxitin" "Staphs" 4 8 FALSE +"EUCAST 2019" "MIC" "Clostridium difficile" "Fusidic acid" "C. difficile" 2 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" "Fusidic acid" "Staphs" 1 2 FALSE +"EUCAST 2019" "DISK" "Enterococcus" "Gentamicin-high" "Enterococcus" "30ug" 8 7 FALSE +"EUCAST 2019" "MIC" "Enterococcus" "Gentamicin-high" "Enterococcus" 128 128 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Gentamicin-high" "Viridans strept" 128 128 FALSE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Gentamicin" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2019" "MIC" "Acinetobacter" "Gentamicin" "Acinetobacter spp." 4 8 FALSE +"EUCAST 2019" "MIC" "Corynebacterium" "Gentamicin" "Corynebacterium spp." 1 2 FALSE +"EUCAST 2019" "DISK" "Enterococcus" "Gentamicin" "Enterococcus" "30ug" 8 7 FALSE +"EUCAST 2019" "MIC" "Enterococcus" "Gentamicin" "Enterococcus" 128 128 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" "Gentamicin" "Pseudo" 4 8 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus" "Gentamicin" "Staphs" 1 2 FALSE +"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Gentamicin" "Staphs" 1 2 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Gentamicin" "Viridans strept" 128 128 FALSE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Imipenem" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2019" "MIC" "Acinetobacter" "Imipenem" "Acinetobacter spp." 2 8 FALSE +"EUCAST 2019" "MIC" "Enterococcus" "Imipenem" "Enterococcus" 4 16 FALSE +"EUCAST 2019" "MIC" "Haemophilus influenzae" "Imipenem" "H. influenzae" 2 4 FALSE +"EUCAST 2019" "MIC" "Morganella morganii" "Imipenem" "Enterobacteriaceae" 0.125 8 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" "Imipenem" "M. catarrhalis" 2 4 FALSE +"EUCAST 2019" "MIC" "Proteus" "Imipenem" "Enterobacteriaceae" 0.125 8 FALSE +"EUCAST 2019" "MIC" "Providencia" "Imipenem" "Enterobacteriaceae" 0.125 8 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" "Imipenem" "Pseudo" 4 8 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" "Imipenem" "Pneumo" 2 4 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Imipenem" "Viridans strept" 2 4 FALSE +"EUCAST 2019" "MIC" "Aspergillus fumigatus" "Isavuconazole" "Aspergillus" 1 2 FALSE +"EUCAST 2019" "MIC" "Aspergillus nidulans" "Isavuconazole" "Aspergillus" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Aspergillus terreus" "Isavuconazole" "Aspergillus" 1 2 FALSE +"EUCAST 2019" "MIC" "Aspergillus flavus" "Itraconazole" "Aspergillus" 1 4 FALSE +"EUCAST 2019" "MIC" "Aspergillus fumigatus" "Itraconazole" "Aspergillus" 1 4 FALSE +"EUCAST 2019" "MIC" "Aspergillus nidulans" "Itraconazole" "Aspergillus" 1 4 FALSE +"EUCAST 2019" "MIC" "Aspergillus terreus" "Itraconazole" "Aspergillus" 1 4 FALSE +"EUCAST 2019" "MIC" "Candida albicans" "Itraconazole" "Candida" 0.064 0.12 FALSE +"EUCAST 2019" "MIC" "Candida dubliniensis" "Itraconazole" "Candida" 0.064 0.12 FALSE +"EUCAST 2019" "MIC" "Candida parapsilosis" "Itraconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Candida tropicalis" "Itraconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" "Kanamycin" "Staphs" 8 16 FALSE +"EUCAST 2019" "DISK" "Staphylococcus aureus" "Kanamycin" "Staphs" "30" 18 17 FALSE +"EUCAST 2019" "MIC" "UTI" "Enterobacteriaceae" "Cephalexin" "Enterobacteriaceae" 16 32 TRUE +"EUCAST 2019" "MIC" "Corynebacterium" "Linezolid" "Corynebacterium spp." 2 4 FALSE +"EUCAST 2019" "MIC" "Enterococcus" "Linezolid" "Enterococcus" 4 8 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" "Linezolid" "Staphs" 4 8 FALSE +"EUCAST 2019" "MIC" "Streptococcus" "Linezolid" "Strep A, B, C, G" 2 8 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" "Linezolid" "Pneumo" 2 8 FALSE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Levofloxacin" "Enterobacteriaceae" 0.5 2 FALSE +"EUCAST 2019" "MIC" "Acinetobacter" "Levofloxacin" "Acinetobacter spp." 0.5 2 FALSE +"EUCAST 2019" "MIC" "Aerococcus" "Levofloxacin" "Aerococcus" 2 4 FALSE +"EUCAST 2019" "MIC" "UTI" "Enterococcus" "Levofloxacin" "Enterococcus" 4 8 TRUE +"EUCAST 2019" "MIC" "Helicobacter pylori" "Levofloxacin" "H. pylori" 1 2 FALSE +"EUCAST 2019" "MIC" "Haemophilus influenzae" "Levofloxacin" "H. influenzae" 0.064 0.12 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" "Levofloxacin" "Kingella" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" "Levofloxacin" "M. catarrhalis" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" "Levofloxacin" "Pseudo" 1 2 FALSE +"EUCAST 2019" "MIC" "Pasteurella multocida" "Levofloxacin" "Pasteurella multocida" 0.064 0.12 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus" "Levofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Levofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2019" "MIC" "Streptococcus" "Levofloxacin" "Strep A, B, C, G" 1 4 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" "Levofloxacin" "Pneumo" 2 4 FALSE +"EUCAST 2019" "MIC" "UTI" "Enterobacteriaceae" "Mecillinam (Amdinocillin)" "Enterobacteriaceae" 8 16 TRUE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Meropenem" "Enterobacteriaceae" 2 16 FALSE +"EUCAST 2019" "MIC" "Acinetobacter" "Meropenem" "Acinetobacter spp." 2 16 FALSE +"EUCAST 2019" "MIC" "Aerococcus" "Meropenem" "Aerococcus" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Non-meningitis" "Haemophilus influenzae" "Meropenem" "H. influenzae" 2 4 FALSE +"EUCAST 2019" "MIC" "Meningitis" "Haemophilus influenzae" "Meropenem" "H. influenzae" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" "Meropenem" "Kingella" 0.032 0.06 FALSE +"EUCAST 2019" "MIC" "Listeria monocytogenes" "Meropenem" "Listeria monocytogenes" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" "Meropenem" "M. catarrhalis" 2 4 FALSE +"EUCAST 2019" "MIC" "Neisseria meningitidis" "Meropenem" "N. meningitidis" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" "Meropenem" "Pseudo" 2 16 FALSE +"EUCAST 2019" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Meropenem" "Pneumo" 2 4 FALSE +"EUCAST 2019" "MIC" "Meningitis" "Streptococcus pneumoniae" "Meropenem" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Meropenem" "Viridans strept" 2 4 FALSE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Meropenem/vaborbactam" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" "Meropenem/vaborbactam" "Pseudo" 8 16 FALSE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Moxifloxacin" "Enterobacteriaceae" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Corynebacterium" "Moxifloxacin" "Corynebacterium spp." 0.5 1 FALSE +"EUCAST 2019" "MIC" "Clostridium difficile" "Moxifloxacin" "C. difficile" 4 FALSE +"EUCAST 2019" "MIC" "Haemophilus influenzae" "Moxifloxacin" "H. influenzae" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" "Moxifloxacin" "M. catarrhalis" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus" "Moxifloxacin" "Staphs" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Moxifloxacin" "Staphs" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Streptococcus" "Moxifloxacin" "Strep A, B, C, G" 0.5 2 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" "Moxifloxacin" "Pneumo" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Candida albicans" "Micafungin" "Candida" 0.016 0.03 FALSE +"EUCAST 2019" "MIC" "Candida glabrata" "Micafungin" "Candida" 0.032 0.06 FALSE +"EUCAST 2019" "MIC" "Candida parapsilosis" "Micafungin" "Candida" 0.002 4 FALSE +"EUCAST 2019" "MIC" "Haemophilus influenzae" "Minocycline" "H. influenzae" 1 4 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" "Minocycline" "M. catarrhalis" 1 4 FALSE +"EUCAST 2019" "MIC" "Neisseria meningitidis" "Minocycline" "N. meningitidis" 1 4 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" "Minocycline" "Staphs" 0.5 2 FALSE +"EUCAST 2019" "MIC" "Streptococcus" "Minocycline" "Strep A, B, C, G" 0.5 2 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" "Minocycline" "Pneumo" 0.5 2 FALSE +"EUCAST 2019" "MIC" "Clostridium difficile" "Metronidazole" "C. difficile" 2 4 FALSE +"EUCAST 2019" "MIC" "Helicobacter pylori" "Metronidazole" "H. pylori" 8 16 FALSE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Netilmicin" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2019" "MIC" "Acinetobacter" "Netilmicin" "Acinetobacter spp." 4 8 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" "Netilmicin" "Pseudo" 4 8 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus" "Netilmicin" "Staphs" 1 2 FALSE +"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Netilmicin" "Staphs" 1 2 FALSE +"EUCAST 2019" "MIC" "UTI" "Enterobacteriaceae" "Nitrofurantoin" "Enterobacteriaceae" 64 128 TRUE +"EUCAST 2019" "MIC" "Aerococcus" "Nitrofurantoin" "Aerococcus" 16 32 FALSE +"EUCAST 2019" "MIC" "UTI" "Enterococcus faecalis" "Nitrofurantoin" "Enterococcus" 64 128 TRUE +"EUCAST 2019" "MIC" "UTI" "Staphylococcus" "Nitrofurantoin" "Staphs" 64 128 TRUE +"EUCAST 2019" "MIC" "UTI" "Streptococcus group B" "Nitrofurantoin" "Strep A, B, C, G" 64 128 TRUE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Norfloxacin" "Enterobacteriaceae" 0.5 2 FALSE +"EUCAST 2019" "MIC" "UTI" "Enterobacteriaceae" "Nitroxoline" "Enterobacteriaceae" 16 32 TRUE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Ofloxacin" "Enterobacteriaceae" 0.25 1 FALSE +"EUCAST 2019" "MIC" "Haemophilus influenzae" "Ofloxacin" "H. influenzae" 0.064 0.12 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" "Ofloxacin" "M. catarrhalis" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Neisseria gonorrhoeae" "Ofloxacin" "N. gonorrhoeae" 0.125 0.5 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus" "Ofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Ofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" "Ofloxacin" "Pneumo" FALSE +"EUCAST 2019" "MIC" "Staphylococcus" "Oritavancin" "Staphs" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Streptococcus" "Oritavancin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Oritavancin" "Viridans strept" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" "Oxacillin" "Staphs" 2 4 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus" "Oxacillin" "Staphs" 2 4 FALSE +"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Oxacillin" "Staphs" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Staphylococcus epidermidis" "Oxacillin" "Staphs" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Staphylococcus lugdunensis" "Oxacillin" "Staphs" 2 4 FALSE +"EUCAST 2019" "MIC" "Aerococcus" "Penicillin G" "Aerococcus" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Corynebacterium" "Penicillin G" "Corynebacterium spp." 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" "Penicillin G" "Kingella" 0.032 0.06 FALSE +"EUCAST 2019" "MIC" "Listeria monocytogenes" "Penicillin G" "Listeria monocytogenes" 1 2 FALSE +"EUCAST 2019" "MIC" "Neisseria gonorrhoeae" "Penicillin G" "N. gonorrhoeae" 0.064 2 FALSE +"EUCAST 2019" "MIC" "Neisseria meningitidis" "Penicillin G" "N. meningitidis" 0.064 0.5 FALSE +"EUCAST 2019" "MIC" "Pasteurella multocida" "Penicillin G" "Pasteurella multocida" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus" "Penicillin G" "Staphs" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Staphylococcus lugdunensis" "Penicillin G" "Staphs" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Streptococcus" "Penicillin G" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Penicillin G" "Pneumo" 0.064 4 FALSE +"EUCAST 2019" "MIC" "Meningitis" "Streptococcus pneumoniae" "Penicillin G" "Pneumo" 0.064 0.12 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Penicillin G" "Viridans strept" 0.25 4 FALSE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Piperacillin" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" "Piperacillin" "Pseudo" 16 32 FALSE +"EUCAST 2019" "MIC" "Aspergillus fumigatus" "Posaconazole" "Aspergillus" 0.125 0.5 FALSE +"EUCAST 2019" "MIC" "Aspergillus terreus" "Posaconazole" "Aspergillus" 0.125 0.5 FALSE +"EUCAST 2019" "MIC" "Candida albicans" "Posaconazole" "Candida" 0.064 0.12 FALSE +"EUCAST 2019" "MIC" "Candida dubliniensis" "Posaconazole" "Candida" 0.064 0.12 FALSE +"EUCAST 2019" "MIC" "Candida parapsilosis" "Posaconazole" "Candida" 0.064 0.12 FALSE +"EUCAST 2019" "MIC" "Candida tropicalis" "Posaconazole" "Candida" 0.064 0.12 FALSE +"EUCAST 2019" "MIC" "Enterococcus" "Quinupristin/dalfopristin" "Enterococcus" 1 8 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" "Quinupristin/dalfopristin" "Staphs" 1 4 FALSE +"EUCAST 2019" "MIC" "Aerococcus" "Rifampicin" "Aerococcus" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Corynebacterium" "Rifampicin" "Corynebacterium spp." 0.064 1 FALSE +"EUCAST 2019" "MIC" "Clostridium difficile" "Rifampicin" "C. difficile" 0.004 FALSE +"EUCAST 2019" "MIC" "Helicobacter pylori" "Rifampicin" "H. pylori" 1 2 FALSE +"EUCAST 2019" "MIC" "Prophylaxis" "Haemophilus influenzae" "Rifampicin" "H. influenzae" 1 2 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" "Rifampicin" "Kingella" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Neisseria meningitidis" "Rifampicin" "N. meningitidis" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" "Rifampicin" "Staphs" 0.064 1 FALSE +"EUCAST 2019" "MIC" "Streptococcus" "Rifampicin" "Strep A, B, C, G" 0.064 1 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" "Rifampicin" "Pneumo" 0.064 1 FALSE +"EUCAST 2019" "MIC" "Haemophilus influenzae" "Roxithromycin" "H. influenzae" FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" "Roxithromycin" "M. catarrhalis" 0.5 2 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" "Roxithromycin" "Staphs" 1 4 FALSE +"EUCAST 2019" "MIC" "Streptococcus" "Roxithromycin" "Strep A, B, C, G" 0.5 2 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" "Roxithromycin" "Pneumo" 0.5 2 FALSE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Ampicillin/sulbactam" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2019" "MIC" "Enterococcus" "Ampicillin/sulbactam" "Enterococcus" 4 16 FALSE +"EUCAST 2019" "MIC" "Haemophilus influenzae" "Ampicillin/sulbactam" "H. influenzae" 1 2 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" "Ampicillin/sulbactam" "M. catarrhalis" 1 2 FALSE +"EUCAST 2019" "MIC" "Neisseria gonorrhoeae" "Spectinomycin" "N. gonorrhoeae" 64 128 FALSE +"EUCAST 2019" "DISK" "Enterococcus" "Streptomycin-high" "Enterococcus" "300ug" 14 13 FALSE +"EUCAST 2019" "MIC" "Enterococcus" "Streptomycin-high" "Enterococcus" 512 1024 FALSE +"EUCAST 2019" "DISK" "Enterococcus" "Streptoduocin" "Enterococcus" "300ug" 14 13 FALSE +"EUCAST 2019" "MIC" "Enterococcus" "Streptoduocin" "Enterococcus" 512 1024 FALSE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2019" "MIC" "Acinetobacter" "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 8 FALSE +"EUCAST 2019" "MIC" "Enterococcus" "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 2 FALSE +"EUCAST 2019" "MIC" "Haemophilus influenzae" "Trimethoprim/sulfamethoxazole" "H. influenzae" 0.5 2 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" "Trimethoprim/sulfamethoxazole" "Kingella" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Listeria monocytogenes" "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" 0.064 0.12 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" "M. catarrhalis" 0.5 2 FALSE +"EUCAST 2019" "MIC" "Pasteurella multocida" "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Stenotrophomonas maltophilia" "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 4 8 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" "Trimethoprim/sulfamethoxazole" "Staphs" 2 8 FALSE +"EUCAST 2019" "MIC" "Streptococcus" "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 4 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" "Pneumo" 1 4 FALSE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" "Ticarcillin/clavulanic acid" "Pseudo" 16 32 FALSE +"EUCAST 2019" "MIC" "Campylobacter" "Tetracycline" "Campylobacter jejuni and coli" 2 4 FALSE +"EUCAST 2019" "MIC" "Corynebacterium" "Tetracycline" "Corynebacterium spp." 2 4 FALSE +"EUCAST 2019" "MIC" "Helicobacter pylori" "Tetracycline" "H. pylori" 1 2 FALSE +"EUCAST 2019" "MIC" "Haemophilus influenzae" "Tetracycline" "H. influenzae" 1 4 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" "Tetracycline" "Kingella" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" "Tetracycline" "M. catarrhalis" 1 4 FALSE +"EUCAST 2019" "MIC" "Neisseria gonorrhoeae" "Tetracycline" "N. gonorrhoeae" 0.5 2 FALSE +"EUCAST 2019" "MIC" "Neisseria meningitidis" "Tetracycline" "N. meningitidis" 1 4 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" "Tetracycline" "Staphs" 1 4 FALSE +"EUCAST 2019" "MIC" "Streptococcus" "Tetracycline" "Strep A, B, C, G" 1 4 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" "Tetracycline" "Pneumo" 1 4 FALSE +"EUCAST 2019" "MIC" "Enterococcus" "Teicoplanin" "Enterococcus" 2 4 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus" "Teicoplanin" "Staphs" 2 4 FALSE +"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Teicoplanin" "Staphs" 4 8 FALSE +"EUCAST 2019" "MIC" "Streptococcus" "Teicoplanin" "Strep A, B, C, G" 2 4 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" "Teicoplanin" "Pneumo" 2 4 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Teicoplanin" "Viridans strept" 2 4 FALSE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Tigecycline" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Clostridium difficile" "Tigecycline" "C. difficile" 0.25 FALSE +"EUCAST 2019" "MIC" "Enterococcus" "Tigecycline" "Enterococcus" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" "Tigecycline" "Staphs" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Streptococcus" "Tigecycline" "Strep A, B, C, G" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Ticarcillin" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" "Ticarcillin" "Pseudo" 16 32 FALSE +"EUCAST 2019" "MIC" "Haemophilus influenzae" "Telithromycin" "H. influenzae" 8 16 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" "Telithromycin" "M. catarrhalis" 0.25 1 FALSE +"EUCAST 2019" "MIC" "Streptococcus" "Telithromycin" "Strep A, B, C, G" 0.25 1 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" "Telithromycin" "Pneumo" 0.25 1 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus" "Telavancin" "Staphs" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "UTI" "Enterobacteriaceae" "Trimethoprim" "Enterobacteriaceae" 2 8 TRUE +"EUCAST 2019" "MIC" "UTI" "Enterococcus" "Trimethoprim" "Enterococcus" 0.032 2 TRUE +"EUCAST 2019" "MIC" "UTI" "Staphylococcus" "Trimethoprim" "Staphs" 2 8 TRUE +"EUCAST 2019" "MIC" "UTI" "Streptococcus group B" "Trimethoprim" "Strep A, B, C, G" 2 4 TRUE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Tobramycin" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2019" "MIC" "Acinetobacter" "Tobramycin" "Acinetobacter spp." 4 8 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" "Tobramycin" "Pseudo" 4 8 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus" "Tobramycin" "Staphs" 1 2 FALSE +"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Tobramycin" "Staphs" 1 2 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" "Tedizolid" "Staphs" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Streptococcus" "Tedizolid" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Tedizolid" "Viridans strept" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Enterobacteriaceae" "Piperacillin/tazobactam" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2019" "MIC" "Haemophilus influenzae" "Piperacillin/tazobactam" "H. influenzae" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" "Piperacillin/tazobactam" "Pseudo" 16 32 FALSE +"EUCAST 2019" "MIC" "Aerococcus" "Vancomycin" "Aerococcus" 1 2 FALSE +"EUCAST 2019" "MIC" "Corynebacterium" "Vancomycin" "Corynebacterium spp." 2 4 FALSE +"EUCAST 2019" "MIC" "Clostridium difficile" "Vancomycin" "C. difficile" 2 4 FALSE +"EUCAST 2019" "MIC" "Enterococcus" "Vancomycin" "Enterococcus" 4 8 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus" "Vancomycin" "Staphs" 2 4 FALSE +"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Vancomycin" "Staphs" 4 8 FALSE +"EUCAST 2019" "MIC" "Streptococcus" "Vancomycin" "Strep A, B, C, G" 2 4 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" "Vancomycin" "Pneumo" 2 4 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Vancomycin" "Viridans strept" 2 4 FALSE +"EUCAST 2019" "MIC" "Aspergillus fumigatus" "Voriconazole" "Aspergillus" 1 4 FALSE +"EUCAST 2019" "MIC" "Candida albicans" "Voriconazole" "Candida" 0.064 0.5 FALSE +"EUCAST 2019" "MIC" "Candida dubliniensis" "Voriconazole" "Candida" 0.064 0.5 FALSE +"EUCAST 2019" "MIC" "Candida parapsilosis" "Voriconazole" "Candida" 0.125 0.5 FALSE +"EUCAST 2019" "MIC" "Candida tropicalis" "Voriconazole" "Candida" 0.125 0.5 FALSE +"EUCAST 2018" "MIC" "Aspergillus fumigatus" "Amphotericin B" "Aspergillus" 1 4 FALSE +"EUCAST 2018" "MIC" "Aspergillus nidulans" "Amphotericin B" "Aspergillus" 1 4 FALSE +"EUCAST 2018" "MIC" "Candida" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2018" "MIC" "Candida albicans" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2018" "MIC" "Candida glabrata" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2018" "MIC" "Candida parapsilosis" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2018" "MIC" "Candida tropicalis" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2018" "MIC" "UTI" "Enterobacteriaceae" "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 32 64 TRUE +"EUCAST 2018" "MIC" "Enterococcus" "Amoxicillin/clavulanic acid" "Enterococcus" 4 16 FALSE +"EUCAST 2018" "MIC" "Haemophilus influenzae" "Amoxicillin/clavulanic acid" "H. influenzae" 2 4 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" "M. catarrhalis" 1 2 FALSE +"EUCAST 2018" "MIC" "Pasteurella multocida" "Amoxicillin/clavulanic acid" "Pasteurella multocida" 1 2 FALSE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Amikacin" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2018" "MIC" "Acinetobacter" "Amikacin" "Acinetobacter spp." 8 32 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" "Amikacin" "Pseudo" 8 32 FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus" "Amikacin" "Staphs" 8 32 FALSE +"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Amikacin" "Staphs" 8 32 FALSE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Ampicillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2018" "MIC" "Aerococcus" "Ampicillin" "Aerococcus" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Enterococcus" "Ampicillin" "Enterococcus" 4 16 FALSE +"EUCAST 2018" "MIC" "Haemophilus influenzae" "Ampicillin" "H. influenzae" 1 2 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" "Ampicillin" "Kingella" 0.064 0.12 FALSE +"EUCAST 2018" "MIC" "Listeria monocytogenes" "Ampicillin" "Listeria monocytogenes" 1 2 FALSE +"EUCAST 2018" "MIC" "Neisseria meningitidis" "Ampicillin" "N. meningitidis" 0.125 2 FALSE +"EUCAST 2018" "MIC" "Pasteurella multocida" "Ampicillin" "Pasteurella multocida" 1 2 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" "Ampicillin" "Pneumo" 0.5 4 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Ampicillin" "Viridans strept" 0.5 4 FALSE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Amoxicillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2018" "MIC" "Enterococcus" "Amoxicillin" "Enterococcus" 4 16 FALSE +"EUCAST 2018" "MIC" "Helicobacter pylori" "Amoxicillin" "H. pylori" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Haemophilus influenzae" "Amoxicillin" "H. influenzae" 2 4 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" "Amoxicillin" "Kingella" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Neisseria meningitidis" "Amoxicillin" "N. meningitidis" 0.125 2 FALSE +"EUCAST 2018" "MIC" "Pasteurella multocida" "Amoxicillin" "Pasteurella multocida" 1 2 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Amoxicillin" "Viridans strept" 0.5 4 FALSE +"EUCAST 2018" "MIC" "Candida" "Anidulafungin" "Candida" 0.064 0.12 FALSE +"EUCAST 2018" "MIC" "Candida albicans" "Anidulafungin" "Candida" 0.032 0.06 FALSE +"EUCAST 2018" "MIC" "Candida glabrata" "Anidulafungin" "Candida" 0.064 0.12 FALSE +"EUCAST 2018" "MIC" "Candida parapsilosis" "Anidulafungin" "Candida" 0.002 8 FALSE +"EUCAST 2018" "MIC" "Candida tropicalis" "Anidulafungin" "Candida" 0.064 0.12 FALSE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Aztreonam" "Enterobacteriaceae" 1 8 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" "Aztreonam" "Pseudo" 1 32 FALSE +"EUCAST 2018" "MIC" "Haemophilus influenzae" "Azithromycin" "H. influenzae" 4 8 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" "Azithromycin" "Kingella" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" "Azithromycin" "M. catarrhalis" 0.25 1 FALSE +"EUCAST 2018" "MIC" "Neisseria gonorrhoeae" "Azithromycin" "N. gonorrhoeae" 0.25 1 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" "Azithromycin" "Staphs" 1 4 FALSE +"EUCAST 2018" "MIC" "Streptococcus" "Azithromycin" "Strep A, B, C, G" 0.25 1 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" "Azithromycin" "Pneumo" 0.25 1 FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus" "Ceftobiprole" "Staphs" 2 4 FALSE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Ceftazidime" "Enterobacteriaceae" 1 8 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" "Ceftazidime" "Pseudo" 8 16 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" "Cefaclor" "Pneumo" 0.032 1 FALSE +"EUCAST 2018" "MIC" "UTI" "Enterobacteriaceae" "Cefixime" "Enterobacteriaceae" 1 2 TRUE +"EUCAST 2018" "MIC" "Haemophilus influenzae" "Cefixime" "H. influenzae" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" "Cefixime" "M. catarrhalis" 0.5 2 FALSE +"EUCAST 2018" "MIC" "Neisseria gonorrhoeae" "Cefixime" "N. gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "UTI" "Enterobacteriaceae" "Cefadroxil" "Enterobacteriaceae" 16 32 TRUE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Chloramphenicol" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2018" "MIC" "Haemophilus influenzae" "Chloramphenicol" "H. influenzae" 2 4 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" "Chloramphenicol" "M. catarrhalis" 2 4 FALSE +"EUCAST 2018" "MIC" "Neisseria meningitidis" "Chloramphenicol" "N. meningitidis" 2 8 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" "Chloramphenicol" "Staphs" 8 16 FALSE +"EUCAST 2018" "MIC" "Streptococcus" "Chloramphenicol" "Strep A, B, C, G" 8 16 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" "Chloramphenicol" "Pneumo" 8 16 FALSE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Ciprofloxacin" "Enterobacteriaceae" 0.25 1 FALSE +"EUCAST 2018" "MIC" "Acinetobacter" "Ciprofloxacin" "Acinetobacter spp." 1 2 FALSE +"EUCAST 2018" "MIC" "Aerococcus" "Ciprofloxacin" "Aerococcus" 2 4 FALSE +"EUCAST 2018" "MIC" "Campylobacter" "Ciprofloxacin" "Campylobacter jejuni and coli" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Corynebacterium" "Ciprofloxacin" "Corynebacterium spp." 1 2 FALSE +"EUCAST 2018" "MIC" "UTI" "Enterococcus" "Ciprofloxacin" "Enterococcus" 4 8 TRUE +"EUCAST 2018" "MIC" "Haemophilus influenzae" "Ciprofloxacin" "H. influenzae" 0.064 0.12 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" "Ciprofloxacin" "Kingella" 0.064 0.12 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" "Ciprofloxacin" "M. catarrhalis" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Neisseria gonorrhoeae" "Ciprofloxacin" "N. gonorrhoeae" 0.032 0.12 FALSE +"EUCAST 2018" "MIC" "Neisseria meningitidis" "Ciprofloxacin" "N. meningitidis" 0.032 0.06 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" "Ciprofloxacin" "Pseudo" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Pasteurella multocida" "Ciprofloxacin" "Pasteurella multocida" 0.064 0.12 FALSE +"EUCAST 2018" "MIC" "Salmonella" "Ciprofloxacin" "Enterobacteriaceae" 0.064 0.12 FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus" "Ciprofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Ciprofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" "Ciprofloxacin" "Pneumo" FALSE +"EUCAST 2018" "MIC" "Corynebacterium" "Clindamycin" "Corynebacterium spp." 0.5 1 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" "Clindamycin" "Staphs" 0.25 1 FALSE +"EUCAST 2018" "MIC" "Streptococcus" "Clindamycin" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" "Clindamycin" "Pneumo" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Clindamycin" "Viridans strept" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Helicobacter pylori" "Clarithromycin" "H. pylori" 0.25 1 FALSE +"EUCAST 2018" "MIC" "Haemophilus influenzae" "Clarithromycin" "H. influenzae" 32 64 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" "Clarithromycin" "Kingella" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" "Clarithromycin" "M. catarrhalis" 0.25 1 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" "Clarithromycin" "Staphs" 1 4 FALSE +"EUCAST 2018" "MIC" "Streptococcus" "Clarithromycin" "Strep A, B, C, G" 0.25 1 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" "Clarithromycin" "Pneumo" 0.25 1 FALSE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Colistin" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2018" "MIC" "Acinetobacter" "Colistin" "Acinetobacter spp." 2 4 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" "Colistin" "Pseudo" 4 8 FALSE +"EUCAST 2018" "MIC" "UTI" "Enterobacteriaceae" "Cefpodoxime" "Enterobacteriaceae" 1 2 TRUE +"EUCAST 2018" "MIC" "Haemophilus influenzae" "Cefpodoxime" "H. influenzae" 0.25 1 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" "Cefpodoxime" "Pneumo" 0.25 1 FALSE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Ceftaroline" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Haemophilus influenzae" "Ceftaroline" "H. influenzae" 0.032 0.06 FALSE +"EUCAST 2018" "MIC" "Pneumonia" "Staphylococcus aureus" "Ceftaroline" "Staphs" 1 2 FALSE +"EUCAST 2018" "MIC" "Non-pneumonia" "Staphylococcus aureus" "Ceftaroline" "Staphs" 1 4 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" "Ceftaroline" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Oral" "Enterobacteriaceae" "Ceftriaxone" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2018" "MIC" "Haemophilus influenzae" "Ceftriaxone" "H. influenzae" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" "Ceftriaxone" "Kingella" 0.064 0.12 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" "Ceftriaxone" "M. catarrhalis" 1 4 FALSE +"EUCAST 2018" "MIC" "Neisseria gonorrhoeae" "Ceftriaxone" "N. gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Neisseria meningitidis" "Ceftriaxone" "N. meningitidis" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" "Ceftriaxone" "Pneumo" 0.5 4 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" "Viridans strept" 0.5 1 FALSE +"EUCAST 2018" "MIC" "UTI" "Enterobacteriaceae" "Ceftibuten" "Enterobacteriaceae" 1 2 TRUE +"EUCAST 2018" "MIC" "Haemophilus influenzae" "Ceftibuten" "H. influenzae" 1 2 FALSE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Cefotaxime" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2018" "MIC" "Haemophilus influenzae" "Cefotaxime" "H. influenzae" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" "Cefotaxime" "Kingella" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" "Cefotaxime" "M. catarrhalis" 1 4 FALSE +"EUCAST 2018" "MIC" "Neisseria gonorrhoeae" "Cefotaxime" "N. gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Neisseria meningitidis" "Cefotaxime" "N. meningitidis" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Pasteurella multocida" "Cefotaxime" "Pasteurella multocida" 0.032 0.06 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" "Cefotaxime" "Pneumo" 0.5 4 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Cefotaxime" "Viridans strept" 0.5 1 FALSE +"EUCAST 2018" "MIC" "IV" "Enterobacteriaceae" "Cefuroxime" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2018" "MIC" "UTI" "Enterobacteriaceae" "Cefuroxime" "Enterobacteriaceae" 8 16 TRUE +"EUCAST 2018" "MIC" "IV" "Haemophilus influenzae" "Cefuroxime" "H. influenzae" 1 4 FALSE +"EUCAST 2018" "MIC" "Oral" "Haemophilus influenzae" "Cefuroxime" "H. influenzae" 0.125 2 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" "Cefuroxime" "Kingella" 0.5 1 FALSE +"EUCAST 2018" "MIC" "IV" "Moraxella catarrhalis" "Cefuroxime" "M. catarrhalis" 4 16 FALSE +"EUCAST 2018" "MIC" "Oral" "Moraxella catarrhalis" "Cefuroxime" "M. catarrhalis" 0.125 8 FALSE +"EUCAST 2018" "MIC" "IV" "Streptococcus pneumoniae" "Cefuroxime" "Pneumo" 0.5 2 FALSE +"EUCAST 2018" "MIC" "Oral" "Streptococcus pneumoniae" "Cefuroxime" "Pneumo" 0.25 1 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Cefuroxime" "Viridans strept" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Ceftazidime/avibactam" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" "Ceftazidime/avibactam" "Pseudo" 8 16 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Cefazolin" "Viridans strept" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Ceftolozane/tazobactam" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2018" "MIC" "Pseudomonas aeruginosa" "Ceftolozane/tazobactam" "Pseudo" 4 8 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" "Dalbavancin" "Staphs" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Streptococcus" "Dalbavancin" "Strep A, B, C, G" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Dalbavancin" "Viridans strept" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Clostridium difficile" "Daptomycin" "C. difficile" 4 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" "Daptomycin" "Staphs" 1 2 FALSE +"EUCAST 2018" "MIC" "Streptococcus" "Daptomycin" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Doripenem" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2018" "MIC" "Acinetobacter" "Doripenem" "Acinetobacter spp." 1 4 FALSE +"EUCAST 2018" "MIC" "Haemophilus influenzae" "Doripenem" "H. influenzae" 1 2 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" "Doripenem" "M. catarrhalis" 1 2 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" "Doripenem" "Pseudo" 1 4 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" "Doripenem" "Pneumo" 1 2 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Doripenem" "Viridans strept" 1 2 FALSE +"EUCAST 2018" "MIC" "Haemophilus influenzae" "Doxycycline" "H. influenzae" 1 4 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" "Doxycycline" "Kingella" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" "Doxycycline" "M. catarrhalis" 1 4 FALSE +"EUCAST 2018" "MIC" "Pasteurella multocida" "Doxycycline" "Pasteurella multocida" 1 2 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" "Doxycycline" "Staphs" 1 4 FALSE +"EUCAST 2018" "MIC" "Streptococcus" "Doxycycline" "Strep A, B, C, G" 1 4 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" "Doxycycline" "Pneumo" 1 4 FALSE +"EUCAST 2018" "MIC" "Campylobacter coli" "Erythromycin" "Campylobacter jejuni and coli" 8 16 FALSE +"EUCAST 2018" "MIC" "Campylobacter jejuni" "Erythromycin" "Campylobacter jejuni and coli" 4 8 FALSE +"EUCAST 2018" "MIC" "Haemophilus influenzae" "Erythromycin" "H. influenzae" 16 32 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" "Erythromycin" "Kingella" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Listeria monocytogenes" "Erythromycin" "Listeria monocytogenes" 1 2 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" "Erythromycin" "M. catarrhalis" 0.25 1 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" "Erythromycin" "Staphs" 1 4 FALSE +"EUCAST 2018" "MIC" "Streptococcus" "Erythromycin" "Strep A, B, C, G" 0.25 1 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" "Erythromycin" "Pneumo" 0.25 1 FALSE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Ertapenem" "Enterobacteriaceae" 0.5 2 FALSE +"EUCAST 2018" "MIC" "Haemophilus influenzae" "Ertapenem" "H. influenzae" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" "Ertapenem" "M. catarrhalis" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" "Ertapenem" "Pneumo" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Ertapenem" "Viridans strept" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Cefepime" "Enterobacteriaceae" 1 8 FALSE +"EUCAST 2018" "MIC" "Haemophilus influenzae" "Cefepime" "H. influenzae" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" "Cefepime" "M. catarrhalis" 4 8 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" "Cefepime" "Pseudo" 8 16 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" "Cefepime" "Pneumo" 1 4 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Cefepime" "Viridans strept" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Candida" "Fluconazole" "Candida" 2 8 FALSE +"EUCAST 2018" "MIC" "Candida" "Fluconazole" "Candida" FALSE +"EUCAST 2018" "MIC" "Candida albicans" "Fluconazole" "Candida" 2 8 FALSE +"EUCAST 2018" "MIC" "Candida glabrata" "Fluconazole" "Candida" 0.002 64 FALSE +"EUCAST 2018" "MIC" "Candida parapsilosis" "Fluconazole" "Candida" 2 8 FALSE +"EUCAST 2018" "MIC" "Candida tropicalis" "Fluconazole" "Candida" 2 8 FALSE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Fosfomycin" "Enterobacteriaceae" 32 64 FALSE +"EUCAST 2018" "MIC" "UTI" "Enterobacteriaceae" "Fosfomycin" "Enterobacteriaceae" 32 64 TRUE +"EUCAST 2018" "MIC" "Staphylococcus" "Fosfomycin" "Staphs" 32 64 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" "Cefoxitin" "Staphs" 8 16 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" "Cefoxitin" "Staphs" FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus" "Cefoxitin" "Staphs" 4 8 FALSE +"EUCAST 2018" "MIC" "Staphylococcus lugdunensis" "Cefoxitin" "Staphs" 4 8 FALSE +"EUCAST 2018" "MIC" "Clostridium difficile" "Fusidic acid" "C. difficile" 2 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" "Fusidic acid" "Staphs" 1 2 FALSE +"EUCAST 2018" "DISK" "Enterococcus" "Gentamicin-high" "Enterococcus" "30ug" 8 7 FALSE +"EUCAST 2018" "MIC" "Enterococcus" "Gentamicin-high" "Enterococcus" 128 128 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Gentamicin-high" "Viridans strept" 128 128 FALSE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Gentamicin" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2018" "MIC" "Acinetobacter" "Gentamicin" "Acinetobacter spp." 4 8 FALSE +"EUCAST 2018" "MIC" "Corynebacterium" "Gentamicin" "Corynebacterium spp." 1 2 FALSE +"EUCAST 2018" "DISK" "Enterococcus" "Gentamicin" "Enterococcus" "30ug" 8 7 FALSE +"EUCAST 2018" "MIC" "Enterococcus" "Gentamicin" "Enterococcus" 128 128 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" "Gentamicin" "Pseudo" 4 8 FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus" "Gentamicin" "Staphs" 1 2 FALSE +"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Gentamicin" "Staphs" 1 2 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Gentamicin" "Viridans strept" 128 128 FALSE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Imipenem" "Enterobacteriaceae" 2 16 FALSE +"EUCAST 2018" "MIC" "Acinetobacter" "Imipenem" "Acinetobacter spp." 2 16 FALSE +"EUCAST 2018" "MIC" "Enterococcus" "Imipenem" "Enterococcus" 4 16 FALSE +"EUCAST 2018" "MIC" "Haemophilus influenzae" "Imipenem" "H. influenzae" 2 4 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" "Imipenem" "M. catarrhalis" 2 4 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" "Imipenem" "Pseudo" 4 16 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" "Imipenem" "Pneumo" 2 4 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Imipenem" "Viridans strept" 2 4 FALSE +"EUCAST 2018" "MIC" "Candida albicans" "Itraconazole" "Candida" 0.064 0.12 FALSE +"EUCAST 2018" "MIC" "Candida parapsilosis" "Itraconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Candida tropicalis" "Itraconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" "Kanamycin" "Staphs" 8 16 FALSE +"EUCAST 2018" "DISK" "Staphylococcus aureus" "Kanamycin" "Staphs" "30" 18 17 FALSE +"EUCAST 2018" "MIC" "UTI" "Enterobacteriaceae" "Cephalexin" "Enterobacteriaceae" 16 32 TRUE +"EUCAST 2018" "MIC" "Corynebacterium" "Linezolid" "Corynebacterium spp." 2 4 FALSE +"EUCAST 2018" "MIC" "Enterococcus" "Linezolid" "Enterococcus" 4 8 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" "Linezolid" "Staphs" 4 8 FALSE +"EUCAST 2018" "MIC" "Streptococcus" "Linezolid" "Strep A, B, C, G" 2 8 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" "Linezolid" "Pneumo" 2 8 FALSE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Levofloxacin" "Enterobacteriaceae" 0.5 2 FALSE +"EUCAST 2018" "MIC" "Acinetobacter" "Levofloxacin" "Acinetobacter spp." 0.5 2 FALSE +"EUCAST 2018" "MIC" "Aerococcus" "Levofloxacin" "Aerococcus" 2 4 FALSE +"EUCAST 2018" "MIC" "UTI" "Enterococcus" "Levofloxacin" "Enterococcus" 4 8 TRUE +"EUCAST 2018" "MIC" "Helicobacter pylori" "Levofloxacin" "H. pylori" 1 2 FALSE +"EUCAST 2018" "MIC" "Haemophilus influenzae" "Levofloxacin" "H. influenzae" 0.064 0.12 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" "Levofloxacin" "Kingella" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" "Levofloxacin" "M. catarrhalis" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" "Levofloxacin" "Pseudo" 1 2 FALSE +"EUCAST 2018" "MIC" "Pasteurella multocida" "Levofloxacin" "Pasteurella multocida" 0.064 0.12 FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus" "Levofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Levofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2018" "MIC" "Streptococcus" "Levofloxacin" "Strep A, B, C, G" 1 4 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" "Levofloxacin" "Pneumo" 2 4 FALSE +"EUCAST 2018" "MIC" "UTI" "Enterobacteriaceae" "Mecillinam (Amdinocillin)" "Enterobacteriaceae" 8 16 TRUE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Meropenem" "Enterobacteriaceae" 2 16 FALSE +"EUCAST 2018" "MIC" "Acinetobacter" "Meropenem" "Acinetobacter spp." 2 16 FALSE +"EUCAST 2018" "MIC" "Aerococcus" "Meropenem" "Aerococcus" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Non-meningitis" "Haemophilus influenzae" "Meropenem" "H. influenzae" 2 4 FALSE +"EUCAST 2018" "MIC" "Meningitis" "Haemophilus influenzae" "Meropenem" "H. influenzae" 0.25 2 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" "Meropenem" "Kingella" 0.032 0.06 FALSE +"EUCAST 2018" "MIC" "Listeria monocytogenes" "Meropenem" "Listeria monocytogenes" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" "Meropenem" "M. catarrhalis" 2 4 FALSE +"EUCAST 2018" "MIC" "Neisseria meningitidis" "Meropenem" "N. meningitidis" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" "Meropenem" "Pseudo" 2 16 FALSE +"EUCAST 2018" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Meropenem" "Pneumo" 2 4 FALSE +"EUCAST 2018" "MIC" "Meningitis" "Streptococcus pneumoniae" "Meropenem" "Pneumo" 0.25 2 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Meropenem" "Viridans strept" 2 4 FALSE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Moxifloxacin" "Enterobacteriaceae" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Corynebacterium" "Moxifloxacin" "Corynebacterium spp." 0.5 1 FALSE +"EUCAST 2018" "MIC" "Clostridium difficile" "Moxifloxacin" "C. difficile" 4 FALSE +"EUCAST 2018" "MIC" "Haemophilus influenzae" "Moxifloxacin" "H. influenzae" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" "Moxifloxacin" "M. catarrhalis" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus" "Moxifloxacin" "Staphs" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Moxifloxacin" "Staphs" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Streptococcus" "Moxifloxacin" "Strep A, B, C, G" 0.5 2 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" "Moxifloxacin" "Pneumo" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Candida albicans" "Micafungin" "Candida" 0.016 0.03 FALSE +"EUCAST 2018" "MIC" "Candida glabrata" "Micafungin" "Candida" 0.032 0.06 FALSE +"EUCAST 2018" "MIC" "Candida parapsilosis" "Micafungin" "Candida" 0.002 4 FALSE +"EUCAST 2018" "MIC" "Haemophilus influenzae" "Minocycline" "H. influenzae" 1 4 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" "Minocycline" "M. catarrhalis" 1 4 FALSE +"EUCAST 2018" "MIC" "Neisseria meningitidis" "Minocycline" "N. meningitidis" 1 4 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" "Minocycline" "Staphs" 0.5 2 FALSE +"EUCAST 2018" "MIC" "Streptococcus" "Minocycline" "Strep A, B, C, G" 0.5 2 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" "Minocycline" "Pneumo" 0.5 2 FALSE +"EUCAST 2018" "MIC" "Clostridium difficile" "Metronidazole" "C. difficile" 2 4 FALSE +"EUCAST 2018" "MIC" "Helicobacter pylori" "Metronidazole" "H. pylori" 8 16 FALSE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Netilmicin" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2018" "MIC" "Acinetobacter" "Netilmicin" "Acinetobacter spp." 4 8 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" "Netilmicin" "Pseudo" 4 8 FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus" "Netilmicin" "Staphs" 1 2 FALSE +"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Netilmicin" "Staphs" 1 2 FALSE +"EUCAST 2018" "MIC" "UTI" "Enterobacteriaceae" "Nitrofurantoin" "Enterobacteriaceae" 64 128 TRUE +"EUCAST 2018" "MIC" "Aerococcus" "Nitrofurantoin" "Aerococcus" 16 32 FALSE +"EUCAST 2018" "MIC" "UTI" "Enterococcus faecalis" "Nitrofurantoin" "Enterococcus" 64 128 TRUE +"EUCAST 2018" "MIC" "UTI" "Staphylococcus" "Nitrofurantoin" "Staphs" 64 128 TRUE +"EUCAST 2018" "MIC" "UTI" "Streptococcus group B" "Nitrofurantoin" "Strep A, B, C, G" 64 128 TRUE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Norfloxacin" "Enterobacteriaceae" 0.5 2 FALSE +"EUCAST 2018" "MIC" "UTI" "Enterobacteriaceae" "Nitroxoline" "Enterobacteriaceae" 16 32 TRUE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Ofloxacin" "Enterobacteriaceae" 0.25 1 FALSE +"EUCAST 2018" "MIC" "Haemophilus influenzae" "Ofloxacin" "H. influenzae" 0.064 0.12 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" "Ofloxacin" "M. catarrhalis" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Neisseria gonorrhoeae" "Ofloxacin" "N. gonorrhoeae" 0.125 0.5 FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus" "Ofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Ofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" "Ofloxacin" "Pneumo" FALSE +"EUCAST 2018" "MIC" "Staphylococcus" "Oritavancin" "Staphs" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Streptococcus" "Oritavancin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Oritavancin" "Viridans strept" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" "Oxacillin" "Staphs" 2 4 FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus" "Oxacillin" "Staphs" 2 4 FALSE +"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Oxacillin" "Staphs" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Staphylococcus epidermidis" "Oxacillin" "Staphs" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Staphylococcus lugdunensis" "Oxacillin" "Staphs" 2 4 FALSE +"EUCAST 2018" "MIC" "Aerococcus" "Penicillin G" "Aerococcus" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Corynebacterium" "Penicillin G" "Corynebacterium spp." 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" "Penicillin G" "Kingella" 0.032 0.06 FALSE +"EUCAST 2018" "MIC" "Listeria monocytogenes" "Penicillin G" "Listeria monocytogenes" 1 2 FALSE +"EUCAST 2018" "MIC" "Neisseria gonorrhoeae" "Penicillin G" "N. gonorrhoeae" 0.064 2 FALSE +"EUCAST 2018" "MIC" "Neisseria meningitidis" "Penicillin G" "N. meningitidis" 0.064 0.5 FALSE +"EUCAST 2018" "MIC" "Pasteurella multocida" "Penicillin G" "Pasteurella multocida" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus" "Penicillin G" "Staphs" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Staphylococcus lugdunensis" "Penicillin G" "Staphs" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Streptococcus" "Penicillin G" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Penicillin G" "Pneumo" 0.064 4 FALSE +"EUCAST 2018" "MIC" "Meningitis" "Streptococcus pneumoniae" "Penicillin G" "Pneumo" 0.064 0.12 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Penicillin G" "Viridans strept" 0.25 4 FALSE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Piperacillin" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" "Piperacillin" "Pseudo" 16 32 FALSE +"EUCAST 2018" "MIC" "Aspergillus fumigatus" "Posaconazole" "Aspergillus" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Aspergillus terreus" "Posaconazole" "Aspergillus" 0.125 0.5 FALSE +"EUCAST 2018" "MIC" "Candida albicans" "Posaconazole" "Candida" 0.064 0.12 FALSE +"EUCAST 2018" "MIC" "Candida parapsilosis" "Posaconazole" "Candida" 0.064 0.12 FALSE +"EUCAST 2018" "MIC" "Candida tropicalis" "Posaconazole" "Candida" 0.064 0.12 FALSE +"EUCAST 2018" "MIC" "Enterococcus" "Quinupristin/dalfopristin" "Enterococcus" 1 8 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" "Quinupristin/dalfopristin" "Staphs" 1 4 FALSE +"EUCAST 2018" "MIC" "Aerococcus" "Rifampicin" "Aerococcus" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Corynebacterium" "Rifampicin" "Corynebacterium spp." 0.064 1 FALSE +"EUCAST 2018" "MIC" "Clostridium difficile" "Rifampicin" "C. difficile" 0.004 FALSE +"EUCAST 2018" "MIC" "Helicobacter pylori" "Rifampicin" "H. pylori" 1 2 FALSE +"EUCAST 2018" "MIC" "Prophylaxis" "Haemophilus influenzae" "Rifampicin" "H. influenzae" 1 2 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" "Rifampicin" "Kingella" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Neisseria meningitidis" "Rifampicin" "N. meningitidis" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" "Rifampicin" "Staphs" 0.064 1 FALSE +"EUCAST 2018" "MIC" "Streptococcus" "Rifampicin" "Strep A, B, C, G" 0.064 1 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" "Rifampicin" "Pneumo" 0.064 1 FALSE +"EUCAST 2018" "MIC" "Haemophilus influenzae" "Roxithromycin" "H. influenzae" FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" "Roxithromycin" "M. catarrhalis" 0.5 2 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" "Roxithromycin" "Staphs" 1 4 FALSE +"EUCAST 2018" "MIC" "Streptococcus" "Roxithromycin" "Strep A, B, C, G" 0.5 2 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" "Roxithromycin" "Pneumo" 0.5 2 FALSE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Ampicillin/sulbactam" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2018" "MIC" "Enterococcus" "Ampicillin/sulbactam" "Enterococcus" 4 16 FALSE +"EUCAST 2018" "MIC" "Haemophilus influenzae" "Ampicillin/sulbactam" "H. influenzae" 1 2 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" "Ampicillin/sulbactam" "M. catarrhalis" 1 2 FALSE +"EUCAST 2018" "MIC" "Neisseria gonorrhoeae" "Spectinomycin" "N. gonorrhoeae" 64 128 FALSE +"EUCAST 2018" "DISK" "Enterococcus" "Streptomycin-high" "Enterococcus" "300ug" 14 13 FALSE +"EUCAST 2018" "MIC" "Enterococcus" "Streptomycin-high" "Enterococcus" 512 1024 FALSE +"EUCAST 2018" "DISK" "Enterococcus" "Streptoduocin" "Enterococcus" "300ug" 14 13 FALSE +"EUCAST 2018" "MIC" "Enterococcus" "Streptoduocin" "Enterococcus" 512 1024 FALSE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2018" "MIC" "Acinetobacter" "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 8 FALSE +"EUCAST 2018" "MIC" "Enterococcus" "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 2 FALSE +"EUCAST 2018" "MIC" "Haemophilus influenzae" "Trimethoprim/sulfamethoxazole" "H. influenzae" 0.5 2 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" "Trimethoprim/sulfamethoxazole" "Kingella" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Listeria monocytogenes" "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" 0.064 0.12 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" "M. catarrhalis" 0.5 2 FALSE +"EUCAST 2018" "MIC" "Pasteurella multocida" "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Stenotrophomonas maltophilia" "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 4 8 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" "Trimethoprim/sulfamethoxazole" "Staphs" 2 8 FALSE +"EUCAST 2018" "MIC" "Streptococcus" "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 4 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" "Pneumo" 1 4 FALSE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" "Ticarcillin/clavulanic acid" "Pseudo" 16 32 FALSE +"EUCAST 2018" "MIC" "Campylobacter" "Tetracycline" "Campylobacter jejuni and coli" 2 4 FALSE +"EUCAST 2018" "MIC" "Corynebacterium" "Tetracycline" "Corynebacterium spp." 2 4 FALSE +"EUCAST 2018" "MIC" "Helicobacter pylori" "Tetracycline" "H. pylori" 1 2 FALSE +"EUCAST 2018" "MIC" "Haemophilus influenzae" "Tetracycline" "H. influenzae" 1 4 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" "Tetracycline" "Kingella" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" "Tetracycline" "M. catarrhalis" 1 4 FALSE +"EUCAST 2018" "MIC" "Neisseria gonorrhoeae" "Tetracycline" "N. gonorrhoeae" 0.5 2 FALSE +"EUCAST 2018" "MIC" "Neisseria meningitidis" "Tetracycline" "N. meningitidis" 1 4 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" "Tetracycline" "Staphs" 1 4 FALSE +"EUCAST 2018" "MIC" "Streptococcus" "Tetracycline" "Strep A, B, C, G" 1 4 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" "Tetracycline" "Pneumo" 1 4 FALSE +"EUCAST 2018" "MIC" "Enterococcus" "Teicoplanin" "Enterococcus" 2 4 FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus" "Teicoplanin" "Staphs" 2 4 FALSE +"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Teicoplanin" "Staphs" 4 8 FALSE +"EUCAST 2018" "MIC" "Streptococcus" "Teicoplanin" "Strep A, B, C, G" 2 4 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" "Teicoplanin" "Pneumo" 2 4 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Teicoplanin" "Viridans strept" 2 4 FALSE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Tigecycline" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2018" "MIC" "Clostridium difficile" "Tigecycline" "C. difficile" 0.25 FALSE +"EUCAST 2018" "MIC" "Enterococcus" "Tigecycline" "Enterococcus" 0.25 1 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" "Tigecycline" "Staphs" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Streptococcus" "Tigecycline" "Strep A, B, C, G" 0.25 1 FALSE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Ticarcillin" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" "Ticarcillin" "Pseudo" 16 32 FALSE +"EUCAST 2018" "MIC" "Haemophilus influenzae" "Telithromycin" "H. influenzae" 8 16 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" "Telithromycin" "M. catarrhalis" 0.25 1 FALSE +"EUCAST 2018" "MIC" "Streptococcus" "Telithromycin" "Strep A, B, C, G" 0.25 1 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" "Telithromycin" "Pneumo" 0.25 1 FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus" "Telavancin" "Staphs" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "UTI" "Enterobacteriaceae" "Trimethoprim" "Enterobacteriaceae" 2 8 TRUE +"EUCAST 2018" "MIC" "UTI" "Enterococcus" "Trimethoprim" "Enterococcus" 0.032 2 TRUE +"EUCAST 2018" "MIC" "UTI" "Staphylococcus" "Trimethoprim" "Staphs" 2 8 TRUE +"EUCAST 2018" "MIC" "UTI" "Streptococcus group B" "Trimethoprim" "Strep A, B, C, G" 2 4 TRUE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Tobramycin" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2018" "MIC" "Acinetobacter" "Tobramycin" "Acinetobacter spp." 4 8 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" "Tobramycin" "Pseudo" 4 8 FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus" "Tobramycin" "Staphs" 1 2 FALSE +"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Tobramycin" "Staphs" 1 2 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" "Tedizolid" "Staphs" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Streptococcus" "Tedizolid" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Tedizolid" "Viridans strept" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Enterobacteriaceae" "Piperacillin/tazobactam" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" "Piperacillin/tazobactam" "Pseudo" 16 32 FALSE +"EUCAST 2018" "MIC" "Aerococcus" "Vancomycin" "Aerococcus" 1 2 FALSE +"EUCAST 2018" "MIC" "Corynebacterium" "Vancomycin" "Corynebacterium spp." 2 4 FALSE +"EUCAST 2018" "MIC" "Clostridium difficile" "Vancomycin" "C. difficile" 2 4 FALSE +"EUCAST 2018" "MIC" "Enterococcus" "Vancomycin" "Enterococcus" 4 8 FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus" "Vancomycin" "Staphs" 2 4 FALSE +"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Vancomycin" "Staphs" 4 8 FALSE +"EUCAST 2018" "MIC" "Streptococcus" "Vancomycin" "Strep A, B, C, G" 2 4 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" "Vancomycin" "Pneumo" 2 4 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Vancomycin" "Viridans strept" 2 4 FALSE +"EUCAST 2018" "MIC" "Aspergillus fumigatus" "Voriconazole" "Aspergillus" 1 4 FALSE +"EUCAST 2018" "MIC" "Candida albicans" "Voriconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Candida parapsilosis" "Voriconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Candida tropicalis" "Voriconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "Aspergillus fumigatus" "Amphotericin B" "Aspergillus" 1 4 FALSE +"EUCAST 2017" "MIC" "Aspergillus nidulans" "Amphotericin B" "Aspergillus" 1 4 FALSE +"EUCAST 2017" "MIC" "Candida" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2017" "MIC" "Candida albicans" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2017" "MIC" "Candida glabrata" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2017" "MIC" "Candida parapsilosis" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2017" "MIC" "Candida tropicalis" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2017" "MIC" "UTI" "Enterobacteriaceae" "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 32 64 TRUE +"EUCAST 2017" "MIC" "Enterococcus" "Amoxicillin/clavulanic acid" "Enterococcus" 4 16 FALSE +"EUCAST 2017" "MIC" "Haemophilus influenzae" "Amoxicillin/clavulanic acid" "H. influenzae" 2 4 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" "M. catarrhalis" 1 2 FALSE +"EUCAST 2017" "MIC" "Pasteurella multocida" "Amoxicillin/clavulanic acid" "Pasteurella multocida" 1 2 FALSE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Amikacin" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2017" "MIC" "Acinetobacter" "Amikacin" "Acinetobacter spp." 8 32 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" "Amikacin" "Pseudo" 8 32 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus" "Amikacin" "Staphs" 8 32 FALSE +"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Amikacin" "Staphs" 8 32 FALSE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Ampicillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2017" "MIC" "Aerococcus" "Ampicillin" "Aerococcus" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "Enterococcus" "Ampicillin" "Enterococcus" 4 16 FALSE +"EUCAST 2017" "MIC" "Haemophilus influenzae" "Ampicillin" "H. influenzae" 1 2 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" "Ampicillin" "Kingella" 0.064 0.12 FALSE +"EUCAST 2017" "MIC" "Listeria monocytogenes" "Ampicillin" "Listeria monocytogenes" 1 2 FALSE +"EUCAST 2017" "MIC" "Neisseria meningitidis" "Ampicillin" "N. meningitidis" 0.125 2 FALSE +"EUCAST 2017" "MIC" "Pasteurella multocida" "Ampicillin" "Pasteurella multocida" 1 2 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" "Ampicillin" "Pneumo" 0.5 4 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Ampicillin" "Viridans strept" 0.5 4 FALSE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Amoxicillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2017" "MIC" "Enterococcus" "Amoxicillin" "Enterococcus" 4 16 FALSE +"EUCAST 2017" "MIC" "Helicobacter pylori" "Amoxicillin" "H. pylori" 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "Haemophilus influenzae" "Amoxicillin" "H. influenzae" 2 4 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" "Amoxicillin" "Kingella" 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "Neisseria meningitidis" "Amoxicillin" "N. meningitidis" 0.125 2 FALSE +"EUCAST 2017" "MIC" "Pasteurella multocida" "Amoxicillin" "Pasteurella multocida" 1 2 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Amoxicillin" "Viridans strept" 0.5 4 FALSE +"EUCAST 2017" "MIC" "Candida" "Anidulafungin" "Candida" 0.064 0.12 FALSE +"EUCAST 2017" "MIC" "Candida albicans" "Anidulafungin" "Candida" 0.032 0.06 FALSE +"EUCAST 2017" "MIC" "Candida glabrata" "Anidulafungin" "Candida" 0.064 0.12 FALSE +"EUCAST 2017" "MIC" "Candida parapsilosis" "Anidulafungin" "Candida" 0.002 8 FALSE +"EUCAST 2017" "MIC" "Candida tropicalis" "Anidulafungin" "Candida" 0.064 0.12 FALSE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Aztreonam" "Enterobacteriaceae" 1 8 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" "Aztreonam" "Pseudo" 1 32 FALSE +"EUCAST 2017" "MIC" "Haemophilus influenzae" "Azithromycin" "H. influenzae" 0.125 8 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" "Azithromycin" "Kingella" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" "Azithromycin" "M. catarrhalis" 0.25 1 FALSE +"EUCAST 2017" "MIC" "Neisseria gonorrhoeae" "Azithromycin" "N. gonorrhoeae" 0.25 1 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" "Azithromycin" "Staphs" 1 4 FALSE +"EUCAST 2017" "MIC" "Streptococcus" "Azithromycin" "Strep A, B, C, G" 0.25 1 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" "Azithromycin" "Pneumo" 0.25 1 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus" "Ceftobiprole" "Staphs" 2 4 FALSE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Ceftazidime" "Enterobacteriaceae" 1 8 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" "Ceftazidime" "Pseudo" 8 16 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" "Cefaclor" "Pneumo" 0.032 1 FALSE +"EUCAST 2017" "MIC" "UTI" "Enterobacteriaceae" "Cefixime" "Enterobacteriaceae" 1 2 TRUE +"EUCAST 2017" "MIC" "Haemophilus influenzae" "Cefixime" "H. influenzae" 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" "Cefixime" "M. catarrhalis" 0.5 2 FALSE +"EUCAST 2017" "MIC" "Neisseria gonorrhoeae" "Cefixime" "N. gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "UTI" "Enterobacteriaceae" "Cefadroxil" "Enterobacteriaceae" 16 32 TRUE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Chloramphenicol" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2017" "MIC" "Haemophilus influenzae" "Chloramphenicol" "H. influenzae" 2 4 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" "Chloramphenicol" "M. catarrhalis" 2 4 FALSE +"EUCAST 2017" "MIC" "Neisseria meningitidis" "Chloramphenicol" "N. meningitidis" 2 8 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" "Chloramphenicol" "Staphs" 8 16 FALSE +"EUCAST 2017" "MIC" "Streptococcus" "Chloramphenicol" "Strep A, B, C, G" 8 16 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" "Chloramphenicol" "Pneumo" 8 16 FALSE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Ciprofloxacin" "Enterobacteriaceae" 0.25 1 FALSE +"EUCAST 2017" "MIC" "Acinetobacter" "Ciprofloxacin" "Acinetobacter spp." 1 2 FALSE +"EUCAST 2017" "MIC" "Aerococcus" "Ciprofloxacin" "Aerococcus" 2 4 FALSE +"EUCAST 2017" "MIC" "Campylobacter" "Ciprofloxacin" "Campylobacter jejuni and coli" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Corynebacterium" "Ciprofloxacin" "Corynebacterium spp." 1 2 FALSE +"EUCAST 2017" "MIC" "UTI" "Enterococcus" "Ciprofloxacin" "Enterococcus" 4 8 TRUE +"EUCAST 2017" "MIC" "Haemophilus influenzae" "Ciprofloxacin" "H. influenzae" 0.064 0.12 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" "Ciprofloxacin" "Kingella" 0.064 0.12 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" "Ciprofloxacin" "M. catarrhalis" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Neisseria gonorrhoeae" "Ciprofloxacin" "N. gonorrhoeae" 0.032 0.12 FALSE +"EUCAST 2017" "MIC" "Neisseria meningitidis" "Ciprofloxacin" "N. meningitidis" 0.032 0.06 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" "Ciprofloxacin" "Pseudo" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Pasteurella multocida" "Ciprofloxacin" "Pasteurella multocida" 0.064 0.12 FALSE +"EUCAST 2017" "MIC" "Salmonella" "Ciprofloxacin" "Enterobacteriaceae" 0.064 0.12 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus" "Ciprofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Ciprofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" "Ciprofloxacin" "Pneumo" FALSE +"EUCAST 2017" "MIC" "Corynebacterium" "Clindamycin" "Corynebacterium spp." 0.5 1 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" "Clindamycin" "Staphs" 0.25 1 FALSE +"EUCAST 2017" "MIC" "Streptococcus" "Clindamycin" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" "Clindamycin" "Pneumo" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Clindamycin" "Viridans strept" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Helicobacter pylori" "Clarithromycin" "H. pylori" 0.25 1 FALSE +"EUCAST 2017" "MIC" "Haemophilus influenzae" "Clarithromycin" "H. influenzae" 1 64 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" "Clarithromycin" "Kingella" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" "Clarithromycin" "M. catarrhalis" 0.25 1 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" "Clarithromycin" "Staphs" 1 4 FALSE +"EUCAST 2017" "MIC" "Streptococcus" "Clarithromycin" "Strep A, B, C, G" 0.25 1 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" "Clarithromycin" "Pneumo" 0.25 1 FALSE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Colistin" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2017" "MIC" "Acinetobacter" "Colistin" "Acinetobacter spp." 2 4 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" "Colistin" "Pseudo" 4 8 FALSE +"EUCAST 2017" "MIC" "UTI" "Enterobacteriaceae" "Cefpodoxime" "Enterobacteriaceae" 1 2 TRUE +"EUCAST 2017" "MIC" "Haemophilus influenzae" "Cefpodoxime" "H. influenzae" 0.25 1 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" "Cefpodoxime" "Pneumo" 0.25 1 FALSE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Ceftaroline" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Haemophilus influenzae" "Ceftaroline" "H. influenzae" 0.032 0.06 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus" "Ceftaroline" "Staphs" 1 2 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" "Ceftaroline" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "Oral" "Enterobacteriaceae" "Ceftriaxone" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2017" "MIC" "Haemophilus influenzae" "Ceftriaxone" "H. influenzae" 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" "Ceftriaxone" "Kingella" 0.064 0.12 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" "Ceftriaxone" "M. catarrhalis" 1 4 FALSE +"EUCAST 2017" "MIC" "Neisseria gonorrhoeae" "Ceftriaxone" "N. gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "Neisseria meningitidis" "Ceftriaxone" "N. meningitidis" 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" "Ceftriaxone" "Pneumo" 0.5 4 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" "Viridans strept" 0.5 1 FALSE +"EUCAST 2017" "MIC" "UTI" "Enterobacteriaceae" "Ceftibuten" "Enterobacteriaceae" 1 2 TRUE +"EUCAST 2017" "MIC" "Haemophilus influenzae" "Ceftibuten" "H. influenzae" 1 2 FALSE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Cefotaxime" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2017" "MIC" "Haemophilus influenzae" "Cefotaxime" "H. influenzae" 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" "Cefotaxime" "Kingella" 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" "Cefotaxime" "M. catarrhalis" 1 4 FALSE +"EUCAST 2017" "MIC" "Neisseria gonorrhoeae" "Cefotaxime" "N. gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "Neisseria meningitidis" "Cefotaxime" "N. meningitidis" 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "Pasteurella multocida" "Cefotaxime" "Pasteurella multocida" 0.032 0.06 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" "Cefotaxime" "Pneumo" 0.5 4 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Cefotaxime" "Viridans strept" 0.5 1 FALSE +"EUCAST 2017" "MIC" "IV" "Enterobacteriaceae" "Cefuroxime" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2017" "MIC" "UTI" "Enterobacteriaceae" "Cefuroxime" "Enterobacteriaceae" 8 16 TRUE +"EUCAST 2017" "MIC" "IV" "Haemophilus influenzae" "Cefuroxime" "H. influenzae" 1 4 FALSE +"EUCAST 2017" "MIC" "Oral" "Haemophilus influenzae" "Cefuroxime" "H. influenzae" 0.125 2 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" "Cefuroxime" "Kingella" 0.5 1 FALSE +"EUCAST 2017" "MIC" "IV" "Moraxella catarrhalis" "Cefuroxime" "M. catarrhalis" 4 16 FALSE +"EUCAST 2017" "MIC" "Oral" "Moraxella catarrhalis" "Cefuroxime" "M. catarrhalis" 0.125 8 FALSE +"EUCAST 2017" "MIC" "IV" "Streptococcus pneumoniae" "Cefuroxime" "Pneumo" 0.5 2 FALSE +"EUCAST 2017" "MIC" "Oral" "Streptococcus pneumoniae" "Cefuroxime" "Pneumo" 0.25 1 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Cefuroxime" "Viridans strept" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Ceftazidime/avibactam" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" "Ceftazidime/avibactam" "Pseudo" 8 16 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Cefazolin" "Viridans strept" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Ceftolozane/tazobactam" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" "Ceftolozane/tazobactam" "Pseudo" 4 8 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" "Dalbavancin" "Staphs" 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "Streptococcus" "Dalbavancin" "Strep A, B, C, G" 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Dalbavancin" "Viridans strept" 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "Clostridium difficile" "Daptomycin" "C. difficile" 4 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" "Daptomycin" "Staphs" 1 2 FALSE +"EUCAST 2017" "MIC" "Streptococcus" "Daptomycin" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Doripenem" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2017" "MIC" "Acinetobacter" "Doripenem" "Acinetobacter spp." 1 4 FALSE +"EUCAST 2017" "MIC" "Haemophilus influenzae" "Doripenem" "H. influenzae" 1 2 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" "Doripenem" "M. catarrhalis" 1 2 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" "Doripenem" "Pseudo" 1 4 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" "Doripenem" "Pneumo" 1 2 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Doripenem" "Viridans strept" 1 2 FALSE +"EUCAST 2017" "MIC" "Haemophilus influenzae" "Doxycycline" "H. influenzae" 1 4 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" "Doxycycline" "Kingella" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" "Doxycycline" "M. catarrhalis" 1 4 FALSE +"EUCAST 2017" "MIC" "Pasteurella multocida" "Doxycycline" "Pasteurella multocida" 1 2 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" "Doxycycline" "Staphs" 1 4 FALSE +"EUCAST 2017" "MIC" "Streptococcus" "Doxycycline" "Strep A, B, C, G" 1 4 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" "Doxycycline" "Pneumo" 1 4 FALSE +"EUCAST 2017" "MIC" "Campylobacter coli" "Erythromycin" "Campylobacter jejuni and coli" 8 16 FALSE +"EUCAST 2017" "MIC" "Campylobacter jejuni" "Erythromycin" "Campylobacter jejuni and coli" 4 8 FALSE +"EUCAST 2017" "MIC" "Haemophilus influenzae" "Erythromycin" "H. influenzae" 0.5 32 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" "Erythromycin" "Kingella" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Listeria monocytogenes" "Erythromycin" "Listeria monocytogenes" 1 2 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" "Erythromycin" "M. catarrhalis" 0.25 1 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" "Erythromycin" "Staphs" 1 4 FALSE +"EUCAST 2017" "MIC" "Streptococcus" "Erythromycin" "Strep A, B, C, G" 0.25 1 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" "Erythromycin" "Pneumo" 0.25 1 FALSE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Ertapenem" "Enterobacteriaceae" 0.5 2 FALSE +"EUCAST 2017" "MIC" "Haemophilus influenzae" "Ertapenem" "H. influenzae" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" "Ertapenem" "M. catarrhalis" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" "Ertapenem" "Pneumo" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Ertapenem" "Viridans strept" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Cefepime" "Enterobacteriaceae" 1 8 FALSE +"EUCAST 2017" "MIC" "Haemophilus influenzae" "Cefepime" "H. influenzae" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" "Cefepime" "M. catarrhalis" 4 8 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" "Cefepime" "Pseudo" 8 16 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" "Cefepime" "Pneumo" 1 4 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Cefepime" "Viridans strept" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Candida" "Fluconazole" "Candida" 2 8 FALSE +"EUCAST 2017" "MIC" "Candida" "Fluconazole" "Candida" FALSE +"EUCAST 2017" "MIC" "Candida albicans" "Fluconazole" "Candida" 2 8 FALSE +"EUCAST 2017" "MIC" "Candida glabrata" "Fluconazole" "Candida" 0.002 64 FALSE +"EUCAST 2017" "MIC" "Candida parapsilosis" "Fluconazole" "Candida" 2 8 FALSE +"EUCAST 2017" "MIC" "Candida tropicalis" "Fluconazole" "Candida" 2 8 FALSE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Fosfomycin" "Enterobacteriaceae" 32 64 FALSE +"EUCAST 2017" "MIC" "UTI" "Enterobacteriaceae" "Fosfomycin" "Enterobacteriaceae" 32 64 TRUE +"EUCAST 2017" "MIC" "Staphylococcus" "Fosfomycin" "Staphs" 32 64 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" "Cefoxitin" "Staphs" 8 16 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" "Cefoxitin" "Staphs" FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus" "Cefoxitin" "Staphs" 4 8 FALSE +"EUCAST 2017" "MIC" "Staphylococcus lugdunensis" "Cefoxitin" "Staphs" 4 8 FALSE +"EUCAST 2017" "MIC" "Clostridium difficile" "Fusidic acid" "C. difficile" 2 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" "Fusidic acid" "Staphs" 1 2 FALSE +"EUCAST 2017" "DISK" "Enterococcus" "Gentamicin-high" "Enterococcus" "30ug" 8 7 FALSE +"EUCAST 2017" "MIC" "Enterococcus" "Gentamicin-high" "Enterococcus" 128 128 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Gentamicin-high" "Viridans strept" 128 128 FALSE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Gentamicin" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2017" "MIC" "Acinetobacter" "Gentamicin" "Acinetobacter spp." 4 8 FALSE +"EUCAST 2017" "MIC" "Corynebacterium" "Gentamicin" "Corynebacterium spp." 1 2 FALSE +"EUCAST 2017" "DISK" "Enterococcus" "Gentamicin" "Enterococcus" "30ug" 8 7 FALSE +"EUCAST 2017" "MIC" "Enterococcus" "Gentamicin" "Enterococcus" 128 128 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" "Gentamicin" "Pseudo" 4 8 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus" "Gentamicin" "Staphs" 1 2 FALSE +"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Gentamicin" "Staphs" 1 2 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Gentamicin" "Viridans strept" 128 128 FALSE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Imipenem" "Enterobacteriaceae" 2 16 FALSE +"EUCAST 2017" "MIC" "Acinetobacter" "Imipenem" "Acinetobacter spp." 2 16 FALSE +"EUCAST 2017" "MIC" "Enterococcus" "Imipenem" "Enterococcus" 4 16 FALSE +"EUCAST 2017" "MIC" "Haemophilus influenzae" "Imipenem" "H. influenzae" 2 4 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" "Imipenem" "M. catarrhalis" 2 4 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" "Imipenem" "Pseudo" 4 16 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" "Imipenem" "Pneumo" 2 4 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Imipenem" "Viridans strept" 2 4 FALSE +"EUCAST 2017" "MIC" "Candida albicans" "Itraconazole" "Candida" 0.064 0.12 FALSE +"EUCAST 2017" "MIC" "Candida parapsilosis" "Itraconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "Candida tropicalis" "Itraconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" "Kanamycin" "Staphs" 8 16 FALSE +"EUCAST 2017" "DISK" "Staphylococcus aureus" "Kanamycin" "Staphs" "30" 18 17 FALSE +"EUCAST 2017" "MIC" "UTI" "Enterobacteriaceae" "Cephalexin" "Enterobacteriaceae" 16 32 TRUE +"EUCAST 2017" "MIC" "Corynebacterium" "Linezolid" "Corynebacterium spp." 2 4 FALSE +"EUCAST 2017" "MIC" "Enterococcus" "Linezolid" "Enterococcus" 4 8 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" "Linezolid" "Staphs" 4 8 FALSE +"EUCAST 2017" "MIC" "Streptococcus" "Linezolid" "Strep A, B, C, G" 2 8 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" "Linezolid" "Pneumo" 2 8 FALSE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Levofloxacin" "Enterobacteriaceae" 0.5 2 FALSE +"EUCAST 2017" "MIC" "Acinetobacter" "Levofloxacin" "Acinetobacter spp." 0.5 2 FALSE +"EUCAST 2017" "MIC" "Aerococcus" "Levofloxacin" "Aerococcus" 2 4 FALSE +"EUCAST 2017" "MIC" "UTI" "Enterococcus" "Levofloxacin" "Enterococcus" 4 8 TRUE +"EUCAST 2017" "MIC" "Helicobacter pylori" "Levofloxacin" "H. pylori" 1 2 FALSE +"EUCAST 2017" "MIC" "Haemophilus influenzae" "Levofloxacin" "H. influenzae" 0.064 0.12 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" "Levofloxacin" "Kingella" 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" "Levofloxacin" "M. catarrhalis" 1 2 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" "Levofloxacin" "Pseudo" 1 2 FALSE +"EUCAST 2017" "MIC" "Pasteurella multocida" "Levofloxacin" "Pasteurella multocida" 0.064 0.12 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus" "Levofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Levofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2017" "MIC" "Streptococcus" "Levofloxacin" "Strep A, B, C, G" 1 4 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" "Levofloxacin" "Pneumo" 2 4 FALSE +"EUCAST 2017" "MIC" "UTI" "Enterobacteriaceae" "Mecillinam (Amdinocillin)" "Enterobacteriaceae" 8 16 TRUE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Meropenem" "Enterobacteriaceae" 2 16 FALSE +"EUCAST 2017" "MIC" "Acinetobacter" "Meropenem" "Acinetobacter spp." 2 16 FALSE +"EUCAST 2017" "MIC" "Aerococcus" "Meropenem" "Aerococcus" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "Non-meningitis" "Haemophilus influenzae" "Meropenem" "H. influenzae" 2 4 FALSE +"EUCAST 2017" "MIC" "Meningitis" "Haemophilus influenzae" "Meropenem" "H. influenzae" 0.25 2 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" "Meropenem" "Kingella" 0.032 0.06 FALSE +"EUCAST 2017" "MIC" "Listeria monocytogenes" "Meropenem" "Listeria monocytogenes" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" "Meropenem" "M. catarrhalis" 2 4 FALSE +"EUCAST 2017" "MIC" "Neisseria meningitidis" "Meropenem" "N. meningitidis" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" "Meropenem" "Pseudo" 2 16 FALSE +"EUCAST 2017" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Meropenem" "Pneumo" 2 4 FALSE +"EUCAST 2017" "MIC" "Meningitis" "Streptococcus pneumoniae" "Meropenem" "Pneumo" 0.25 2 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Meropenem" "Viridans strept" 2 4 FALSE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Moxifloxacin" "Enterobacteriaceae" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "Corynebacterium" "Moxifloxacin" "Corynebacterium spp." 0.5 1 FALSE +"EUCAST 2017" "MIC" "Clostridium difficile" "Moxifloxacin" "C. difficile" 4 FALSE +"EUCAST 2017" "MIC" "Haemophilus influenzae" "Moxifloxacin" "H. influenzae" 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" "Moxifloxacin" "M. catarrhalis" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus" "Moxifloxacin" "Staphs" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Moxifloxacin" "Staphs" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "Streptococcus" "Moxifloxacin" "Strep A, B, C, G" 0.5 2 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" "Moxifloxacin" "Pneumo" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Candida albicans" "Micafungin" "Candida" 0.016 0.03 FALSE +"EUCAST 2017" "MIC" "Candida glabrata" "Micafungin" "Candida" 0.032 0.06 FALSE +"EUCAST 2017" "MIC" "Candida parapsilosis" "Micafungin" "Candida" 0.002 4 FALSE +"EUCAST 2017" "MIC" "Haemophilus influenzae" "Minocycline" "H. influenzae" 1 4 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" "Minocycline" "M. catarrhalis" 1 4 FALSE +"EUCAST 2017" "MIC" "Neisseria meningitidis" "Minocycline" "N. meningitidis" 1 4 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" "Minocycline" "Staphs" 0.5 2 FALSE +"EUCAST 2017" "MIC" "Streptococcus" "Minocycline" "Strep A, B, C, G" 0.5 2 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" "Minocycline" "Pneumo" 0.5 2 FALSE +"EUCAST 2017" "MIC" "Clostridium difficile" "Metronidazole" "C. difficile" 2 4 FALSE +"EUCAST 2017" "MIC" "Helicobacter pylori" "Metronidazole" "H. pylori" 8 16 FALSE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Netilmicin" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2017" "MIC" "Acinetobacter" "Netilmicin" "Acinetobacter spp." 4 8 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" "Netilmicin" "Pseudo" 4 8 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus" "Netilmicin" "Staphs" 1 2 FALSE +"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Netilmicin" "Staphs" 1 2 FALSE +"EUCAST 2017" "MIC" "UTI" "Enterobacteriaceae" "Nitrofurantoin" "Enterobacteriaceae" 64 128 TRUE +"EUCAST 2017" "MIC" "Aerococcus" "Nitrofurantoin" "Aerococcus" 16 32 FALSE +"EUCAST 2017" "MIC" "UTI" "Enterococcus faecalis" "Nitrofurantoin" "Enterococcus" 64 128 TRUE +"EUCAST 2017" "MIC" "UTI" "Staphylococcus" "Nitrofurantoin" "Staphs" 64 128 TRUE +"EUCAST 2017" "MIC" "UTI" "Streptococcus group B" "Nitrofurantoin" "Strep A, B, C, G" 64 128 TRUE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Norfloxacin" "Enterobacteriaceae" 0.5 2 FALSE +"EUCAST 2017" "MIC" "UTI" "Enterobacteriaceae" "Nitroxoline" "Enterobacteriaceae" 16 32 TRUE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Ofloxacin" "Enterobacteriaceae" 0.25 1 FALSE +"EUCAST 2017" "MIC" "Haemophilus influenzae" "Ofloxacin" "H. influenzae" 0.064 0.12 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" "Ofloxacin" "M. catarrhalis" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Neisseria gonorrhoeae" "Ofloxacin" "N. gonorrhoeae" 0.125 0.5 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus" "Ofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Ofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" "Ofloxacin" "Pneumo" FALSE +"EUCAST 2017" "MIC" "Staphylococcus" "Oritavancin" "Staphs" 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "Streptococcus" "Oritavancin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Oritavancin" "Viridans strept" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" "Oxacillin" "Staphs" 2 4 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus" "Oxacillin" "Staphs" 2 4 FALSE +"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Oxacillin" "Staphs" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "Staphylococcus epidermidis" "Oxacillin" "Staphs" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "Staphylococcus lugdunensis" "Oxacillin" "Staphs" 2 4 FALSE +"EUCAST 2017" "MIC" "Aerococcus" "Penicillin G" "Aerococcus" 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "Corynebacterium" "Penicillin G" "Corynebacterium spp." 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" "Penicillin G" "Kingella" 0.032 0.06 FALSE +"EUCAST 2017" "MIC" "Listeria monocytogenes" "Penicillin G" "Listeria monocytogenes" 1 2 FALSE +"EUCAST 2017" "MIC" "Neisseria gonorrhoeae" "Penicillin G" "N. gonorrhoeae" 0.064 2 FALSE +"EUCAST 2017" "MIC" "Neisseria meningitidis" "Penicillin G" "N. meningitidis" 0.064 0.5 FALSE +"EUCAST 2017" "MIC" "Pasteurella multocida" "Penicillin G" "Pasteurella multocida" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus" "Penicillin G" "Staphs" 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "Staphylococcus lugdunensis" "Penicillin G" "Staphs" 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "Streptococcus" "Penicillin G" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Penicillin G" "Pneumo" 0.064 4 FALSE +"EUCAST 2017" "MIC" "Meningitis" "Streptococcus pneumoniae" "Penicillin G" "Pneumo" 0.064 0.12 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Penicillin G" "Viridans strept" 0.25 4 FALSE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Piperacillin" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" "Piperacillin" "Pseudo" 16 32 FALSE +"EUCAST 2017" "MIC" "Aspergillus fumigatus" "Posaconazole" "Aspergillus" 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "Aspergillus terreus" "Posaconazole" "Aspergillus" 0.125 0.5 FALSE +"EUCAST 2017" "MIC" "Candida albicans" "Posaconazole" "Candida" 0.064 0.12 FALSE +"EUCAST 2017" "MIC" "Candida parapsilosis" "Posaconazole" "Candida" 0.064 0.12 FALSE +"EUCAST 2017" "MIC" "Candida tropicalis" "Posaconazole" "Candida" 0.064 0.12 FALSE +"EUCAST 2017" "MIC" "Enterococcus" "Quinupristin/dalfopristin" "Enterococcus" 1 8 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" "Quinupristin/dalfopristin" "Staphs" 1 4 FALSE +"EUCAST 2017" "MIC" "Aerococcus" "Rifampicin" "Aerococcus" 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "Corynebacterium" "Rifampicin" "Corynebacterium spp." 0.064 1 FALSE +"EUCAST 2017" "MIC" "Clostridium difficile" "Rifampicin" "C. difficile" 0.004 FALSE +"EUCAST 2017" "MIC" "Helicobacter pylori" "Rifampicin" "H. pylori" 1 2 FALSE +"EUCAST 2017" "MIC" "Prophylaxis" "Haemophilus influenzae" "Rifampicin" "H. influenzae" 1 2 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" "Rifampicin" "Kingella" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Neisseria meningitidis" "Rifampicin" "N. meningitidis" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" "Rifampicin" "Staphs" 0.064 1 FALSE +"EUCAST 2017" "MIC" "Streptococcus" "Rifampicin" "Strep A, B, C, G" 0.064 1 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" "Rifampicin" "Pneumo" 0.064 1 FALSE +"EUCAST 2017" "MIC" "Haemophilus influenzae" "Roxithromycin" "H. influenzae" 1 32 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" "Roxithromycin" "M. catarrhalis" 0.5 2 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" "Roxithromycin" "Staphs" 1 4 FALSE +"EUCAST 2017" "MIC" "Streptococcus" "Roxithromycin" "Strep A, B, C, G" 0.5 2 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" "Roxithromycin" "Pneumo" 0.5 2 FALSE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Ampicillin/sulbactam" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2017" "MIC" "Enterococcus" "Ampicillin/sulbactam" "Enterococcus" 4 16 FALSE +"EUCAST 2017" "MIC" "Haemophilus influenzae" "Ampicillin/sulbactam" "H. influenzae" 1 2 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" "Ampicillin/sulbactam" "M. catarrhalis" 1 2 FALSE +"EUCAST 2017" "MIC" "Neisseria gonorrhoeae" "Spectinomycin" "N. gonorrhoeae" 64 128 FALSE +"EUCAST 2017" "DISK" "Enterococcus" "Streptomycin-high" "Enterococcus" "300ug" 14 13 FALSE +"EUCAST 2017" "MIC" "Enterococcus" "Streptomycin-high" "Enterococcus" 512 1024 FALSE +"EUCAST 2017" "DISK" "Enterococcus" "Streptoduocin" "Enterococcus" "300ug" 14 13 FALSE +"EUCAST 2017" "MIC" "Enterococcus" "Streptoduocin" "Enterococcus" 512 1024 FALSE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2017" "MIC" "Acinetobacter" "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 8 FALSE +"EUCAST 2017" "MIC" "Enterococcus" "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 2 FALSE +"EUCAST 2017" "MIC" "Haemophilus influenzae" "Trimethoprim/sulfamethoxazole" "H. influenzae" 0.5 2 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" "Trimethoprim/sulfamethoxazole" "Kingella" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "Listeria monocytogenes" "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" 0.064 0.12 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" "M. catarrhalis" 0.5 2 FALSE +"EUCAST 2017" "MIC" "Pasteurella multocida" "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "Stenotrophomonas maltophilia" "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 4 8 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" "Trimethoprim/sulfamethoxazole" "Staphs" 2 8 FALSE +"EUCAST 2017" "MIC" "Streptococcus" "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 4 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" "Pneumo" 1 4 FALSE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" "Ticarcillin/clavulanic acid" "Pseudo" 16 32 FALSE +"EUCAST 2017" "MIC" "Campylobacter" "Tetracycline" "Campylobacter jejuni and coli" 2 4 FALSE +"EUCAST 2017" "MIC" "Corynebacterium" "Tetracycline" "Corynebacterium spp." 2 4 FALSE +"EUCAST 2017" "MIC" "Helicobacter pylori" "Tetracycline" "H. pylori" 1 2 FALSE +"EUCAST 2017" "MIC" "Haemophilus influenzae" "Tetracycline" "H. influenzae" 1 4 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" "Tetracycline" "Kingella" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" "Tetracycline" "M. catarrhalis" 1 4 FALSE +"EUCAST 2017" "MIC" "Neisseria gonorrhoeae" "Tetracycline" "N. gonorrhoeae" 0.5 2 FALSE +"EUCAST 2017" "MIC" "Neisseria meningitidis" "Tetracycline" "N. meningitidis" 1 4 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" "Tetracycline" "Staphs" 1 4 FALSE +"EUCAST 2017" "MIC" "Streptococcus" "Tetracycline" "Strep A, B, C, G" 1 4 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" "Tetracycline" "Pneumo" 1 4 FALSE +"EUCAST 2017" "MIC" "Enterococcus" "Teicoplanin" "Enterococcus" 2 4 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus" "Teicoplanin" "Staphs" 2 4 FALSE +"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Teicoplanin" "Staphs" 4 8 FALSE +"EUCAST 2017" "MIC" "Streptococcus" "Teicoplanin" "Strep A, B, C, G" 2 4 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" "Teicoplanin" "Pneumo" 2 4 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Teicoplanin" "Viridans strept" 2 4 FALSE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Tigecycline" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2017" "MIC" "Clostridium difficile" "Tigecycline" "C. difficile" 0.25 FALSE +"EUCAST 2017" "MIC" "Enterococcus" "Tigecycline" "Enterococcus" 0.25 1 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" "Tigecycline" "Staphs" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Streptococcus" "Tigecycline" "Strep A, B, C, G" 0.25 1 FALSE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Ticarcillin" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" "Ticarcillin" "Pseudo" 16 32 FALSE +"EUCAST 2017" "MIC" "Haemophilus influenzae" "Telithromycin" "H. influenzae" 0.125 16 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" "Telithromycin" "M. catarrhalis" 0.25 1 FALSE +"EUCAST 2017" "MIC" "Streptococcus" "Telithromycin" "Strep A, B, C, G" 0.25 1 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" "Telithromycin" "Pneumo" 0.25 1 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus" "Telavancin" "Staphs" 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "UTI" "Enterobacteriaceae" "Trimethoprim" "Enterobacteriaceae" 2 8 TRUE +"EUCAST 2017" "MIC" "UTI" "Enterococcus" "Trimethoprim" "Enterococcus" 0.032 2 TRUE +"EUCAST 2017" "MIC" "UTI" "Staphylococcus" "Trimethoprim" "Staphs" 2 8 TRUE +"EUCAST 2017" "MIC" "UTI" "Streptococcus group B" "Trimethoprim" "Strep A, B, C, G" 2 4 TRUE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Tobramycin" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2017" "MIC" "Acinetobacter" "Tobramycin" "Acinetobacter spp." 4 8 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" "Tobramycin" "Pseudo" 4 8 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus" "Tobramycin" "Staphs" 1 2 FALSE +"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Tobramycin" "Staphs" 1 2 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" "Tedizolid" "Staphs" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Streptococcus" "Tedizolid" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Tedizolid" "Viridans strept" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "Enterobacteriaceae" "Piperacillin/tazobactam" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" "Piperacillin/tazobactam" "Pseudo" 16 32 FALSE +"EUCAST 2017" "MIC" "Aerococcus" "Vancomycin" "Aerococcus" 1 2 FALSE +"EUCAST 2017" "MIC" "Corynebacterium" "Vancomycin" "Corynebacterium spp." 2 4 FALSE +"EUCAST 2017" "MIC" "Clostridium difficile" "Vancomycin" "C. difficile" 2 4 FALSE +"EUCAST 2017" "MIC" "Enterococcus" "Vancomycin" "Enterococcus" 4 8 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus" "Vancomycin" "Staphs" 2 4 FALSE +"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Vancomycin" "Staphs" 4 8 FALSE +"EUCAST 2017" "MIC" "Streptococcus" "Vancomycin" "Strep A, B, C, G" 2 4 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" "Vancomycin" "Pneumo" 2 4 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Vancomycin" "Viridans strept" 2 4 FALSE +"EUCAST 2017" "MIC" "Aspergillus fumigatus" "Voriconazole" "Aspergillus" 1 4 FALSE +"EUCAST 2017" "MIC" "Candida albicans" "Voriconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "Candida parapsilosis" "Voriconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "Candida tropicalis" "Voriconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2016" "MIC" "Aspergillus fumigatus" "Amphotericin B" "Aspergillus" 1 4 FALSE +"EUCAST 2016" "MIC" "Aspergillus nidulans" "Amphotericin B" "Aspergillus" 1 4 FALSE +"EUCAST 2016" "MIC" "Candida" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2016" "MIC" "Candida albicans" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2016" "MIC" "Candida glabrata" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2016" "MIC" "Candida parapsilosis" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2016" "MIC" "Candida tropicalis" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2016" "MIC" "UTI" "Enterobacteriaceae" "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 32 64 TRUE +"EUCAST 2016" "MIC" "Enterococcus" "Amoxicillin/clavulanic acid" "Enterococcus" 4 16 FALSE +"EUCAST 2016" "MIC" "Haemophilus influenzae" "Amoxicillin/clavulanic acid" "H. influenzae" 2 4 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" "M. catarrhalis" 1 2 FALSE +"EUCAST 2016" "MIC" "Pasteurella multocida" "Amoxicillin/clavulanic acid" "Pasteurella multocida" 1 2 FALSE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Amikacin" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2016" "MIC" "Acinetobacter" "Amikacin" "Acinetobacter spp." 8 32 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" "Amikacin" "Pseudo" 8 32 FALSE +"EUCAST 2016" "MIC" "Staphylococcus aureus" "Amikacin" "Staphs" 8 32 FALSE +"EUCAST 2016" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Amikacin" "Staphs" 8 32 FALSE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Ampicillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2016" "MIC" "Enterococcus" "Ampicillin" "Enterococcus" 4 16 FALSE +"EUCAST 2016" "MIC" "Haemophilus influenzae" "Ampicillin" "H. influenzae" 1 2 FALSE +"EUCAST 2016" "MIC" "Listeria monocytogenes" "Ampicillin" "Listeria monocytogenes" 1 2 FALSE +"EUCAST 2016" "MIC" "Neisseria meningitidis" "Ampicillin" "N. meningitidis" 0.125 2 FALSE +"EUCAST 2016" "MIC" "Pasteurella multocida" "Ampicillin" "Pasteurella multocida" 1 2 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" "Ampicillin" "Pneumo" 0.5 4 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Ampicillin" "Viridans strept" 0.5 4 FALSE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Amoxicillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2016" "MIC" "Enterococcus" "Amoxicillin" "Enterococcus" 4 16 FALSE +"EUCAST 2016" "MIC" "Helicobacter pylori" "Amoxicillin" "H. pylori" 0.125 0.25 FALSE +"EUCAST 2016" "MIC" "Haemophilus influenzae" "Amoxicillin" "H. influenzae" 2 4 FALSE +"EUCAST 2016" "MIC" "Neisseria meningitidis" "Amoxicillin" "N. meningitidis" 0.125 2 FALSE +"EUCAST 2016" "MIC" "Pasteurella multocida" "Amoxicillin" "Pasteurella multocida" 1 2 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Amoxicillin" "Viridans strept" 0.5 4 FALSE +"EUCAST 2016" "MIC" "Candida" "Anidulafungin" "Candida" 0.064 0.12 FALSE +"EUCAST 2016" "MIC" "Candida albicans" "Anidulafungin" "Candida" 0.032 0.06 FALSE +"EUCAST 2016" "MIC" "Candida glabrata" "Anidulafungin" "Candida" 0.064 0.12 FALSE +"EUCAST 2016" "MIC" "Candida parapsilosis" "Anidulafungin" "Candida" 0.002 8 FALSE +"EUCAST 2016" "MIC" "Candida tropicalis" "Anidulafungin" "Candida" 0.064 0.12 FALSE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Aztreonam" "Enterobacteriaceae" 1 8 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" "Aztreonam" "Pseudo" 1 32 FALSE +"EUCAST 2016" "MIC" "Haemophilus influenzae" "Azithromycin" "H. influenzae" 0.125 8 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" "Azithromycin" "M. catarrhalis" 0.25 1 FALSE +"EUCAST 2016" "MIC" "Neisseria gonorrhoeae" "Azithromycin" "N. gonorrhoeae" 0.25 1 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" "Azithromycin" "Staphs" 1 4 FALSE +"EUCAST 2016" "MIC" "Streptococcus" "Azithromycin" "Strep A, B, C, G" 0.25 1 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" "Azithromycin" "Pneumo" 0.25 1 FALSE +"EUCAST 2016" "MIC" "Staphylococcus aureus" "Ceftobiprole" "Staphs" 2 4 FALSE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Ceftazidime" "Enterobacteriaceae" 1 8 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" "Ceftazidime" "Pseudo" 8 16 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" "Cefaclor" "Pneumo" 0.032 1 FALSE +"EUCAST 2016" "MIC" "UTI" "Enterobacteriaceae" "Cefixime" "Enterobacteriaceae" 1 2 TRUE +"EUCAST 2016" "MIC" "Haemophilus influenzae" "Cefixime" "H. influenzae" 0.125 0.25 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" "Cefixime" "M. catarrhalis" 0.5 2 FALSE +"EUCAST 2016" "MIC" "Neisseria gonorrhoeae" "Cefixime" "N. gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2016" "MIC" "UTI" "Enterobacteriaceae" "Cefadroxil" "Enterobacteriaceae" 16 32 TRUE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Chloramphenicol" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2016" "MIC" "Haemophilus influenzae" "Chloramphenicol" "H. influenzae" 2 4 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" "Chloramphenicol" "M. catarrhalis" 2 4 FALSE +"EUCAST 2016" "MIC" "Neisseria meningitidis" "Chloramphenicol" "N. meningitidis" 2 8 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" "Chloramphenicol" "Staphs" 8 16 FALSE +"EUCAST 2016" "MIC" "Streptococcus" "Chloramphenicol" "Strep A, B, C, G" 8 16 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" "Chloramphenicol" "Pneumo" 8 16 FALSE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Ciprofloxacin" "Enterobacteriaceae" 0.5 2 FALSE +"EUCAST 2016" "MIC" "Acinetobacter" "Ciprofloxacin" "Acinetobacter spp." 1 2 FALSE +"EUCAST 2016" "MIC" "Campylobacter" "Ciprofloxacin" "Campylobacter jejuni and coli" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Corynebacterium" "Ciprofloxacin" "Corynebacterium spp." 1 2 FALSE +"EUCAST 2016" "MIC" "UTI" "Enterococcus" "Ciprofloxacin" "Enterococcus" 4 8 TRUE +"EUCAST 2016" "MIC" "Haemophilus influenzae" "Ciprofloxacin" "H. influenzae" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" "Ciprofloxacin" "M. catarrhalis" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Neisseria gonorrhoeae" "Ciprofloxacin" "N. gonorrhoeae" 0.032 0.12 FALSE +"EUCAST 2016" "MIC" "Neisseria meningitidis" "Ciprofloxacin" "N. meningitidis" 0.032 0.06 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" "Ciprofloxacin" "Pseudo" 0.5 2 FALSE +"EUCAST 2016" "MIC" "Pasteurella multocida" "Ciprofloxacin" "Pasteurella multocida" 0.064 0.12 FALSE +"EUCAST 2016" "MIC" "Salmonella" "Ciprofloxacin" "Enterobacteriaceae" 0.064 0.12 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" "Ciprofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" "Ciprofloxacin" "Pneumo" 0.125 4 FALSE +"EUCAST 2016" "MIC" "Corynebacterium" "Clindamycin" "Corynebacterium spp." 0.5 1 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" "Clindamycin" "Staphs" 0.25 1 FALSE +"EUCAST 2016" "MIC" "Streptococcus" "Clindamycin" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" "Clindamycin" "Pneumo" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Clindamycin" "Viridans strept" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Helicobacter pylori" "Clarithromycin" "H. pylori" 0.25 1 FALSE +"EUCAST 2016" "MIC" "Haemophilus influenzae" "Clarithromycin" "H. influenzae" 1 64 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" "Clarithromycin" "M. catarrhalis" 0.25 1 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" "Clarithromycin" "Staphs" 1 4 FALSE +"EUCAST 2016" "MIC" "Streptococcus" "Clarithromycin" "Strep A, B, C, G" 0.25 1 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" "Clarithromycin" "Pneumo" 0.25 1 FALSE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Colistin" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2016" "MIC" "Acinetobacter" "Colistin" "Acinetobacter spp." 2 4 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" "Colistin" "Pseudo" 4 8 FALSE +"EUCAST 2016" "MIC" "UTI" "Enterobacteriaceae" "Cefpodoxime" "Enterobacteriaceae" 1 2 TRUE +"EUCAST 2016" "MIC" "Haemophilus influenzae" "Cefpodoxime" "H. influenzae" 0.25 1 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" "Cefpodoxime" "Pneumo" 0.25 1 FALSE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Ceftaroline" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Haemophilus influenzae" "Ceftaroline" "H. influenzae" 0.032 0.06 FALSE +"EUCAST 2016" "MIC" "Staphylococcus aureus" "Ceftaroline" "Staphs" 1 2 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" "Ceftaroline" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2016" "MIC" "Oral" "Enterobacteriaceae" "Ceftriaxone" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2016" "MIC" "Haemophilus influenzae" "Ceftriaxone" "H. influenzae" 0.125 0.25 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" "Ceftriaxone" "M. catarrhalis" 1 4 FALSE +"EUCAST 2016" "MIC" "Neisseria gonorrhoeae" "Ceftriaxone" "N. gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2016" "MIC" "Neisseria meningitidis" "Ceftriaxone" "N. meningitidis" 0.125 0.25 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" "Ceftriaxone" "Pneumo" 0.5 4 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" "Viridans strept" 0.5 1 FALSE +"EUCAST 2016" "MIC" "UTI" "Enterobacteriaceae" "Ceftibuten" "Enterobacteriaceae" 1 2 TRUE +"EUCAST 2016" "MIC" "Haemophilus influenzae" "Ceftibuten" "H. influenzae" 1 2 FALSE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Cefotaxime" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2016" "MIC" "Haemophilus influenzae" "Cefotaxime" "H. influenzae" 0.125 0.25 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" "Cefotaxime" "M. catarrhalis" 1 4 FALSE +"EUCAST 2016" "MIC" "Neisseria gonorrhoeae" "Cefotaxime" "N. gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2016" "MIC" "Neisseria meningitidis" "Cefotaxime" "N. meningitidis" 0.125 0.25 FALSE +"EUCAST 2016" "MIC" "Pasteurella multocida" "Cefotaxime" "Pasteurella multocida" 0.032 0.06 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" "Cefotaxime" "Pneumo" 0.5 4 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Cefotaxime" "Viridans strept" 0.5 1 FALSE +"EUCAST 2016" "MIC" "IV" "Enterobacteriaceae" "Cefuroxime" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2016" "MIC" "UTI" "Enterobacteriaceae" "Cefuroxime" "Enterobacteriaceae" 8 16 TRUE +"EUCAST 2016" "MIC" "IV" "Haemophilus influenzae" "Cefuroxime" "H. influenzae" 1 4 FALSE +"EUCAST 2016" "MIC" "Oral" "Haemophilus influenzae" "Cefuroxime" "H. influenzae" 0.125 2 FALSE +"EUCAST 2016" "MIC" "IV" "Moraxella catarrhalis" "Cefuroxime" "M. catarrhalis" 4 16 FALSE +"EUCAST 2016" "MIC" "Oral" "Moraxella catarrhalis" "Cefuroxime" "M. catarrhalis" 0.125 8 FALSE +"EUCAST 2016" "MIC" "IV" "Streptococcus pneumoniae" "Cefuroxime" "Pneumo" 0.5 2 FALSE +"EUCAST 2016" "MIC" "Oral" "Streptococcus pneumoniae" "Cefuroxime" "Pneumo" 0.25 1 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Cefuroxime" "Viridans strept" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Cefazolin" "Viridans strept" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Ceftolozane/tazobactam" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" "Ceftolozane/tazobactam" "Pseudo" 4 8 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" "Ceftolozane/tazobactam" "PK/PD" 4 8 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" "Dalbavancin" "Staphs" 0.125 0.25 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" "Dalbavancin" "PK/PD" 0.25 0.5 FALSE +"EUCAST 2016" "MIC" "Streptococcus" "Dalbavancin" "Strep A, B, C, G" 0.125 0.25 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Dalbavancin" "Viridans strept" 0.125 0.25 FALSE +"EUCAST 2016" "MIC" "Clostridium difficile" "Daptomycin" "C. difficile" 4 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" "Daptomycin" "Staphs" 1 2 FALSE +"EUCAST 2016" "MIC" "Streptococcus" "Daptomycin" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Doripenem" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2016" "MIC" "Acinetobacter" "Doripenem" "Acinetobacter spp." 1 4 FALSE +"EUCAST 2016" "MIC" "Haemophilus influenzae" "Doripenem" "H. influenzae" 1 2 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" "Doripenem" "M. catarrhalis" 1 2 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" "Doripenem" "Pseudo" 1 4 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" "Doripenem" "Pneumo" 1 2 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Doripenem" "Viridans strept" 1 2 FALSE +"EUCAST 2016" "MIC" "Haemophilus influenzae" "Doxycycline" "H. influenzae" 1 4 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" "Doxycycline" "M. catarrhalis" 1 4 FALSE +"EUCAST 2016" "MIC" "Pasteurella multocida" "Doxycycline" "Pasteurella multocida" 1 2 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" "Doxycycline" "Staphs" 1 4 FALSE +"EUCAST 2016" "MIC" "Streptococcus" "Doxycycline" "Strep A, B, C, G" 1 4 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" "Doxycycline" "Pneumo" 1 4 FALSE +"EUCAST 2016" "MIC" "Campylobacter coli" "Erythromycin" "Campylobacter jejuni and coli" 8 16 FALSE +"EUCAST 2016" "MIC" "Campylobacter jejuni" "Erythromycin" "Campylobacter jejuni and coli" 4 8 FALSE +"EUCAST 2016" "MIC" "Haemophilus influenzae" "Erythromycin" "H. influenzae" 0.5 32 FALSE +"EUCAST 2016" "MIC" "Listeria monocytogenes" "Erythromycin" "Listeria monocytogenes" 1 2 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" "Erythromycin" "M. catarrhalis" 0.25 1 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" "Erythromycin" "Staphs" 1 4 FALSE +"EUCAST 2016" "MIC" "Streptococcus" "Erythromycin" "Strep A, B, C, G" 0.25 1 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" "Erythromycin" "Pneumo" 0.25 1 FALSE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Ertapenem" "Enterobacteriaceae" 0.5 2 FALSE +"EUCAST 2016" "MIC" "Haemophilus influenzae" "Ertapenem" "H. influenzae" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" "Ertapenem" "M. catarrhalis" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" "Ertapenem" "Pneumo" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Ertapenem" "Viridans strept" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Cefepime" "Enterobacteriaceae" 1 8 FALSE +"EUCAST 2016" "MIC" "Haemophilus influenzae" "Cefepime" "H. influenzae" 0.25 0.5 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" "Cefepime" "M. catarrhalis" 4 8 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" "Cefepime" "Pseudo" 8 16 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" "Cefepime" "Pneumo" 1 4 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Cefepime" "Viridans strept" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Candida" "Fluconazole" "Candida" 2 8 FALSE +"EUCAST 2016" "MIC" "Candida" "Fluconazole" "Candida" FALSE +"EUCAST 2016" "MIC" "Candida albicans" "Fluconazole" "Candida" 2 8 FALSE +"EUCAST 2016" "MIC" "Candida glabrata" "Fluconazole" "Candida" 0.002 64 FALSE +"EUCAST 2016" "MIC" "Candida parapsilosis" "Fluconazole" "Candida" 2 8 FALSE +"EUCAST 2016" "MIC" "Candida tropicalis" "Fluconazole" "Candida" 2 8 FALSE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Fosfomycin" "Enterobacteriaceae" 32 64 FALSE +"EUCAST 2016" "MIC" "UTI" "Enterobacteriaceae" "Fosfomycin" "Enterobacteriaceae" 32 64 TRUE +"EUCAST 2016" "MIC" "Staphylococcus" "Fosfomycin" "Staphs" 32 64 FALSE +"EUCAST 2016" "MIC" "Clostridium difficile" "Fusidic acid" "C. difficile" 2 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" "Fusidic acid" "Staphs" 1 2 FALSE +"EUCAST 2016" "DISK" "Enterococcus" "Gentamicin-high" "Enterococcus" "30ug" 8 7 FALSE +"EUCAST 2016" "MIC" "Enterococcus" "Gentamicin-high" "Enterococcus" 128 128 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Gentamicin-high" "Viridans strept" 128 128 FALSE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Gentamicin" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2016" "MIC" "Acinetobacter" "Gentamicin" "Acinetobacter spp." 4 8 FALSE +"EUCAST 2016" "MIC" "Corynebacterium" "Gentamicin" "Corynebacterium spp." 1 2 FALSE +"EUCAST 2016" "DISK" "Enterococcus" "Gentamicin" "Enterococcus" "30ug" 8 7 FALSE +"EUCAST 2016" "MIC" "Enterococcus" "Gentamicin" "Enterococcus" 128 128 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" "Gentamicin" "Pseudo" 4 8 FALSE +"EUCAST 2016" "MIC" "Staphylococcus aureus" "Gentamicin" "Staphs" 1 2 FALSE +"EUCAST 2016" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Gentamicin" "Staphs" 1 2 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Gentamicin" "Viridans strept" 128 128 FALSE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Imipenem" "Enterobacteriaceae" 2 16 FALSE +"EUCAST 2016" "MIC" "Acinetobacter" "Imipenem" "Acinetobacter spp." 2 16 FALSE +"EUCAST 2016" "MIC" "Enterococcus" "Imipenem" "Enterococcus" 4 16 FALSE +"EUCAST 2016" "MIC" "Haemophilus influenzae" "Imipenem" "H. influenzae" 2 4 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" "Imipenem" "M. catarrhalis" 2 4 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" "Imipenem" "Pseudo" 4 16 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" "Imipenem" "Pneumo" 2 4 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Imipenem" "Viridans strept" 2 4 FALSE +"EUCAST 2016" "MIC" "Candida albicans" "Itraconazole" "Candida" 0.064 0.12 FALSE +"EUCAST 2016" "MIC" "Candida parapsilosis" "Itraconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2016" "MIC" "Candida tropicalis" "Itraconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2016" "DISK" "Staphylococcus" "Kanamycin" "Staphs" "30" 18 17 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" "Kanamycin" "Staphs" 8 16 FALSE +"EUCAST 2016" "MIC" "UTI" "Enterobacteriaceae" "Cephalexin" "Enterobacteriaceae" 16 32 TRUE +"EUCAST 2016" "MIC" "Corynebacterium" "Linezolid" "Corynebacterium spp." 2 4 FALSE +"EUCAST 2016" "MIC" "Enterococcus" "Linezolid" "Enterococcus" 4 8 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" "Linezolid" "Staphs" 4 8 FALSE +"EUCAST 2016" "MIC" "Streptococcus" "Linezolid" "Strep A, B, C, G" 2 8 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" "Linezolid" "Pneumo" 2 8 FALSE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Levofloxacin" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2016" "MIC" "Acinetobacter" "Levofloxacin" "Acinetobacter spp." 1 4 FALSE +"EUCAST 2016" "MIC" "UTI" "Enterococcus" "Levofloxacin" "Enterococcus" 4 8 TRUE +"EUCAST 2016" "MIC" "Helicobacter pylori" "Levofloxacin" "H. pylori" 1 2 FALSE +"EUCAST 2016" "MIC" "Haemophilus influenzae" "Levofloxacin" "H. influenzae" 1 2 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" "Levofloxacin" "M. catarrhalis" 1 2 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" "Levofloxacin" "Pseudo" 1 4 FALSE +"EUCAST 2016" "MIC" "Pasteurella multocida" "Levofloxacin" "Pasteurella multocida" 0.064 0.12 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" "Levofloxacin" "Staphs" 1 4 FALSE +"EUCAST 2016" "MIC" "Streptococcus" "Levofloxacin" "Strep A, B, C, G" 1 4 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" "Levofloxacin" "Pneumo" 2 4 FALSE +"EUCAST 2016" "MIC" "UTI" "Enterobacteriaceae" "Mecillinam (Amdinocillin)" "Enterobacteriaceae" 8 16 TRUE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Meropenem" "Enterobacteriaceae" 2 16 FALSE +"EUCAST 2016" "MIC" "Acinetobacter" "Meropenem" "Acinetobacter spp." 2 16 FALSE +"EUCAST 2016" "MIC" "Non-meningitis" "Haemophilus influenzae" "Meropenem" "H. influenzae" 2 4 FALSE +"EUCAST 2016" "MIC" "Meningitis" "Haemophilus influenzae" "Meropenem" "H. influenzae" 0.25 2 FALSE +"EUCAST 2016" "MIC" "Listeria monocytogenes" "Meropenem" "Listeria monocytogenes" 0.25 0.5 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" "Meropenem" "M. catarrhalis" 2 4 FALSE +"EUCAST 2016" "MIC" "Neisseria meningitidis" "Meropenem" "N. meningitidis" 0.25 0.5 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" "Meropenem" "Pseudo" 2 16 FALSE +"EUCAST 2016" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Meropenem" "Pneumo" 2 4 FALSE +"EUCAST 2016" "MIC" "Meningitis" "Streptococcus pneumoniae" "Meropenem" "Pneumo" 0.25 2 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Meropenem" "Viridans strept" 2 4 FALSE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Moxifloxacin" "Enterobacteriaceae" 0.5 2 FALSE +"EUCAST 2016" "MIC" "Corynebacterium" "Moxifloxacin" "Corynebacterium spp." 0.5 1 FALSE +"EUCAST 2016" "MIC" "Clostridium difficile" "Moxifloxacin" "C. difficile" 4 FALSE +"EUCAST 2016" "MIC" "Haemophilus influenzae" "Moxifloxacin" "H. influenzae" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" "Moxifloxacin" "M. catarrhalis" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" "Moxifloxacin" "Staphs" 0.5 2 FALSE +"EUCAST 2016" "MIC" "Streptococcus" "Moxifloxacin" "Strep A, B, C, G" 0.5 2 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" "Moxifloxacin" "Pneumo" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Candida albicans" "Micafungin" "Candida" 0.016 0.03 FALSE +"EUCAST 2016" "MIC" "Candida glabrata" "Micafungin" "Candida" 0.032 0.06 FALSE +"EUCAST 2016" "MIC" "Candida parapsilosis" "Micafungin" "Candida" 0.002 4 FALSE +"EUCAST 2016" "MIC" "Haemophilus influenzae" "Minocycline" "H. influenzae" 1 4 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" "Minocycline" "M. catarrhalis" 1 4 FALSE +"EUCAST 2016" "MIC" "Neisseria meningitidis" "Minocycline" "N. meningitidis" 1 4 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" "Minocycline" "Staphs" 0.5 2 FALSE +"EUCAST 2016" "MIC" "Streptococcus" "Minocycline" "Strep A, B, C, G" 0.5 2 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" "Minocycline" "Pneumo" 0.5 2 FALSE +"EUCAST 2016" "MIC" "Clostridium difficile" "Metronidazole" "C. difficile" 2 4 FALSE +"EUCAST 2016" "MIC" "Helicobacter pylori" "Metronidazole" "H. pylori" 8 16 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" "Mupirocin" "Staphs" 1 512 FALSE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Netilmicin" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2016" "MIC" "Acinetobacter" "Netilmicin" "Acinetobacter spp." 4 8 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" "Netilmicin" "Pseudo" 4 8 FALSE +"EUCAST 2016" "MIC" "Staphylococcus aureus" "Netilmicin" "Staphs" 1 2 FALSE +"EUCAST 2016" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Netilmicin" "Staphs" 1 2 FALSE +"EUCAST 2016" "MIC" "UTI" "Enterobacteriaceae" "Nitrofurantoin" "Enterobacteriaceae" 64 128 TRUE +"EUCAST 2016" "MIC" "UTI" "Enterococcus faecalis" "Nitrofurantoin" "Enterococcus" 64 128 TRUE +"EUCAST 2016" "MIC" "UTI" "Staphylococcus" "Nitrofurantoin" "Staphs" 64 128 TRUE +"EUCAST 2016" "MIC" "UTI" "Streptococcus group B" "Nitrofurantoin" "Strep A, B, C, G" 64 128 TRUE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Norfloxacin" "Enterobacteriaceae" 0.5 2 FALSE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Ofloxacin" "Enterobacteriaceae" 0.5 2 FALSE +"EUCAST 2016" "MIC" "Haemophilus influenzae" "Ofloxacin" "H. influenzae" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" "Ofloxacin" "M. catarrhalis" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Neisseria gonorrhoeae" "Ofloxacin" "N. gonorrhoeae" 0.125 0.5 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" "Ofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" "Ofloxacin" "Pneumo" 0.125 8 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" "Oritavancin" "Staphs" 0.125 0.25 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" "Oritavancin" "PK/PD" 0.125 0.25 FALSE +"EUCAST 2016" "MIC" "Streptococcus" "Oritavancin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Oritavancin" "Viridans strept" 0.25 0.5 FALSE +"EUCAST 2016" "MIC" "Corynebacterium" "Penicillin G" "Corynebacterium spp." 0.125 0.25 FALSE +"EUCAST 2016" "MIC" "Listeria monocytogenes" "Penicillin G" "Listeria monocytogenes" 1 2 FALSE +"EUCAST 2016" "MIC" "Neisseria gonorrhoeae" "Penicillin G" "N. gonorrhoeae" 0.064 2 FALSE +"EUCAST 2016" "MIC" "Neisseria meningitidis" "Penicillin G" "N. meningitidis" 0.064 0.5 FALSE +"EUCAST 2016" "MIC" "Pasteurella multocida" "Penicillin G" "Pasteurella multocida" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Staphylococcus aureus" "Penicillin G" "Staphs" 0.125 0.25 FALSE +"EUCAST 2016" "MIC" "Staphylococcus lugdunensis" "Penicillin G" "Staphs" 0.125 0.25 FALSE +"EUCAST 2016" "MIC" "Streptococcus" "Penicillin G" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2016" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Penicillin G" "Pneumo" 0.064 4 FALSE +"EUCAST 2016" "MIC" "Meningitis" "Streptococcus pneumoniae" "Penicillin G" "Pneumo" 0.064 0.12 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Penicillin G" "Viridans strept" 0.25 4 FALSE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Piperacillin" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" "Piperacillin" "Pseudo" 16 32 FALSE +"EUCAST 2016" "MIC" "Aspergillus fumigatus" "Posaconazole" "Aspergillus" 0.125 0.25 FALSE +"EUCAST 2016" "MIC" "Aspergillus terreus" "Posaconazole" "Aspergillus" 0.125 0.5 FALSE +"EUCAST 2016" "MIC" "Candida albicans" "Posaconazole" "Candida" 0.064 0.12 FALSE +"EUCAST 2016" "MIC" "Candida parapsilosis" "Posaconazole" "Candida" 0.064 0.12 FALSE +"EUCAST 2016" "MIC" "Candida tropicalis" "Posaconazole" "Candida" 0.064 0.12 FALSE +"EUCAST 2016" "MIC" "Enterococcus" "Quinupristin/dalfopristin" "Enterococcus" 1 8 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" "Quinupristin/dalfopristin" "Staphs" 1 4 FALSE +"EUCAST 2016" "MIC" "Corynebacterium" "Rifampicin" "Corynebacterium spp." 0.064 1 FALSE +"EUCAST 2016" "MIC" "Clostridium difficile" "Rifampicin" "C. difficile" 0.004 FALSE +"EUCAST 2016" "MIC" "Helicobacter pylori" "Rifampicin" "H. pylori" 1 2 FALSE +"EUCAST 2016" "MIC" "Prophylaxis" "Haemophilus influenzae" "Rifampicin" "H. influenzae" 1 2 FALSE +"EUCAST 2016" "MIC" "Neisseria meningitidis" "Rifampicin" "N. meningitidis" 0.25 0.5 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" "Rifampicin" "Staphs" 0.064 1 FALSE +"EUCAST 2016" "MIC" "Streptococcus" "Rifampicin" "Strep A, B, C, G" 0.064 1 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" "Rifampicin" "Pneumo" 0.064 1 FALSE +"EUCAST 2016" "MIC" "Haemophilus influenzae" "Roxithromycin" "H. influenzae" 1 32 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" "Roxithromycin" "M. catarrhalis" 0.5 2 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" "Roxithromycin" "Staphs" 1 4 FALSE +"EUCAST 2016" "MIC" "Streptococcus" "Roxithromycin" "Strep A, B, C, G" 0.5 2 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" "Roxithromycin" "Pneumo" 0.5 2 FALSE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Ampicillin/sulbactam" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2016" "MIC" "Enterococcus" "Ampicillin/sulbactam" "Enterococcus" 4 16 FALSE +"EUCAST 2016" "MIC" "Haemophilus influenzae" "Ampicillin/sulbactam" "H. influenzae" 1 2 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" "Ampicillin/sulbactam" "M. catarrhalis" 1 2 FALSE +"EUCAST 2016" "MIC" "Neisseria gonorrhoeae" "Spectinomycin" "N. gonorrhoeae" 64 128 FALSE +"EUCAST 2016" "DISK" "Enterococcus" "Streptomycin-high" "Enterococcus" "300ug" 14 13 FALSE +"EUCAST 2016" "MIC" "Enterococcus" "Streptomycin-high" "Enterococcus" 512 1024 FALSE +"EUCAST 2016" "DISK" "Enterococcus" "Streptoduocin" "Enterococcus" "300ug" 14 13 FALSE +"EUCAST 2016" "MIC" "Enterococcus" "Streptoduocin" "Enterococcus" 512 1024 FALSE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2016" "MIC" "Acinetobacter" "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 8 FALSE +"EUCAST 2016" "MIC" "Enterococcus" "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 2 FALSE +"EUCAST 2016" "MIC" "Haemophilus influenzae" "Trimethoprim/sulfamethoxazole" "H. influenzae" 0.5 2 FALSE +"EUCAST 2016" "MIC" "Listeria monocytogenes" "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" 0.064 0.12 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" "M. catarrhalis" 0.5 2 FALSE +"EUCAST 2016" "MIC" "Pasteurella multocida" "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.5 FALSE +"EUCAST 2016" "MIC" "Stenotrophomonas maltophilia" "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 4 8 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" "Trimethoprim/sulfamethoxazole" "Staphs" 2 8 FALSE +"EUCAST 2016" "MIC" "Streptococcus" "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 4 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" "Pneumo" 1 4 FALSE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" "Ticarcillin/clavulanic acid" "Pseudo" 16 32 FALSE +"EUCAST 2016" "MIC" "Campylobacter" "Tetracycline" "Campylobacter jejuni and coli" 2 4 FALSE +"EUCAST 2016" "MIC" "Corynebacterium" "Tetracycline" "Corynebacterium spp." 2 4 FALSE +"EUCAST 2016" "MIC" "Helicobacter pylori" "Tetracycline" "H. pylori" 1 2 FALSE +"EUCAST 2016" "MIC" "Haemophilus influenzae" "Tetracycline" "H. influenzae" 1 4 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" "Tetracycline" "M. catarrhalis" 1 4 FALSE +"EUCAST 2016" "MIC" "Neisseria gonorrhoeae" "Tetracycline" "N. gonorrhoeae" 0.5 2 FALSE +"EUCAST 2016" "MIC" "Neisseria meningitidis" "Tetracycline" "N. meningitidis" 1 4 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" "Tetracycline" "Staphs" 1 4 FALSE +"EUCAST 2016" "MIC" "Streptococcus" "Tetracycline" "Strep A, B, C, G" 1 4 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" "Tetracycline" "Pneumo" 1 4 FALSE +"EUCAST 2016" "MIC" "Enterococcus" "Teicoplanin" "Enterococcus" 2 4 FALSE +"EUCAST 2016" "MIC" "Staphylococcus aureus" "Teicoplanin" "Staphs" 2 4 FALSE +"EUCAST 2016" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Teicoplanin" "Staphs" 4 8 FALSE +"EUCAST 2016" "MIC" "Streptococcus" "Teicoplanin" "Strep A, B, C, G" 2 4 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" "Teicoplanin" "Pneumo" 2 4 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Teicoplanin" "Viridans strept" 2 4 FALSE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Tigecycline" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2016" "MIC" "Clostridium difficile" "Tigecycline" "C. difficile" 0.25 FALSE +"EUCAST 2016" "MIC" "Enterococcus" "Tigecycline" "Enterococcus" 0.25 1 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" "Tigecycline" "Staphs" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Streptococcus" "Tigecycline" "Strep A, B, C, G" 0.25 1 FALSE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Ticarcillin" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" "Ticarcillin" "Pseudo" 16 32 FALSE +"EUCAST 2016" "MIC" "Haemophilus influenzae" "Telithromycin" "H. influenzae" 0.125 16 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" "Telithromycin" "M. catarrhalis" 0.25 1 FALSE +"EUCAST 2016" "MIC" "Streptococcus" "Telithromycin" "Strep A, B, C, G" 0.25 1 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" "Telithromycin" "Pneumo" 0.25 1 FALSE +"EUCAST 2016" "MIC" "Staphylococcus aureus" "Telavancin" "Staphs" 0.125 0.25 FALSE +"EUCAST 2016" "MIC" "UTI" "Enterobacteriaceae" "Trimethoprim" "Enterobacteriaceae" 2 8 TRUE +"EUCAST 2016" "MIC" "UTI" "Enterococcus" "Trimethoprim" "Enterococcus" 0.032 2 TRUE +"EUCAST 2016" "MIC" "UTI" "Staphylococcus" "Trimethoprim" "Staphs" 2 8 TRUE +"EUCAST 2016" "MIC" "UTI" "Streptococcus group B" "Trimethoprim" "Strep A, B, C, G" 2 4 TRUE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Tobramycin" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2016" "MIC" "Acinetobacter" "Tobramycin" "Acinetobacter spp." 4 8 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" "Tobramycin" "Pseudo" 4 8 FALSE +"EUCAST 2016" "MIC" "Staphylococcus aureus" "Tobramycin" "Staphs" 1 2 FALSE +"EUCAST 2016" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Tobramycin" "Staphs" 1 2 FALSE +"EUCAST 2016" "MIC" "Streptococcus" "Tedizolid" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Tedizolid" "Viridans strept" 0.25 0.5 FALSE +"EUCAST 2016" "MIC" "Enterobacteriaceae" "Piperacillin/tazobactam" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" "Piperacillin/tazobactam" "Pseudo" 16 32 FALSE +"EUCAST 2016" "MIC" "Corynebacterium" "Vancomycin" "Corynebacterium spp." 2 4 FALSE +"EUCAST 2016" "MIC" "Clostridium difficile" "Vancomycin" "C. difficile" 2 4 FALSE +"EUCAST 2016" "MIC" "Enterococcus" "Vancomycin" "Enterococcus" 4 8 FALSE +"EUCAST 2016" "MIC" "Staphylococcus aureus" "Vancomycin" "Staphs" 2 4 FALSE +"EUCAST 2016" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Vancomycin" "Staphs" 4 8 FALSE +"EUCAST 2016" "MIC" "Streptococcus" "Vancomycin" "Strep A, B, C, G" 2 4 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" "Vancomycin" "Pneumo" 2 4 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Vancomycin" "Viridans strept" 2 4 FALSE +"EUCAST 2016" "MIC" "Aspergillus fumigatus" "Voriconazole" "Aspergillus" 1 4 FALSE +"EUCAST 2016" "MIC" "Candida albicans" "Voriconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2016" "MIC" "Candida parapsilosis" "Voriconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2016" "MIC" "Candida tropicalis" "Voriconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2015" "MIC" "Aspergillus fumigatus" "Amphotericin B" "Aspergillus" 1 4 FALSE +"EUCAST 2015" "MIC" "Aspergillus nidulans" "Amphotericin B" "Aspergillus" 1 4 FALSE +"EUCAST 2015" "MIC" "Candida" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2015" "MIC" "Candida albicans" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2015" "MIC" "Candida glabrata" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2015" "MIC" "Candida parapsilosis" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2015" "MIC" "Candida tropicalis" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2015" "MIC" "UTI" "Enterobacteriaceae" "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 32 64 TRUE +"EUCAST 2015" "MIC" "Enterococcus" "Amoxicillin/clavulanic acid" "Enterococcus" 4 16 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" "Amoxicillin/clavulanic acid" "H. influenaza" 2 4 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" "M. cattharalis" 1 2 FALSE +"EUCAST 2015" "MIC" "Pasteurella multocida" "Amoxicillin/clavulanic acid" "Pasteurella multocida" 1 2 FALSE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Amikacin" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2015" "MIC" "Acinetobacter" "Amikacin" "Acinetobacter spp." 8 32 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" "Amikacin" "Pseudo" 8 32 FALSE +"EUCAST 2015" "MIC" "Staphylococcus aureus" "Amikacin" "Staphs" 8 32 FALSE +"EUCAST 2015" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Amikacin" "Staphs" 8 32 FALSE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Ampicillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2015" "MIC" "Enterococcus" "Ampicillin" "Enterococcus" 4 16 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" "Ampicillin" "H. influenaza" 1 2 FALSE +"EUCAST 2015" "MIC" "Listeria monocytogenes" "Ampicillin" "Listeria monocytogenes" 1 2 FALSE +"EUCAST 2015" "MIC" "Neisseria meningitidis" "Ampicillin" "N. meningitidis" 0.125 2 FALSE +"EUCAST 2015" "MIC" "Pasteurella multocida" "Ampicillin" "Pasteurella multocida" 1 2 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" "Ampicillin" "Pneumo" 0.5 4 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Ampicillin" "Viridans strept" 0.5 4 FALSE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Amoxicillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2015" "MIC" "Enterococcus" "Amoxicillin" "Enterococcus" 4 16 FALSE +"EUCAST 2015" "MIC" "Helicobacter pylori" "Amoxicillin" "H. pylori" 0.125 0.25 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" "Amoxicillin" "H. influenaza" 2 4 FALSE +"EUCAST 2015" "MIC" "Neisseria meningitidis" "Amoxicillin" "N. meningitidis" 0.125 2 FALSE +"EUCAST 2015" "MIC" "Pasteurella multocida" "Amoxicillin" "Pasteurella multocida" 1 2 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Amoxicillin" "Viridans strept" 0.5 4 FALSE +"EUCAST 2015" "MIC" "Candida" "Anidulafungin" "Candida" 0.064 0.12 FALSE +"EUCAST 2015" "MIC" "Candida albicans" "Anidulafungin" "Candida" 0.032 0.06 FALSE +"EUCAST 2015" "MIC" "Candida glabrata" "Anidulafungin" "Candida" 0.064 0.12 FALSE +"EUCAST 2015" "MIC" "Candida parapsilosis" "Anidulafungin" "Candida" 0.002 8 FALSE +"EUCAST 2015" "MIC" "Candida tropicalis" "Anidulafungin" "Candida" 0.064 0.12 FALSE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Aztreonam" "Enterobacteriaceae" 1 8 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" "Aztreonam" "Pseudo" 1 32 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" "Azithromycin" "H. influenaza" 0.125 8 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" "Azithromycin" "M. cattharalis" 0.25 1 FALSE +"EUCAST 2015" "MIC" "Neisseria gonorrhoeae" "Azithromycin" "N. gonorrhoeae" 0.25 1 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" "Azithromycin" "Staphs" 1 4 FALSE +"EUCAST 2015" "MIC" "Streptococcus" "Azithromycin" "Strep A, B, C, G" 0.25 1 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" "Azithromycin" "Pneumo" 0.25 1 FALSE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Ceftazidime" "Enterobacteriaceae" 1 8 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" "Ceftazidime" "Pseudo" 8 16 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" "Cefaclor" "Pneumo" 0.032 1 FALSE +"EUCAST 2015" "MIC" "UTI" "Enterobacteriaceae" "Cefixime" "Enterobacteriaceae" 1 2 TRUE +"EUCAST 2015" "MIC" "Haemophilus influenzae" "Cefixime" "H. influenaza" 0.125 0.25 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" "Cefixime" "M. cattharalis" 0.5 2 FALSE +"EUCAST 2015" "MIC" "Neisseria gonorrhoeae" "Cefixime" "N. gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2015" "MIC" "UTI" "Enterobacteriaceae" "Cefadroxil" "Enterobacteriaceae" 16 32 TRUE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Chloramphenicol" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" "Chloramphenicol" "H. influenaza" 2 4 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" "Chloramphenicol" "M. cattharalis" 2 4 FALSE +"EUCAST 2015" "MIC" "Neisseria meningitidis" "Chloramphenicol" "N. meningitidis" 2 8 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" "Chloramphenicol" "Staphs" 8 16 FALSE +"EUCAST 2015" "MIC" "Streptococcus" "Chloramphenicol" "Strep A, B, C, G" 8 16 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" "Chloramphenicol" "Pneumo" 8 16 FALSE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Ciprofloxacin" "Enterobacteriaceae" 0.5 2 FALSE +"EUCAST 2015" "MIC" "Acinetobacter" "Ciprofloxacin" "Acinetobacter spp." 1 2 FALSE +"EUCAST 2015" "MIC" "Campylobacter" "Ciprofloxacin" "Campylobacter jejuni and coli" 0.5 1 FALSE +"EUCAST 2015" "MIC" "Corynebacterium" "Ciprofloxacin" "Corynebacterium spp." 1 2 FALSE +"EUCAST 2015" "MIC" "UTI" "Enterococcus" "Ciprofloxacin" "Enterococcus" 4 8 TRUE +"EUCAST 2015" "MIC" "Haemophilus influenzae" "Ciprofloxacin" "H. influenaza" 0.5 1 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" "Ciprofloxacin" "M. cattharalis" 0.5 1 FALSE +"EUCAST 2015" "MIC" "Neisseria gonorrhoeae" "Ciprofloxacin" "N. gonorrhoeae" 0.032 0.12 FALSE +"EUCAST 2015" "MIC" "Neisseria meningitidis" "Ciprofloxacin" "N. meningitidis" 0.032 0.06 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" "Ciprofloxacin" "Pseudo" 0.5 2 FALSE +"EUCAST 2015" "MIC" "Pasteurella multocida" "Ciprofloxacin" "Pasteurella multocida" 0.064 0.12 FALSE +"EUCAST 2015" "MIC" "Salmonella" "Ciprofloxacin" "Enterobacteriaceae" 0.064 0.12 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" "Ciprofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" "Ciprofloxacin" "Pneumo" 0.125 4 FALSE +"EUCAST 2015" "MIC" "Corynebacterium" "Clindamycin" "Corynebacterium spp." 0.5 1 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" "Clindamycin" "Staphs" 0.25 1 FALSE +"EUCAST 2015" "MIC" "Streptococcus" "Clindamycin" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" "Clindamycin" "Pneumo" 0.5 1 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Clindamycin" "Viridans strept" 0.5 1 FALSE +"EUCAST 2015" "MIC" "Helicobacter pylori" "Clarithromycin" "H. pylori" 0.25 1 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" "Clarithromycin" "H. influenaza" 1 64 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" "Clarithromycin" "M. cattharalis" 0.25 1 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" "Clarithromycin" "Staphs" 1 4 FALSE +"EUCAST 2015" "MIC" "Streptococcus" "Clarithromycin" "Strep A, B, C, G" 0.25 1 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" "Clarithromycin" "Pneumo" 0.25 1 FALSE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Colistin" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2015" "MIC" "Acinetobacter" "Colistin" "Acinetobacter spp." 2 4 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" "Colistin" "Pseudo" 4 8 FALSE +"EUCAST 2015" "MIC" "UTI" "Enterobacteriaceae" "Cefpodoxime" "Enterobacteriaceae" 1 2 TRUE +"EUCAST 2015" "MIC" "Haemophilus influenzae" "Cefpodoxime" "H. influenaza" 0.25 1 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" "Cefpodoxime" "Pneumo" 0.25 1 FALSE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Ceftaroline" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" "Ceftaroline" "H. influenaza" 0.032 0.06 FALSE +"EUCAST 2015" "MIC" "Staphylococcus aureus" "Ceftaroline" "Staphs" 1 2 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" "Ceftaroline" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2015" "MIC" "Oral" "Enterobacteriaceae" "Ceftriaxone" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" "Ceftriaxone" "H. influenaza" 0.125 0.25 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" "Ceftriaxone" "M. cattharalis" 1 4 FALSE +"EUCAST 2015" "MIC" "Neisseria gonorrhoeae" "Ceftriaxone" "N. gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2015" "MIC" "Neisseria meningitidis" "Ceftriaxone" "N. meningitidis" 0.125 0.25 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" "Ceftriaxone" "Pneumo" 0.5 4 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" "Viridans strept" 0.5 1 FALSE +"EUCAST 2015" "MIC" "UTI" "Enterobacteriaceae" "Ceftibuten" "Enterobacteriaceae" 1 2 TRUE +"EUCAST 2015" "MIC" "Haemophilus influenzae" "Ceftibuten" "H. influenaza" 1 2 FALSE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Cefotaxime" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" "Cefotaxime" "H. influenaza" 0.125 0.25 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" "Cefotaxime" "M. cattharalis" 1 4 FALSE +"EUCAST 2015" "MIC" "Neisseria gonorrhoeae" "Cefotaxime" "N. gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2015" "MIC" "Neisseria meningitidis" "Cefotaxime" "N. meningitidis" 0.125 0.25 FALSE +"EUCAST 2015" "MIC" "Pasteurella multocida" "Cefotaxime" "Pasteurella multocida" 0.032 0.06 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" "Cefotaxime" "Pneumo" 0.5 4 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Cefotaxime" "Viridans strept" 0.5 1 FALSE +"EUCAST 2015" "MIC" "IV" "Enterobacteriaceae" "Cefuroxime" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2015" "MIC" "UTI" "Enterobacteriaceae" "Cefuroxime" "Enterobacteriaceae" 8 16 TRUE +"EUCAST 2015" "MIC" "IV" "Haemophilus influenzae" "Cefuroxime" "H. influenaza" 1 4 FALSE +"EUCAST 2015" "MIC" "Oral" "Haemophilus influenzae" "Cefuroxime" "H. influenaza" 0.125 2 FALSE +"EUCAST 2015" "MIC" "IV" "Moraxella catarrhalis" "Cefuroxime" "M. cattharalis" 4 16 FALSE +"EUCAST 2015" "MIC" "Oral" "Moraxella catarrhalis" "Cefuroxime" "M. cattharalis" 0.125 8 FALSE +"EUCAST 2015" "MIC" "IV" "Streptococcus pneumoniae" "Cefuroxime" "Pneumo" 0.5 2 FALSE +"EUCAST 2015" "MIC" "Oral" "Streptococcus pneumoniae" "Cefuroxime" "Pneumo" 0.25 1 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Cefuroxime" "Viridans strept" 0.5 1 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Cefazolin" "Viridans strept" 0.5 1 FALSE +"EUCAST 2015" "MIC" "Clostridium difficile" "Daptomycin" "C. difficile" 4 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" "Daptomycin" "Staphs" 1 2 FALSE +"EUCAST 2015" "MIC" "Streptococcus" "Daptomycin" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Doripenem" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2015" "MIC" "Acinetobacter" "Doripenem" "Acinetobacter spp." 1 4 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" "Doripenem" "H. influenaza" 1 2 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" "Doripenem" "M. cattharalis" 1 2 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" "Doripenem" "Pseudo" 1 4 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" "Doripenem" "Pneumo" 1 2 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Doripenem" "Viridans strept" 1 2 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" "Doxycycline" "H. influenaza" 1 4 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" "Doxycycline" "M. cattharalis" 1 4 FALSE +"EUCAST 2015" "MIC" "Pasteurella multocida" "Doxycycline" "Pasteurella multocida" 1 2 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" "Doxycycline" "Staphs" 1 4 FALSE +"EUCAST 2015" "MIC" "Streptococcus" "Doxycycline" "Strep A, B, C, G" 1 4 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" "Doxycycline" "Pneumo" 1 4 FALSE +"EUCAST 2015" "MIC" "Campylobacter coli" "Erythromycin" "Campylobacter jejuni and coli" 8 16 FALSE +"EUCAST 2015" "MIC" "Campylobacter jejuni" "Erythromycin" "Campylobacter jejuni and coli" 4 8 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" "Erythromycin" "H. influenaza" 0.5 32 FALSE +"EUCAST 2015" "MIC" "Listeria monocytogenes" "Erythromycin" "Listeria monocytogenes" 1 2 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" "Erythromycin" "M. cattharalis" 0.25 1 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" "Erythromycin" "Staphs" 1 4 FALSE +"EUCAST 2015" "MIC" "Streptococcus" "Erythromycin" "Strep A, B, C, G" 0.25 1 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" "Erythromycin" "Pneumo" 0.25 1 FALSE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Ertapenem" "Enterobacteriaceae" 0.5 2 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" "Ertapenem" "H. influenaza" 0.5 1 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" "Ertapenem" "M. cattharalis" 0.5 1 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" "Ertapenem" "Pneumo" 0.5 1 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Ertapenem" "Viridans strept" 0.5 1 FALSE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Cefepime" "Enterobacteriaceae" 1 8 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" "Cefepime" "H. influenaza" 0.25 0.5 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" "Cefepime" "M. cattharalis" 4 8 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" "Cefepime" "Pseudo" 8 16 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" "Cefepime" "Pneumo" 1 4 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Cefepime" "Viridans strept" 0.5 1 FALSE +"EUCAST 2015" "MIC" "Candida" "Fluconazole" "Candida" 2 8 FALSE +"EUCAST 2015" "MIC" "Candida" "Fluconazole" "Candida" FALSE +"EUCAST 2015" "MIC" "Candida albicans" "Fluconazole" "Candida" 2 8 FALSE +"EUCAST 2015" "MIC" "Candida glabrata" "Fluconazole" "Candida" 0.002 64 FALSE +"EUCAST 2015" "MIC" "Candida parapsilosis" "Fluconazole" "Candida" 2 8 FALSE +"EUCAST 2015" "MIC" "Candida tropicalis" "Fluconazole" "Candida" 2 8 FALSE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Fosfomycin" "Enterobacteriaceae" 32 64 FALSE +"EUCAST 2015" "MIC" "UTI" "Enterobacteriaceae" "Fosfomycin" "Enterobacteriaceae" 32 64 TRUE +"EUCAST 2015" "MIC" "Staphylococcus" "Fosfomycin" "Staphs" 32 64 FALSE +"EUCAST 2015" "MIC" "Clostridium difficile" "Fusidic acid" "C. difficile" 2 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" "Fusidic acid" "Staphs" 1 2 FALSE +"EUCAST 2015" "DISK" "Enterococcus" "Gentamicin-high" "Enterococcus" "30ug" 8 7 FALSE +"EUCAST 2015" "MIC" "Enterococcus" "Gentamicin-high" "Enterococcus" 128 128 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Gentamicin-high" "Viridans strept" 128 128 FALSE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Gentamicin" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2015" "MIC" "Acinetobacter" "Gentamicin" "Acinetobacter spp." 4 8 FALSE +"EUCAST 2015" "MIC" "Corynebacterium" "Gentamicin" "Corynebacterium spp." 1 2 FALSE +"EUCAST 2015" "DISK" "Enterococcus" "Gentamicin" "Enterococcus" "30ug" 8 7 FALSE +"EUCAST 2015" "MIC" "Enterococcus" "Gentamicin" "Enterococcus" 128 128 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" "Gentamicin" "Pseudo" 4 8 FALSE +"EUCAST 2015" "MIC" "Staphylococcus aureus" "Gentamicin" "Staphs" 1 2 FALSE +"EUCAST 2015" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Gentamicin" "Staphs" 1 2 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Gentamicin" "Viridans strept" 128 128 FALSE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Imipenem" "Enterobacteriaceae" 2 16 FALSE +"EUCAST 2015" "MIC" "Acinetobacter" "Imipenem" "Acinetobacter spp." 2 16 FALSE +"EUCAST 2015" "MIC" "Enterococcus" "Imipenem" "Enterococcus" 4 16 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" "Imipenem" "H. influenaza" 2 4 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" "Imipenem" "M. cattharalis" 2 4 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" "Imipenem" "Pseudo" 4 16 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" "Imipenem" "Pneumo" 2 4 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Imipenem" "Viridans strept" 2 4 FALSE +"EUCAST 2015" "MIC" "Candida albicans" "Itraconazole" "Candida" 0.064 0.12 FALSE +"EUCAST 2015" "MIC" "Candida parapsilosis" "Itraconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2015" "MIC" "Candida tropicalis" "Itraconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2015" "MIC" "UTI" "Enterobacteriaceae" "Cephalexin" "Enterobacteriaceae" 16 32 TRUE +"EUCAST 2015" "MIC" "Corynebacterium" "Linezolid" "Corynebacterium spp." 2 4 FALSE +"EUCAST 2015" "MIC" "Enterococcus" "Linezolid" "Enterococcus" 4 8 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" "Linezolid" "Staphs" 4 8 FALSE +"EUCAST 2015" "MIC" "Streptococcus" "Linezolid" "Strep A, B, C, G" 2 8 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" "Linezolid" "Pneumo" 2 8 FALSE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Levofloxacin" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2015" "MIC" "Acinetobacter" "Levofloxacin" "Acinetobacter spp." 1 4 FALSE +"EUCAST 2015" "MIC" "UTI" "Enterococcus" "Levofloxacin" "Enterococcus" 4 8 TRUE +"EUCAST 2015" "MIC" "Helicobacter pylori" "Levofloxacin" "H. pylori" 1 2 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" "Levofloxacin" "H. influenaza" 1 2 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" "Levofloxacin" "M. cattharalis" 1 2 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" "Levofloxacin" "Pseudo" 1 4 FALSE +"EUCAST 2015" "MIC" "Pasteurella multocida" "Levofloxacin" "Pasteurella multocida" 0.064 0.12 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" "Levofloxacin" "Staphs" 1 4 FALSE +"EUCAST 2015" "MIC" "Streptococcus" "Levofloxacin" "Strep A, B, C, G" 1 4 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" "Levofloxacin" "Pneumo" 2 4 FALSE +"EUCAST 2015" "MIC" "UTI" "Enterobacteriaceae" "Mecillinam (Amdinocillin)" "Enterobacteriaceae" 8 16 TRUE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Meropenem" "Enterobacteriaceae" 2 16 FALSE +"EUCAST 2015" "MIC" "Acinetobacter" "Meropenem" "Acinetobacter spp." 2 16 FALSE +"EUCAST 2015" "MIC" "Non-meningitis" "Haemophilus influenzae" "Meropenem" "H. influenaza" 2 4 FALSE +"EUCAST 2015" "MIC" "Meningitis" "Haemophilus influenzae" "Meropenem" "H. influenaza" 0.25 2 FALSE +"EUCAST 2015" "MIC" "Listeria monocytogenes" "Meropenem" "Listeria monocytogenes" 0.25 0.5 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" "Meropenem" "M. cattharalis" 2 4 FALSE +"EUCAST 2015" "MIC" "Neisseria meningitidis" "Meropenem" "N. meningitidis" 0.25 0.5 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" "Meropenem" "Pseudo" 2 16 FALSE +"EUCAST 2015" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Meropenem" "Pneumo" 2 4 FALSE +"EUCAST 2015" "MIC" "Meningitis" "Streptococcus pneumoniae" "Meropenem" "Pneumo" 0.25 2 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Meropenem" "Viridans strept" 2 4 FALSE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Moxifloxacin" "Enterobacteriaceae" 0.5 2 FALSE +"EUCAST 2015" "MIC" "Corynebacterium" "Moxifloxacin" "Corynebacterium spp." 0.5 1 FALSE +"EUCAST 2015" "MIC" "Clostridium difficile" "Moxifloxacin" "C. difficile" 4 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" "Moxifloxacin" "H. influenaza" 0.5 1 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" "Moxifloxacin" "M. cattharalis" 0.5 1 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" "Moxifloxacin" "Staphs" 0.5 2 FALSE +"EUCAST 2015" "MIC" "Streptococcus" "Moxifloxacin" "Strep A, B, C, G" 0.5 2 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" "Moxifloxacin" "Pneumo" 0.5 1 FALSE +"EUCAST 2015" "MIC" "Candida albicans" "Micafungin" "Candida" 0.016 0.03 FALSE +"EUCAST 2015" "MIC" "Candida glabrata" "Micafungin" "Candida" 0.032 0.06 FALSE +"EUCAST 2015" "MIC" "Candida parapsilosis" "Micafungin" "Candida" 0.002 4 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" "Minocycline" "H. influenaza" 1 4 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" "Minocycline" "M. cattharalis" 1 4 FALSE +"EUCAST 2015" "MIC" "Neisseria meningitidis" "Minocycline" "N. meningitidis" 1 4 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" "Minocycline" "Staphs" 0.5 2 FALSE +"EUCAST 2015" "MIC" "Streptococcus" "Minocycline" "Strep A, B, C, G" 0.5 2 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" "Minocycline" "Pneumo" 0.5 2 FALSE +"EUCAST 2015" "MIC" "Clostridium difficile" "Metronidazole" "C. difficile" 2 4 FALSE +"EUCAST 2015" "MIC" "Helicobacter pylori" "Metronidazole" "H. pylori" 8 16 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" "Mupirocin" "Staphs" 1 512 FALSE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Netilmicin" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2015" "MIC" "Acinetobacter" "Netilmicin" "Acinetobacter spp." 4 8 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" "Netilmicin" "Pseudo" 4 8 FALSE +"EUCAST 2015" "MIC" "Staphylococcus aureus" "Netilmicin" "Staphs" 1 2 FALSE +"EUCAST 2015" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Netilmicin" "Staphs" 1 2 FALSE +"EUCAST 2015" "MIC" "UTI" "Enterobacteriaceae" "Nitrofurantoin" "Enterobacteriaceae" 64 128 TRUE +"EUCAST 2015" "MIC" "UTI" "Enterococcus faecalis" "Nitrofurantoin" "Enterococcus" 64 128 TRUE +"EUCAST 2015" "MIC" "UTI" "Staphylococcus" "Nitrofurantoin" "Staphs" 64 128 TRUE +"EUCAST 2015" "MIC" "UTI" "Streptococcus group B" "Nitrofurantoin" "Strep A, B, C, G" 64 128 TRUE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Norfloxacin" "Enterobacteriaceae" 0.5 2 FALSE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Ofloxacin" "Enterobacteriaceae" 0.5 2 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" "Ofloxacin" "H. influenaza" 0.5 1 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" "Ofloxacin" "M. cattharalis" 0.5 1 FALSE +"EUCAST 2015" "MIC" "Neisseria gonorrhoeae" "Ofloxacin" "N. gonorrhoeae" 0.125 0.5 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" "Ofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" "Ofloxacin" "Pneumo" 0.125 8 FALSE +"EUCAST 2015" "MIC" "Corynebacterium" "Penicillin G" "Corynebacterium spp." 0.125 0.25 FALSE +"EUCAST 2015" "MIC" "Listeria monocytogenes" "Penicillin G" "Listeria monocytogenes" 1 2 FALSE +"EUCAST 2015" "MIC" "Neisseria gonorrhoeae" "Penicillin G" "N. gonorrhoeae" 0.064 2 FALSE +"EUCAST 2015" "MIC" "Neisseria meningitidis" "Penicillin G" "N. meningitidis" 0.064 0.5 FALSE +"EUCAST 2015" "MIC" "Pasteurella multocida" "Penicillin G" "Pasteurella multocida" 0.5 1 FALSE +"EUCAST 2015" "MIC" "Staphylococcus aureus" "Penicillin G" "Staphs" 0.125 0.25 FALSE +"EUCAST 2015" "MIC" "Staphylococcus lugdunensis" "Penicillin G" "Staphs" 0.125 0.25 FALSE +"EUCAST 2015" "MIC" "Streptococcus" "Penicillin G" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2015" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Penicillin G" "Pneumo" 0.064 4 FALSE +"EUCAST 2015" "MIC" "Meningitis" "Streptococcus pneumoniae" "Penicillin G" "Pneumo" 0.064 0.12 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Penicillin G" "Viridans strept" 0.25 4 FALSE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Piperacillin" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" "Piperacillin" "Pseudo" 16 32 FALSE +"EUCAST 2015" "MIC" "Aspergillus fumigatus" "Posaconazole" "Aspergillus" 0.125 0.25 FALSE +"EUCAST 2015" "MIC" "Aspergillus terreus" "Posaconazole" "Aspergillus" 0.125 0.5 FALSE +"EUCAST 2015" "MIC" "Candida albicans" "Posaconazole" "Candida" 0.064 0.12 FALSE +"EUCAST 2015" "MIC" "Candida parapsilosis" "Posaconazole" "Candida" 0.064 0.12 FALSE +"EUCAST 2015" "MIC" "Candida tropicalis" "Posaconazole" "Candida" 0.064 0.12 FALSE +"EUCAST 2015" "MIC" "Enterococcus" "Quinupristin/dalfopristin" "Enterococcus" 1 8 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" "Quinupristin/dalfopristin" "Staphs" 1 4 FALSE +"EUCAST 2015" "MIC" "Corynebacterium" "Rifampicin" "Corynebacterium spp." 0.064 1 FALSE +"EUCAST 2015" "MIC" "Clostridium difficile" "Rifampicin" "C. difficile" 0.004 FALSE +"EUCAST 2015" "MIC" "Helicobacter pylori" "Rifampicin" "H. pylori" 1 2 FALSE +"EUCAST 2015" "MIC" "Prophylaxis" "Haemophilus influenzae" "Rifampicin" "H. influenaza" 1 2 FALSE +"EUCAST 2015" "MIC" "Neisseria meningitidis" "Rifampicin" "N. meningitidis" 0.25 0.5 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" "Rifampicin" "Staphs" 0.064 1 FALSE +"EUCAST 2015" "MIC" "Streptococcus" "Rifampicin" "Strep A, B, C, G" 0.064 1 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" "Rifampicin" "Pneumo" 0.064 1 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" "Roxithromycin" "H. influenaza" 1 32 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" "Roxithromycin" "M. cattharalis" 0.5 2 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" "Roxithromycin" "Staphs" 1 4 FALSE +"EUCAST 2015" "MIC" "Streptococcus" "Roxithromycin" "Strep A, B, C, G" 0.5 2 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" "Roxithromycin" "Pneumo" 0.5 2 FALSE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Ampicillin/sulbactam" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2015" "MIC" "Enterococcus" "Ampicillin/sulbactam" "Enterococcus" 4 16 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" "Ampicillin/sulbactam" "H. influenaza" 1 2 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" "Ampicillin/sulbactam" "M. cattharalis" 1 2 FALSE +"EUCAST 2015" "MIC" "Neisseria gonorrhoeae" "Spectinomycin" "N. gonorrhoeae" 64 128 FALSE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2015" "MIC" "Acinetobacter" "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 8 FALSE +"EUCAST 2015" "MIC" "Enterococcus" "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 2 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" "Trimethoprim/sulfamethoxazole" "H. influenaza" 0.5 2 FALSE +"EUCAST 2015" "MIC" "Listeria monocytogenes" "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" 0.064 0.12 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" "M. cattharalis" 0.5 2 FALSE +"EUCAST 2015" "MIC" "Pasteurella multocida" "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.5 FALSE +"EUCAST 2015" "MIC" "Stenotrophomonas maltophilia" "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 4 8 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" "Trimethoprim/sulfamethoxazole" "Staphs" 2 8 FALSE +"EUCAST 2015" "MIC" "Streptococcus" "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 4 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" "Pneumo" 1 4 FALSE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" "Ticarcillin/clavulanic acid" "Pseudo" 16 32 FALSE +"EUCAST 2015" "MIC" "Campylobacter" "Tetracycline" "Campylobacter jejuni and coli" 2 4 FALSE +"EUCAST 2015" "MIC" "Corynebacterium" "Tetracycline" "Corynebacterium spp." 2 4 FALSE +"EUCAST 2015" "MIC" "Helicobacter pylori" "Tetracycline" "H. pylori" 1 2 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" "Tetracycline" "H. influenaza" 1 4 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" "Tetracycline" "M. cattharalis" 1 4 FALSE +"EUCAST 2015" "MIC" "Neisseria gonorrhoeae" "Tetracycline" "N. gonorrhoeae" 0.5 2 FALSE +"EUCAST 2015" "MIC" "Neisseria meningitidis" "Tetracycline" "N. meningitidis" 1 4 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" "Tetracycline" "Staphs" 1 4 FALSE +"EUCAST 2015" "MIC" "Streptococcus" "Tetracycline" "Strep A, B, C, G" 1 4 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" "Tetracycline" "Pneumo" 1 4 FALSE +"EUCAST 2015" "MIC" "Enterococcus" "Teicoplanin" "Enterococcus" 2 4 FALSE +"EUCAST 2015" "MIC" "Staphylococcus aureus" "Teicoplanin" "Staphs" 2 4 FALSE +"EUCAST 2015" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Teicoplanin" "Staphs" 4 8 FALSE +"EUCAST 2015" "MIC" "Streptococcus" "Teicoplanin" "Strep A, B, C, G" 2 4 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" "Teicoplanin" "Pneumo" 2 4 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Teicoplanin" "Viridans strept" 2 4 FALSE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Tigecycline" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2015" "MIC" "Clostridium difficile" "Tigecycline" "C. difficile" 0.25 FALSE +"EUCAST 2015" "MIC" "Enterococcus" "Tigecycline" "Enterococcus" 0.25 1 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" "Tigecycline" "Staphs" 0.5 1 FALSE +"EUCAST 2015" "MIC" "Streptococcus" "Tigecycline" "Strep A, B, C, G" 0.25 1 FALSE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Ticarcillin" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" "Ticarcillin" "Pseudo" 16 32 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" "Telithromycin" "H. influenaza" 0.125 16 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" "Telithromycin" "M. cattharalis" 0.25 1 FALSE +"EUCAST 2015" "MIC" "Streptococcus" "Telithromycin" "Strep A, B, C, G" 0.25 1 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" "Telithromycin" "Pneumo" 0.25 1 FALSE +"EUCAST 2015" "MIC" "Staphylococcus aureus" "Telavancin" "Staphs" 0.125 0.25 FALSE +"EUCAST 2015" "MIC" "UTI" "Enterobacteriaceae" "Trimethoprim" "Enterobacteriaceae" 2 8 TRUE +"EUCAST 2015" "MIC" "UTI" "Enterococcus" "Trimethoprim" "Enterococcus" 0.032 2 TRUE +"EUCAST 2015" "MIC" "UTI" "Staphylococcus" "Trimethoprim" "Staphs" 2 8 TRUE +"EUCAST 2015" "MIC" "UTI" "Streptococcus group B" "Trimethoprim" "Strep A, B, C, G" 2 4 TRUE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Tobramycin" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2015" "MIC" "Acinetobacter" "Tobramycin" "Acinetobacter spp." 4 8 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" "Tobramycin" "Pseudo" 4 8 FALSE +"EUCAST 2015" "MIC" "Staphylococcus aureus" "Tobramycin" "Staphs" 1 2 FALSE +"EUCAST 2015" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Tobramycin" "Staphs" 1 2 FALSE +"EUCAST 2015" "MIC" "Enterobacteriaceae" "Piperacillin/tazobactam" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" "Piperacillin/tazobactam" "Pseudo" 16 32 FALSE +"EUCAST 2015" "MIC" "Corynebacterium" "Vancomycin" "Corynebacterium spp." 2 4 FALSE +"EUCAST 2015" "MIC" "Clostridium difficile" "Vancomycin" "C. difficile" 2 4 FALSE +"EUCAST 2015" "MIC" "Enterococcus" "Vancomycin" "Enterococcus" 4 8 FALSE +"EUCAST 2015" "MIC" "Staphylococcus aureus" "Vancomycin" "Staphs" 2 4 FALSE +"EUCAST 2015" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Vancomycin" "Staphs" 4 8 FALSE +"EUCAST 2015" "MIC" "Streptococcus" "Vancomycin" "Strep A, B, C, G" 2 4 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" "Vancomycin" "Pneumo" 2 4 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Vancomycin" "Viridans strept" 2 4 FALSE +"EUCAST 2015" "MIC" "Aspergillus fumigatus" "Voriconazole" "Aspergillus" 1 4 FALSE +"EUCAST 2015" "MIC" "Candida albicans" "Voriconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2015" "MIC" "Candida parapsilosis" "Voriconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2015" "MIC" "Candida tropicalis" "Voriconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2014" "MIC" "Aspergillus fumigatus" "Amphotericin B" "Aspergillus" 1 4 FALSE +"EUCAST 2014" "MIC" "Aspergillus nidulans" "Amphotericin B" "Aspergillus" 1 4 FALSE +"EUCAST 2014" "MIC" "Candida" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2014" "MIC" "Candida albicans" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2014" "MIC" "Candida glabrata" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2014" "MIC" "Candida parapsilosis" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2014" "MIC" "Candida tropicalis" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2014" "MIC" "UTI" "Enterobacteriaceae" "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 32 64 TRUE +"EUCAST 2014" "MIC" "Enterococcus" "Amoxicillin/clavulanic acid" "Enterococcus" 4 16 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" "Amoxicillin/clavulanic acid" "H. influenaza" 2 4 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" "M. cattharalis" 1 2 FALSE +"EUCAST 2014" "MIC" "Pasteurella multocida" "Amoxicillin/clavulanic acid" "Pasteurella multocida" 1 2 FALSE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Amikacin" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2014" "MIC" "Acinetobacter" "Amikacin" "Acinetobacter spp." 8 32 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" "Amikacin" "Pseudo" 8 32 FALSE +"EUCAST 2014" "MIC" "Staphylococcus aureus" "Amikacin" "Staphs" 8 32 FALSE +"EUCAST 2014" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Amikacin" "Staphs" 8 32 FALSE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Ampicillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2014" "MIC" "Enterococcus" "Ampicillin" "Enterococcus" 4 16 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" "Ampicillin" "H. influenaza" 1 2 FALSE +"EUCAST 2014" "MIC" "Listeria monocytogenes" "Ampicillin" "Listeria monocytogenes" 1 2 FALSE +"EUCAST 2014" "MIC" "Neisseria meningitidis" "Ampicillin" "N. meningitidis" 0.125 2 FALSE +"EUCAST 2014" "MIC" "Pasteurella multocida" "Ampicillin" "Pasteurella multocida" 1 2 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" "Ampicillin" "Pneumo" 0.5 4 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Ampicillin" "Viridans strept" 0.5 4 FALSE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Amoxicillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2014" "MIC" "Enterococcus" "Amoxicillin" "Enterococcus" 4 16 FALSE +"EUCAST 2014" "MIC" "Helicobacter pylori" "Amoxicillin" "H. pylori" 0.125 0.25 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" "Amoxicillin" "H. influenaza" 2 4 FALSE +"EUCAST 2014" "MIC" "Neisseria meningitidis" "Amoxicillin" "N. meningitidis" 0.125 2 FALSE +"EUCAST 2014" "MIC" "Pasteurella multocida" "Amoxicillin" "Pasteurella multocida" 1 2 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Amoxicillin" "Viridans strept" 0.5 4 FALSE +"EUCAST 2014" "MIC" "Candida" "Anidulafungin" "Candida" 0.064 0.12 FALSE +"EUCAST 2014" "MIC" "Candida albicans" "Anidulafungin" "Candida" 0.032 0.06 FALSE +"EUCAST 2014" "MIC" "Candida glabrata" "Anidulafungin" "Candida" 0.064 0.12 FALSE +"EUCAST 2014" "MIC" "Candida parapsilosis" "Anidulafungin" "Candida" 0.002 8 FALSE +"EUCAST 2014" "MIC" "Candida tropicalis" "Anidulafungin" "Candida" 0.064 0.12 FALSE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Aztreonam" "Enterobacteriaceae" 1 8 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" "Aztreonam" "Pseudo" 1 32 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" "Azithromycin" "H. influenaza" 0.125 8 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" "Azithromycin" "M. cattharalis" 0.25 1 FALSE +"EUCAST 2014" "MIC" "Neisseria gonorrhoeae" "Azithromycin" "N. gonorrhoeae" 0.25 1 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" "Azithromycin" "Staphs" 1 4 FALSE +"EUCAST 2014" "MIC" "Streptococcus" "Azithromycin" "Strep A, B, C, G" 0.25 1 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" "Azithromycin" "Pneumo" 0.25 1 FALSE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Ceftazidime" "Enterobacteriaceae" 1 8 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" "Ceftazidime" "Pseudo" 8 16 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" "Cefaclor" "Pneumo" 0.032 1 FALSE +"EUCAST 2014" "MIC" "UTI" "Enterobacteriaceae" "Cefixime" "Enterobacteriaceae" 1 2 TRUE +"EUCAST 2014" "MIC" "Haemophilus influenzae" "Cefixime" "H. influenaza" 0.125 0.25 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" "Cefixime" "M. cattharalis" 0.5 2 FALSE +"EUCAST 2014" "MIC" "Neisseria gonorrhoeae" "Cefixime" "N. gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2014" "MIC" "UTI" "Enterobacteriaceae" "Cefadroxil" "Enterobacteriaceae" 16 32 TRUE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Chloramphenicol" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" "Chloramphenicol" "H. influenaza" 2 4 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" "Chloramphenicol" "M. cattharalis" 2 4 FALSE +"EUCAST 2014" "MIC" "Neisseria meningitidis" "Chloramphenicol" "N. meningitidis" 2 8 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" "Chloramphenicol" "Staphs" 8 16 FALSE +"EUCAST 2014" "MIC" "Streptococcus" "Chloramphenicol" "Strep A, B, C, G" 8 16 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" "Chloramphenicol" "Pneumo" 8 16 FALSE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Ciprofloxacin" "Enterobacteriaceae" 0.5 2 FALSE +"EUCAST 2014" "MIC" "Acinetobacter" "Ciprofloxacin" "Acinetobacter spp." 1 2 FALSE +"EUCAST 2014" "MIC" "Campylobacter" "Ciprofloxacin" "Campylobacter jejuni and coli" 0.5 1 FALSE +"EUCAST 2014" "MIC" "Corynebacterium" "Ciprofloxacin" "Corynebacterium spp." 1 2 FALSE +"EUCAST 2014" "MIC" "UTI" "Enterococcus" "Ciprofloxacin" "Enterococcus" 4 8 TRUE +"EUCAST 2014" "MIC" "Haemophilus influenzae" "Ciprofloxacin" "H. influenaza" 0.5 1 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" "Ciprofloxacin" "M. cattharalis" 0.5 1 FALSE +"EUCAST 2014" "MIC" "Neisseria gonorrhoeae" "Ciprofloxacin" "N. gonorrhoeae" 0.032 0.12 FALSE +"EUCAST 2014" "MIC" "Neisseria meningitidis" "Ciprofloxacin" "N. meningitidis" 0.032 0.12 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" "Ciprofloxacin" "Pseudo" 0.5 2 FALSE +"EUCAST 2014" "MIC" "Pasteurella multocida" "Ciprofloxacin" "Pasteurella multocida" 0.064 0.12 FALSE +"EUCAST 2014" "MIC" "Salmonella" "Ciprofloxacin" "Enterobacteriaceae" 0.064 0.12 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" "Ciprofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" "Ciprofloxacin" "Pneumo" 0.125 4 FALSE +"EUCAST 2014" "MIC" "Corynebacterium" "Clindamycin" "Corynebacterium spp." 0.5 1 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" "Clindamycin" "Staphs" 0.25 1 FALSE +"EUCAST 2014" "MIC" "Streptococcus" "Clindamycin" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" "Clindamycin" "Pneumo" 0.5 1 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Clindamycin" "Viridans strept" 0.5 1 FALSE +"EUCAST 2014" "MIC" "Helicobacter pylori" "Clarithromycin" "H. pylori" 0.25 1 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" "Clarithromycin" "H. influenaza" 1 64 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" "Clarithromycin" "M. cattharalis" 0.25 1 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" "Clarithromycin" "Staphs" 1 4 FALSE +"EUCAST 2014" "MIC" "Streptococcus" "Clarithromycin" "Strep A, B, C, G" 0.25 1 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" "Clarithromycin" "Pneumo" 0.25 1 FALSE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Colistin" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2014" "MIC" "Acinetobacter" "Colistin" "Acinetobacter spp." 2 4 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" "Colistin" "Pseudo" 4 8 FALSE +"EUCAST 2014" "MIC" "UTI" "Enterobacteriaceae" "Cefpodoxime" "Enterobacteriaceae" 1 2 TRUE +"EUCAST 2014" "MIC" "Haemophilus influenzae" "Cefpodoxime" "H. influenaza" 0.25 1 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" "Cefpodoxime" "Pneumo" 0.25 1 FALSE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Ceftaroline" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" "Ceftaroline" "H. influenaza" 0.032 0.06 FALSE +"EUCAST 2014" "MIC" "Staphylococcus aureus" "Ceftaroline" "Staphs" 1 2 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" "Ceftaroline" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2014" "MIC" "Oral" "Enterobacteriaceae" "Ceftriaxone" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" "Ceftriaxone" "H. influenaza" 0.125 0.25 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" "Ceftriaxone" "M. cattharalis" 1 4 FALSE +"EUCAST 2014" "MIC" "Neisseria gonorrhoeae" "Ceftriaxone" "N. gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2014" "MIC" "Neisseria meningitidis" "Ceftriaxone" "N. meningitidis" 0.125 0.25 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" "Ceftriaxone" "Pneumo" 0.5 4 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" "Viridans strept" 0.5 1 FALSE +"EUCAST 2014" "MIC" "UTI" "Enterobacteriaceae" "Ceftibuten" "Enterobacteriaceae" 1 2 TRUE +"EUCAST 2014" "MIC" "Haemophilus influenzae" "Ceftibuten" "H. influenaza" 1 2 FALSE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Cefotaxime" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" "Cefotaxime" "H. influenaza" 0.125 0.25 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" "Cefotaxime" "M. cattharalis" 1 4 FALSE +"EUCAST 2014" "MIC" "Neisseria gonorrhoeae" "Cefotaxime" "N. gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2014" "MIC" "Neisseria meningitidis" "Cefotaxime" "N. meningitidis" 0.125 0.25 FALSE +"EUCAST 2014" "MIC" "Pasteurella multocida" "Cefotaxime" "Pasteurella multocida" 0.032 0.06 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" "Cefotaxime" "Pneumo" 0.5 4 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Cefotaxime" "Viridans strept" 0.5 1 FALSE +"EUCAST 2014" "MIC" "IV" "Enterobacteriaceae" "Cefuroxime" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2014" "MIC" "UTI" "Enterobacteriaceae" "Cefuroxime" "Enterobacteriaceae" 8 16 TRUE +"EUCAST 2014" "MIC" "IV" "Haemophilus influenzae" "Cefuroxime" "H. influenaza" 1 4 FALSE +"EUCAST 2014" "MIC" "Oral" "Haemophilus influenzae" "Cefuroxime" "H. influenaza" 0.125 2 FALSE +"EUCAST 2014" "MIC" "IV" "Moraxella catarrhalis" "Cefuroxime" "M. cattharalis" 4 16 FALSE +"EUCAST 2014" "MIC" "Oral" "Moraxella catarrhalis" "Cefuroxime" "M. cattharalis" 0.125 8 FALSE +"EUCAST 2014" "MIC" "IV" "Streptococcus pneumoniae" "Cefuroxime" "Pneumo" 0.5 2 FALSE +"EUCAST 2014" "MIC" "Oral" "Streptococcus pneumoniae" "Cefuroxime" "Pneumo" 0.25 1 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Cefuroxime" "Viridans strept" 0.5 1 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Cefazolin" "Viridans strept" 0.5 1 FALSE +"EUCAST 2014" "MIC" "Clostridium difficile" "Daptomycin" "C. difficile" 4 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" "Daptomycin" "Staphs" 1 2 FALSE +"EUCAST 2014" "MIC" "Streptococcus" "Daptomycin" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Doripenem" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2014" "MIC" "Acinetobacter" "Doripenem" "Acinetobacter spp." 1 4 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" "Doripenem" "H. influenaza" 1 2 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" "Doripenem" "M. cattharalis" 1 2 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" "Doripenem" "Pseudo" 1 4 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" "Doripenem" "Pneumo" 1 2 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Doripenem" "Viridans strept" 1 2 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" "Doxycycline" "H. influenaza" 1 4 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" "Doxycycline" "M. cattharalis" 1 4 FALSE +"EUCAST 2014" "MIC" "Pasteurella multocida" "Doxycycline" "Pasteurella multocida" 1 2 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" "Doxycycline" "Staphs" 1 4 FALSE +"EUCAST 2014" "MIC" "Streptococcus" "Doxycycline" "Strep A, B, C, G" 1 4 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" "Doxycycline" "Pneumo" 1 4 FALSE +"EUCAST 2014" "MIC" "Campylobacter coli" "Erythromycin" "Campylobacter jejuni and coli" 8 16 FALSE +"EUCAST 2014" "MIC" "Campylobacter jejuni" "Erythromycin" "Campylobacter jejuni and coli" 4 8 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" "Erythromycin" "H. influenaza" 0.5 32 FALSE +"EUCAST 2014" "MIC" "Listeria monocytogenes" "Erythromycin" "Listeria monocytogenes" 1 2 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" "Erythromycin" "M. cattharalis" 0.25 1 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" "Erythromycin" "Staphs" 1 4 FALSE +"EUCAST 2014" "MIC" "Streptococcus" "Erythromycin" "Strep A, B, C, G" 0.25 1 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" "Erythromycin" "Pneumo" 0.25 1 FALSE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Ertapenem" "Enterobacteriaceae" 0.5 2 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" "Ertapenem" "H. influenaza" 0.5 1 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" "Ertapenem" "M. cattharalis" 0.5 1 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" "Ertapenem" "Pneumo" 0.5 1 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Ertapenem" "Viridans strept" 0.5 1 FALSE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Cefepime" "Enterobacteriaceae" 1 8 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" "Cefepime" "H. influenaza" 0.25 0.5 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" "Cefepime" "M. cattharalis" 4 8 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" "Cefepime" "Pseudo" 8 16 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" "Cefepime" "Pneumo" 1 4 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Cefepime" "Viridans strept" 0.5 1 FALSE +"EUCAST 2014" "MIC" "Candida" "Fluconazole" "Candida" 2 8 FALSE +"EUCAST 2014" "MIC" "Candida" "Fluconazole" "Candida" FALSE +"EUCAST 2014" "MIC" "Candida albicans" "Fluconazole" "Candida" 2 8 FALSE +"EUCAST 2014" "MIC" "Candida glabrata" "Fluconazole" "Candida" 0.002 64 FALSE +"EUCAST 2014" "MIC" "Candida parapsilosis" "Fluconazole" "Candida" 2 8 FALSE +"EUCAST 2014" "MIC" "Candida tropicalis" "Fluconazole" "Candida" 2 8 FALSE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Fosfomycin" "Enterobacteriaceae" 32 64 FALSE +"EUCAST 2014" "MIC" "UTI" "Enterobacteriaceae" "Fosfomycin" "Enterobacteriaceae" 32 64 TRUE +"EUCAST 2014" "MIC" "Staphylococcus" "Fosfomycin" "Staphs" 32 64 FALSE +"EUCAST 2014" "MIC" "Clostridium difficile" "Fusidic acid" "C. difficile" 2 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" "Fusidic acid" "Staphs" 1 2 FALSE +"EUCAST 2014" "DISK" "Enterococcus" "Gentamicin-high" "Enterococcus" "30ug" 8 7 FALSE +"EUCAST 2014" "MIC" "Enterococcus" "Gentamicin-high" "Enterococcus" 128 128 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Gentamicin-high" "Viridans strept" 128 128 FALSE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Gentamicin" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2014" "MIC" "Acinetobacter" "Gentamicin" "Acinetobacter spp." 4 8 FALSE +"EUCAST 2014" "MIC" "Corynebacterium" "Gentamicin" "Corynebacterium spp." 1 2 FALSE +"EUCAST 2014" "DISK" "Enterococcus" "Gentamicin" "Enterococcus" "30ug" 8 7 FALSE +"EUCAST 2014" "MIC" "Enterococcus" "Gentamicin" "Enterococcus" 128 128 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" "Gentamicin" "Pseudo" 4 8 FALSE +"EUCAST 2014" "MIC" "Staphylococcus aureus" "Gentamicin" "Staphs" 1 2 FALSE +"EUCAST 2014" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Gentamicin" "Staphs" 1 2 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Gentamicin" "Viridans strept" 128 128 FALSE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Imipenem" "Enterobacteriaceae" 2 16 FALSE +"EUCAST 2014" "MIC" "Acinetobacter" "Imipenem" "Acinetobacter spp." 2 16 FALSE +"EUCAST 2014" "MIC" "Enterococcus" "Imipenem" "Enterococcus" 4 16 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" "Imipenem" "H. influenaza" 2 4 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" "Imipenem" "M. cattharalis" 2 4 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" "Imipenem" "Pseudo" 4 16 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" "Imipenem" "Pneumo" 2 4 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Imipenem" "Viridans strept" 2 4 FALSE +"EUCAST 2014" "MIC" "UTI" "Enterobacteriaceae" "Cephalexin" "Enterobacteriaceae" 16 32 TRUE +"EUCAST 2014" "MIC" "Corynebacterium" "Linezolid" "Corynebacterium spp." 2 4 FALSE +"EUCAST 2014" "MIC" "Enterococcus" "Linezolid" "Enterococcus" 4 8 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" "Linezolid" "Staphs" 4 8 FALSE +"EUCAST 2014" "MIC" "Streptococcus" "Linezolid" "Strep A, B, C, G" 2 8 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" "Linezolid" "Pneumo" 2 8 FALSE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Levofloxacin" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2014" "MIC" "Acinetobacter" "Levofloxacin" "Acinetobacter spp." 1 4 FALSE +"EUCAST 2014" "MIC" "UTI" "Enterococcus" "Levofloxacin" "Enterococcus" 4 8 TRUE +"EUCAST 2014" "MIC" "Helicobacter pylori" "Levofloxacin" "H. pylori" 1 2 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" "Levofloxacin" "H. influenaza" 1 2 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" "Levofloxacin" "M. cattharalis" 1 2 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" "Levofloxacin" "Pseudo" 1 4 FALSE +"EUCAST 2014" "MIC" "Pasteurella multocida" "Levofloxacin" "Pasteurella multocida" 0.064 0.12 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" "Levofloxacin" "Staphs" 1 4 FALSE +"EUCAST 2014" "MIC" "Streptococcus" "Levofloxacin" "Strep A, B, C, G" 1 4 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" "Levofloxacin" "Pneumo" 2 4 FALSE +"EUCAST 2014" "MIC" "UTI" "Enterobacteriaceae" "Mecillinam (Amdinocillin)" "Enterobacteriaceae" 8 16 TRUE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Meropenem" "Enterobacteriaceae" 2 16 FALSE +"EUCAST 2014" "MIC" "Acinetobacter" "Meropenem" "Acinetobacter spp." 2 16 FALSE +"EUCAST 2014" "MIC" "Non-meningitis" "Haemophilus influenzae" "Meropenem" "H. influenaza" 2 4 FALSE +"EUCAST 2014" "MIC" "Meningitis" "Haemophilus influenzae" "Meropenem" "H. influenaza" 0.25 2 FALSE +"EUCAST 2014" "MIC" "Listeria monocytogenes" "Meropenem" "Listeria monocytogenes" 0.25 0.5 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" "Meropenem" "M. cattharalis" 2 4 FALSE +"EUCAST 2014" "MIC" "Neisseria meningitidis" "Meropenem" "N. meningitidis" 0.25 0.5 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" "Meropenem" "Pseudo" 2 16 FALSE +"EUCAST 2014" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Meropenem" "Pneumo" 2 4 FALSE +"EUCAST 2014" "MIC" "Meningitis" "Streptococcus pneumoniae" "Meropenem" "Pneumo" 0.25 2 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Meropenem" "Viridans strept" 2 4 FALSE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Moxifloxacin" "Enterobacteriaceae" 0.5 2 FALSE +"EUCAST 2014" "MIC" "Corynebacterium" "Moxifloxacin" "Corynebacterium spp." 0.5 1 FALSE +"EUCAST 2014" "MIC" "Clostridium difficile" "Moxifloxacin" "C. difficile" 4 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" "Moxifloxacin" "H. influenaza" 0.5 1 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" "Moxifloxacin" "M. cattharalis" 0.5 1 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" "Moxifloxacin" "Staphs" 0.5 2 FALSE +"EUCAST 2014" "MIC" "Streptococcus" "Moxifloxacin" "Strep A, B, C, G" 0.5 2 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" "Moxifloxacin" "Pneumo" 0.5 1 FALSE +"EUCAST 2014" "MIC" "Candida albicans" "Micafungin" "Candida" 0.016 0.03 FALSE +"EUCAST 2014" "MIC" "Candida glabrata" "Micafungin" "Candida" 0.032 0.06 FALSE +"EUCAST 2014" "MIC" "Candida parapsilosis" "Micafungin" "Candida" 0.002 4 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" "Minocycline" "H. influenaza" 1 4 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" "Minocycline" "M. cattharalis" 1 4 FALSE +"EUCAST 2014" "MIC" "Neisseria meningitidis" "Minocycline" "N. meningitidis" 1 4 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" "Minocycline" "Staphs" 0.5 2 FALSE +"EUCAST 2014" "MIC" "Streptococcus" "Minocycline" "Strep A, B, C, G" 0.5 2 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" "Minocycline" "Pneumo" 0.5 2 FALSE +"EUCAST 2014" "MIC" "Clostridium difficile" "Metronidazole" "C. difficile" 2 4 FALSE +"EUCAST 2014" "MIC" "Helicobacter pylori" "Metronidazole" "H. pylori" 8 16 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" "Mupirocin" "Staphs" 1 512 FALSE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Netilmicin" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2014" "MIC" "Acinetobacter" "Netilmicin" "Acinetobacter spp." 4 8 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" "Netilmicin" "Pseudo" 4 8 FALSE +"EUCAST 2014" "MIC" "Staphylococcus aureus" "Netilmicin" "Staphs" 1 2 FALSE +"EUCAST 2014" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Netilmicin" "Staphs" 1 2 FALSE +"EUCAST 2014" "MIC" "UTI" "Enterobacteriaceae" "Nitrofurantoin" "Enterobacteriaceae" 64 128 TRUE +"EUCAST 2014" "MIC" "UTI" "Enterococcus faecalis" "Nitrofurantoin" "Enterococcus" 64 128 TRUE +"EUCAST 2014" "MIC" "UTI" "Staphylococcus" "Nitrofurantoin" "Staphs" 64 128 TRUE +"EUCAST 2014" "MIC" "UTI" "Streptococcus group B" "Nitrofurantoin" "Strep A, B, C, G" 64 128 TRUE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Norfloxacin" "Enterobacteriaceae" 0.5 2 FALSE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Ofloxacin" "Enterobacteriaceae" 0.5 2 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" "Ofloxacin" "H. influenaza" 0.5 1 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" "Ofloxacin" "M. cattharalis" 0.5 1 FALSE +"EUCAST 2014" "MIC" "Neisseria gonorrhoeae" "Ofloxacin" "N. gonorrhoeae" 0.125 0.5 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" "Ofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" "Ofloxacin" "Pneumo" 0.125 8 FALSE +"EUCAST 2014" "MIC" "Corynebacterium" "Penicillin G" "Corynebacterium spp." 0.125 0.25 FALSE +"EUCAST 2014" "MIC" "Listeria monocytogenes" "Penicillin G" "Listeria monocytogenes" 1 2 FALSE +"EUCAST 2014" "MIC" "Neisseria gonorrhoeae" "Penicillin G" "N. gonorrhoeae" 0.064 2 FALSE +"EUCAST 2014" "MIC" "Neisseria meningitidis" "Penicillin G" "N. meningitidis" 0.064 0.5 FALSE +"EUCAST 2014" "MIC" "Pasteurella multocida" "Penicillin G" "Pasteurella multocida" 0.5 1 FALSE +"EUCAST 2014" "MIC" "Staphylococcus aureus" "Penicillin G" "Staphs" 0.125 0.25 FALSE +"EUCAST 2014" "MIC" "Staphylococcus lugdunensis" "Penicillin G" "Staphs" 0.125 0.25 FALSE +"EUCAST 2014" "MIC" "Streptococcus" "Penicillin G" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2014" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Penicillin G" "Pneumo" 0.064 4 FALSE +"EUCAST 2014" "MIC" "Meningitis" "Streptococcus pneumoniae" "Penicillin G" "Pneumo" 0.064 0.12 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Penicillin G" "Viridans strept" 0.25 4 FALSE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Piperacillin" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" "Piperacillin" "Pseudo" 16 32 FALSE +"EUCAST 2014" "MIC" "Aspergillus fumigatus" "Posaconazole" "Aspergillus" 0.125 0.25 FALSE +"EUCAST 2014" "MIC" "Aspergillus terreus" "Posaconazole" "Aspergillus" 0.125 0.5 FALSE +"EUCAST 2014" "MIC" "Candida albicans" "Posaconazole" "Candida" 0.064 0.12 FALSE +"EUCAST 2014" "MIC" "Candida parapsilosis" "Posaconazole" "Candida" 0.064 0.12 FALSE +"EUCAST 2014" "MIC" "Candida tropicalis" "Posaconazole" "Candida" 0.064 0.12 FALSE +"EUCAST 2014" "MIC" "Enterococcus" "Quinupristin/dalfopristin" "Enterococcus" 1 8 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" "Quinupristin/dalfopristin" "Staphs" 1 4 FALSE +"EUCAST 2014" "MIC" "Corynebacterium" "Rifampicin" "Corynebacterium spp." 0.064 1 FALSE +"EUCAST 2014" "MIC" "Clostridium difficile" "Rifampicin" "C. difficile" 0.004 FALSE +"EUCAST 2014" "MIC" "Helicobacter pylori" "Rifampicin" "H. pylori" 1 2 FALSE +"EUCAST 2014" "MIC" "Prophylaxis" "Haemophilus influenzae" "Rifampicin" "H. influenaza" 1 2 FALSE +"EUCAST 2014" "MIC" "Neisseria meningitidis" "Rifampicin" "N. meningitidis" 0.25 0.5 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" "Rifampicin" "Staphs" 0.064 1 FALSE +"EUCAST 2014" "MIC" "Streptococcus" "Rifampicin" "Strep A, B, C, G" 0.064 1 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" "Rifampicin" "Pneumo" 0.064 1 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" "Roxithromycin" "H. influenaza" 1 32 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" "Roxithromycin" "M. cattharalis" 0.5 2 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" "Roxithromycin" "Staphs" 1 4 FALSE +"EUCAST 2014" "MIC" "Streptococcus" "Roxithromycin" "Strep A, B, C, G" 0.5 2 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" "Roxithromycin" "Pneumo" 0.5 2 FALSE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Ampicillin/sulbactam" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2014" "MIC" "Enterococcus" "Ampicillin/sulbactam" "Enterococcus" 4 16 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" "Ampicillin/sulbactam" "H. influenaza" 1 2 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" "Ampicillin/sulbactam" "M. cattharalis" 1 2 FALSE +"EUCAST 2014" "MIC" "Neisseria gonorrhoeae" "Spectinomycin" "N. gonorrhoeae" 64 128 FALSE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2014" "MIC" "Acinetobacter" "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 8 FALSE +"EUCAST 2014" "MIC" "Enterococcus" "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 2 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" "Trimethoprim/sulfamethoxazole" "H. influenaza" 0.5 2 FALSE +"EUCAST 2014" "MIC" "Listeria monocytogenes" "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" 0.064 0.12 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" "M. cattharalis" 0.5 2 FALSE +"EUCAST 2014" "MIC" "Pasteurella multocida" "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.5 FALSE +"EUCAST 2014" "MIC" "Stenotrophomonas maltophilia" "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 4 8 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" "Trimethoprim/sulfamethoxazole" "Staphs" 2 8 FALSE +"EUCAST 2014" "MIC" "Streptococcus" "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 4 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" "Pneumo" 1 4 FALSE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" "Ticarcillin/clavulanic acid" "Pseudo" 16 32 FALSE +"EUCAST 2014" "MIC" "Campylobacter" "Tetracycline" "Campylobacter jejuni and coli" 2 4 FALSE +"EUCAST 2014" "MIC" "Corynebacterium" "Tetracycline" "Corynebacterium spp." 2 4 FALSE +"EUCAST 2014" "MIC" "Helicobacter pylori" "Tetracycline" "H. pylori" 1 2 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" "Tetracycline" "H. influenaza" 1 4 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" "Tetracycline" "M. cattharalis" 1 4 FALSE +"EUCAST 2014" "MIC" "Neisseria gonorrhoeae" "Tetracycline" "N. gonorrhoeae" 0.5 2 FALSE +"EUCAST 2014" "MIC" "Neisseria meningitidis" "Tetracycline" "N. meningitidis" 1 4 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" "Tetracycline" "Staphs" 1 4 FALSE +"EUCAST 2014" "MIC" "Streptococcus" "Tetracycline" "Strep A, B, C, G" 1 4 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" "Tetracycline" "Pneumo" 1 4 FALSE +"EUCAST 2014" "MIC" "Enterococcus" "Teicoplanin" "Enterococcus" 2 4 FALSE +"EUCAST 2014" "MIC" "Staphylococcus aureus" "Teicoplanin" "Staphs" 2 4 FALSE +"EUCAST 2014" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Teicoplanin" "Staphs" 4 8 FALSE +"EUCAST 2014" "MIC" "Streptococcus" "Teicoplanin" "Strep A, B, C, G" 2 4 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" "Teicoplanin" "Pneumo" 2 4 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Teicoplanin" "Viridans strept" 2 4 FALSE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Tigecycline" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2014" "MIC" "Clostridium difficile" "Tigecycline" "C. difficile" 0.25 FALSE +"EUCAST 2014" "MIC" "Enterococcus" "Tigecycline" "Enterococcus" 0.25 1 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" "Tigecycline" "Staphs" 0.5 1 FALSE +"EUCAST 2014" "MIC" "Streptococcus" "Tigecycline" "Strep A, B, C, G" 0.25 1 FALSE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Ticarcillin" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" "Ticarcillin" "Pseudo" 16 32 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" "Telithromycin" "H. influenaza" 0.125 16 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" "Telithromycin" "M. cattharalis" 0.25 1 FALSE +"EUCAST 2014" "MIC" "Streptococcus" "Telithromycin" "Strep A, B, C, G" 0.25 1 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" "Telithromycin" "Pneumo" 0.25 1 FALSE +"EUCAST 2014" "MIC" "Staphylococcus aureus" "Telavancin" "Staphs" 1 2 FALSE +"EUCAST 2014" "MIC" "UTI" "Enterobacteriaceae" "Trimethoprim" "Enterobacteriaceae" 2 8 TRUE +"EUCAST 2014" "MIC" "UTI" "Enterococcus" "Trimethoprim" "Enterococcus" 0.032 2 TRUE +"EUCAST 2014" "MIC" "UTI" "Staphylococcus" "Trimethoprim" "Staphs" 2 8 TRUE +"EUCAST 2014" "MIC" "UTI" "Streptococcus group B" "Trimethoprim" "Strep A, B, C, G" 2 4 TRUE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Tobramycin" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2014" "MIC" "Acinetobacter" "Tobramycin" "Acinetobacter spp." 4 8 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" "Tobramycin" "Pseudo" 4 8 FALSE +"EUCAST 2014" "MIC" "Staphylococcus aureus" "Tobramycin" "Staphs" 1 2 FALSE +"EUCAST 2014" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Tobramycin" "Staphs" 1 2 FALSE +"EUCAST 2014" "MIC" "Enterobacteriaceae" "Piperacillin/tazobactam" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" "Piperacillin/tazobactam" "Pseudo" 16 32 FALSE +"EUCAST 2014" "MIC" "Corynebacterium" "Vancomycin" "Corynebacterium spp." 2 4 FALSE +"EUCAST 2014" "MIC" "Clostridium difficile" "Vancomycin" "C. difficile" 2 4 FALSE +"EUCAST 2014" "MIC" "Enterococcus" "Vancomycin" "Enterococcus" 4 8 FALSE +"EUCAST 2014" "MIC" "Staphylococcus aureus" "Vancomycin" "Staphs" 2 4 FALSE +"EUCAST 2014" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Vancomycin" "Staphs" 4 8 FALSE +"EUCAST 2014" "MIC" "Streptococcus" "Vancomycin" "Strep A, B, C, G" 2 4 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" "Vancomycin" "Pneumo" 2 4 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Vancomycin" "Viridans strept" 2 4 FALSE +"EUCAST 2014" "MIC" "Aspergillus fumigatus" "Voriconazole" "Aspergillus" 1 4 FALSE +"EUCAST 2014" "MIC" "Candida albicans" "Voriconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2014" "MIC" "Candida parapsilosis" "Voriconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2014" "MIC" "Candida tropicalis" "Voriconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2013" "MIC" "Aspergillus" "Amphotericin B" "Aspergillus" 1 4 FALSE +"EUCAST 2013" "MIC" "Aspergillus" "Amphotericin B" "Aspergillus" 1 4 FALSE +"EUCAST 2013" "MIC" "Candida" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2013" "MIC" "Candida albicans" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2013" "MIC" "Candida glabrata" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2013" "MIC" "Candida parapsilosis" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2013" "MIC" "Candida tropicalis" "Amphotericin B" "Candida" 1 2 FALSE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20/10ug" 17 16 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2013" "MIC" "Enterococcus" "Amoxicillin/clavulanic acid" "Enterococcus" 4 16 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" "Amoxicillin/clavulanic acid" "H.influenzae" "2/1ug" 15 14 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Amoxicillin/clavulanic acid" "H.influenzae" 2 4 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" "M.catarrhalis" "2/1ug" 19 18 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" "M.catarrhalis" 1 2 FALSE +"EUCAST 2013" "DISK" "Pasteurella multocida" "Amoxicillin/clavulanic acid" "Pasteurella" "2/1ug" 15 14 FALSE +"EUCAST 2013" "MIC" "Pasteurella multocida" "Amoxicillin/clavulanic acid" "Pasteurella" 1 2 FALSE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Amikacin" "Enterobacteriaceae" "30ug" 16 12 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Amikacin" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" "Amikacin" "Acinetob" "30ug" 18 14 FALSE +"EUCAST 2013" "MIC" "Acinetobacter" "Amikacin" "Acinetob" 8 32 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" "Amikacin" "Pseud" "30ug" 18 14 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" "Amikacin" "Pseud" 8 32 FALSE +"EUCAST 2013" "DISK" "Staphylococcus aureus" "Amikacin" "Staphs" "30ug" 18 15 FALSE +"EUCAST 2013" "MIC" "Staphylococcus aureus" "Amikacin" "Staphs" 8 32 FALSE +"EUCAST 2013" "DISK" "Coagulase-negative Staphylococcus (CoNS)" "Amikacin" "Staphs" "30ug" 22 18 FALSE +"EUCAST 2013" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Amikacin" "Staphs" 8 32 FALSE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Ampicillin" "Enterobacteriaceae" "10ug" 14 13 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Ampicillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2013" "DISK" "Enterococcus" "Ampicillin" "Enterococcus" "2ug" 10 7 FALSE +"EUCAST 2013" "MIC" "Enterococcus" "Ampicillin" "Enterococcus" 4 16 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" "Ampicillin" "H.influenzae" "2ug" 16 15 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Ampicillin" "H.influenzae" 1 2 FALSE +"EUCAST 2013" "DISK" "Listeria monocytogenes" "Ampicillin" "Listeria" "2ug" 16 15 FALSE +"EUCAST 2013" "MIC" "Listeria monocytogenes" "Ampicillin" "Listeria" 1 2 FALSE +"EUCAST 2013" "MIC" "Neisseria meningitidis" "Ampicillin" "N.meningitidis" 0.125 2 FALSE +"EUCAST 2013" "DISK" "Pasteurella multocida" "Ampicillin" "Pasteurella" "2ug" 17 16 FALSE +"EUCAST 2013" "MIC" "Pasteurella multocida" "Ampicillin" "Pasteurella" 1 2 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" "Ampicillin" "Staphs" "2ug" 15 14 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Ampicillin" "Pneumo" 0.5 4 FALSE +"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Ampicillin" "Viridans strept" "2ug" 21 14 FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Ampicillin" "Viridans strept" 0.5 4 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Amoxicillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2013" "MIC" "Enterococcus" "Amoxicillin" "Enterococcus" 4 16 FALSE +"EUCAST 2013" "MIC" "Helicobacter pylori" "Amoxicillin" "H.pylori" 0.125 0.25 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Amoxicillin" "H.influenzae" 2 4 FALSE +"EUCAST 2013" "MIC" "Neisseria meningitidis" "Amoxicillin" "N.meningitidis" 0.125 2 FALSE +"EUCAST 2013" "MIC" "Pasteurella multocida" "Amoxicillin" "Pasteurella" 1 2 FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Amoxicillin" "Viridans strept" 0.5 4 FALSE +"EUCAST 2013" "MIC" "Candida" "Anidulafungin" "Candida" 0.064 0.12 FALSE +"EUCAST 2013" "MIC" "Candida albicans" "Anidulafungin" "Candida" 0.032 0.06 FALSE +"EUCAST 2013" "MIC" "Candida glabrata" "Anidulafungin" "Candida" 0.064 0.12 FALSE +"EUCAST 2013" "MIC" "Candida tropicalis" "Anidulafungin" "Candida" 0.064 0.12 FALSE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Aztreonam" "Enterobacteriaceae" "30ug" 24 20 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Aztreonam" "Enterobacteriaceae" 1 8 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" "Aztreonam" "Pseud" "30ug" 50 15 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" "Aztreonam" "Pseud" 1 32 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Azithromycin" "H.influenzae" 0.125 8 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" "Azithromycin" "M.catarrhalis" 0.25 1 FALSE +"EUCAST 2013" "MIC" "Neisseria gonorrhoeae" "Azithromycin" "N.gonorrhoeae" 0.25 1 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" "Azithromycin" "Staphs" 1 4 FALSE +"EUCAST 2013" "MIC" "Streptococcus" "Azithromycin" "Strept A,B,C,G" 0.25 1 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Azithromycin" "Pneumo" 0.25 1 FALSE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Ceftazidime" "Enterobacteriaceae" "10ug" 22 18 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Ceftazidime" "Enterobacteriaceae" 1 8 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" "Ceftazidime" "Pseud" "10ug" 16 15 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" "Ceftazidime" "Pseud" 8 16 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Cefaclor" "H.influenzae" 0.5 1 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" "Cefaclor" "M.catarrhalis" 0.125 0.25 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" "Cefaclor" "Pneumo" "30ug" 50 27 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Cefaclor" "Pneumo" 0.032 1 FALSE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacteriaceae" "Cefixime" "Enterobacteriaceae" "5ug" 17 16 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacteriaceae" "Cefixime" "Enterobacteriaceae" 1 2 TRUE +"EUCAST 2013" "DISK" "Haemophilus influenzae" "Cefixime" "H.influenzae" "5ug" 25 24 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Cefixime" "H.influenzae" 0.125 0.25 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" "Cefixime" "M.catarrhalis" "5ug" 21 17 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" "Cefixime" "M.catarrhalis" 0.5 2 FALSE +"EUCAST 2013" "MIC" "Neisseria gonorrhoeae" "Cefixime" "N.gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacteriaceae" "Cefadroxil" "Enterobacteriaceae" "30ug" 12 11 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacteriaceae" "Cefadroxil" "Enterobacteriaceae" 16 32 TRUE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Chloramphenicol" "Enterobacteriaceae" "30ug" 17 16 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Chloramphenicol" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" "Chloramphenicol" "H.influenzae" "30ug" 28 27 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Chloramphenicol" "H.influenzae" 2 4 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" "Chloramphenicol" "M.catarrhalis" "30ug" 30 29 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" "Chloramphenicol" "M.catarrhalis" 2 4 FALSE +"EUCAST 2013" "MIC" "Neisseria meningitidis" "Chloramphenicol" "N.meningitidis" 2 8 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" "Chloramphenicol" "Staphs" "30ug" 18 17 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" "Chloramphenicol" "Staphs" 8 16 FALSE +"EUCAST 2013" "DISK" "Streptococcus" "Chloramphenicol" "Strept A,B,C,G" "30ug" 19 18 FALSE +"EUCAST 2013" "MIC" "Streptococcus" "Chloramphenicol" "Strept A,B,C,G" 8 16 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" "Chloramphenicol" "Pneumo" "30ug" 21 20 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Chloramphenicol" "Pneumo" 8 16 FALSE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Ciprofloxacin" "Enterobacteriaceae" "5ug" 22 18 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Ciprofloxacin" "Enterobacteriaceae" 0.5 2 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" "Ciprofloxacin" "Acinetob" "5ug" 21 20 FALSE +"EUCAST 2013" "MIC" "Acinetobacter" "Ciprofloxacin" "Acinetob" 1 2 FALSE +"EUCAST 2013" "DISK" "Campylobacter" "Ciprofloxacin" "Campylobacter" "5ug" 26 25 FALSE +"EUCAST 2013" "MIC" "Campylobacter" "Ciprofloxacin" "Campylobacter" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" "Ciprofloxacin" "H.influenzae" "5ug" 26 25 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Ciprofloxacin" "H.influenzae" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" "Ciprofloxacin" "M.catarrhalis" "5ug" 23 22 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" "Ciprofloxacin" "M.catarrhalis" 0.5 1 FALSE +"EUCAST 2013" "MIC" "Neisseria gonorrhoeae" "Ciprofloxacin" "N.gonorrhoeae" 0.032 0.12 FALSE +"EUCAST 2013" "MIC" "Neisseria meningitidis" "Ciprofloxacin" "N.meningitidis" 0.032 0.12 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" "Ciprofloxacin" "Pseud" "5ug" 25 21 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" "Ciprofloxacin" "Pseud" 0.5 2 FALSE +"EUCAST 2013" "DISK" "Pasteurella multocida" "Ciprofloxacin" "Pasteurella" "5ug" 27 26 FALSE +"EUCAST 2013" "MIC" "Pasteurella multocida" "Ciprofloxacin" "Pasteurella" 0.064 0.12 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" "Ciprofloxacin" "Staphs" "5ug" 20 19 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" "Ciprofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" "Ciprofloxacin" "Pneumo" "5ug" 50 15 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Ciprofloxacin" "Pneumo" 0.125 4 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" "Clindamycin" "Staphs" "2ug" 22 18 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" "Clindamycin" "Staphs" 0.25 1 FALSE +"EUCAST 2013" "DISK" "Streptococcus" "Clindamycin" "Strept A,B,C,G" "2ug" 17 16 FALSE +"EUCAST 2013" "MIC" "Streptococcus" "Clindamycin" "Strept A,B,C,G" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" "Clindamycin" "Pneumo" "2ug" 19 18 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Clindamycin" "Pneumo" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Clindamycin" "Viridans strept" "2ug" 19 18 FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Clindamycin" "Viridans strept" 0.5 1 FALSE +"EUCAST 2013" "MIC" "Helicobacter pylori" "Clarithromycin" "H.pylori" 0.25 1 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Clarithromycin" "H.influenzae" 1 64 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" "Clarithromycin" "M.catarrhalis" 0.25 1 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" "Clarithromycin" "Staphs" 1 4 FALSE +"EUCAST 2013" "MIC" "Streptococcus" "Clarithromycin" "Strept A,B,C,G" 0.25 1 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Clarithromycin" "Pneumo" 0.25 1 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Colistin" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2013" "MIC" "Acinetobacter" "Colistin" "Acinetob" 2 4 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" "Colistin" "Pseud" 4 8 FALSE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacteriaceae" "Cefpodoxime" "Enterobacteriaceae" "10ug" 21 20 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacteriaceae" "Cefpodoxime" "Enterobacteriaceae" 1 2 TRUE +"EUCAST 2013" "DISK" "Haemophilus influenzae" "Cefpodoxime" "H.influenzae" "10ug" 26 22 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Cefpodoxime" "H.influenzae" 0.25 1 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Cefpodoxime" "Pneumo" 0.25 1 FALSE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Ceftaroline" "Enterobacteriaceae" "5ug" 23 22 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Ceftaroline" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Ceftaroline" "H.influenzae" 0.032 0.06 FALSE +"EUCAST 2013" "DISK" "Staphylococcus aureus" "Ceftaroline" "Staphs" "5ug" 20 19 FALSE +"EUCAST 2013" "MIC" "Staphylococcus aureus" "Ceftaroline" "Staphs" 1 2 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Ceftaroline" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Ceftriaxone" "Enterobacteriaceae" "30ug" 23 19 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Ceftriaxone" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" "Ceftriaxone" "H.influenzae" "30ug" 30 29 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Ceftriaxone" "H.influenzae" 0.125 0.25 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" "Ceftriaxone" "M.catarrhalis" "30ug" 24 20 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" "Ceftriaxone" "M.catarrhalis" 1 4 FALSE +"EUCAST 2013" "MIC" "Neisseria gonorrhoeae" "Ceftriaxone" "N.gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2013" "MIC" "Neisseria meningitidis" "Ceftriaxone" "N.meningitidis" 0.125 0.25 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Ceftriaxone" "Pneumo" 0.5 4 FALSE +"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" "Viridans strept" "30ug" 27 26 FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" "Viridans strept" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacteriaceae" "Ceftibuten" "Enterobacteriaceae" "30ug" 23 22 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacteriaceae" "Ceftibuten" "Enterobacteriaceae" 1 2 TRUE +"EUCAST 2013" "DISK" "Haemophilus influenzae" "Ceftibuten" "H.influenzae" "30ug" 25 24 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Ceftibuten" "H.influenzae" 1 2 FALSE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Cefotaxime" "Enterobacteriaceae" "5ug" 20 16 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Cefotaxime" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" "Cefotaxime" "H.influenzae" "5ug" 26 25 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Cefotaxime" "H.influenzae" 0.125 0.25 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" "Cefotaxime" "M.catarrhalis" "5ug" 20 16 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" "Cefotaxime" "M.catarrhalis" 1 4 FALSE +"EUCAST 2013" "MIC" "Neisseria gonorrhoeae" "Cefotaxime" "N.gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2013" "MIC" "Neisseria meningitidis" "Cefotaxime" "N.meningitidis" 0.125 0.25 FALSE +"EUCAST 2013" "DISK" "Pasteurella multocida" "Cefotaxime" "Pasteurella" "5ug" 26 25 FALSE +"EUCAST 2013" "MIC" "Pasteurella multocida" "Cefotaxime" "Pasteurella" 0.032 0.06 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Cefotaxime" "Pneumo" 0.5 4 FALSE +"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Cefotaxime" "Viridans strept" "5ug" 23 22 FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Cefotaxime" "Viridans strept" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacteriaceae" "Cefuroxime axetil" "Enterobacteriaceae" "30ug" 18 17 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacteriaceae" "Cefuroxime axetil" "Enterobacteriaceae" 8 16 TRUE +"EUCAST 2013" "DISK" "Haemophilus influenzae" "Cefuroxime axetil" "H.influenzae" "30ug" 50 25 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Cefuroxime axetil" "H.influenzae" 0.125 2 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" "Cefuroxime axetil" "M.catarrhalis" "30ug" 50 20 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" "Cefuroxime axetil" "M.catarrhalis" 0.125 8 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Cefuroxime axetil" "Pneumo" 0.25 1 FALSE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Cefuroxime" "Enterobacteriaceae" "30ug" 18 17 FALSE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacteriaceae" "Cefuroxime" "Enterobacteriaceae" "30ug" 18 17 TRUE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Cefuroxime" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacteriaceae" "Cefuroxime" "Enterobacteriaceae" 8 16 TRUE +"EUCAST 2013" "DISK" "Haemophilus influenzae" "Cefuroxime" "H.influenzae" "30ug" 26 24 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" "Cefuroxime" "H.influenzae" "30ug" 50 25 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Cefuroxime" "H.influenzae" 1 4 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Cefuroxime" "H.influenzae" 0.125 2 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" "Cefuroxime" "M.catarrhalis" "30ug" 21 17 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" "Cefuroxime" "M.catarrhalis" "30ug" 50 20 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" "Cefuroxime" "M.catarrhalis" 4 16 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" "Cefuroxime" "M.catarrhalis" 0.125 8 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Cefuroxime" "Pneumo" 0.5 2 FALSE +"EUCAST 2013" "MIC" "Oral" "Streptococcus pneumoniae" "Cefuroxime" "Pneumo" 0.25 1 FALSE +"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Cefuroxime" "Viridans strept" "30ug" 26 25 FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Cefuroxime" "Viridans strept" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Cefazolin" "Viridans strept" "30ug" FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Cefazolin" "Viridans strept" 0.5 1 FALSE +"EUCAST 2013" "MIC" "Clostridium difficile" "Daptomycin" "C.difficile" 4 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" "Daptomycin" "Staphs" 1 2 FALSE +"EUCAST 2013" "MIC" "Streptococcus" "Daptomycin" "Strept A,B,C,G" 1 2 FALSE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Doripenem" "Enterobacteriaceae" "10ug" 24 17 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Doripenem" "Enterobacteriaceae" 1 8 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" "Doripenem" "Acinetob" "10ug" 21 14 FALSE +"EUCAST 2013" "MIC" "Acinetobacter" "Doripenem" "Acinetob" 1 8 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" "Doripenem" "H.influenzae" "10ug" 20 19 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Doripenem" "H.influenzae" 1 2 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" "Doripenem" "M.catarrhalis" "10ug" 30 29 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" "Doripenem" "M.catarrhalis" 1 2 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" "Doripenem" "Pseud" "10ug" 25 18 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" "Doripenem" "Pseud" 1 8 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Doripenem" "Pneumo" 1 2 FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Doripenem" "Viridans strept" 1 2 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Doxycycline" "H.influenzae" 1 4 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" "Doxycycline" "M.catarrhalis" 1 4 FALSE +"EUCAST 2013" "MIC" "Pasteurella multocida" "Doxycycline" "Pasteurella" 1 2 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" "Doxycycline" "Staphs" 1 4 FALSE +"EUCAST 2013" "MIC" "Streptococcus" "Doxycycline" "Strept A,B,C,G" 1 4 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Doxycycline" "Pneumo" 1 4 FALSE +"EUCAST 2013" "DISK" "Campylobacter coli" "Erythromycin" "Campylobacter" "15ug" 24 23 FALSE +"EUCAST 2013" "MIC" "Campylobacter coli" "Erythromycin" "Campylobacter" 8 16 FALSE +"EUCAST 2013" "DISK" "Campylobacter jejuni" "Erythromycin" "Campylobacter" "15ug" 20 19 FALSE +"EUCAST 2013" "MIC" "Campylobacter jejuni" "Erythromycin" "Campylobacter" 4 8 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" "Erythromycin" "H.influenzae" "15ug" 50 9 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Erythromycin" "H.influenzae" 0.5 32 FALSE +"EUCAST 2013" "DISK" "Listeria monocytogenes" "Erythromycin" "Listeria" "15ug" 25 24 FALSE +"EUCAST 2013" "MIC" "Listeria monocytogenes" "Erythromycin" "Listeria" 1 2 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" "Erythromycin" "M.catarrhalis" "15ug" 23 19 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" "Erythromycin" "M.catarrhalis" 0.25 1 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" "Erythromycin" "Staphs" "15ug" 21 17 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" "Erythromycin" "Staphs" 1 4 FALSE +"EUCAST 2013" "DISK" "Streptococcus" "Erythromycin" "Strept A,B,C,G" "15ug" 21 17 FALSE +"EUCAST 2013" "MIC" "Streptococcus" "Erythromycin" "Strept A,B,C,G" 0.25 1 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" "Erythromycin" "Pneumo" "15ug" 22 18 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Erythromycin" "Pneumo" 0.25 1 FALSE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Ertapenem" "Enterobacteriaceae" "10ug" 25 21 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Ertapenem" "Enterobacteriaceae" 0.5 2 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" "Ertapenem" "H.influenzae" "10ug" 20 19 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Ertapenem" "H.influenzae" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" "Ertapenem" "M.catarrhalis" "10ug" 29 28 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" "Ertapenem" "M.catarrhalis" 0.5 1 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Ertapenem" "Pneumo" 0.5 1 FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Ertapenem" "Viridans strept" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Cefepime" "Enterobacteriaceae" "30ug" 24 20 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Cefepime" "Enterobacteriaceae" 1 8 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" "Cefepime" "H.influenzae" "30ug" 27 26 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Cefepime" "H.influenzae" 0.25 0.5 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" "Cefepime" "M.catarrhalis" "30ug" 20 19 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" "Cefepime" "M.catarrhalis" 4 8 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" "Cefepime" "Pseud" "30ug" 18 17 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" "Cefepime" "Pseud" 8 16 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Cefepime" "Pneumo" 1 4 FALSE +"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Cefepime" "Viridans strept" "30ug" 25 24 FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Cefepime" "Viridans strept" 0.5 1 FALSE +"EUCAST 2013" "MIC" "Candida" "Fluconazole" "Candida" 2 8 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Fosfomycin" "Enterobacteriaceae" 32 64 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" "Fosfomycin" "Staphs" 32 64 FALSE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Cefoxitin" "Enterobacteriaceae" "30ug" 19 18 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Cefoxitin" "Enterobacteriaceae" 8 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" "Cefoxitin" "Staphs" "30ug" 22 21 FALSE +"EUCAST 2013" "DISK" "Staphylococcus aureus" "Cefoxitin" "Staphs" "30ug" 22 21 FALSE +"EUCAST 2013" "MIC" "Staphylococcus aureus" "Cefoxitin" "Staphs" 4 8 FALSE +"EUCAST 2013" "DISK" "Coagulase-negative Staphylococcus (CoNS)" "Cefoxitin" "Staphs" "30ug" 25 24 FALSE +"EUCAST 2013" "DISK" "Staphylococcus lugdunensis" "Cefoxitin" "Staphs" "30ug" 22 21 FALSE +"EUCAST 2013" "MIC" "Staphylococcus lugdunensis" "Cefoxitin" "Staphs" 4 8 FALSE +"EUCAST 2013" "MIC" "Clostridium difficile" "Fusidic acid" "C.difficile" 2 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" "Fusidic acid" "Staphs" "10ug" 24 23 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" "Fusidic acid" "Staphs" 1 2 FALSE +"EUCAST 2013" "DISK" "Enterococcus" "Gentamicin-high" "Enterococcus" "30ug" 8 7 FALSE +"EUCAST 2013" "MIC" "Enterococcus" "Gentamicin-high" "Enterococcus" 128 128 FALSE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Gentamicin" "Enterobacteriaceae" "10ug" 17 13 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Gentamicin" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" "Gentamicin" "Acinetob" "10ug" 17 16 FALSE +"EUCAST 2013" "MIC" "Acinetobacter" "Gentamicin" "Acinetob" 4 8 FALSE +"EUCAST 2013" "DISK" "Enterococcus" "Gentamicin" "Enterococcus" "30ug" 8 7 FALSE +"EUCAST 2013" "MIC" "Enterococcus" "Gentamicin" "Enterococcus" 128 128 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" "Gentamicin" "Pseud" "10ug" 15 14 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" "Gentamicin" "Pseud" 4 8 FALSE +"EUCAST 2013" "DISK" "Staphylococcus aureus" "Gentamicin" "Staphs" "10ug" 18 17 FALSE +"EUCAST 2013" "MIC" "Staphylococcus aureus" "Gentamicin" "Staphs" 1 2 FALSE +"EUCAST 2013" "DISK" "Coagulase-negative Staphylococcus (CoNS)" "Gentamicin" "Staphs" "10ug" 22 21 FALSE +"EUCAST 2013" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Gentamicin" "Staphs" 1 2 FALSE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Imipenem" "Enterobacteriaceae" "10ug" 22 15 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Imipenem" "Enterobacteriaceae" 2 16 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" "Imipenem" "Acinetob" "10ug" 23 16 FALSE +"EUCAST 2013" "MIC" "Acinetobacter" "Imipenem" "Acinetob" 2 16 FALSE +"EUCAST 2013" "DISK" "Enterococcus" "Imipenem" "Enterococcus" "10ug" 21 17 FALSE +"EUCAST 2013" "MIC" "Enterococcus" "Imipenem" "Enterococcus" 4 16 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" "Imipenem" "H.influenzae" "10ug" 20 19 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Imipenem" "H.influenzae" 2 4 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" "Imipenem" "M.catarrhalis" "10ug" 29 28 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" "Imipenem" "M.catarrhalis" 2 4 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" "Imipenem" "Pseud" "10ug" 20 16 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" "Imipenem" "Pseud" 4 16 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Imipenem" "Pneumo" 2 4 FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Imipenem" "Viridans strept" 2 4 FALSE +"EUCAST 2013" "MIC" "Aspergillus" "Itraconazole" "Aspergillus" 1 4 FALSE +"EUCAST 2013" "MIC" "Aspergillus" "Itraconazole" "Aspergillus" 1 4 FALSE +"EUCAST 2013" "MIC" "Aspergillus" "Itraconazole" "Aspergillus" 1 4 FALSE +"EUCAST 2013" "MIC" "Aspergillus" "Itraconazole" "Aspergillus" 1 4 FALSE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacteriaceae" "Cephalexin" "Enterobacteriaceae" "30ug" 14 13 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacteriaceae" "Cephalexin" "Enterobacteriaceae" 16 32 TRUE +"EUCAST 2013" "DISK" "Enterococcus" "Linezolid" "Enterococcus" "10ug" 19 18 FALSE +"EUCAST 2013" "MIC" "Enterococcus" "Linezolid" "Enterococcus" 4 8 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" "Linezolid" "Staphs" "10ug" 19 18 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" "Linezolid" "Staphs" 4 8 FALSE +"EUCAST 2013" "DISK" "Streptococcus" "Linezolid" "Strept A,B,C,G" "10ug" 19 15 FALSE +"EUCAST 2013" "MIC" "Streptococcus" "Linezolid" "Strept A,B,C,G" 2 8 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" "Linezolid" "Pneumo" "10ug" 22 18 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Linezolid" "Pneumo" 2 8 FALSE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Levofloxacin" "Enterobacteriaceae" "5ug" 22 18 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Levofloxacin" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" "Levofloxacin" "Acinetob" "5ug" 21 17 FALSE +"EUCAST 2013" "MIC" "Acinetobacter" "Levofloxacin" "Acinetob" 1 4 FALSE +"EUCAST 2013" "MIC" "Helicobacter pylori" "Levofloxacin" "H.pylori" 1 2 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" "Levofloxacin" "H.influenzae" "5ug" 26 25 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Levofloxacin" "H.influenzae" 1 2 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" "Levofloxacin" "M.catarrhalis" "5ug" 23 22 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" "Levofloxacin" "M.catarrhalis" 1 2 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" "Levofloxacin" "Pseud" "5ug" 20 16 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" "Levofloxacin" "Pseud" 1 4 FALSE +"EUCAST 2013" "DISK" "Pasteurella multocida" "Levofloxacin" "Pasteurella" "5ug" 27 26 FALSE +"EUCAST 2013" "MIC" "Pasteurella multocida" "Levofloxacin" "Pasteurella" 0.064 0.12 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" "Levofloxacin" "Staphs" "5ug" 22 18 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" "Levofloxacin" "Staphs" 1 4 FALSE +"EUCAST 2013" "DISK" "Streptococcus" "Levofloxacin" "Strept A,B,C,G" "5ug" 18 14 FALSE +"EUCAST 2013" "MIC" "Streptococcus" "Levofloxacin" "Strept A,B,C,G" 1 4 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" "Levofloxacin" "Pneumo" "5ug" 17 16 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Levofloxacin" "Pneumo" 2 4 FALSE +"EUCAST 2013" "DISK" "Urinary tract infect" "Escherichia coli" "Mecillinam (Amdinocillin)" "Enterobacteriaceae" "10ug" 15 14 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Escherichia coli" "Mecillinam (Amdinocillin)" "Enterobacteriaceae" 8 16 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Klebsiella pneumoniae" "Mecillinam (Amdinocillin)" "Enterobacteriaceae" "10ug" 15 14 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Klebsiella pneumoniae" "Mecillinam (Amdinocillin)" "Enterobacteriaceae" 8 16 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Proteus mirabilis" "Mecillinam (Amdinocillin)" "Enterobacteriaceae" "10ug" 15 14 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Proteus mirabilis" "Mecillinam (Amdinocillin)" "Enterobacteriaceae" 8 16 TRUE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Meropenem" "Enterobacteriaceae" "10ug" 22 15 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Meropenem" "Enterobacteriaceae" 2 16 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" "Meropenem" "Acinetob" "10ug" 21 14 FALSE +"EUCAST 2013" "MIC" "Acinetobacter" "Meropenem" "Acinetob" 2 16 FALSE +"EUCAST 2013" "DISK" "Nonmeningitis" "Haemophilus influenzae" "Meropenem" "H.influenzae" "10ug" 20 19 FALSE +"EUCAST 2013" "MIC" "Nonmeningitis" "Haemophilus influenzae" "Meropenem" "H.influenzae" 2 4 FALSE +"EUCAST 2013" "MIC" "Meningitis" "Haemophilus influenzae" "Meropenem" "H.influenzae" 0.25 2 FALSE +"EUCAST 2013" "DISK" "Listeria monocytogenes" "Meropenem" "Listeria" "10ug" 26 25 FALSE +"EUCAST 2013" "MIC" "Listeria monocytogenes" "Meropenem" "Listeria" 0.25 0.5 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" "Meropenem" "M.catarrhalis" "10ug" 33 32 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" "Meropenem" "M.catarrhalis" 2 4 FALSE +"EUCAST 2013" "MIC" "Neisseria meningitidis" "Meropenem" "N.meningitidis" 0.25 0.5 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" "Meropenem" "Pseud" "10ug" 24 17 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" "Meropenem" "Pseud" 2 16 FALSE +"EUCAST 2013" "MIC" "Meningitis" "Streptococcus pneumoniae" "Meropenem" "Pneumo" 0.25 2 FALSE +"EUCAST 2013" "MIC" "Nonmeningitis" "Streptococcus pneumoniae" "Meropenem" "Pneumo" 2 4 FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Meropenem" "Viridans strept" 2 4 FALSE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Moxifloxacin" "Enterobacteriaceae" "5ug" 20 16 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Moxifloxacin" "Enterobacteriaceae" 0.5 2 FALSE +"EUCAST 2013" "MIC" "Clostridium difficile" "Moxifloxacin" "C.difficile" 4 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" "Moxifloxacin" "H.influenzae" "5ug" 25 24 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Moxifloxacin" "H.influenzae" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" "Moxifloxacin" "M.catarrhalis" "5ug" 23 22 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" "Moxifloxacin" "M.catarrhalis" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" "Moxifloxacin" "Staphs" "5ug" 24 20 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" "Moxifloxacin" "Staphs" 0.5 2 FALSE +"EUCAST 2013" "DISK" "Streptococcus" "Moxifloxacin" "Strept A,B,C,G" "5ug" 18 14 FALSE +"EUCAST 2013" "MIC" "Streptococcus" "Moxifloxacin" "Strept A,B,C,G" 0.5 2 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" "Moxifloxacin" "Pneumo" "5ug" 22 21 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Moxifloxacin" "Pneumo" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" "Minocycline" "H.influenzae" "30ug" 24 20 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Minocycline" "H.influenzae" 1 4 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" "Minocycline" "M.catarrhalis" "30ug" 25 21 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" "Minocycline" "M.catarrhalis" 1 4 FALSE +"EUCAST 2013" "MIC" "Neisseria meningitidis" "Minocycline" "N.meningitidis" 1 4 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" "Minocycline" "Staphs" "30ug" 23 19 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" "Minocycline" "Staphs" 0.5 2 FALSE +"EUCAST 2013" "DISK" "Streptococcus" "Minocycline" "Strept A,B,C,G" "30ug" 23 19 FALSE +"EUCAST 2013" "MIC" "Streptococcus" "Minocycline" "Strept A,B,C,G" 0.5 2 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" "Minocycline" "Pneumo" "30ug" 24 20 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Minocycline" "Pneumo" 0.5 2 FALSE +"EUCAST 2013" "MIC" "Clostridium difficile" "Metronidazole" "C.difficile" 2 4 FALSE +"EUCAST 2013" "MIC" "Helicobacter pylori" "Metronidazole" "H.pylori" 8 16 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" "Mupirocin" "Staphs" "200ug" 30 17 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" "Mupirocin" "Staphs" 1 512 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" "Nalidixic acid" "H.influenzae" "30ug" 23 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" "Nalidixic acid" "M.catarrhalis" "30ug" 23 FALSE +"EUCAST 2013" "DISK" "Pasteurella multocida" "Nalidixic acid" "Pasteurella" "30ug" 23 FALSE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Netilmicin" "Enterobacteriaceae" "10ug" 15 11 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Netilmicin" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" "Netilmicin" "Acinetob" "10ug" 16 15 FALSE +"EUCAST 2013" "MIC" "Acinetobacter" "Netilmicin" "Acinetob" 4 8 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" "Netilmicin" "Pseud" "10ug" 12 11 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" "Netilmicin" "Pseud" 4 8 FALSE +"EUCAST 2013" "DISK" "Staphylococcus aureus" "Netilmicin" "Staphs" "10ug" 18 17 FALSE +"EUCAST 2013" "MIC" "Staphylococcus aureus" "Netilmicin" "Staphs" 1 2 FALSE +"EUCAST 2013" "DISK" "Coagulase-negative Staphylococcus (CoNS)" "Netilmicin" "Staphs" "10ug" 22 21 FALSE +"EUCAST 2013" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Netilmicin" "Staphs" 1 2 FALSE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacteriaceae" "Nitrofurantoin" "Enterobacteriaceae" "100ug" 11 10 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacteriaceae" "Nitrofurantoin" "Enterobacteriaceae" 64 128 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterococcus faecalis" "Nitrofurantoin" "Enterococcus" "100ug" 15 14 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Enterococcus faecalis" "Nitrofurantoin" "Enterococcus" 64 128 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Staphylococcus" "Nitrofurantoin" "Staphs" "100ug" 13 12 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Staphylococcus" "Nitrofurantoin" "Staphs" 64 128 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Streptococcus group B" "Nitrofurantoin" "Strept A,B,C,G" "100ug" 15 14 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Streptococcus group B" "Nitrofurantoin" "Strept A,B,C,G" 64 128 TRUE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Norfloxacin" "Enterobacteriaceae" "10ug" 22 18 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Norfloxacin" "Enterobacteriaceae" 0.5 2 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" "Norfloxacin" "Staphs" "10ug" 17 FALSE +"EUCAST 2013" "DISK" "Streptococcus" "Norfloxacin" "Strept A,B,C,G" "10ug" 12 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" "Norfloxacin" "Pneumo" "10ug" 12 FALSE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Ofloxacin" "Enterobacteriaceae" "5ug" 22 18 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Ofloxacin" "Enterobacteriaceae" 0.5 2 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" "Ofloxacin" "H.influenzae" "5ug" 23 22 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Ofloxacin" "H.influenzae" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" "Ofloxacin" "M.catarrhalis" "5ug" 25 24 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" "Ofloxacin" "M.catarrhalis" 0.5 1 FALSE +"EUCAST 2013" "MIC" "Neisseria gonorrhoeae" "Ofloxacin" "N.gonorrhoeae" 0.125 0.5 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" "Ofloxacin" "Staphs" "5ug" 20 19 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" "Ofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" "Ofloxacin" "Pneumo" "5ug" 50 12 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Ofloxacin" "Pneumo" 0.125 8 FALSE +"EUCAST 2013" "MIC" "Staphylococcus aureus" "Oxacillin" "Staphs" 2 4 FALSE +"EUCAST 2013" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Oxacillin" "Staphs" 0.25 0.5 FALSE +"EUCAST 2013" "MIC" "Staphylococcus lugdunensis" "Oxacillin" "Staphs" 2 4 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" "Oxacillin" "Pneumo" "1ug" 20 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" "Penicillin G" "H.influenzae" "1unit" 12 FALSE +"EUCAST 2013" "DISK" "Listeria monocytogenes" "Penicillin G" "Listeria" "1unit" 13 12 FALSE +"EUCAST 2013" "MIC" "Listeria monocytogenes" "Penicillin G" "Listeria" 1 2 FALSE +"EUCAST 2013" "MIC" "Neisseria gonorrhoeae" "Penicillin G" "N.gonorrhoeae" 0.064 2 FALSE +"EUCAST 2013" "MIC" "Neisseria meningitidis" "Penicillin G" "N.meningitidis" 0.064 0.5 FALSE +"EUCAST 2013" "DISK" "Pasteurella multocida" "Penicillin G" "Pasteurella" "1unit" 17 16 FALSE +"EUCAST 2013" "MIC" "Pasteurella multocida" "Penicillin G" "Pasteurella" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Staphylococcus aureus" "Penicillin G" "Staphs" "1unit" 26 25 FALSE +"EUCAST 2013" "MIC" "Staphylococcus aureus" "Penicillin G" "Staphs" 0.125 0.25 FALSE +"EUCAST 2013" "DISK" "Streptococcus" "Penicillin G" "Strept A,B,C,G" "1unit" 18 17 FALSE +"EUCAST 2013" "MIC" "Streptococcus" "Penicillin G" "Strept A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2013" "MIC" "Meningitis" "Streptococcus pneumoniae" "Penicillin G" "Pneumo" 0.064 0.12 FALSE +"EUCAST 2013" "MIC" "Nonmeningitis" "Streptococcus pneumoniae" "Penicillin G" "Pneumo" 0.064 4 FALSE +"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Penicillin G" "Viridans strept" "1unit" 18 11 FALSE +"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Penicillin G" "Viridans strept" "1unit" 18 FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Penicillin G" "Viridans strept" 0.25 4 FALSE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Piperacillin" "Enterobacteriaceae" "30ug" 20 16 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Piperacillin" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" "Piperacillin" "Pseud" "30ug" 19 18 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" "Piperacillin" "Pseud" 16 32 FALSE +"EUCAST 2013" "MIC" "Aspergillus" "Posaconazole" "Aspergillus" 0.125 0.25 FALSE +"EUCAST 2013" "MIC" "Aspergillus" "Posaconazole" "Aspergillus" 0.125 0.25 FALSE +"EUCAST 2013" "MIC" "Candida albicans" "Posaconazole" "Candida" 0.064 0.12 FALSE +"EUCAST 2013" "MIC" "Candida parapsilosis" "Posaconazole" "Candida" 0.064 0.12 FALSE +"EUCAST 2013" "MIC" "Candida tropicalis" "Posaconazole" "Candida" 0.064 0.12 FALSE +"EUCAST 2013" "DISK" "Enterococcus faecium" "Quinupristin/dalfopristin" "Enterococcus" "15ug" 22 19 FALSE +"EUCAST 2013" "MIC" "Enterococcus faecium" "Quinupristin/dalfopristin" "Enterococcus" 1 8 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" "Quinupristin/dalfopristin" "Staphs" "15ug" 21 17 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" "Quinupristin/dalfopristin" "Staphs" 1 4 FALSE +"EUCAST 2013" "MIC" "Clostridium difficile" "Rifampicin" "C.difficile" 0.004 FALSE +"EUCAST 2013" "MIC" "Helicobacter pylori" "Rifampicin" "H.pylori" 1 2 FALSE +"EUCAST 2013" "DISK" "Prophylaxis" "Haemophilus influenzae" "Rifampicin" "H.influenzae" "5ug" 18 17 FALSE +"EUCAST 2013" "MIC" "Prophylaxis" "Haemophilus influenzae" "Rifampicin" "H.influenzae" 1 2 FALSE +"EUCAST 2013" "MIC" "Neisseria meningitidis" "Rifampicin" "N.meningitidis" 0.25 0.5 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" "Rifampicin" "Staphs" "5ug" 26 22 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" "Rifampicin" "Staphs" 0.064 1 FALSE +"EUCAST 2013" "DISK" "Streptococcus" "Rifampicin" "Strept A,B,C,G" "5ug" 21 14 FALSE +"EUCAST 2013" "MIC" "Streptococcus" "Rifampicin" "Strept A,B,C,G" 0.064 1 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" "Rifampicin" "Pneumo" "5ug" 22 16 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Rifampicin" "Pneumo" 0.064 1 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Roxithromycin" "H.influenzae" 1 32 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" "Roxithromycin" "M.catarrhalis" 0.5 2 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" "Roxithromycin" "Staphs" 1 4 FALSE +"EUCAST 2013" "MIC" "Streptococcus" "Roxithromycin" "Strept A,B,C,G" 0.5 2 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Roxithromycin" "Pneumo" 0.5 2 FALSE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Ampicillin/sulbactam" "Enterobacteriaceae" "10/10ug" 14 13 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Ampicillin/sulbactam" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2013" "MIC" "Enterococcus" "Ampicillin/sulbactam" "Enterococcus" 4 16 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" "Ampicillin/sulbactam" "H.influenzae" "10/10ug" FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Ampicillin/sulbactam" "H.influenzae" 1 2 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" "Ampicillin/sulbactam" "M.catarrhalis" 1 2 FALSE +"EUCAST 2013" "MIC" "Neisseria gonorrhoeae" "Spectinomycin" "N.gonorrhoeae" 64 128 FALSE +"EUCAST 2013" "DISK" "Enterococcus" "Streptomycin-high" "Enterococcus" "300ug" 19 18 FALSE +"EUCAST 2013" "MIC" "Enterococcus" "Streptomycin-high" "Enterococcus" 512 512 FALSE +"EUCAST 2013" "DISK" "Enterococcus" "Streptoduocin" "Enterococcus" "300ug" 19 18 FALSE +"EUCAST 2013" "MIC" "Enterococcus" "Streptoduocin" "Enterococcus" 512 512 FALSE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25/23.75ug" 16 12 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" "Trimethoprim/sulfamethoxazole" "Acinetob" "1.25/23.75ug" 16 12 FALSE +"EUCAST 2013" "MIC" "Acinetobacter" "Trimethoprim/sulfamethoxazole" "Acinetob" 2 8 FALSE +"EUCAST 2013" "DISK" "Enterococcus" "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25/23.75ug" 50 20 FALSE +"EUCAST 2013" "MIC" "Enterococcus" "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 2 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" "Trimethoprim/sulfamethoxazole" "H.influenzae" "1.25/23.75ug" 23 19 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Trimethoprim/sulfamethoxazole" "H.influenzae" 0.5 2 FALSE +"EUCAST 2013" "DISK" "Listeria monocytogenes" "Trimethoprim/sulfamethoxazole" "Listeria" "1.25/23.75ug" 29 28 FALSE +"EUCAST 2013" "MIC" "Listeria monocytogenes" "Trimethoprim/sulfamethoxazole" "Listeria" 0.064 0.12 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" "M.catarrhalis" "1.25/23.75ug" 18 14 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" "M.catarrhalis" 0.5 2 FALSE +"EUCAST 2013" "DISK" "Pasteurella multocida" "Trimethoprim/sulfamethoxazole" "Pasteurella" "1.25/23.75ug" 23 22 FALSE +"EUCAST 2013" "MIC" "Pasteurella multocida" "Trimethoprim/sulfamethoxazole" "Pasteurella" 0.25 0.5 FALSE +"EUCAST 2013" "DISK" "Stenotrophomonas maltophilia" "Trimethoprim/sulfamethoxazole" "S.maltophilia" "1.25/23.75ug" 16 15 FALSE +"EUCAST 2013" "MIC" "Stenotrophomonas maltophilia" "Trimethoprim/sulfamethoxazole" "S.maltophilia" 4 8 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" "Trimethoprim/sulfamethoxazole" "Staphs" "1.25/23.75ug" 17 13 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" "Trimethoprim/sulfamethoxazole" "Staphs" 2 8 FALSE +"EUCAST 2013" "DISK" "Streptococcus" "Trimethoprim/sulfamethoxazole" "Strept A,B,C,G" "1.25/23.75ug" 18 14 FALSE +"EUCAST 2013" "MIC" "Streptococcus" "Trimethoprim/sulfamethoxazole" "Strept A,B,C,G" 1 4 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25/23.75ug" 18 14 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" "Pneumo" 1 4 FALSE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Ticarcillin/clavulanic acid" "Enterobacteriaceae" "75/10ug" 23 22 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" "Ticarcillin/clavulanic acid" "Pseud" "75/10ug" 17 16 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" "Ticarcillin/clavulanic acid" "Pseud" 16 32 FALSE +"EUCAST 2013" "DISK" "Campylobacter" "Tetracycline" "Campylobacter" "30ug" 30 29 FALSE +"EUCAST 2013" "MIC" "Campylobacter" "Tetracycline" "Campylobacter" 2 4 FALSE +"EUCAST 2013" "MIC" "Helicobacter pylori" "Tetracycline" "H.pylori" 1 2 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" "Tetracycline" "H.influenzae" "30ug" 25 21 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Tetracycline" "H.influenzae" 1 4 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" "Tetracycline" "M.catarrhalis" "30ug" 28 24 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" "Tetracycline" "M.catarrhalis" 1 4 FALSE +"EUCAST 2013" "MIC" "Neisseria gonorrhoeae" "Tetracycline" "N.gonorrhoeae" 0.5 2 FALSE +"EUCAST 2013" "MIC" "Neisseria meningitidis" "Tetracycline" "N.meningitidis" 1 4 FALSE +"EUCAST 2013" "DISK" "Pasteurella multocida" "Tetracycline" "Pasteurella" "30ug" 24 23 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" "Tetracycline" "Staphs" "30ug" 22 18 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" "Tetracycline" "Staphs" 1 4 FALSE +"EUCAST 2013" "DISK" "Streptococcus" "Tetracycline" "Strept A,B,C,G" "30ug" 23 19 FALSE +"EUCAST 2013" "MIC" "Streptococcus" "Tetracycline" "Strept A,B,C,G" 1 4 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" "Tetracycline" "Pneumo" "30ug" 25 21 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Tetracycline" "Pneumo" 1 4 FALSE +"EUCAST 2013" "DISK" "Enterococcus" "Teicoplanin" "Enterococcus" "30ug" 16 15 FALSE +"EUCAST 2013" "MIC" "Enterococcus" "Teicoplanin" "Enterococcus" 2 4 FALSE +"EUCAST 2013" "MIC" "Staphylococcus aureus" "Teicoplanin" "Staphs" 2 4 FALSE +"EUCAST 2013" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Teicoplanin" "Staphs" 4 8 FALSE +"EUCAST 2013" "DISK" "Streptococcus" "Teicoplanin" "Strept A,B,C,G" "30ug" 15 14 FALSE +"EUCAST 2013" "MIC" "Streptococcus" "Teicoplanin" "Strept A,B,C,G" 2 4 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" "Teicoplanin" "Pneumo" "30ug" 17 16 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Teicoplanin" "Pneumo" 2 4 FALSE +"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Teicoplanin" "Viridans strept" "30ug" 16 15 FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Teicoplanin" "Viridans strept" 2 4 FALSE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Tigecycline" "Enterobacteriaceae" "15ug" 18 14 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Tigecycline" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2013" "MIC" "Clostridium difficile" "Tigecycline" "C.difficile" 0.25 FALSE +"EUCAST 2013" "DISK" "Enterococcus" "Tigecycline" "Enterococcus" "15ug" 18 14 FALSE +"EUCAST 2013" "MIC" "Enterococcus" "Tigecycline" "Enterococcus" 0.25 1 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" "Tigecycline" "Staphs" "15ug" 18 17 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" "Tigecycline" "Staphs" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Streptococcus" "Tigecycline" "Strept A,B,C,G" "15ug" 19 15 FALSE +"EUCAST 2013" "MIC" "Streptococcus" "Tigecycline" "Strept A,B,C,G" 0.25 1 FALSE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Ticarcillin" "Enterobacteriaceae" "75ug" 23 22 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Ticarcillin" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" "Ticarcillin" "Pseud" "75ug" 17 16 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" "Ticarcillin" "Pseud" 16 32 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" "Telithromycin" "H.influenzae" "15ug" 50 11 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" "Telithromycin" "H.influenzae" 0.125 16 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" "Telithromycin" "M.catarrhalis" "15ug" 23 19 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" "Telithromycin" "M.catarrhalis" 0.25 1 FALSE +"EUCAST 2013" "DISK" "Streptococcus" "Telithromycin" "Strept A,B,C,G" "15ug" 20 16 FALSE +"EUCAST 2013" "MIC" "Streptococcus" "Telithromycin" "Strept A,B,C,G" 0.25 1 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" "Telithromycin" "Pneumo" "15ug" 23 19 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Telithromycin" "Pneumo" 0.25 1 FALSE +"EUCAST 2013" "MIC" "Staphylococcus aureus" "Telavancin" "Staphs" 1 2 FALSE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacteriaceae" "Trimethoprim" "Enterobacteriaceae" "5ug" 18 14 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacteriaceae" "Trimethoprim" "Enterobacteriaceae" 2 8 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterococcus" "Trimethoprim" "Enterococcus" "5ug" 50 20 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Enterococcus" "Trimethoprim" "Enterococcus" 0.032 2 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Staphylococcus" "Trimethoprim" "Staphs" "5ug" 17 13 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Staphylococcus" "Trimethoprim" "Staphs" 2 8 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Streptococcus group B" "Trimethoprim" "Strept A,B,C,G" "5ug" TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Streptococcus group B" "Trimethoprim" "Strept A,B,C,G" 2 4 TRUE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Tobramycin" "Enterobacteriaceae" "10ug" 17 13 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Tobramycin" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" "Tobramycin" "Acinetob" "10ug" 17 16 FALSE +"EUCAST 2013" "MIC" "Acinetobacter" "Tobramycin" "Acinetob" 4 8 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" "Tobramycin" "Pseud" "10ug" 16 15 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" "Tobramycin" "Pseud" 4 8 FALSE +"EUCAST 2013" "DISK" "Staphylococcus aureus" "Tobramycin" "Staphs" "10ug" 18 17 FALSE +"EUCAST 2013" "MIC" "Staphylococcus aureus" "Tobramycin" "Staphs" 1 2 FALSE +"EUCAST 2013" "DISK" "Coagulase-negative Staphylococcus (CoNS)" "Tobramycin" "Staphs" "10ug" 22 21 FALSE +"EUCAST 2013" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Tobramycin" "Staphs" 1 2 FALSE +"EUCAST 2013" "DISK" "Enterobacteriaceae" "Piperacillin/tazobactam" "Enterobacteriaceae" "30/6ug" 20 16 FALSE +"EUCAST 2013" "MIC" "Enterobacteriaceae" "Piperacillin/tazobactam" "Enterobacteriaceae" 8 32 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" "Piperacillin/tazobactam" "Pseud" "30/6ug" 19 18 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" "Piperacillin/tazobactam" "Pseud" 16 32 FALSE +"EUCAST 2013" "MIC" "Clostridium difficile" "Vancomycin" "C.difficile" 2 4 FALSE +"EUCAST 2013" "DISK" "Enterococcus" "Vancomycin" "Enterococcus" "5ug" 12 11 FALSE +"EUCAST 2013" "MIC" "Enterococcus" "Vancomycin" "Enterococcus" 4 8 FALSE +"EUCAST 2013" "MIC" "Staphylococcus aureus" "Vancomycin" "Staphs" 2 4 FALSE +"EUCAST 2013" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Vancomycin" "Staphs" 4 8 FALSE +"EUCAST 2013" "DISK" "Streptococcus" "Vancomycin" "Strept A,B,C,G" "5ug" 13 12 FALSE +"EUCAST 2013" "MIC" "Streptococcus" "Vancomycin" "Strept A,B,C,G" 2 4 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" "Vancomycin" "Pneumo" "5ug" 16 15 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" "Vancomycin" "Pneumo" 2 4 FALSE +"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Vancomycin" "Viridans strept" "5ug" 15 14 FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Vancomycin" "Viridans strept" 2 4 FALSE +"EUCAST 2013" "MIC" "Aspergillus" "Voriconazole" "Aspergillus" 1 4 FALSE +"EUCAST 2013" "MIC" "Candida albicans" "Voriconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2013" "MIC" "Candida parapsilosis" "Voriconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2013" "MIC" "Candida tropicalis" "Voriconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2012" "MIC" "Anaerorhabdus" "Amoxicillin/clavulanic acid" 4 16 FALSE +"EUCAST 2012" "MIC" "Enterococcus" "Amoxicillin/clavulanic acid" 4 16 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" "Amoxicillin/clavulanic acid" "2ug/1ug" 17 16 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Amoxicillin/clavulanic acid" 2 4 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" "2ug/1ug" 19 18 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" 1 2 FALSE +"EUCAST 2012" "DISK" "Acinetobacter" "Amikacin" "30ug" 18 14 FALSE +"EUCAST 2012" "MIC" "Acinetobacter" "Amikacin" 8 32 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" "Amikacin" "30ug" 18 14 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" "Amikacin" 8 32 FALSE +"EUCAST 2012" "DISK" "Staphylococcus aureus" "Amikacin" "30ug" 18 15 FALSE +"EUCAST 2012" "MIC" "Staphylococcus aureus" "Amikacin" 8 32 FALSE +"EUCAST 2012" "DISK" "Coagulase-negative Staphylococcus (CoNS)" "Amikacin" "30ug" 22 18 FALSE +"EUCAST 2012" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Amikacin" 8 32 FALSE +"EUCAST 2012" "MIC" "Anaerorhabdus" "Ampicillin" 0.5 4 FALSE +"EUCAST 2012" "DISK" "Enterococcus" "Ampicillin" "2ug" 10 7 FALSE +"EUCAST 2012" "MIC" "Enterococcus" "Ampicillin" 4 16 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" "Ampicillin" "2ug" 16 15 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Ampicillin" 1 2 FALSE +"EUCAST 2012" "DISK" "Listeria monocytogenes" "Ampicillin" "2ug" 16 15 FALSE +"EUCAST 2012" "MIC" "Listeria monocytogenes" "Ampicillin" 1 2 FALSE +"EUCAST 2012" "MIC" "Neisseria meningitidis" "Ampicillin" 0.125 2 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" "Ampicillin" "2ug" 15 14 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" "Ampicillin" "2ug" 23 19 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Ampicillin" 0.5 4 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Ampicillin" "2ug" 21 14 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Ampicillin" 0.5 4 FALSE +"EUCAST 2012" "MIC" "Anaerorhabdus" "Amoxicillin" 0.5 4 FALSE +"EUCAST 2012" "MIC" "Enterococcus" "Amoxicillin" 4 16 FALSE +"EUCAST 2012" "MIC" "Helicobacter pylori" "Amoxicillin" 0.125 0.25 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Amoxicillin" 2 4 FALSE +"EUCAST 2012" "MIC" "Neisseria meningitidis" "Amoxicillin" 0.125 2 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Amoxicillin" 0.5 4 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" "Aztreonam" "30ug" 50 15 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" "Aztreonam" 1 32 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Azithromycin" 0.125 8 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" "Azithromycin" 0.25 1 FALSE +"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" "Azithromycin" 0.25 1 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" "Azithromycin" 1 4 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" "Azithromycin" 0.25 1 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Azithromycin" 0.25 1 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" "Ceftazidime" "10ug" 16 15 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" "Ceftazidime" 8 16 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Cefaclor" 0.5 1 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" "Cefaclor" 0.125 0.25 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" "Cefaclor" "30ug" 50 27 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Cefaclor" 0.032 1 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" "Cefadroxil" "5ug" 25 24 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Cefadroxil" 0.125 0.25 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" "Cefadroxil" "5ug" 21 17 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" "Cefadroxil" 0.5 2 FALSE +"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" "Cefadroxil" 0.125 0.25 FALSE +"EUCAST 2012" "MIC" "Anaerorhabdus" "Chloramphenicol" 8 16 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" "Chloramphenicol" "30ug" 28 27 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Chloramphenicol" 2 4 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" "Chloramphenicol" "30ug" 30 29 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" "Chloramphenicol" 2 4 FALSE +"EUCAST 2012" "MIC" "Neisseria meningitidis" "Chloramphenicol" 2 8 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" "Chloramphenicol" "30ug" 18 17 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" "Chloramphenicol" 8 16 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" "Chloramphenicol" "30ug" 21 20 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" "Chloramphenicol" 8 16 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" "Chloramphenicol" "30ug" 21 20 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Chloramphenicol" 8 16 FALSE +"EUCAST 2012" "DISK" "Acinetobacter" "Ciprofloxacin" "5ug" 21 20 FALSE +"EUCAST 2012" "MIC" "Acinetobacter" "Ciprofloxacin" 1 2 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" "Ciprofloxacin" "5ug" 26 25 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Ciprofloxacin" 0.5 1 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" "Ciprofloxacin" "5ug" 23 22 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" "Ciprofloxacin" 0.5 1 FALSE +"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" "Ciprofloxacin" 0.032 0.12 FALSE +"EUCAST 2012" "MIC" "Neisseria meningitidis" "Ciprofloxacin" 0.032 0.12 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" "Ciprofloxacin" "5ug" 25 21 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" "Ciprofloxacin" 0.5 2 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" "Ciprofloxacin" "5ug" 20 19 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" "Ciprofloxacin" 1 2 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" "Ciprofloxacin" "5ug" 50 17 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Ciprofloxacin" 0.125 4 FALSE +"EUCAST 2012" "MIC" "Anaerorhabdus" "Clindamycin" 4 8 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" "Clindamycin" "2ug" 22 18 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" "Clindamycin" 0.25 1 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" "Clindamycin" "2ug" 17 16 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" "Clindamycin" 0.5 1 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" "Clindamycin" "2ug" 19 18 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Clindamycin" 0.5 1 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Clindamycin" "2ug" 19 18 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Clindamycin" 0.5 1 FALSE +"EUCAST 2012" "MIC" "Helicobacter pylori" "Clarithromycin" 0.25 1 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Clarithromycin" 1 64 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" "Clarithromycin" 0.25 1 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" "Clarithromycin" 1 4 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" "Clarithromycin" 0.25 1 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Clarithromycin" 0.25 1 FALSE +"EUCAST 2012" "MIC" "Acinetobacter" "Colistin" 2 4 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" "Colistin" 4 8 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" "Cefpodoxime" "10ug" 26 22 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Cefpodoxime" 0.25 1 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Cefpodoxime" 0.25 1 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" "Ceftriaxone" "30ug" 30 29 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Ceftriaxone" 0.125 0.25 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" "Ceftriaxone" "30ug" 24 20 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" "Ceftriaxone" 1 4 FALSE +"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" "Ceftriaxone" 0.125 0.25 FALSE +"EUCAST 2012" "MIC" "Neisseria meningitidis" "Ceftriaxone" 0.125 0.25 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Ceftriaxone" 0.5 4 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" "30ug" 27 26 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" 0.5 1 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" "Ceftibuten" "30ug" 25 24 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Ceftibuten" 1 2 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" "Cefotaxime" "5ug" 26 25 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Cefotaxime" 0.125 0.25 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" "Cefotaxime" "5ug" 20 16 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" "Cefotaxime" 1 4 FALSE +"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" "Cefotaxime" 0.125 0.25 FALSE +"EUCAST 2012" "MIC" "Neisseria meningitidis" "Cefotaxime" 0.125 0.25 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Cefotaxime" 0.5 4 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Cefotaxime" "5ug" 23 22 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Cefotaxime" 0.5 1 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" "Cefuroxime axetil" "30ug" 50 25 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Cefuroxime axetil" 0.125 2 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" "Cefuroxime axetil" "30ug" 50 20 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" "Cefuroxime axetil" 0.125 8 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Cefuroxime axetil" 0.25 1 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" "Cefuroxime" "30ug" 26 24 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Cefuroxime" 1 4 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" "Cefuroxime" "30ug" 21 17 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" "Cefuroxime" 4 16 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Cefuroxime" 0.5 2 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Cefuroxime" "30ug" 26 25 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Cefuroxime" 0.5 1 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Cefazolin" 0.5 1 FALSE +"EUCAST 2012" "MIC" "Clostridium difficile" "Daptomycin" 4 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" "Daptomycin" 1 2 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" "Daptomycin" 1 2 FALSE +"EUCAST 2012" "DISK" "Acinetobacter" "Doripenem" "10ug" 21 14 FALSE +"EUCAST 2012" "MIC" "Acinetobacter" "Doripenem" 1 8 FALSE +"EUCAST 2012" "MIC" "Anaerorhabdus" "Doripenem" 1 2 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" "Doripenem" "10ug" 20 19 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Doripenem" 1 2 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" "Doripenem" "10ug" 30 29 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" "Doripenem" 1 2 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" "Doripenem" "10ug" 25 18 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" "Doripenem" 1 8 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Doripenem" 1 2 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Doripenem" "10ug" 25 24 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Doripenem" 1 2 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Doxycycline" 1 4 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" "Doxycycline" 1 4 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" "Doxycycline" 1 4 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" "Doxycycline" 1 4 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Doxycycline" 1 4 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" "Erythromycin" "15ug" 50 9 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Erythromycin" 0.5 32 FALSE +"EUCAST 2012" "DISK" "Listeria monocytogenes" "Erythromycin" "15ug" 25 24 FALSE +"EUCAST 2012" "MIC" "Listeria monocytogenes" "Erythromycin" 1 2 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" "Erythromycin" "15ug" 23 19 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" "Erythromycin" 0.25 1 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" "Erythromycin" "15ug" 21 17 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" "Erythromycin" 1 4 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" "Erythromycin" "15ug" 21 17 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" "Erythromycin" 0.25 1 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" "Erythromycin" "15ug" 22 18 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Erythromycin" 0.25 1 FALSE +"EUCAST 2012" "MIC" "Anaerorhabdus" "Ertapenem" 1 2 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" "Ertapenem" "10ug" 20 19 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Ertapenem" 0.5 1 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" "Ertapenem" "10ug" 29 28 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" "Ertapenem" 0.5 1 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Ertapenem" 0.5 1 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Ertapenem" "10ug" 22 21 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Ertapenem" 0.5 1 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" "Cefepime" "30ug" 27 26 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Cefepime" 0.25 0.5 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" "Cefepime" "30ug" 20 19 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" "Cefepime" 4 8 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" "Cefepime" "30ug" 18 17 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" "Cefepime" 8 16 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Cefepime" 1 4 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Cefepime" "30ug" 25 24 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Cefepime" 0.5 1 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" "Fosfomycin" 32 64 FALSE +"EUCAST 2012" "DISK" "Staphylococcus aureus" "Cefoxitin" "30ug" 22 21 FALSE +"EUCAST 2012" "MIC" "Staphylococcus aureus" "Cefoxitin" 4 8 FALSE +"EUCAST 2012" "DISK" "Coagulase-negative Staphylococcus (CoNS)" "Cefoxitin" "30ug" 25 24 FALSE +"EUCAST 2012" "DISK" "Staphylococcus lugdunensis" "Cefoxitin" "30ug" 22 21 FALSE +"EUCAST 2012" "MIC" "Staphylococcus lugdunensis" "Cefoxitin" 4 8 FALSE +"EUCAST 2012" "MIC" "Clostridium difficile" "Fusidic acid" 2 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" "Fusidic acid" "10ug" 24 23 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" "Fusidic acid" 1 2 FALSE +"EUCAST 2012" "DISK" "Enterococcus" "Gentamicin-high" "30ug" 8 7 FALSE +"EUCAST 2012" "MIC" "Enterococcus" "Gentamicin-high" 128 128 FALSE +"EUCAST 2012" "DISK" "Acinetobacter" "Gentamicin" "10ug" 17 16 FALSE +"EUCAST 2012" "MIC" "Acinetobacter" "Gentamicin" 4 8 FALSE +"EUCAST 2012" "DISK" "Enterococcus" "Gentamicin" "30ug" 8 7 FALSE +"EUCAST 2012" "MIC" "Enterococcus" "Gentamicin" 128 128 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" "Gentamicin" "10ug" 15 14 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" "Gentamicin" 4 8 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" "Gentamicin" "10ug" 18 17 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" "Gentamicin" 1 2 FALSE +"EUCAST 2012" "DISK" "Coagulase-negative Staphylococcus (CoNS)" "Gentamicin" "10ug" 22 21 FALSE +"EUCAST 2012" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Gentamicin" 1 2 FALSE +"EUCAST 2012" "DISK" "Acinetobacter" "Imipenem" "10ug" 23 16 FALSE +"EUCAST 2012" "MIC" "Acinetobacter" "Imipenem" 2 16 FALSE +"EUCAST 2012" "MIC" "Anaerorhabdus" "Imipenem" 2 16 FALSE +"EUCAST 2012" "DISK" "Enterococcus" "Imipenem" "10ug" 21 17 FALSE +"EUCAST 2012" "MIC" "Enterococcus" "Imipenem" 4 16 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" "Imipenem" "10ug" 20 19 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Imipenem" 2 4 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" "Imipenem" "10ug" 29 28 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" "Imipenem" 2 4 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" "Imipenem" "10ug" 20 16 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" "Imipenem" 4 16 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Imipenem" 2 4 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Imipenem" "10ug" 30 29 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Imipenem" 2 4 FALSE +"EUCAST 2012" "DISK" "Enterococcus" "Linezolid" "10ug" 19 18 FALSE +"EUCAST 2012" "MIC" "Enterococcus" "Linezolid" 4 8 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" "Linezolid" "10ug" 19 18 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" "Linezolid" 4 8 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" "Linezolid" "10ug" 19 15 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" "Linezolid" 2 8 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" "Linezolid" "10ug" 22 18 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Linezolid" 2 8 FALSE +"EUCAST 2012" "DISK" "Acinetobacter" "Levofloxacin" "5ug" 21 17 FALSE +"EUCAST 2012" "MIC" "Acinetobacter" "Levofloxacin" 1 4 FALSE +"EUCAST 2012" "MIC" "Helicobacter pylori" "Levofloxacin" 1 2 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" "Levofloxacin" "5ug" 26 25 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Levofloxacin" 1 2 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" "Levofloxacin" "5ug" 23 22 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" "Levofloxacin" 1 2 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" "Levofloxacin" "5ug" 20 16 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" "Levofloxacin" 1 4 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" "Levofloxacin" "5ug" 22 18 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" "Levofloxacin" 1 4 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" "Levofloxacin" "5ug" 18 14 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" "Levofloxacin" 1 4 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" "Levofloxacin" "5ug" 19 18 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Levofloxacin" 2 4 FALSE +"EUCAST 2012" "DISK" "Acinetobacter" "Meropenem" "10ug" 21 14 FALSE +"EUCAST 2012" "MIC" "Acinetobacter" "Meropenem" 2 16 FALSE +"EUCAST 2012" "MIC" "Anaerorhabdus" "Meropenem" 2 16 FALSE +"EUCAST 2012" "DISK" "Other infections" "Haemophilus influenzae" "Meropenem" "10ug" 20 19 FALSE +"EUCAST 2012" "MIC" "Other infections" "Haemophilus influenzae" "Meropenem" 2 4 FALSE +"EUCAST 2012" "MIC" "Meningitis" "Haemophilus influenzae" "Meropenem" 0.25 2 FALSE +"EUCAST 2012" "DISK" "Listeria monocytogenes" "Meropenem" "10ug" 26 25 FALSE +"EUCAST 2012" "MIC" "Listeria monocytogenes" "Meropenem" 0.25 0.5 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" "Meropenem" "10ug" 33 32 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" "Meropenem" 2 4 FALSE +"EUCAST 2012" "MIC" "Neisseria meningitidis" "Meropenem" 0.25 0.5 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" "Meropenem" "10ug" 24 17 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" "Meropenem" 2 16 FALSE +"EUCAST 2012" "MIC" "Other infections" "Streptococcus pneumoniae" "Meropenem" 2 4 FALSE +"EUCAST 2012" "MIC" "Meningitis" "Streptococcus pneumoniae" "Meropenem" 0.25 2 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Meropenem" "10ug" 25 24 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Meropenem" 2 4 FALSE +"EUCAST 2012" "MIC" "Clostridium difficile" "Moxifloxacin" 4 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" "Moxifloxacin" "5ug" 25 24 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Moxifloxacin" 0.5 1 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" "Moxifloxacin" "5ug" 23 22 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" "Moxifloxacin" 0.5 1 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" "Moxifloxacin" "5ug" 24 20 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" "Moxifloxacin" 0.5 2 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" "Moxifloxacin" "5ug" 18 14 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" "Moxifloxacin" 0.5 2 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" "Moxifloxacin" "5ug" 22 21 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Moxifloxacin" 0.5 1 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" "Minocycline" "30ug" 24 20 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Minocycline" 1 4 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" "Minocycline" "30ug" 25 21 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" "Minocycline" 1 4 FALSE +"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" "Minocycline" 0.5 2 FALSE +"EUCAST 2012" "MIC" "Neisseria meningitidis" "Minocycline" 1 4 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" "Minocycline" "30ug" 23 19 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" "Minocycline" 0.5 2 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" "Minocycline" "30ug" 23 19 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" "Minocycline" 0.5 2 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" "Minocycline" "30ug" 24 20 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Minocycline" 0.5 2 FALSE +"EUCAST 2012" "MIC" "Anaerorhabdus" "Metronidazole" 4 8 FALSE +"EUCAST 2012" "MIC" "Clostridium difficile" "Metronidazole" 2 4 FALSE +"EUCAST 2012" "MIC" "Helicobacter pylori" "Metronidazole" 8 16 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" "Mupirocin" "200ug" 30 17 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" "Mupirocin" 1 512 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" "Nalidixic acid" "30ug" 23 22 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" "Nalidixic acid" "30ug" 23 22 FALSE +"EUCAST 2012" "DISK" "Acinetobacter" "Netilmicin" "10ug" 16 15 FALSE +"EUCAST 2012" "MIC" "Acinetobacter" "Netilmicin" 4 8 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" "Netilmicin" "10ug" 12 11 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" "Netilmicin" 4 8 FALSE +"EUCAST 2012" "DISK" "Staphylococcus aureus" "Netilmicin" "10ug" 18 17 FALSE +"EUCAST 2012" "MIC" "Staphylococcus aureus" "Netilmicin" 1 2 FALSE +"EUCAST 2012" "DISK" "Coagulase-negative Staphylococcus (CoNS)" "Netilmicin" "10ug" 22 21 FALSE +"EUCAST 2012" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Netilmicin" 1 2 FALSE +"EUCAST 2012" "DISK" "UTI only" "Enterococcus faecalis" "Nitrofurantoin" "100ug" 15 14 TRUE +"EUCAST 2012" "MIC" "UTI only" "Enterococcus faecalis" "Nitrofurantoin" 64 128 TRUE +"EUCAST 2012" "DISK" "UTI only" "Staphylococcus" "Nitrofurantoin" "100ug" 13 12 TRUE +"EUCAST 2012" "MIC" "UTI only" "Staphylococcus" "Nitrofurantoin" 64 128 TRUE +"EUCAST 2012" "DISK" "UTI only" "Streptococcus group B" "Nitrofurantoin" "100ug" 15 14 TRUE +"EUCAST 2012" "MIC" "UTI only" "Streptococcus group B" "Nitrofurantoin" 64 128 TRUE +"EUCAST 2012" "DISK" "Staphylococcus" "Norfloxacin" "10ug" 17 16 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" "Norfloxacin" "10ug" 12 11 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" "Norfloxacin" "10ug" 12 11 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" "Ofloxacin" "5ug" 23 22 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Ofloxacin" 0.5 1 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" "Ofloxacin" "5ug" 25 24 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" "Ofloxacin" 0.5 1 FALSE +"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" "Ofloxacin" 0.125 0.5 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" "Ofloxacin" "5ug" 20 19 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" "Ofloxacin" 1 2 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" "Ofloxacin" "5ug" 50 14 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Ofloxacin" 0.125 8 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" "Oxacillin" 0.25 0.5 FALSE +"EUCAST 2012" "MIC" "Staphylococcus aureus" "Oxacillin" 2 4 FALSE +"EUCAST 2012" "MIC" "Staphylococcus lugdunensis" "Oxacillin" 2 4 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" "Oxacillin" "1ug" 20 19 FALSE +"EUCAST 2012" "MIC" "Anaerorhabdus" "Penicillin G" 0.25 1 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" "Penicillin G" "1 unit" 12 11 FALSE +"EUCAST 2012" "DISK" "Listeria monocytogenes" "Penicillin G" "1 unit" 13 12 FALSE +"EUCAST 2012" "MIC" "Listeria monocytogenes" "Penicillin G" 1 2 FALSE +"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" "Penicillin G" 0.064 2 FALSE +"EUCAST 2012" "MIC" "Neisseria meningitidis" "Penicillin G" 0.064 0.5 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" "Penicillin G" "1 unit" 26 25 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" "Penicillin G" 0.125 0.25 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" "Penicillin G" "1 unit" 18 17 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" "Penicillin G" 0.25 0.5 FALSE +"EUCAST 2012" "MIC" "Other infections" "Streptococcus pneumoniae" "Penicillin G" 0.064 4 FALSE +"EUCAST 2012" "MIC" "Meningitis" "Streptococcus pneumoniae" "Penicillin G" 0.064 0.12 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Penicillin G" "1 unit" 18 11 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Penicillin G" "1 unit" 18 17 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Penicillin G" 0.25 4 FALSE +"EUCAST 2012" "MIC" "Anaerorhabdus" "Piperacillin" 16 32 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" "Piperacillin" "30ug" 19 18 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" "Piperacillin" 16 32 FALSE +"EUCAST 2012" "DISK" "Enterococcus" "Quinupristin/dalfopristin" "15ug" 22 19 FALSE +"EUCAST 2012" "MIC" "Enterococcus" "Quinupristin/dalfopristin" 1 8 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" "Quinupristin/dalfopristin" "15ug" 21 17 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" "Quinupristin/dalfopristin" 1 4 FALSE +"EUCAST 2012" "MIC" "Clostridium difficile" "Rifampicin" 0.004 FALSE +"EUCAST 2012" "MIC" "Helicobacter pylori" "Rifampicin" 1 2 FALSE +"EUCAST 2012" "DISK" "Prophylaxis" "Haemophilus influenzae" "Rifampicin" "5ug" 18 17 FALSE +"EUCAST 2012" "MIC" "Prophylaxis" "Haemophilus influenzae" "Rifampicin" 1 2 FALSE +"EUCAST 2012" "MIC" "Neisseria meningitidis" "Rifampicin" 0.25 0.5 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" "Rifampicin" "5ug" 26 22 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" "Rifampicin" 0.064 1 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" "Rifampicin" "5ug" 21 14 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" "Rifampicin" 0.064 1 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" "Rifampicin" "5ug" 22 16 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Rifampicin" 0.064 1 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Roxithromycin" 1 32 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" "Roxithromycin" 0.5 2 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" "Roxithromycin" 1 4 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" "Roxithromycin" 0.5 2 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Roxithromycin" 0.5 2 FALSE +"EUCAST 2012" "MIC" "Anaerorhabdus" "Ampicillin/sulbactam" 4 16 FALSE +"EUCAST 2012" "MIC" "Enterococcus" "Ampicillin/sulbactam" 4 16 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Ampicillin/sulbactam" 1 2 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" "Ampicillin/sulbactam" 1 2 FALSE +"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" "Spectinomycin" 64 128 FALSE +"EUCAST 2012" "MIC" "Enterococcus" "Streptomycin-high" 512 512 FALSE +"EUCAST 2012" "DISK" "Enterococcus" "Streptoduocin" "300ug" 19 18 FALSE +"EUCAST 2012" "MIC" "Enterococcus" "Streptoduocin" 512 512 FALSE +"EUCAST 2012" "DISK" "Acinetobacter" "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 16 12 FALSE +"EUCAST 2012" "MIC" "Acinetobacter" "Trimethoprim/sulfamethoxazole" 2 8 FALSE +"EUCAST 2012" "DISK" "Enterococcus" "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 50 20 FALSE +"EUCAST 2012" "MIC" "Enterococcus" "Trimethoprim/sulfamethoxazole" 0.032 2 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 23 19 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Trimethoprim/sulfamethoxazole" 0.5 2 FALSE +"EUCAST 2012" "DISK" "Listeria monocytogenes" "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 29 28 FALSE +"EUCAST 2012" "MIC" "Listeria monocytogenes" "Trimethoprim/sulfamethoxazole" 0.064 0.12 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 14 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" 0.5 2 FALSE +"EUCAST 2012" "DISK" "Stenotrophomonas maltophilia" "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 16 15 FALSE +"EUCAST 2012" "MIC" "Stenotrophomonas maltophilia" "Trimethoprim/sulfamethoxazole" 4 8 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 17 13 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" "Trimethoprim/sulfamethoxazole" 2 8 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 14 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" "Trimethoprim/sulfamethoxazole" 1 4 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 14 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" 1 4 FALSE +"EUCAST 2012" "MIC" "Anaerorhabdus" "Ticarcillin/clavulanic acid" 8 32 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" "Ticarcillin/clavulanic acid" "75ug/10ug" 17 16 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" "Ticarcillin/clavulanic acid" 16 32 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" "Tetracycline" "30ug" 25 21 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Tetracycline" 1 4 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" "Tetracycline" "30ug" 28 24 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" "Tetracycline" 1 4 FALSE +"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" "Tetracycline" 0.5 2 FALSE +"EUCAST 2012" "MIC" "Neisseria meningitidis" "Tetracycline" 1 4 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" "Tetracycline" "30ug" 22 18 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" "Tetracycline" 1 4 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" "Tetracycline" "30ug" 23 19 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" "Tetracycline" 1 4 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" "Tetracycline" "30ug" 23 19 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Tetracycline" 1 4 FALSE +"EUCAST 2012" "DISK" "Enterococcus" "Teicoplanin" "30ug" 16 15 FALSE +"EUCAST 2012" "MIC" "Enterococcus" "Teicoplanin" 2 4 FALSE +"EUCAST 2012" "MIC" "Staphylococcus aureus" "Teicoplanin" 2 4 FALSE +"EUCAST 2012" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Teicoplanin" 4 8 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" "Teicoplanin" "30ug" 15 14 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" "Teicoplanin" 2 4 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" "Teicoplanin" "30ug" 18 17 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Teicoplanin" 2 4 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Teicoplanin" "30ug" 16 15 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Teicoplanin" 2 4 FALSE +"EUCAST 2012" "MIC" "Clostridium difficile" "Tigecycline" 0.25 FALSE +"EUCAST 2012" "DISK" "Enterococcus" "Tigecycline" "15ug" 18 14 FALSE +"EUCAST 2012" "MIC" "Enterococcus" "Tigecycline" 0.25 1 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" "Tigecycline" "15ug" 18 17 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" "Tigecycline" 0.5 1 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" "Tigecycline" "15ug" 19 15 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" "Tigecycline" 0.25 1 FALSE +"EUCAST 2012" "MIC" "Anaerorhabdus" "Ticarcillin" 16 32 FALSE +"EUCAST 2012" "MIC" "Helicobacter pylori" "Ticarcillin" 1 2 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" "Ticarcillin" "75ug" 17 16 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" "Ticarcillin" 16 32 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" "Telithromycin" "15ug" 50 11 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" "Telithromycin" 0.125 16 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" "Telithromycin" "15ug" 23 19 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" "Telithromycin" 0.25 1 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" "Telithromycin" "15ug" 22 18 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" "Telithromycin" 0.25 1 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" "Telithromycin" "15ug" 25 21 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Telithromycin" 0.25 1 FALSE +"EUCAST 2012" "MIC" "Staphylococcus aureus" "Telavancin" 1 2 FALSE +"EUCAST 2012" "DISK" "UTI only" "Enterococcus" "Trimethoprim" "5ug" 50 20 TRUE +"EUCAST 2012" "MIC" "UTI only" "Enterococcus" "Trimethoprim" 0.032 2 TRUE +"EUCAST 2012" "DISK" "UTI only" "Staphylococcus" "Trimethoprim" "5ug" 17 13 TRUE +"EUCAST 2012" "MIC" "UTI only" "Staphylococcus" "Trimethoprim" 2 8 TRUE +"EUCAST 2012" "MIC" "UTI only" "Streptococcus group B" "Trimethoprim" 2 4 TRUE +"EUCAST 2012" "DISK" "Acinetobacter" "Tobramycin" "10ug" 17 16 FALSE +"EUCAST 2012" "MIC" "Acinetobacter" "Tobramycin" 4 8 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" "Tobramycin" "10ug" 16 15 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" "Tobramycin" 4 8 FALSE +"EUCAST 2012" "DISK" "Staphylococcus aureus" "Tobramycin" "10ug" 18 17 FALSE +"EUCAST 2012" "MIC" "Staphylococcus aureus" "Tobramycin" 1 2 FALSE +"EUCAST 2012" "DISK" "Coagulase-negative Staphylococcus (CoNS)" "Tobramycin" "10ug" 22 21 FALSE +"EUCAST 2012" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Tobramycin" 1 2 FALSE +"EUCAST 2012" "MIC" "Anaerorhabdus" "Piperacillin/tazobactam" 8 32 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" "Piperacillin/tazobactam" "30ug/6ug" 19 18 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" "Piperacillin/tazobactam" 16 32 FALSE +"EUCAST 2012" "MIC" "Clostridium difficile" "Vancomycin" 2 4 FALSE +"EUCAST 2012" "DISK" "Enterococcus" "Vancomycin" "5ug" 12 11 FALSE +"EUCAST 2012" "MIC" "Enterococcus" "Vancomycin" 4 8 FALSE +"EUCAST 2012" "MIC" "Staphylococcus aureus" "Vancomycin" 2 4 FALSE +"EUCAST 2012" "MIC" "Coagulase-negative Staphylococcus (CoNS)" "Vancomycin" 4 8 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" "Vancomycin" "5ug" 13 12 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" "Vancomycin" 2 4 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" "Vancomycin" "5ug" 16 15 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" "Vancomycin" 2 4 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Vancomycin" "5ug" 15 14 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Vancomycin" 2 4 FALSE +"EUCAST 2011" "MIC" "Enterococcus" "Amoxicillin/clavulanic acid" 4 16 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" "Amoxicillin/clavulanic acid" "20ug" 20 19 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Amoxicillin/clavulanic acid" 1 2 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" 1 2 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" "Amikacin" "30ug" 18 14 FALSE +"EUCAST 2011" "MIC" "Acinetobacter" "Amikacin" 8 32 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" "Amikacin" "30ug" 18 14 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" "Amikacin" 8 32 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" "Amikacin" "30ug" 18 14 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Amikacin" 8 32 FALSE +"EUCAST 2011" "DISK" "Enterococcus" "Ampicillin" "2ug" 10 7 FALSE +"EUCAST 2011" "MIC" "Enterococcus" "Ampicillin" 4 16 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" "Ampicillin" "2ug" 16 15 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Ampicillin" 1 2 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Ampicillin" 1 2 FALSE +"EUCAST 2011" "MIC" "Neisseria meningitidis" "Ampicillin" 0.125 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus" "Ampicillin" "2ug" 21 14 FALSE +"EUCAST 2011" "MIC" "Streptococcus" "Ampicillin" 0.5 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" "Ampicillin" "2ug" 28 21 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Ampicillin" 0.5 4 FALSE +"EUCAST 2011" "MIC" "Enterococcus" "Amoxicillin" 4 16 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Amoxicillin" 1 2 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Amoxicillin" 1 2 FALSE +"EUCAST 2011" "MIC" "Neisseria meningitidis" "Amoxicillin" 0.125 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus" "Amoxicillin" 0.5 4 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" "Aztreonam" "30ug" 50 15 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" "Aztreonam" 1 32 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Azithromycin" 0.125 8 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Azithromycin" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" "Azithromycin" 0.25 1 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Azithromycin" 1 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" "Azithromycin" 0.25 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" "Azithromycin" 0.25 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" "Azithromycin" 0.25 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" "Azithromycin" 0.25 1 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Azithromycin" 0.25 1 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Azithromycin" 0.25 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Azithromycin" 0.25 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" "Azithromycin" 0.25 1 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" "Ceftazidime" "10ug" FALSE +"EUCAST 2011" "MIC" "Pseudomonas" "Ceftazidime" 8 16 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" "Cefaclor" "30ug" 15 14 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Cefaclor" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Cefaclor" 0.5 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" "Cefaclor" "30ug" 50 27 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Cefaclor" 0.032 1 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" "Cefixime" "5ug" 22 21 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Cefixime" 0.125 0.25 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Cefixime" 0.5 2 FALSE +"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" "Cefixime" 0.125 0.25 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" "Chloramphenicol" "30ug" 28 24 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Chloramphenicol" 1 4 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Chloramphenicol" 1 4 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" "Chloramphenicol" "30ug" 18 17 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Chloramphenicol" 8 16 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" "Chloramphenicol" 8 16 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" "Chloramphenicol" 8 16 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" "Chloramphenicol" 8 16 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" "Chloramphenicol" 8 16 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Chloramphenicol" 8 16 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Chloramphenicol" 8 16 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" "Chloramphenicol" "30ug" 20 19 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Chloramphenicol" 8 16 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" "Chloramphenicol" 8 16 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" "Ciprofloxacin" "5ug" 21 20 FALSE +"EUCAST 2011" "MIC" "Acinetobacter" "Ciprofloxacin" 1 2 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" "Ciprofloxacin" "5ug" 23 22 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Ciprofloxacin" 0.5 1 FALSE +"EUCAST 2011" "DISK" "Moraxella catarrhalis" "Ciprofloxacin" "5ug" 23 22 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Ciprofloxacin" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" "Ciprofloxacin" 0.032 0.06 FALSE +"EUCAST 2011" "MIC" "Neisseria meningitidis" "Ciprofloxacin" 0.032 0.06 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" "Ciprofloxacin" "5ug" 25 21 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" "Ciprofloxacin" 0.5 2 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" "Ciprofloxacin" "5ug" 19 18 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Ciprofloxacin" 1 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Ciprofloxacin" 0.125 4 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" "Clindamycin" "2ug" 21 17 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Clindamycin" 0.25 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus" "Clindamycin" "2ug" 19 18 FALSE +"EUCAST 2011" "MIC" "Streptococcus" "Clindamycin" 0.5 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" "Clindamycin" "2ug" 17 16 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" "Clindamycin" 0.5 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" "Clindamycin" "2ug" 17 16 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" "Clindamycin" 0.5 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" "Clindamycin" "2ug" 17 16 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" "Clindamycin" 0.5 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" "Clindamycin" "2ug" 17 16 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" "Clindamycin" 0.5 2 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" "Clindamycin" "2ug" 17 16 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" "Clindamycin" "2ug" 17 16 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Clindamycin" 0.5 2 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Clindamycin" 0.5 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" "Clindamycin" "2ug" 19 18 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Clindamycin" 0.5 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" "Clindamycin" "2ug" 17 16 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" "Clindamycin" 0.5 2 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Clarithromycin" 1 64 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Clarithromycin" 0.25 1 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Clarithromycin" 1 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" "Clarithromycin" 0.25 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" "Clarithromycin" 0.25 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" "Clarithromycin" 0.25 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" "Clarithromycin" 0.25 1 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Clarithromycin" 0.25 1 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Clarithromycin" 0.25 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Clarithromycin" 0.25 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" "Clarithromycin" 0.25 1 FALSE +"EUCAST 2011" "MIC" "Acinetobacter" "Colistin" 2 4 FALSE +"EUCAST 2011" "MIC" "Neisseria meningitidis" "Colistin" 2 8 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" "Colistin" 2 4 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" "Cefpodoxime" "10ug" 24 20 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Cefpodoxime" 0.25 1 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Cefpodoxime" 0.25 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" "Cefpodoxime" "10ug" 28 24 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Cefpodoxime" 0.25 1 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" "Ceftriaxone" "30ug" 27 26 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Ceftriaxone" 0.125 0.25 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Ceftriaxone" 1 4 FALSE +"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" "Ceftriaxone" 0.125 0.25 FALSE +"EUCAST 2011" "MIC" "Neisseria meningitidis" "Ceftriaxone" 0.125 0.25 FALSE +"EUCAST 2011" "DISK" "Streptococcus" "Ceftriaxone" "30ug" 27 26 FALSE +"EUCAST 2011" "MIC" "Streptococcus" "Ceftriaxone" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Ceftriaxone" 0.5 4 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" "Ceftibuten" "30ug" 24 23 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Ceftibuten" 1 2 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Ceftibuten" 1 2 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" "Cefotaxime" "5ug" 22 21 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Cefotaxime" 0.125 0.25 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Cefotaxime" 1 4 FALSE +"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" "Cefotaxime" 0.125 0.25 FALSE +"EUCAST 2011" "MIC" "Neisseria meningitidis" "Cefotaxime" 0.125 0.25 FALSE +"EUCAST 2011" "DISK" "Streptococcus" "Cefotaxime" "5ug" 23 22 FALSE +"EUCAST 2011" "MIC" "Streptococcus" "Cefotaxime" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Cefotaxime" 0.5 4 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" "Cefuroxime axetil" "30ug" 50 24 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Cefuroxime axetil" 0.125 2 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Cefuroxime axetil" 0.125 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Cefuroxime axetil" 0.25 1 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" "Cefuroxime" "30ug" 25 21 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Cefuroxime" 1 4 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Cefuroxime" 1 32 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Cefuroxime" 1 4 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Cefuroxime" 0.5 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus" "Cefuroxime" "30ug" 26 25 FALSE +"EUCAST 2011" "MIC" "Streptococcus" "Cefuroxime" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Cefuroxime" 0.5 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus" "Cefazolin" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Daptomycin" 1 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" "Daptomycin" 1 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" "Daptomycin" 1 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" "Daptomycin" 1 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" "Daptomycin" 1 2 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Daptomycin" 1 2 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Daptomycin" 1 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" "Daptomycin" 1 2 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" "Doripenem" "10ug" 21 15 FALSE +"EUCAST 2011" "MIC" "Acinetobacter" "Doripenem" 1 8 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" "Doripenem" "10ug" 20 19 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Doripenem" 1 2 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Doripenem" 1 2 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" "Doripenem" "10ug" 22 16 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" "Doripenem" 1 8 FALSE +"EUCAST 2011" "DISK" "Streptococcus" "Doripenem" "10ug" 25 24 FALSE +"EUCAST 2011" "MIC" "Streptococcus" "Doripenem" 1 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" "Doripenem" 1 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" "Doripenem" 1 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" "Doripenem" 1 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" "Doripenem" 1 2 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Doripenem" 1 2 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Doripenem" 1 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Doripenem" 1 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" "Doripenem" 1 2 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Doxycycline" 1 4 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Doxycycline" 1 4 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Doxycycline" 1 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" "Doxycycline" 1 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" "Doxycycline" 1 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" "Doxycycline" 1 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" "Doxycycline" 1 4 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Doxycycline" 1 4 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Doxycycline" 1 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Doxycycline" 1 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" "Doxycycline" 1 4 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" "Erythromycin" "15ug" 50 11 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Erythromycin" 0.5 32 FALSE +"EUCAST 2011" "DISK" "Moraxella catarrhalis" "Erythromycin" "15ug" 21 17 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Erythromycin" 0.25 1 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" "Erythromycin" "15ug" 21 17 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Erythromycin" 1 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" "Erythromycin" "15ug" 21 17 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" "Erythromycin" 0.25 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" "Erythromycin" "15ug" 21 17 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" "Erythromycin" 0.25 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" "Erythromycin" "15ug" 21 17 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" "Erythromycin" 0.25 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" "Erythromycin" "15ug" 21 17 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" "Erythromycin" 0.25 1 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" "Erythromycin" "15ug" 21 17 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" "Erythromycin" "15ug" 21 17 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Erythromycin" 0.25 1 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Erythromycin" 0.25 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" "Erythromycin" "15ug" 22 18 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Erythromycin" 0.25 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" "Erythromycin" "15ug" 21 17 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" "Erythromycin" 0.25 1 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" "Ertapenem" "10ug" 20 19 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Ertapenem" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Ertapenem" 0.5 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus" "Ertapenem" "10ug" 22 21 FALSE +"EUCAST 2011" "MIC" "Streptococcus" "Ertapenem" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" "Ertapenem" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" "Ertapenem" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" "Ertapenem" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" "Ertapenem" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Ertapenem" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Ertapenem" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Ertapenem" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" "Ertapenem" 0.5 1 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" "Cefepime" "30ug" 25 24 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Cefepime" 0.25 0.5 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Cefepime" 0.25 0.5 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" "Cefepime" "30ug" FALSE +"EUCAST 2011" "MIC" "Pseudomonas" "Cefepime" 8 16 FALSE +"EUCAST 2011" "DISK" "Streptococcus" "Cefepime" "30ug" 25 24 FALSE +"EUCAST 2011" "MIC" "Streptococcus" "Cefepime" 0.5 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" "Cefepime" "30ug" 32 28 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Cefepime" 1 4 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" "Fosfomycin" 32 64 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Fosfomycin" 32 64 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" "Cefoxitin" "30ug" 25 24 FALSE +"EUCAST 2011" "DISK" "Staphylococcus aureus" "Cefoxitin" "30ug" 22 21 FALSE +"EUCAST 2011" "DISK" "Staphylococcus lugdunensis" "Cefoxitin" "30ug" 22 21 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" "Fusidic acid" "10ug" 22 21 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Fusidic acid" 1 2 FALSE +"EUCAST 2011" "DISK" "Enterococcus" "Gentamicin-high" "30ug" 8 7 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" "Gentamicin" "10ug" 15 14 FALSE +"EUCAST 2011" "MIC" "Acinetobacter" "Gentamicin" 4 8 FALSE +"EUCAST 2011" "DISK" "Enterococcus" "Gentamicin" "30ug" 8 7 FALSE +"EUCAST 2011" "MIC" "Enterococcus" "Gentamicin" 128 256 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" "Gentamicin" "10ug" 15 14 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" "Gentamicin" 4 8 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" "Gentamicin" "10ug" 18 17 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Gentamicin" 1 2 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" "Imipenem" "10ug" 23 16 FALSE +"EUCAST 2011" "MIC" "Acinetobacter" "Imipenem" 2 16 FALSE +"EUCAST 2011" "DISK" "Enterococcus" "Imipenem" "10ug" 21 17 FALSE +"EUCAST 2011" "MIC" "Enterococcus" "Imipenem" 4 16 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" "Imipenem" "10ug" 16 15 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Imipenem" 2 4 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Imipenem" 2 4 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" "Imipenem" "10ug" 20 16 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" "Imipenem" 4 16 FALSE +"EUCAST 2011" "DISK" "Streptococcus" "Imipenem" "10ug" 30 29 FALSE +"EUCAST 2011" "MIC" "Streptococcus" "Imipenem" 2 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" "Imipenem" 2 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" "Imipenem" 2 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" "Imipenem" 2 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" "Imipenem" 2 4 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Imipenem" 2 4 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Imipenem" 2 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Imipenem" 2 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" "Imipenem" 2 4 FALSE +"EUCAST 2011" "DISK" "Enterococcus" "Linezolid" "10ug" 19 18 FALSE +"EUCAST 2011" "MIC" "Enterococcus" "Linezolid" 4 8 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" "Linezolid" "10ug" 17 16 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Linezolid" 4 8 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" "Linezolid" "10ug" 19 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" "Linezolid" 2 8 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" "Linezolid" "10ug" 19 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" "Linezolid" 2 8 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" "Linezolid" "10ug" 19 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" "Linezolid" 2 8 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" "Linezolid" "10ug" 19 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" "Linezolid" 2 8 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" "Linezolid" "10ug" 19 15 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" "Linezolid" "10ug" 19 15 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Linezolid" 2 8 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Linezolid" 2 8 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" "Linezolid" "10ug" 20 19 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Linezolid" 4 8 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" "Linezolid" "10ug" 19 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" "Linezolid" 2 8 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" "Levofloxacin" "5ug" 21 20 FALSE +"EUCAST 2011" "MIC" "Acinetobacter" "Levofloxacin" 1 4 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" "Levofloxacin" "5ug" 21 20 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Levofloxacin" 1 2 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Levofloxacin" 1 2 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" "Levofloxacin" "5ug" 20 16 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" "Levofloxacin" 1 4 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Levofloxacin" 1 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" "Levofloxacin" "5ug" 18 14 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" "Levofloxacin" 1 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" "Levofloxacin" "5ug" 18 14 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" "Levofloxacin" 1 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" "Levofloxacin" "5ug" 18 14 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" "Levofloxacin" 1 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" "Levofloxacin" "5ug" 18 14 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" "Levofloxacin" 1 4 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" "Levofloxacin" "5ug" 18 14 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" "Levofloxacin" "5ug" 18 14 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Levofloxacin" 1 4 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Levofloxacin" 1 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" "Levofloxacin" "5ug" 19 18 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Levofloxacin" 2 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" "Levofloxacin" "5ug" 18 14 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" "Levofloxacin" 1 4 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" "Meropenem" "10ug" 21 14 FALSE +"EUCAST 2011" "MIC" "Acinetobacter" "Meropenem" 2 16 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" "Meropenem" "10ug" 20 19 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Meropenem" 2 4 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Meropenem" 2 4 FALSE +"EUCAST 2011" "MIC" "Neisseria meningitidis" "Meropenem" 0.25 0.5 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" "Meropenem" "10ug" 24 17 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" "Meropenem" 2 16 FALSE +"EUCAST 2011" "DISK" "Streptococcus" "Meropenem" "10ug" 25 24 FALSE +"EUCAST 2011" "MIC" "Streptococcus" "Meropenem" 2 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" "Meropenem" 2 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" "Meropenem" 2 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" "Meropenem" 2 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" "Meropenem" 2 4 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Meropenem" 2 4 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Meropenem" 2 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Meropenem" 2 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" "Meropenem" 2 4 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" "Moxifloxacin" "5ug" 23 22 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Moxifloxacin" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Moxifloxacin" 0.5 1 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" "Moxifloxacin" "5ug" 22 18 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Moxifloxacin" 0.5 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" "Moxifloxacin" "30ug" 18 14 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" "Moxifloxacin" 0.5 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" "Moxifloxacin" "5ug" 18 14 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" "Moxifloxacin" 0.5 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" "Moxifloxacin" "5ug" 18 14 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" "Moxifloxacin" 0.5 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" "Moxifloxacin" "5ug" 18 14 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" "Moxifloxacin" 0.5 2 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" "Moxifloxacin" "5ug" 18 14 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" "Moxifloxacin" "5ug" 18 14 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Moxifloxacin" 0.5 2 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Moxifloxacin" 0.5 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" "Moxifloxacin" "5ug" 22 21 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Moxifloxacin" 0.5 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" "Moxifloxacin" "5ug" 18 14 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" "Moxifloxacin" 0.5 2 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Minocycline" 1 4 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Minocycline" 1 4 FALSE +"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" "Minocycline" 0.5 2 FALSE +"EUCAST 2011" "MIC" "Neisseria meningitidis" "Minocycline" 1 4 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Minocycline" 0.5 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" "Minocycline" 0.5 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" "Minocycline" 0.5 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" "Minocycline" 0.5 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" "Minocycline" 0.5 2 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Minocycline" 0.5 2 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Minocycline" 0.5 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Minocycline" 0.5 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" "Minocycline" 0.5 2 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" "Nalidixic acid" "30ug" 23 22 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" "Netilmicin" "10ug" 15 14 FALSE +"EUCAST 2011" "MIC" "Acinetobacter" "Netilmicin" 4 8 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" "Netilmicin" "10ug" 10 9 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" "Netilmicin" 4 8 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Netilmicin" 1 2 FALSE +"EUCAST 2011" "DISK" "Enterococcus" "Nitrofurantoin" "100ug" 15 14 FALSE +"EUCAST 2011" "MIC" "Enterococcus" "Nitrofurantoin" 64 128 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" "Nitrofurantoin" "100ug" 13 12 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Nitrofurantoin" 64 128 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" "Nitrofurantoin" "100ug" 15 14 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" "Nitrofurantoin" 64 128 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" "Nitrofurantoin" "100ug" 15 14 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" "Nitrofurantoin" 64 128 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" "Nitrofurantoin" "100ug" 15 14 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" "Nitrofurantoin" 64 128 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" "Nitrofurantoin" "100ug" 15 14 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" "Nitrofurantoin" 64 128 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" "Nitrofurantoin" "100ug" 15 14 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" "Nitrofurantoin" "100ug" 15 14 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Nitrofurantoin" 64 128 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Nitrofurantoin" 64 128 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" "Nitrofurantoin" "100ug" 15 14 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" "Nitrofurantoin" 64 128 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" "Norfloxacin" "10ug" 17 16 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" "Norfloxacin" "10ug" 12 11 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" "Ofloxacin" "5ug" 21 20 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Ofloxacin" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Ofloxacin" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" "Ofloxacin" 0.125 0.5 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Ofloxacin" 1 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" "Ofloxacin" "5ug" 50 14 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Ofloxacin" 0.125 8 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Oxacillin" 0.25 0.5 FALSE +"EUCAST 2011" "MIC" "Staphylococcus aureus" "Oxacillin" 2 4 FALSE +"EUCAST 2011" "MIC" "Staphylococcus lugdunensis" "Oxacillin" 2 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" "Oxacillin" "1ug" 18 17 FALSE +"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" "Penicillin G" 0.064 2 FALSE +"EUCAST 2011" "MIC" "Neisseria meningitidis" "Penicillin G" 0.064 0.5 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" "Penicillin G" "1ug" 26 25 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Penicillin G" 0.125 0.25 FALSE +"EUCAST 2011" "DISK" "Streptococcus" "Penicillin G" "1ug" 18 11 FALSE +"EUCAST 2011" "MIC" "Streptococcus" "Penicillin G" 0.25 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" "Penicillin G" "1ug" 18 17 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" "Penicillin G" 0.25 0.5 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" "Penicillin G" "1ug" 18 17 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" "Penicillin G" 0.25 0.5 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" "Penicillin G" "1ug" 18 17 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" "Penicillin G" 0.25 0.5 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" "Penicillin G" "1ug" 18 17 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" "Penicillin G" 0.25 0.5 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" "Penicillin G" "1ug" 18 17 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" "Penicillin G" "1ug" 18 17 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Penicillin G" 0.25 0.5 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Penicillin G" 0.25 0.5 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Penicillin G" 0.064 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" "Penicillin G" "1ug" 18 17 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" "Penicillin G" 0.25 0.5 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" "Piperacillin" "30ug" 19 18 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" "Piperacillin" 16 32 FALSE +"EUCAST 2011" "MIC" "Enterococcus faecium" "Quinupristin/dalfopristin" 1 8 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Quinupristin/dalfopristin" 1 4 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" "Rifampicin" "5ug" 18 17 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Rifampicin" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Rifampicin" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Neisseria meningitidis" "Rifampicin" 0.25 0.5 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" "Rifampicin" "5ug" 25 21 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Rifampicin" 0.064 0.5 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" "Rifampicin" "5ug" 21 14 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" "Rifampicin" 0.064 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" "Rifampicin" "5ug" 21 14 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" "Rifampicin" 0.064 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" "Rifampicin" "5ug" 21 14 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" "Rifampicin" 0.064 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" "Rifampicin" "5ug" 21 14 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" "Rifampicin" 0.064 1 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" "Rifampicin" "5ug" 21 14 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" "Rifampicin" "5ug" 21 14 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Rifampicin" 0.064 1 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Rifampicin" 0.064 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" "Rifampicin" "5ug" 22 16 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Rifampicin" 0.064 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" "Rifampicin" "5ug" 21 14 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" "Rifampicin" 0.064 1 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Roxithromycin" 1 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" "Roxithromycin" 0.5 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" "Roxithromycin" 0.5 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" "Roxithromycin" 0.5 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" "Roxithromycin" 0.5 2 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Roxithromycin" 0.5 2 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Roxithromycin" 0.5 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Roxithromycin" 0.5 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" "Roxithromycin" 0.5 2 FALSE +"EUCAST 2011" "MIC" "Enterococcus" "Ampicillin/sulbactam" 4 16 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Ampicillin/sulbactam" 1 2 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Ampicillin/sulbactam" 1 2 FALSE +"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" "Spectinomycin" 64 128 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" "Trimethoprim/sulfamethoxazole" "1.25/23.75ug" 16 12 FALSE +"EUCAST 2011" "MIC" "Acinetobacter" "Trimethoprim/sulfamethoxazole" 2 8 FALSE +"EUCAST 2011" "DISK" "Enterococcus" "Trimethoprim/sulfamethoxazole" "1.25/23.75ug" 50 20 FALSE +"EUCAST 2011" "MIC" "Enterococcus" "Trimethoprim/sulfamethoxazole" 0.32 2 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" "Trimethoprim/sulfamethoxazole" "1.25/23.75ug" 23 19 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Trimethoprim/sulfamethoxazole" 0.5 2 FALSE +"EUCAST 2011" "DISK" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" "1.25/23.75ug" 18 14 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" 0.5 2 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" "Trimethoprim/sulfamethoxazole" 4 8 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" "Trimethoprim/sulfamethoxazole" "1.25/23.75ug" 17 13 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Trimethoprim/sulfamethoxazole" 2 8 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" "Trimethoprim/sulfamethoxazole" "1.25/23.75ug" 18 14 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" "Trimethoprim/sulfamethoxazole" 1 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" "Trimethoprim/sulfamethoxazole" "1.25/23.75ug" 18 14 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" "Trimethoprim/sulfamethoxazole" 1 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" "Trimethoprim/sulfamethoxazole" "1.25/23.75ug" 18 14 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" "Trimethoprim/sulfamethoxazole" 1 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" "Trimethoprim/sulfamethoxazole" "1.25/23.75ug" 18 14 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" "Trimethoprim/sulfamethoxazole" 1 4 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" "Trimethoprim/sulfamethoxazole" "1.25/23.75ug" 18 14 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" "Trimethoprim/sulfamethoxazole" "1.25/23.75ug" 18 14 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Trimethoprim/sulfamethoxazole" 1 4 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Trimethoprim/sulfamethoxazole" 1 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" "1.25/23.75ug" 18 14 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" 1 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" "Trimethoprim/sulfamethoxazole" "1.25/23.75ug" 18 14 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" "Trimethoprim/sulfamethoxazole" 1 4 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" "Ticarcillin/clavulanic acid" 16 32 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" "Tetracycline" "30ug" 24 20 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Tetracycline" 1 4 FALSE +"EUCAST 2011" "DISK" "Moraxella catarrhalis" "Tetracycline" "30ug" 28 24 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Tetracycline" 1 4 FALSE +"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" "Tetracycline" 0.5 2 FALSE +"EUCAST 2011" "MIC" "Neisseria meningitidis" "Tetracycline" 1 4 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" "Tetracycline" "30ug" 22 18 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Tetracycline" 1 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" "Tetracycline" "30ug" 23 19 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" "Tetracycline" 1 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" "Tetracycline" "30ug" 23 19 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" "Tetracycline" 1 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" "Tetracycline" "30ug" 23 19 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" "Tetracycline" 1 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" "Tetracycline" "30ug" 23 19 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" "Tetracycline" 1 4 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" "Tetracycline" "30ug" 23 19 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" "Tetracycline" "30ug" 23 19 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Tetracycline" 1 4 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Tetracycline" 1 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" "Tetracycline" "30ug" 23 19 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Tetracycline" 1 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" "Tetracycline" "30ug" 23 19 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" "Tetracycline" 1 4 FALSE +"EUCAST 2011" "DISK" "Enterococcus" "Teicoplanin" "30ug" 16 15 FALSE +"EUCAST 2011" "MIC" "Enterococcus" "Teicoplanin" 2 4 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Teicoplanin" 4 8 FALSE +"EUCAST 2011" "MIC" "Staphylococcus aureus" "Teicoplanin" 2 4 FALSE +"EUCAST 2011" "MIC" "Staphylococcus lugdunensis" "Teicoplanin" 2 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus" "Teicoplanin" "30ug" FALSE +"EUCAST 2011" "MIC" "Streptococcus" "Teicoplanin" 2 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" "Teicoplanin" 2 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" "Teicoplanin" 2 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" "Teicoplanin" 2 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" "Teicoplanin" 2 4 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Teicoplanin" 2 4 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Teicoplanin" 2 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Teicoplanin" 2 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" "Teicoplanin" 2 4 FALSE +"EUCAST 2011" "DISK" "Enterococcus" "Tigecycline" "15ug" 18 14 FALSE +"EUCAST 2011" "MIC" "Enterococcus" "Tigecycline" 0.25 1 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" "Tigecycline" "15ug" 18 17 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Tigecycline" 0.5 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" "Tigecycline" "15ug" 19 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" "Tigecycline" 0.25 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" "Tigecycline" "15ug" 19 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" "Tigecycline" 0.25 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" "Tigecycline" "15ug" 19 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" "Tigecycline" 0.25 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" "Tigecycline" "15ug" 19 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" "Tigecycline" 0.25 1 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" "Tigecycline" "15ug" 19 15 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" "Tigecycline" "15ug" 19 15 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Tigecycline" 0.25 1 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Tigecycline" 0.25 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" "Tigecycline" "15ug" 19 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" "Tigecycline" 0.25 1 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" "Ticarcillin" 16 32 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" "Telithromycin" 0.125 16 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" "Telithromycin" 0.25 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" "Telithromycin" 0.25 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" "Telithromycin" 0.25 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" "Telithromycin" 0.25 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" "Telithromycin" 0.25 1 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Telithromycin" 0.25 1 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Telithromycin" 0.25 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Telithromycin" 0.25 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" "Telithromycin" 0.25 1 FALSE +"EUCAST 2011" "DISK" "Enterococcus" "Trimethoprim" "5ug" 50 20 FALSE +"EUCAST 2011" "MIC" "Enterococcus" "Trimethoprim" 0.32 2 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" "Trimethoprim" "5ug" 17 13 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Trimethoprim" 2 8 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" "Tobramycin" "10ug" 15 14 FALSE +"EUCAST 2011" "MIC" "Acinetobacter" "Tobramycin" 4 8 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" "Tobramycin" "10ug" 15 14 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" "Tobramycin" 4 8 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" "Tobramycin" "10ug" 19 18 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Tobramycin" 1 2 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" "Piperacillin/tazobactam" "30ug" 19 18 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" "Piperacillin/tazobactam" 16 32 FALSE +"EUCAST 2011" "DISK" "Enterococcus" "Vancomycin" "5ug" 12 11 FALSE +"EUCAST 2011" "MIC" "Enterococcus" "Vancomycin" 4 8 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" "Vancomycin" 2 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus" "Vancomycin" "5ug" FALSE +"EUCAST 2011" "MIC" "Streptococcus" "Vancomycin" 2 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" "Vancomycin" 2 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" "Vancomycin" 2 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" "Vancomycin" 2 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" "Vancomycin" 2 4 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Vancomycin" 2 4 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" "Vancomycin" 2 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" "Vancomycin" "5ug" 15 14 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" "Vancomycin" 2 4 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" "Vancomycin" 2 4 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE +"CLSI 2019" "MIC" "Aggregatibacter" "Amoxicillin/clavulanic acid" "M45 Table 9" 4 8 FALSE +"CLSI 2019" "MIC" "Anaerosalibacter" "Amoxicillin/clavulanic acid" "Table 2J" 4 16 FALSE +"CLSI 2019" "MIC" "Burkholderia pseudomallei" "Amoxicillin/clavulanic acid" "M45 Table 21" 8 32 FALSE +"CLSI 2019" "MIC" "Cardiobacterium" "Amoxicillin/clavulanic acid" "M45 Table 9" 4 8 FALSE +"CLSI 2019" "MIC" "Eikenella corrodens" "Amoxicillin/clavulanic acid" "M45 Table 9" 4 8 FALSE +"CLSI 2019" "DISK" "UTI" "Escherichia coli" "Amoxicillin/clavulanic acid" "VET08 Table 2A" "20ug" 18 TRUE +"CLSI 2019" "MIC" "Skin, soft tissue" "Escherichia coli" "Amoxicillin/clavulanic acid" "VET08 Table 2A" 0.25 1 FALSE +"CLSI 2019" "MIC" "UTI" "Escherichia coli" "Amoxicillin/clavulanic acid" "VET08 Table 2A" 8 TRUE +"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "Escherichia coli" "Amoxicillin/clavulanic acid" "VET08 Table 2A" 0.25 1 TRUE +"CLSI 2019" "DISK" "Haemophilus" "Amoxicillin/clavulanic acid" "Table 2E" "20/10ug" 20 19 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Amoxicillin/clavulanic acid" "Table 2E" 4 8 FALSE +"CLSI 2019" "MIC" "Kingella" "Amoxicillin/clavulanic acid" "M45 Table 9" 4 8 FALSE +"CLSI 2019" "DISK" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" "M45 Table 16" "20ug" 24 23 FALSE +"CLSI 2019" "MIC" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" "M45 Table 16" 4 8 FALSE +"CLSI 2019" "DISK" "Pasteurella" "Amoxicillin/clavulanic acid" "M45 Table 17" "20ug" 27 FALSE +"CLSI 2019" "MIC" "Pasteurella" "Amoxicillin/clavulanic acid" "M45 Table 17" 0.5 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "Pasteurella multocida" "Amoxicillin/clavulanic acid" "VET08 Table 2H" 0.25 1 TRUE +"CLSI 2019" "DISK" "Staphylococcus" "Amoxicillin/clavulanic acid" "Table 2C" "20ug" 20 19 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Amoxicillin/clavulanic acid" "Table 2C" 4 8 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue" "Staphylococcus" "Amoxicillin/clavulanic acid" "VET08 Table 2C" 0.25 1 FALSE +"CLSI 2019" "MIC" "UTI" "Staphylococcus" "Amoxicillin/clavulanic acid" "VET08 Table 2C" 8 TRUE +"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "Staphylococcus" "Amoxicillin/clavulanic acid" "VET08 Table 2C" 0.25 1 TRUE +"CLSI 2019" "DISK" "Streptococcus" "Amoxicillin/clavulanic acid" "Table 2H-1" "20ug" FALSE +"CLSI 2019" "MIC" "Streptococcus" "Amoxicillin/clavulanic acid" "Table 2H-1" FALSE +"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "Streptococcus" "Amoxicillin/clavulanic acid" "VET08 Table 2D" 0.25 1 TRUE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Amoxicillin/clavulanic acid" "Table 2G" "10/10ug" FALSE +"CLSI 2019" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Amoxicillin/clavulanic acid" "Table 2G" 2 8 FALSE +"CLSI 2019" "DISK" "Vibrio" "Amoxicillin/clavulanic acid" "M45 Table 20" "20ug" 18 13 FALSE +"CLSI 2019" "MIC" "Vibrio" "Amoxicillin/clavulanic acid" "M45 Table 20" 8 32 FALSE +"CLSI 2019" "DISK" "Acinetobacter" "Amikacin" "Table 2B-2" "30ug" 17 14 FALSE +"CLSI 2019" "MIC" "Acinetobacter" "Amikacin" "Table 2B-2" 16 64 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Amikacin" "M45 Table 3" 17 14 FALSE +"CLSI 2019" "MIC" "Aeromonas" "Amikacin" "M45 Table 3" 16 64 FALSE +"CLSI 2019" "MIC" "Bacillus" "Amikacin" "M45 Table 4" 16 64 FALSE +"CLSI 2019" "MIC" "Escherichia coli" "Amikacin" "VET08 Table 2A" 4 16 FALSE +"CLSI 2019" "MIC" "Escherichia coli" "Amikacin" "VET08 Table 2A" 2 8 FALSE +"CLSI 2019" "MIC" "Escherichia coli" "Amikacin" "VET08 Table 2A" 4 16 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" "Amikacin" "Table 2B-1" "30ug" 17 14 FALSE +"CLSI 2019" "MIC" "Pseudomonas aeruginosa" "Amikacin" "Table 2B-1" 16 64 FALSE +"CLSI 2019" "MIC" "Pseudomonas aeruginosa" "Amikacin" "VET08 Table 2B" 4 16 FALSE +"CLSI 2019" "MIC" "Pseudomonas aeruginosa" "Amikacin" "VET08 Table 2B" 2 8 FALSE +"CLSI 2019" "MIC" "Pseudomonas aeruginosa" "Amikacin" "VET08 Table 2B" 4 16 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Amikacin" "VET08 Table 2C" 4 16 FALSE +"CLSI 2019" "MIC" "Staphylococcus aureus" "Amikacin" "VET08 Table 2C" 2 8 FALSE +"CLSI 2019" "MIC" "Staphylococcus aureus" "Amikacin" "VET08 Table 2C" 4 16 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Amikacin" "VET08 Table 2D" 4 16 FALSE +"CLSI 2019" "MIC" "Streptococcus equi" "Amikacin" "VET08 Table 2D" 2 8 FALSE +"CLSI 2019" "MIC" "Streptococcus equi" "Amikacin" "VET08 Table 2D" 4 16 FALSE +"CLSI 2019" "MIC" "Streptococcus equi zooepidemicus" "Amikacin" "VET08 Table 2D" 2 8 FALSE +"CLSI 2019" "MIC" "Streptococcus equi zooepidemicus" "Amikacin" "VET08 Table 2D" 4 16 FALSE +"CLSI 2019" "DISK" "Vibrio" "Amikacin" "M45 Table 20" "30ug" 17 14 FALSE +"CLSI 2019" "MIC" "Vibrio" "Amikacin" "M45 Table 20" 16 64 FALSE +"CLSI 2019" "MIC" "Abiotrophia" "Ampicillin" "M45 Table 1" 0.25 8 FALSE +"CLSI 2019" "MIC" "Respiratory" "Actinobacillus pleuropneumoniae" "Ampicillin" "VET08 Table 2I" 0.5 2 FALSE +"CLSI 2019" "MIC" "Aggregatibacter" "Ampicillin" "M45 Table 9" 1 4 FALSE +"CLSI 2019" "MIC" "Anaerosalibacter" "Ampicillin" "Table 2J" 0.5 2 FALSE +"CLSI 2019" "MIC" "Bacillus" "Ampicillin" "M45 Table 4" 0.25 0.5 FALSE +"CLSI 2019" "MIC" "Respiratory" "Bordetella bronchiseptica" "Ampicillin" "VET08 Table 2F" 0.5 2 FALSE +"CLSI 2019" "MIC" "Cardiobacterium" "Ampicillin" "M45 Table 9" 1 4 FALSE +"CLSI 2019" "MIC" "Eikenella corrodens" "Ampicillin" "M45 Table 9" 1 4 FALSE +"CLSI 2019" "DISK" "Enterococcus" "Ampicillin" "Table 2D" "10ug" 17 16 FALSE +"CLSI 2019" "MIC" "Enterococcus" "Ampicillin" "Table 2D" 8 16 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue" "Escherichia coli" "Ampicillin" "VET08 Table 2A" 0.25 1 FALSE +"CLSI 2019" "MIC" "UTI" "Escherichia coli" "Ampicillin" "VET08 Table 2A" 8 TRUE +"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "Escherichia coli" "Ampicillin" "VET08 Table 2A" 0.25 1 TRUE +"CLSI 2019" "MIC" "Metritis" "Escherichia coli" "Ampicillin" "VET08 Table 2A" 0.25 1 FALSE +"CLSI 2019" "MIC" "Granulicatella" "Ampicillin" "M45 Table 1" 0.25 8 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Ampicillin" "Table 2E" "10ug" 22 18 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Ampicillin" "Table 2E" 1 4 FALSE +"CLSI 2019" "MIC" "Respiratory" "Histophilus somni" "Ampicillin" "VET08 Table 2J" 0.032 0.25 FALSE +"CLSI 2019" "MIC" "Kingella" "Ampicillin" "M45 Table 9" 1 4 FALSE +"CLSI 2019" "MIC" "Leuconostoc" "Ampicillin" "M45 Table 13" 8 FALSE +"CLSI 2019" "MIC" "Lactobacillus" "Ampicillin" "M45 Table 11" 8 FALSE +"CLSI 2019" "MIC" "Lactococcus" "Ampicillin" "M45 Table 12" 1 4 FALSE +"CLSI 2019" "MIC" "Listeria monocytogenes" "Ampicillin" "M45 Table 14" 2 FALSE +"CLSI 2019" "MIC" "Respiratory" "Mannheimia haemolytica" "Ampicillin" "VET08 Table 2G" 0.032 0.25 FALSE +"CLSI 2019" "DISK" "Neisseria meningitidis" "Ampicillin" "Table 2I" "10ug" FALSE +"CLSI 2019" "MIC" "Neisseria meningitidis" "Ampicillin" "Table 2I" 0.125 2 FALSE +"CLSI 2019" "MIC" "Pediococcus" "Ampicillin" "M45 Table 18" 8 FALSE +"CLSI 2019" "DISK" "Pasteurella" "Ampicillin" "M45 Table 17" "10ug" 27 FALSE +"CLSI 2019" "MIC" "Pasteurella" "Ampicillin" "M45 Table 17" 0.5 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "Pasteurella multocida" "Ampicillin" "VET08 Table 2H" 0.25 1 TRUE +"CLSI 2019" "MIC" "Respiratory" "Pasteurella multocida" "Ampicillin" "VET08 Table 2H" 0.5 2 FALSE +"CLSI 2019" "MIC" "Respiratory" "Pasteurella multocida" "Ampicillin" "VET08 Table 2H" 0.032 0.25 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Ampicillin" "Table 2C" "10ug" 29 28 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Ampicillin" "Table 2C" 0.25 0.5 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "Staphylococcus" "Ampicillin" "VET08 Table 2C" 0.25 1 TRUE +"CLSI 2019" "DISK" "Streptococcus" "Ampicillin" "Table 2H-1" "10ug" 24 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Ampicillin" "M45 Table 1" 0.25 8 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Ampicillin" "Table 2H-1" 0.25 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue" "Streptococcus" "Ampicillin" "VET08 Table 2D" 0.25 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "Streptococcus" "Ampicillin" "VET08 Table 2D" 0.25 1 TRUE +"CLSI 2019" "MIC" "Respiratory" "Streptococcus equi" "Ampicillin" "VET08 Table 2D" 0.25 FALSE +"CLSI 2019" "MIC" "Respiratory" "Streptococcus equi zooepidemicus" "Ampicillin" "VET08 Table 2D" 0.25 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Ampicillin" "Table 2G" "10ug" FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Ampicillin" "Table 2G" FALSE +"CLSI 2019" "MIC" "Respiratory" "Streptococcus suis" "Ampicillin" "VET08 Table 2D" 0.5 2 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" "Ampicillin" "Table 2H-2" "10ug" FALSE +"CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Ampicillin" "Table 2H-2" 0.25 8 FALSE +"CLSI 2019" "DISK" "Vibrio" "Ampicillin" "M45 Table 20" "10ug" 17 13 FALSE +"CLSI 2019" "MIC" "Vibrio" "Ampicillin" "M45 Table 20" 8 32 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue" "Pseudallescheria" "Ampicillin" "VET08 Table 2C" 0.25 0.5 FALSE +"CLSI 2019" "MIC" "Bacillus anthracis" "Amoxicillin" "M45 Table 21" 0.125 0.25 FALSE +"CLSI 2019" "MIC" "Pasteurella" "Amoxicillin" "M45 Table 17" 0.5 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Amoxicillin" "Table 2H-1" "30ug" FALSE +"CLSI 2019" "MIC" "Streptococcus" "Amoxicillin" "Table 2H-1" FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Amoxicillin" "Table 2G" "30ug" FALSE +"CLSI 2019" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Amoxicillin" "Table 2G" 2 8 FALSE +"CLSI 2019" "MIC" "Candida" "Anidulafungin" "Table 1" 2 8 FALSE +"CLSI 2019" "MIC" "Candida" "Anidulafungin" "Table 1" 0.25 1 FALSE +"CLSI 2019" "MIC" "Candida albicans" "Anidulafungin" "Table 1" 0.25 1 FALSE +"CLSI 2019" "MIC" "Candida glabrata" "Anidulafungin" "Table 1" 0.125 0.5 FALSE +"CLSI 2019" "MIC" "Candida parapsilosis" "Anidulafungin" "Table 1" 2 8 FALSE +"CLSI 2019" "MIC" "Candida tropicalis" "Anidulafungin" "Table 1" 0.25 1 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Aztreonam" "M45 Table 3" 21 17 FALSE +"CLSI 2019" "MIC" "Aeromonas" "Aztreonam" "M45 Table 3" 4 16 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Aztreonam" "Table 2E" "30ug" 26 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Aztreonam" "Table 2E" 2 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" "Aztreonam" "Table 2B-1" "30ug" 22 15 FALSE +"CLSI 2019" "MIC" "Pseudomonas aeruginosa" "Aztreonam" "Table 2B-1" 8 32 FALSE +"CLSI 2019" "MIC" "Aggregatibacter" "Azithromycin" "M45 Table 9" 4 FALSE +"CLSI 2019" "MIC" "Cardiobacterium" "Azithromycin" "M45 Table 9" 4 FALSE +"CLSI 2019" "MIC" "Eikenella corrodens" "Azithromycin" "M45 Table 9" 4 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Azithromycin" "Table 2E" "15ug" 12 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Azithromycin" "Table 2E" 4 FALSE +"CLSI 2019" "MIC" "Kingella" "Azithromycin" "M45 Table 9" 4 FALSE +"CLSI 2019" "DISK" "Moraxella catarrhalis" "Azithromycin" "M45 Table 16" "15ug" 26 FALSE +"CLSI 2019" "MIC" "Moraxella catarrhalis" "Azithromycin" "M45 Table 16" 0.25 FALSE +"CLSI 2019" "MIC" "Neisseria gonorrhoeae" "Azithromycin" "Table 2F" 1 FALSE +"CLSI 2019" "DISK" "Neisseria meningitidis" "Azithromycin" "Table 2I" "15ug" 20 FALSE +"CLSI 2019" "MIC" "Neisseria meningitidis" "Azithromycin" "Table 2I" 2 FALSE +"CLSI 2019" "DISK" "Pasteurella" "Azithromycin" "M45 Table 17" "15ug" 20 FALSE +"CLSI 2019" "MIC" "Pasteurella" "Azithromycin" "M45 Table 17" 1 FALSE +"CLSI 2019" "MIC" "Salmonella enterica" "Azithromycin" "Table 2A" 16 32 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Azithromycin" "Table 2C" "15ug" 18 13 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Azithromycin" "Table 2C" 2 8 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Azithromycin" "Table 2H-1" "15ug" 18 13 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Azithromycin" "Table 2H-1" 0.5 2 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Azithromycin" "Table 2G" "15ug" 18 13 FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Azithromycin" "Table 2G" 0.5 2 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" "Azithromycin" "Table 2H-2" "15ug" 18 13 FALSE +"CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Azithromycin" "Table 2H-2" 0.5 2 FALSE +"CLSI 2019" "MIC" "Vibrio" "Azithromycin" "M45 Table 20" 2 FALSE +"CLSI 2019" "DISK" "Candida" "Caspofungin" "Table 1" 13 10 FALSE +"CLSI 2019" "DISK" "Candida" "Caspofungin" "Table 1" 17 14 FALSE +"CLSI 2019" "MIC" "Candida" "Caspofungin" "Table 1" 2 8 FALSE +"CLSI 2019" "MIC" "Candida" "Caspofungin" "Table 1" 0.25 1 FALSE +"CLSI 2019" "DISK" "Candida albicans" "Caspofungin" "Table 1" 17 14 FALSE +"CLSI 2019" "MIC" "Candida albicans" "Caspofungin" "Table 1" 0.25 1 FALSE +"CLSI 2019" "MIC" "Candida glabrata" "Caspofungin" "Table 1" 0.125 0.5 FALSE +"CLSI 2019" "DISK" "Candida parapsilosis" "Caspofungin" "Table 1" 13 10 FALSE +"CLSI 2019" "MIC" "Candida parapsilosis" "Caspofungin" "Table 1" 2 8 FALSE +"CLSI 2019" "DISK" "Candida tropicalis" "Caspofungin" "Table 1" 17 14 FALSE +"CLSI 2019" "MIC" "Candida tropicalis" "Caspofungin" "Table 1" 0.25 1 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Cefetamet" "Table 2E" "10ug" 18 14 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Cefetamet" "Table 2E" 4 16 FALSE +"CLSI 2019" "DISK" "Acinetobacter" "Ceftazidime" "Table 2B-2" "30ug" 18 14 FALSE +"CLSI 2019" "MIC" "Acinetobacter" "Ceftazidime" "Table 2B-2" 8 32 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Ceftazidime" "M45 Table 3" 21 17 FALSE +"CLSI 2019" "MIC" "Aeromonas" "Ceftazidime" "M45 Table 3" 4 16 FALSE +"CLSI 2019" "DISK" "Burkholderia cepacia" "Ceftazidime" "Table 2B-3" "30ug" 21 17 FALSE +"CLSI 2019" "DISK" "Burkholderia cepacia" "Ceftazidime" "Table 2B-3" "30ug" 21 17 FALSE +"CLSI 2019" "MIC" "Burkholderia cepacia" "Ceftazidime" "Table 2B-3" 8 32 FALSE +"CLSI 2019" "MIC" "Burkholderia cepacia" "Ceftazidime" "Table 2B-3" 8 32 FALSE +"CLSI 2019" "MIC" "Burkholderia mallei" "Ceftazidime" "M45 Table 21" 8 32 FALSE +"CLSI 2019" "MIC" "Burkholderia pseudomallei" "Ceftazidime" "M45 Table 21" 8 32 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Ceftazidime" "Table 2E" "30ug" 26 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Ceftazidime" "Table 2E" 2 FALSE +"CLSI 2019" "MIC" "Moraxella catarrhalis" "Ceftazidime" "M45 Table 16" 2 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" "Ceftazidime" "Table 2B-1" "30ug" 18 14 FALSE +"CLSI 2019" "MIC" "Pseudomonas aeruginosa" "Ceftazidime" "Table 2B-1" 8 32 FALSE +"CLSI 2019" "DISK" "Stenotrophomonas maltophilia" "Ceftazidime" "Table 2B-4" "30ug" FALSE +"CLSI 2019" "MIC" "Stenotrophomonas maltophilia" "Ceftazidime" "Table 2B-4" 8 32 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Ceftazidime" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Ceftazidime" "Table 2C" 8 32 FALSE +"CLSI 2019" "DISK" "Vibrio" "Ceftazidime" "M45 Table 20" "30ug" 21 17 FALSE +"CLSI 2019" "MIC" "Vibrio" "Ceftazidime" "M45 Table 20" 4 16 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Cefdinir" "Table 2E" "5ug" 20 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Cefdinir" "Table 2E" 1 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Cefdinir" "Table 2C" "5ug" 20 16 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Cefdinir" "Table 2C" 1 4 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Cefdinir" "Table 2G" "5ug" FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Cefdinir" "Table 2G" 0.5 2 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Cefaclor" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Cefaclor" "Table 2E" 8 32 FALSE +"CLSI 2019" "MIC" "Moraxella catarrhalis" "Cefaclor" "M45 Table 16" 8 32 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Cefaclor" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Cefaclor" "Table 2C" 8 32 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Cefaclor" "Table 2G" "30ug" FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Cefaclor" "Table 2G" 1 4 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Cephalothin" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Cephalothin" "Table 2C" 8 32 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue" "Staphylococcus aureus" "Cephalothin" "VET08 Table 2C" 2 8 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue" "Beta-haemolytic Streptococcus" "Cephalothin" "VET08 Table 2D" 2 8 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue" "Pseudallescheria" "Cephalothin" "VET08 Table 2C" 2 8 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Cefixime" "Table 2E" "5ug" 21 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Cefixime" "Table 2E" 1 FALSE +"CLSI 2019" "DISK" "Neisseria gonorrhoeae" "Cefixime" "Table 2F" "5ug" 31 FALSE +"CLSI 2019" "MIC" "Neisseria gonorrhoeae" "Cefixime" "Table 2F" 0.25 FALSE +"CLSI 2019" "MIC" "Anaerosalibacter" "Cefoperazone" "Table 2J" 16 64 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Cefoperazone" "Table 2C" "75ug" 21 15 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Cefoperazone" "Table 2C" 16 64 FALSE +"CLSI 2019" "MIC" "Abiotrophia" "Chloramphenicol" "M45 Table 1" 4 8 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Chloramphenicol" "M45 Table 3" 18 12 FALSE +"CLSI 2019" "MIC" "Aeromonas" "Chloramphenicol" "M45 Table 3" 8 32 FALSE +"CLSI 2019" "MIC" "Aggregatibacter" "Chloramphenicol" "M45 Table 9" 4 16 FALSE +"CLSI 2019" "MIC" "Anaerosalibacter" "Chloramphenicol" "Table 2J" 8 32 FALSE +"CLSI 2019" "MIC" "Bacillus" "Chloramphenicol" "M45 Table 4" 8 32 FALSE +"CLSI 2019" "DISK" "Burkholderia cepacia" "Chloramphenicol" "Table 2B-3" "30ug" FALSE +"CLSI 2019" "DISK" "Burkholderia cepacia" "Chloramphenicol" "Table 2B-3" "30ug" FALSE +"CLSI 2019" "MIC" "Burkholderia cepacia" "Chloramphenicol" "Table 2B-3" 8 32 FALSE +"CLSI 2019" "MIC" "Burkholderia cepacia" "Chloramphenicol" "Table 2B-3" 8 32 FALSE +"CLSI 2019" "MIC" "Cardiobacterium" "Chloramphenicol" "M45 Table 9" 4 16 FALSE +"CLSI 2019" "MIC" "Eikenella corrodens" "Chloramphenicol" "M45 Table 9" 4 16 FALSE +"CLSI 2019" "DISK" "Enterococcus" "Chloramphenicol" "Table 2D" "30ug" 18 12 FALSE +"CLSI 2019" "MIC" "Enterococcus" "Chloramphenicol" "Table 2D" 8 32 FALSE +"CLSI 2019" "MIC" "Francisella tularensis" "Chloramphenicol" "M45 Table 21" 8 FALSE +"CLSI 2019" "MIC" "Granulicatella" "Chloramphenicol" "M45 Table 1" 4 8 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Chloramphenicol" "Table 2E" "30ug" 29 25 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Chloramphenicol" "Table 2E" 2 8 FALSE +"CLSI 2019" "MIC" "Kingella" "Chloramphenicol" "M45 Table 9" 4 16 FALSE +"CLSI 2019" "MIC" "Leuconostoc" "Chloramphenicol" "M45 Table 13" 8 32 FALSE +"CLSI 2019" "MIC" "Moraxella catarrhalis" "Chloramphenicol" "M45 Table 16" 2 8 FALSE +"CLSI 2019" "DISK" "Neisseria meningitidis" "Chloramphenicol" "Table 2I" "30ug" 26 19 FALSE +"CLSI 2019" "MIC" "Neisseria meningitidis" "Chloramphenicol" "Table 2I" 2 8 FALSE +"CLSI 2019" "MIC" "Pediococcus" "Chloramphenicol" "M45 Table 18" 8 32 FALSE +"CLSI 2019" "DISK" "Pasteurella" "Chloramphenicol" "M45 Table 17" "30ug" 28 FALSE +"CLSI 2019" "MIC" "Pasteurella" "Chloramphenicol" "M45 Table 17" 2 FALSE +"CLSI 2019" "DISK" "Stenotrophomonas maltophilia" "Chloramphenicol" "Table 2B-4" "30ug" FALSE +"CLSI 2019" "MIC" "Stenotrophomonas maltophilia" "Chloramphenicol" "Table 2B-4" 8 32 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Chloramphenicol" "Table 2C" "30ug" 18 12 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Chloramphenicol" "Table 2C" 8 32 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Chloramphenicol" "Table 2H-1" "30ug" 21 17 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Chloramphenicol" "M45 Table 1" 4 8 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Chloramphenicol" "Table 2H-1" 4 16 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Chloramphenicol" "Table 2G" "30ug" 21 20 FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Chloramphenicol" "Table 2G" 4 8 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" "Chloramphenicol" "Table 2H-2" "30ug" 21 17 FALSE +"CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Chloramphenicol" "Table 2H-2" 4 16 FALSE +"CLSI 2019" "DISK" "Vibrio" "Chloramphenicol" "M45 Table 20" "30ug" 18 12 FALSE +"CLSI 2019" "MIC" "Vibrio" "Chloramphenicol" "M45 Table 20" 8 32 FALSE +"CLSI 2019" "MIC" "Yersinia pestis" "Chloramphenicol" "M45 Table 21" 8 32 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Cefonicid" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Cefonicid" "Table 2E" 4 16 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Cefonicid" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Cefonicid" "Table 2C" 8 32 FALSE +"CLSI 2019" "MIC" "Abiotrophia" "Ciprofloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2019" "DISK" "Acinetobacter" "Ciprofloxacin" "Table 2B-2" "5ug" 21 15 FALSE +"CLSI 2019" "MIC" "Acinetobacter" "Ciprofloxacin" "Table 2B-2" 1 4 FALSE +"CLSI 2019" "MIC" "Aerococcus" "Ciprofloxacin" "M45 Table 2" 1 4 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Ciprofloxacin" "M45 Table 3" 21 15 FALSE +"CLSI 2019" "MIC" "Aeromonas" "Ciprofloxacin" "M45 Table 3" 1 4 FALSE +"CLSI 2019" "MIC" "Aggregatibacter" "Ciprofloxacin" "M45 Table 9" 1 4 FALSE +"CLSI 2019" "MIC" "Bacillus" "Ciprofloxacin" "M45 Table 4" 1 4 FALSE +"CLSI 2019" "MIC" "Bacillus anthracis" "Ciprofloxacin" "M45 Table 21" 0.25 FALSE +"CLSI 2019" "DISK" "Campylobacter" "Ciprofloxacin" "M45 Table 5" 24 20 FALSE +"CLSI 2019" "MIC" "Campylobacter" "Ciprofloxacin" "M45 Table 5" 1 4 FALSE +"CLSI 2019" "MIC" "Cardiobacterium" "Ciprofloxacin" "M45 Table 9" 1 4 FALSE +"CLSI 2019" "MIC" "Eikenella corrodens" "Ciprofloxacin" "M45 Table 9" 1 4 FALSE +"CLSI 2019" "DISK" "Enterococcus" "Ciprofloxacin" "Table 2D" "5ug" 21 15 FALSE +"CLSI 2019" "MIC" "Enterococcus" "Ciprofloxacin" "Table 2D" 1 4 FALSE +"CLSI 2019" "MIC" "Francisella tularensis" "Ciprofloxacin" "M45 Table 21" 0.5 FALSE +"CLSI 2019" "MIC" "Granulicatella" "Ciprofloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Ciprofloxacin" "Table 2E" "5ug" 21 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Ciprofloxacin" "Table 2E" 1 FALSE +"CLSI 2019" "MIC" "Kingella" "Ciprofloxacin" "M45 Table 9" 1 4 FALSE +"CLSI 2019" "MIC" "Moraxella catarrhalis" "Ciprofloxacin" "M45 Table 16" 1 FALSE +"CLSI 2019" "DISK" "Neisseria gonorrhoeae" "Ciprofloxacin" "Table 2F" "5ug" 41 27 FALSE +"CLSI 2019" "MIC" "Neisseria gonorrhoeae" "Ciprofloxacin" "Table 2F" 0.064 1 FALSE +"CLSI 2019" "DISK" "Neisseria meningitidis" "Ciprofloxacin" "Table 2I" "5ug" 35 32 FALSE +"CLSI 2019" "MIC" "Neisseria meningitidis" "Ciprofloxacin" "Table 2I" 0.032 0.12 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" "Ciprofloxacin" "Table 2B-1" "5ug" 25 18 FALSE +"CLSI 2019" "MIC" "Pseudomonas aeruginosa" "Ciprofloxacin" "Table 2B-1" 0.5 2 FALSE +"CLSI 2019" "DISK" "Extraintestinal" "Salmonella" "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE +"CLSI 2019" "DISK" "Salmonella" "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE +"CLSI 2019" "MIC" "Extraintestinal" "Salmonella" "Ciprofloxacin" "Table 2A" 0.064 1 FALSE +"CLSI 2019" "MIC" "Salmonella" "Ciprofloxacin" "Table 2A" 0.064 1 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Ciprofloxacin" "Table 2C" "5ug" 21 15 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Ciprofloxacin" "Table 2C" 1 4 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Ciprofloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Ciprofloxacin" "Table 2G" "5ug" FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Ciprofloxacin" "Table 2G" FALSE +"CLSI 2019" "DISK" "Vibrio" "Ciprofloxacin" "M45 Table 20" "5ug" 21 15 FALSE +"CLSI 2019" "MIC" "Vibrio" "Ciprofloxacin" "M45 Table 20" 1 4 FALSE +"CLSI 2019" "MIC" "Yersinia pestis" "Ciprofloxacin" "M45 Table 21" 0.25 FALSE +"CLSI 2019" "MIC" "Abiotrophia" "Clindamycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2019" "MIC" "Anaerosalibacter" "Clindamycin" "Table 2J" 2 8 FALSE +"CLSI 2019" "MIC" "Bacillus" "Clindamycin" "M45 Table 4" 0.5 4 FALSE +"CLSI 2019" "MIC" "Gemella" "Clindamycin" "M45 Table 8" 0.25 1 FALSE +"CLSI 2019" "MIC" "Granulicatella" "Clindamycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2019" "MIC" "Lactobacillus" "Clindamycin" "M45 Table 11" 0.5 2 FALSE +"CLSI 2019" "MIC" "Lactococcus" "Clindamycin" "M45 Table 12" 0.5 4 FALSE +"CLSI 2019" "MIC" "Micrococcus" "Clindamycin" "M45 Table 15" 0.5 4 FALSE +"CLSI 2019" "MIC" "Moraxella catarrhalis" "Clindamycin" "M45 Table 16" 0.5 4 FALSE +"CLSI 2019" "MIC" "Rothia" "Clindamycin" "M45 Table 19" 0.5 4 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Clindamycin" "Table 2C" "2ug" 21 14 FALSE +"CLSI 2019" "DISK" "Skin, soft tissue" "Staphylococcus" "Clindamycin" "VET08 Table 2C" "2ug" 21 14 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Clindamycin" "Table 2C" 0.5 4 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue" "Staphylococcus" "Clindamycin" "VET08 Table 2C" 0.5 4 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Clindamycin" "Table 2H-1" "2ug" 19 15 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Clindamycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Clindamycin" "Table 2H-1" 0.25 1 FALSE +"CLSI 2019" "DISK" "Skin, soft tissue" "Beta-haemolytic Streptococcus" "Clindamycin" "VET08 Table 2D" "2ug" 21 14 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue" "Beta-haemolytic Streptococcus" "Clindamycin" "VET08 Table 2D" 0.5 4 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Clindamycin" "Table 2G" "2ug" 19 15 FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Clindamycin" "Table 2G" 0.25 1 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" "Clindamycin" "Table 2H-2" "2ug" 19 15 FALSE +"CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Clindamycin" "Table 2H-2" 0.25 1 FALSE +"CLSI 2019" "MIC" "Aggregatibacter" "Clarithromycin" "M45 Table 9" 8 32 FALSE +"CLSI 2019" "MIC" "Cardiobacterium" "Clarithromycin" "M45 Table 9" 8 32 FALSE +"CLSI 2019" "MIC" "Eikenella corrodens" "Clarithromycin" "M45 Table 9" 8 32 FALSE +"CLSI 2019" "MIC" "Helicobacter pylori" "Clarithromycin" "M45 Table 10" 0.25 1 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Clarithromycin" "Table 2E" "15ug" 13 10 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Clarithromycin" "Table 2E" 8 32 FALSE +"CLSI 2019" "MIC" "Kingella" "Clarithromycin" "M45 Table 9" 8 32 FALSE +"CLSI 2019" "DISK" "Moraxella catarrhalis" "Clarithromycin" "M45 Table 16" "15ug" 24 FALSE +"CLSI 2019" "MIC" "Moraxella catarrhalis" "Clarithromycin" "M45 Table 16" 1 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Clarithromycin" "Table 2C" "15ug" 18 13 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Clarithromycin" "Table 2C" 2 8 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Clarithromycin" "Table 2H-1" "15ug" 21 16 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Clarithromycin" "Table 2H-1" 0.25 1 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Clarithromycin" "Table 2G" "15ug" 21 16 FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Clarithromycin" "Table 2G" 0.25 1 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" "Clarithromycin" "Table 2H-2" "15ug" 21 16 FALSE +"CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Clarithromycin" "Table 2H-2" 0.25 1 FALSE +"CLSI 2019" "MIC" "Anaerosalibacter" "Cefmetazole" "Table 2J" 16 64 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Cefmetazole" "Table 2C" "30ug" 16 12 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Cefmetazole" "Table 2C" 16 64 FALSE +"CLSI 2019" "DISK" "Acinetobacter" "Colistin" "Table 2B-2" "10ug" FALSE +"CLSI 2019" "MIC" "Acinetobacter" "Colistin" "Table 2B-2" 2 4 FALSE +"CLSI 2019" "MIC" "Pseudomonas aeruginosa" "Colistin" "Table 2B-1" 2 4 FALSE +"CLSI 2019" "DISK" "Wounds, abscesses" "Actinomyces canis" "Cefpodoxime" "VET08 Table 2D" "10ug" 21 17 FALSE +"CLSI 2019" "MIC" "Wounds, abscesses" "Actinomyces canis" "Cefpodoxime" "VET08 Table 2D" 2 8 FALSE +"CLSI 2019" "DISK" "Wounds, abscesses, UTI" "Escherichia coli" "Cefpodoxime" "VET08 Table 2A" "10ug" 21 17 TRUE +"CLSI 2019" "MIC" "UTI" "Escherichia coli" "Cefpodoxime" "VET08 Table 2A" 2 8 TRUE +"CLSI 2019" "DISK" "Haemophilus" "Cefpodoxime" "Table 2E" "10ug" 21 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Cefpodoxime" "Table 2E" 2 FALSE +"CLSI 2019" "DISK" "Neisseria gonorrhoeae" "Cefpodoxime" "Table 2F" "10ug" 29 FALSE +"CLSI 2019" "MIC" "Neisseria gonorrhoeae" "Cefpodoxime" "Table 2F" 0.5 FALSE +"CLSI 2019" "DISK" "Wounds, abscesses, UTI" "Proteus mirabilis" "Cefpodoxime" "VET08 Table 2A" "10ug" 21 17 TRUE +"CLSI 2019" "MIC" "UTI" "Proteus mirabilis" "Cefpodoxime" "VET08 Table 2A" 2 8 TRUE +"CLSI 2019" "DISK" "Wounds, abscesses" "Pasteurella multocida" "Cefpodoxime" "VET08 Table 2H" "10ug" 21 17 FALSE +"CLSI 2019" "MIC" "Wounds, abscesses" "Pasteurella multocida" "Cefpodoxime" "VET08 Table 2H" 2 8 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Cefpodoxime" "Table 2C" "10ug" 21 17 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Cefpodoxime" "Table 2C" 2 8 FALSE +"CLSI 2019" "DISK" "Wounds, abscesses" "Staphylococcus aureus" "Cefpodoxime" "VET08 Table 2C" "10ug" 21 17 FALSE +"CLSI 2019" "MIC" "Wounds, abscesses" "Staphylococcus aureus" "Cefpodoxime" "VET08 Table 2C" 2 8 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Cefpodoxime" "Table 2G" "10ug" FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Cefpodoxime" "Table 2G" 0.5 2 FALSE +"CLSI 2019" "DISK" "Wounds, abscesses" "Pseudallescheria" "Cefpodoxime" "VET08 Table 2C" "10ug" 21 17 FALSE +"CLSI 2019" "MIC" "Wounds, abscesses" "Pseudallescheria" "Cefpodoxime" "VET08 Table 2C" 2 8 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Cefprozil" "Table 2E" "30ug" 18 14 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Cefprozil" "Table 2E" 8 32 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Cefprozil" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Cefprozil" "Table 2C" 8 32 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Cefprozil" "Table 2G" "30ug" FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Cefprozil" "Table 2G" 2 8 FALSE +"CLSI 2019" "DISK" "Haemophilus influenzae" "Ceftaroline" "Table 2E" "30ug" 30 FALSE +"CLSI 2019" "MIC" "Haemophilus influenzae" "Ceftaroline" "Table 2E" 0.5 FALSE +"CLSI 2019" "DISK" "Staphylococcus aureus" "Ceftaroline" "Table 2C" "30ug" 25 19 FALSE +"CLSI 2019" "MIC" "Staphylococcus aureus" "Ceftaroline" "Table 2C" 1 8 FALSE +"CLSI 2019" "DISK" "Coagulase-positive Staphylococcus (CoPS)" "Ceftaroline" "Table 2C" "30ug" 25 19 FALSE +"CLSI 2019" "MIC" "Coagulase-positive Staphylococcus (CoPS)" "Ceftaroline" "Table 2C" 1 8 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Ceftaroline" "Table 2H-1" "30ug" 26 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Ceftaroline" "Table 2H-1" 0.5 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Ceftaroline" "Table 2G" "30ug" FALSE +"CLSI 2019" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Ceftaroline" "Table 2G" 0.5 FALSE +"CLSI 2019" "MIC" "Abiotrophia" "Ceftriaxone" "M45 Table 1" 1 4 FALSE +"CLSI 2019" "DISK" "Acinetobacter" "Ceftriaxone" "Table 2B-2" "30ug" 21 13 FALSE +"CLSI 2019" "MIC" "Acinetobacter" "Ceftriaxone" "Table 2B-2" 8 64 FALSE +"CLSI 2019" "MIC" "Aerococcus" "Ceftriaxone" "M45 Table 2" 1 4 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Ceftriaxone" "M45 Table 3" 23 19 FALSE +"CLSI 2019" "MIC" "Aeromonas" "Ceftriaxone" "M45 Table 3" 1 4 FALSE +"CLSI 2019" "MIC" "Aggregatibacter" "Ceftriaxone" "M45 Table 9" 2 FALSE +"CLSI 2019" "MIC" "Anaerosalibacter" "Ceftriaxone" "Table 2J" 16 64 FALSE +"CLSI 2019" "MIC" "Cardiobacterium" "Ceftriaxone" "M45 Table 9" 2 FALSE +"CLSI 2019" "MIC" "Eikenella corrodens" "Ceftriaxone" "M45 Table 9" 2 FALSE +"CLSI 2019" "MIC" "Gemella" "Ceftriaxone" "M45 Table 8" 1 4 FALSE +"CLSI 2019" "MIC" "Granulicatella" "Ceftriaxone" "M45 Table 1" 1 4 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Ceftriaxone" "Table 2E" "30ug" 26 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Ceftriaxone" "Table 2E" 2 FALSE +"CLSI 2019" "MIC" "Kingella" "Ceftriaxone" "M45 Table 9" 2 FALSE +"CLSI 2019" "MIC" "Lactococcus" "Ceftriaxone" "M45 Table 12" 1 4 FALSE +"CLSI 2019" "MIC" "Moraxella catarrhalis" "Ceftriaxone" "M45 Table 16" 2 FALSE +"CLSI 2019" "DISK" "Neisseria gonorrhoeae" "Ceftriaxone" "Table 2F" "30ug" 35 FALSE +"CLSI 2019" "MIC" "Neisseria gonorrhoeae" "Ceftriaxone" "Table 2F" 0.25 FALSE +"CLSI 2019" "DISK" "Neisseria meningitidis" "Ceftriaxone" "Table 2I" "30ug" 34 FALSE +"CLSI 2019" "MIC" "Neisseria meningitidis" "Ceftriaxone" "Table 2I" 0.125 FALSE +"CLSI 2019" "DISK" "Pasteurella" "Ceftriaxone" "M45 Table 17" "30ug" 34 FALSE +"CLSI 2019" "MIC" "Pasteurella" "Ceftriaxone" "M45 Table 17" 0.125 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Ceftriaxone" "Table 2C" "30ug" 21 13 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Ceftriaxone" "Table 2C" 8 64 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Ceftriaxone" "Table 2H-1" "30ug" 24 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Ceftriaxone" "M45 Table 1" 1 4 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Ceftriaxone" "Table 2H-1" 0.5 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Ceftriaxone" "Table 2G" "30ug" FALSE +"CLSI 2019" "MIC" "Meningitis" "Streptococcus pneumoniae" "Ceftriaxone" "Table 2G" 0.5 2 FALSE +"CLSI 2019" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Ceftriaxone" "Table 2G" 1 4 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" "Table 2H-2" "30ug" 27 24 FALSE +"CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" "Table 2H-2" 1 4 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Ceftibuten" "Table 2E" "30ug" 28 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Ceftibuten" "Table 2E" 2 FALSE +"CLSI 2019" "MIC" "Anaerosalibacter" "Cefotetan" "Table 2J" 16 64 FALSE +"CLSI 2019" "DISK" "Neisseria gonorrhoeae" "Cefotetan" "Table 2F" "30ug" 26 19 FALSE +"CLSI 2019" "MIC" "Neisseria gonorrhoeae" "Cefotetan" "Table 2F" 2 8 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Cefotetan" "Table 2C" "30ug" 16 12 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Cefotetan" "Table 2C" 16 64 FALSE +"CLSI 2019" "MIC" "Abiotrophia" "Cefotaxime" "M45 Table 1" 1 4 FALSE +"CLSI 2019" "DISK" "Acinetobacter" "Cefotaxime" "Table 2B-2" "30ug" 23 14 FALSE +"CLSI 2019" "MIC" "Acinetobacter" "Cefotaxime" "Table 2B-2" 8 64 FALSE +"CLSI 2019" "MIC" "Aerococcus" "Cefotaxime" "M45 Table 2" 1 4 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Cefotaxime" "M45 Table 3" 26 22 FALSE +"CLSI 2019" "MIC" "Aeromonas" "Cefotaxime" "M45 Table 3" 1 4 FALSE +"CLSI 2019" "MIC" "Aggregatibacter" "Cefotaxime" "M45 Table 9" 2 FALSE +"CLSI 2019" "MIC" "Anaerosalibacter" "Cefotaxime" "Table 2J" 16 64 FALSE +"CLSI 2019" "MIC" "Cardiobacterium" "Cefotaxime" "M45 Table 9" 2 FALSE +"CLSI 2019" "MIC" "Eikenella corrodens" "Cefotaxime" "M45 Table 9" 2 FALSE +"CLSI 2019" "MIC" "Gemella" "Cefotaxime" "M45 Table 8" 1 4 FALSE +"CLSI 2019" "MIC" "Granulicatella" "Cefotaxime" "M45 Table 1" 1 4 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Cefotaxime" "Table 2E" "30ug" 26 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Cefotaxime" "Table 2E" 2 FALSE +"CLSI 2019" "MIC" "Kingella" "Cefotaxime" "M45 Table 9" 2 FALSE +"CLSI 2019" "MIC" "Moraxella catarrhalis" "Cefotaxime" "M45 Table 16" 2 FALSE +"CLSI 2019" "DISK" "Neisseria gonorrhoeae" "Cefotaxime" "Table 2F" "30ug" 31 FALSE +"CLSI 2019" "MIC" "Neisseria gonorrhoeae" "Cefotaxime" "Table 2F" 0.5 FALSE +"CLSI 2019" "DISK" "Neisseria meningitidis" "Cefotaxime" "Table 2I" "30ug" 34 FALSE +"CLSI 2019" "MIC" "Neisseria meningitidis" "Cefotaxime" "Table 2I" 0.125 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Cefotaxime" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Cefotaxime" "Table 2C" 8 64 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Cefotaxime" "Table 2H-1" "30ug" 24 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Cefotaxime" "M45 Table 1" 1 4 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Cefotaxime" "Table 2H-1" 0.5 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Cefotaxime" "Table 2G" "30ug" FALSE +"CLSI 2019" "MIC" "Meningitis" "Streptococcus pneumoniae" "Cefotaxime" "Table 2G" 0.5 2 FALSE +"CLSI 2019" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Cefotaxime" "Table 2G" 1 4 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" "Cefotaxime" "Table 2H-2" "30ug" 28 25 FALSE +"CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Cefotaxime" "Table 2H-2" 1 4 FALSE +"CLSI 2019" "DISK" "Vibrio" "Cefotaxime" "M45 Table 20" "30ug" 26 22 FALSE +"CLSI 2019" "MIC" "Vibrio" "Cefotaxime" "M45 Table 20" 1 4 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Cefuroxime axetil" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Cefuroxime axetil" "Table 2E" 4 16 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Cefuroxime axetil" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Cefuroxime axetil" "Table 2C" 4 32 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Cefuroxime axetil" "Table 2G" "30ug" FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Cefuroxime axetil" "Table 2G" 1 4 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Cefuroxime" "M45 Table 3" 18 14 FALSE +"CLSI 2019" "MIC" "Aeromonas" "Cefuroxime" "M45 Table 3" 8 32 FALSE +"CLSI 2019" "DISK" "Oral" "Haemophilus" "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2019" "MIC" "Oral" "Haemophilus" "Cefuroxime" "Table 2E" 4 16 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Cefuroxime" "Table 2E" 4 16 FALSE +"CLSI 2019" "MIC" "Oral" "Moraxella catarrhalis" "Cefuroxime" "M45 Table 16" 4 16 FALSE +"CLSI 2019" "DISK" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2019" "DISK" "Parenteral" "Staphylococcus" "Cefuroxime" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2019" "DISK" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2019" "MIC" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" 4 32 FALSE +"CLSI 2019" "MIC" "Intravenous" "Staphylococcus" "Cefuroxime" "Table 2C" 8 32 FALSE +"CLSI 2019" "MIC" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" 4 32 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Cefuroxime" "Table 2H-1" "30ug" FALSE +"CLSI 2019" "MIC" "Streptococcus" "Cefuroxime" "Table 2H-1" FALSE +"CLSI 2019" "DISK" "Oral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" "30ug" FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" "30ug" FALSE +"CLSI 2019" "MIC" "Oral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" 1 4 FALSE +"CLSI 2019" "MIC" "Parenteral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" 0.5 2 FALSE +"CLSI 2019" "MIC" "Oral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" 1 4 FALSE +"CLSI 2019" "DISK" "Vibrio" "Cefuroxime" "M45 Table 20" "30ug" 18 14 FALSE +"CLSI 2019" "MIC" "Vibrio" "Cefuroxime" "M45 Table 20" 8 32 FALSE +"CLSI 2019" "MIC" "Pseudomonas aeruginosa" "Ceftazidime/avibactam" "Table 2B-1" 8 16 FALSE +"CLSI 2019" "DISK" "Urine" "Enterobacteriaceae" "Cefazolin" "Table 2A" 15 14 FALSE +"CLSI 2019" "MIC" "Urine" "Enterobacteriaceae" "Cefazolin" "Table 2A" 16 32 FALSE +"CLSI 2019" "MIC" "Respiratory, genital" "Escherichia coli" "Cefazolin" "VET08 Table 2A" 2 8 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue" "Escherichia coli" "Cefazolin" "VET08 Table 2A" 2 8 FALSE +"CLSI 2019" "MIC" "UTI" "Escherichia coli" "Cefazolin" "VET08 Table 2A" 16 32 TRUE +"CLSI 2019" "MIC" "UTI" "Klebsiella pneumoniae" "Cefazolin" "VET08 Table 2A" 16 32 TRUE +"CLSI 2019" "MIC" "UTI" "Proteus mirabilis" "Cefazolin" "VET08 Table 2A" 16 32 TRUE +"CLSI 2019" "MIC" "Skin, soft tissue, respiratory, urinary/genital" "Pasteurella multocida" "Cefazolin" "VET08 Table 2H" 2 8 TRUE +"CLSI 2019" "DISK" "Staphylococcus" "Cefazolin" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Cefazolin" "Table 2C" 8 32 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue, UTI, respiratory" "Staphylococcus aureus" "Cefazolin" "VET08 Table 2C" 2 8 TRUE +"CLSI 2019" "MIC" "Skin, soft tissue, respiratory, urinary/genital" "Beta-haemolytic Streptococcus" "Cefazolin" "VET08 Table 2D" 2 8 TRUE +"CLSI 2019" "MIC" "Respiratory, genital" "Beta-haemolytic Streptococcus" "Cefazolin" "VET08 Table 2D" 2 8 FALSE +"CLSI 2019" "MIC" "Vibrio" "Cefazolin" "M45 Table 20" 2 8 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue, UTI, respiratory" "Pseudallescheria" "Cefazolin" "VET08 Table 2C" 2 8 TRUE +"CLSI 2019" "MIC" "Pseudomonas aeruginosa" "Ceftolozane/tazobactam" "Table 2B-1" 4 16 FALSE +"CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Ceftolozane/tazobactam" "Table 2H-2" 8 32 FALSE +"CLSI 2019" "MIC" "Anaerosalibacter" "Ceftizoxime" "Table 2J" 32 128 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Ceftizoxime" "Table 2E" "30ug" 26 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Ceftizoxime" "Table 2E" 2 FALSE +"CLSI 2019" "DISK" "Neisseria gonorrhoeae" "Ceftizoxime" "Table 2F" "30ug" 38 FALSE +"CLSI 2019" "MIC" "Neisseria gonorrhoeae" "Ceftizoxime" "Table 2F" 0.5 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Ceftizoxime" "Table 2C" "30ug" 20 14 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Ceftizoxime" "Table 2C" 8 64 FALSE +"CLSI 2019" "MIC" "Enterococcus faecalis" "Dalbavancin" "Table 2D" 0.25 FALSE +"CLSI 2019" "MIC" "Staphylococcus aureus" "Dalbavancin" "Table 2C" 0.25 FALSE +"CLSI 2019" "MIC" "Coagulase-positive Staphylococcus (CoPS)" "Dalbavancin" "Table 2C" 0.25 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Dalbavancin" "Table 2H-1" 0.25 FALSE +"CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Dalbavancin" "Table 2H-2" 0.25 FALSE +"CLSI 2019" "DISK" "Respiratory" "Mannheimia haemolytica" "Danofloxacin" "VET08 Table 2G" "5ug" 22 17 FALSE +"CLSI 2019" "MIC" "Respiratory" "Mannheimia haemolytica" "Danofloxacin" "VET08 Table 2G" 0.25 1 FALSE +"CLSI 2019" "DISK" "Respiratory" "Pasteurella multocida" "Danofloxacin" "VET08 Table 2H" "5ug" 22 17 FALSE +"CLSI 2019" "MIC" "Respiratory" "Pasteurella multocida" "Danofloxacin" "VET08 Table 2H" 0.25 1 FALSE +"CLSI 2019" "MIC" "Enterococcus" "Daptomycin" "Table 2D" 2 8 FALSE +"CLSI 2019" "MIC" "Enterococcus faecium" "Daptomycin" "Table 2D" 4 8 FALSE +"CLSI 2019" "MIC" "Lactobacillus" "Daptomycin" "M45 Table 11" 4 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Daptomycin" "Table 2C" "30ug" FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Daptomycin" "Table 2C" 1 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Daptomycin" "Table 2H-1" "30ug" 16 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Daptomycin" "Table 2H-1" FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Daptomycin" "Table 2G" "30ug" FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" "Daptomycin" "Table 2H-2" "30ug" FALSE +"CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Daptomycin" "Table 2H-2" 1 FALSE +"CLSI 2019" "DISK" "Skin, soft tissue, UTI" "Enterobacteriaceae" "Difloxacin" "VET08 Table 2A" "10ug" 21 17 TRUE +"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "Enterobacteriaceae" "Difloxacin" "VET08 Table 2A" 0.5 4 TRUE +"CLSI 2019" "DISK" "Skin, soft tissue, UTI" "Staphylococcus" "Difloxacin" "VET08 Table 2C" "10ug" 21 17 TRUE +"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "Staphylococcus" "Difloxacin" "VET08 Table 2C" 0.5 4 TRUE +"CLSI 2019" "DISK" "Skin, soft tissue, UTI" "Streptococcus" "Difloxacin" "VET08 Table 2D" "10ug" 21 17 TRUE +"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "Streptococcus" "Difloxacin" "VET08 Table 2D" 0.5 4 TRUE +"CLSI 2019" "DISK" "Staphylococcus" "Dirithromycin" "Table 2C" "15ug" 19 15 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Dirithromycin" "Table 2C" 2 8 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Dirithromycin" "Table 2H-1" "15ug" 18 13 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Dirithromycin" "Table 2H-1" 0.5 2 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Dirithromycin" "Table 2G" "15ug" 18 13 FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Dirithromycin" "Table 2G" 0.5 2 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" "Dirithromycin" "Table 2H-2" "15ug" 18 13 FALSE +"CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Dirithromycin" "Table 2H-2" 0.5 2 FALSE +"CLSI 2019" "DISK" "Acinetobacter" "Doripenem" "Table 2B-2" 18 14 FALSE +"CLSI 2019" "MIC" "Acinetobacter" "Doripenem" "Table 2B-2" 2 8 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Doripenem" "M45 Table 3" 23 19 FALSE +"CLSI 2019" "MIC" "Aeromonas" "Doripenem" "M45 Table 3" 1 4 FALSE +"CLSI 2019" "MIC" "Anaerosalibacter" "Doripenem" "Table 2J" 2 8 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Doripenem" "Table 2E" "10ug" 16 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Doripenem" "Table 2E" 1 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" "Doripenem" "Table 2B-1" "10ug" 19 15 FALSE +"CLSI 2019" "MIC" "Pseudomonas aeruginosa" "Doripenem" "Table 2B-1" 2 8 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Doripenem" "Table 2C" "10ug" 30 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Doripenem" "Table 2C" 0.5 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Doripenem" "Table 2H-1" "10ug" FALSE +"CLSI 2019" "MIC" "Streptococcus" "Doripenem" "Table 2H-1" 0.125 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Doripenem" "Table 2G" "10ug" FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Doripenem" "Table 2G" 1 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" "Doripenem" "Table 2H-2" "10ug" FALSE +"CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Doripenem" "Table 2H-2" 1 FALSE +"CLSI 2019" "DISK" "Acinetobacter" "Doxycycline" "Table 2B-2" "30ug" 13 9 FALSE +"CLSI 2019" "MIC" "Acinetobacter" "Doxycycline" "Table 2B-2" 4 16 FALSE +"CLSI 2019" "MIC" "Bacillus anthracis" "Doxycycline" "M45 Table 21" 1 FALSE +"CLSI 2019" "MIC" "Brucella" "Doxycycline" "M45 Table 21" 1 FALSE +"CLSI 2019" "MIC" "Burkholderia mallei" "Doxycycline" "M45 Table 21" 4 16 FALSE +"CLSI 2019" "MIC" "Burkholderia pseudomallei" "Doxycycline" "M45 Table 21" 4 16 FALSE +"CLSI 2019" "MIC" "Campylobacter" "Doxycycline" "M45 Table 5" 2 8 FALSE +"CLSI 2019" "DISK" "Enterococcus" "Doxycycline" "Table 2D" "30ug" 16 12 FALSE +"CLSI 2019" "MIC" "Enterococcus" "Doxycycline" "Table 2D" 4 16 FALSE +"CLSI 2019" "MIC" "Escherichia coli" "Doxycycline" "VET08 Table 2A" 0.125 0.5 FALSE +"CLSI 2019" "MIC" "Francisella tularensis" "Doxycycline" "M45 Table 21" 4 FALSE +"CLSI 2019" "DISK" "Pasteurella" "Doxycycline" "M45 Table 17" "30ug" 23 FALSE +"CLSI 2019" "MIC" "Pasteurella" "Doxycycline" "M45 Table 17" 0.5 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Doxycycline" "Table 2C" "30ug" 16 12 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Doxycycline" "Table 2C" 4 16 FALSE +"CLSI 2019" "MIC" "Staphylococcus aureus" "Doxycycline" "VET08 Table 2C" 0.125 0.5 FALSE +"CLSI 2019" "MIC" "Streptococcus equi" "Doxycycline" "VET08 Table 2D" 0.125 0.5 FALSE +"CLSI 2019" "MIC" "Streptococcus equi zooepidemicus" "Doxycycline" "VET08 Table 2D" 0.125 0.5 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Doxycycline" "Table 2G" "30ug" 28 24 FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Doxycycline" "Table 2G" 0.25 1 FALSE +"CLSI 2019" "DISK" "Vibrio" "Doxycycline" "M45 Table 20" "30ug" FALSE +"CLSI 2019" "MIC" "Yersinia pestis" "Doxycycline" "M45 Table 21" 4 16 FALSE +"CLSI 2019" "DISK" "Skin, soft tissue" "Pseudallescheria" "Doxycycline" "VET08 Table 2C" "30ug" 25 20 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue" "Pseudallescheria" "Doxycycline" "VET08 Table 2C" 0.125 0.5 FALSE +"CLSI 2019" "DISK" "Skin, soft tissue, respiratory, UTI" "Enterobacteriaceae" "Enrofloxacin" "VET08 Table 2A" "5ug" 23 16 TRUE +"CLSI 2019" "DISK" "Skin, soft tissue" "Enterobacteriaceae" "Enrofloxacin" "VET08 Table 2A" "5ug" 23 16 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue, respiratory, UTI" "Enterobacteriaceae" "Enrofloxacin" "VET08 Table 2A" 0.5 4 TRUE +"CLSI 2019" "MIC" "Skin, soft tissue" "Enterobacteriaceae" "Enrofloxacin" "VET08 Table 2A" 0.5 4 FALSE +"CLSI 2019" "DISK" "Respiratory" "Actinobacillus pleuropneumoniae" "Enrofloxacin" "VET08 Table 2I" "5ug" 23 18 FALSE +"CLSI 2019" "MIC" "Respiratory" "Actinobacillus pleuropneumoniae" "Enrofloxacin" "VET08 Table 2I" 0.25 1 FALSE +"CLSI 2019" "MIC" "Canine, feline" "Alloscardovia" "Enrofloxacin" "Vet Table" 0.5 4 FALSE +"CLSI 2019" "DISK" "Escherichia coli" "Enrofloxacin" "VET08 Table 2A" "5ug" 23 16 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue, respiratory" "Escherichia coli" "Enrofloxacin" "VET08 Table 2A" 0.125 0.5 FALSE +"CLSI 2019" "MIC" "Escherichia coli" "Enrofloxacin" "VET08 Table 2A" 0.25 2 FALSE +"CLSI 2019" "DISK" "Histophilus somni" "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2019" "DISK" "Respiratory" "Histophilus somni" "Enrofloxacin" "VET08 Table 2J" "5ug" 21 16 FALSE +"CLSI 2019" "MIC" "Histophilus somni" "Enrofloxacin" "Vet Table" 0.25 2 FALSE +"CLSI 2019" "MIC" "Respiratory" "Histophilus somni" "Enrofloxacin" "VET08 Table 2J" 0.25 2 FALSE +"CLSI 2019" "DISK" "Respiratory" "Mannheimia haemolytica" "Enrofloxacin" "VET08 Table 2G" "5ug" 21 16 FALSE +"CLSI 2019" "MIC" "Respiratory" "Mannheimia haemolytica" "Enrofloxacin" "VET08 Table 2G" 0.25 2 FALSE +"CLSI 2019" "DISK" "Providencia heimbachae" "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2019" "DISK" "Skin, soft tissue" "Pseudomonas aeruginosa" "Enrofloxacin" "VET08 Table 2B" "5ug" 23 16 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue" "Pseudomonas aeruginosa" "Enrofloxacin" "VET08 Table 2B" 0.5 4 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue, respiratory" "Pseudomonas aeruginosa" "Enrofloxacin" "VET08 Table 2B" 0.125 0.5 FALSE +"CLSI 2019" "DISK" "Pasteurella multocida" "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2019" "DISK" "Respiratory" "Pasteurella multocida" "Enrofloxacin" "VET08 Table 2H" "5ug" 23 18 FALSE +"CLSI 2019" "DISK" "Respiratory" "Pasteurella multocida" "Enrofloxacin" "VET08 Table 2H" "5ug" 21 16 FALSE +"CLSI 2019" "MIC" "Respiratory" "Pasteurella multocida" "Enrofloxacin" "VET08 Table 2H" 0.25 1 FALSE +"CLSI 2019" "MIC" "Respiratory" "Pasteurella multocida" "Enrofloxacin" "VET08 Table 2H" 0.25 2 FALSE +"CLSI 2019" "DISK" "Skin, soft tissue, UTI, respiratory" "Staphylococcus" "Enrofloxacin" "VET08 Table 2C" "5ug" 23 16 TRUE +"CLSI 2019" "DISK" "Skin, soft tissue" "Staphylococcus" "Enrofloxacin" "VET08 Table 2C" "5ug" 23 16 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue, UTI, respiratory" "Staphylococcus" "Enrofloxacin" "VET08 Table 2C" 0.5 4 TRUE +"CLSI 2019" "MIC" "Skin, soft tissue" "Staphylococcus" "Enrofloxacin" "VET08 Table 2C" 0.5 4 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue, respiratory" "Staphylococcus aureus" "Enrofloxacin" "VET08 Table 2C" 0.125 0.5 FALSE +"CLSI 2019" "DISK" "Skin, soft tissue, respiratory, UIT" "Streptococcus" "Enrofloxacin" "VET08 Table 2D" "5ug" 23 16 FALSE +"CLSI 2019" "DISK" "Skin, soft tissue" "Streptococcus" "Enrofloxacin" "VET08 Table 2D" "5ug" 23 16 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue, respiratory, UIT" "Streptococcus" "Enrofloxacin" "VET08 Table 2D" 0.5 4 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue" "Streptococcus" "Enrofloxacin" "VET08 Table 2D" 0.5 4 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue, respiratory" "Streptococcus equi" "Enrofloxacin" "VET08 Table 2D" 0.125 0.5 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue, respiratory" "Streptococcus equi zooepidemicus" "Enrofloxacin" "VET08 Table 2D" 0.125 0.5 FALSE +"CLSI 2019" "MIC" "Respiratory" "Streptococcus suis" "Enrofloxacin" "VET08 Table 2D" 0.5 2 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Enoxacin" "Table 2C" "10ug" 18 14 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Enoxacin" "Table 2C" 2 8 FALSE +"CLSI 2019" "MIC" "Abiotrophia" "Erythromycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2019" "MIC" "Bacillus" "Erythromycin" "M45 Table 4" 0.5 8 FALSE +"CLSI 2019" "DISK" "Campylobacter" "Erythromycin" "M45 Table 5" 16 12 FALSE +"CLSI 2019" "MIC" "Campylobacter" "Erythromycin" "M45 Table 5" 8 32 FALSE +"CLSI 2019" "DISK" "Enterococcus" "Erythromycin" "Table 2D" "15ug" 23 13 FALSE +"CLSI 2019" "MIC" "Enterococcus" "Erythromycin" "Table 2D" 0.5 8 FALSE +"CLSI 2019" "MIC" "Gemella" "Erythromycin" "M45 Table 8" 0.25 1 FALSE +"CLSI 2019" "MIC" "Granulicatella" "Erythromycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2019" "MIC" "Lactobacillus" "Erythromycin" "M45 Table 11" 0.5 8 FALSE +"CLSI 2019" "MIC" "Lactococcus" "Erythromycin" "M45 Table 12" 0.5 8 FALSE +"CLSI 2019" "MIC" "Micrococcus" "Erythromycin" "M45 Table 15" 0.5 8 FALSE +"CLSI 2019" "DISK" "Moraxella catarrhalis" "Erythromycin" "M45 Table 16" "15ug" 21 FALSE +"CLSI 2019" "MIC" "Moraxella catarrhalis" "Erythromycin" "M45 Table 16" 2 FALSE +"CLSI 2019" "DISK" "Pasteurella" "Erythromycin" "M45 Table 17" "15ug" 27 24 FALSE +"CLSI 2019" "MIC" "Pasteurella" "Erythromycin" "M45 Table 17" 0.5 2 FALSE +"CLSI 2019" "MIC" "Rothia" "Erythromycin" "M45 Table 19" 0.5 8 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Erythromycin" "Table 2C" "15ug" 23 13 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Erythromycin" "Table 2C" 0.5 8 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Erythromycin" "Table 2H-1" "15ug" 21 15 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Erythromycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Erythromycin" "Table 2H-1" 0.25 1 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Erythromycin" "Table 2G" "15ug" 21 15 FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Erythromycin" "Table 2G" 0.25 1 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" "Erythromycin" "Table 2H-2" "15ug" 21 15 FALSE +"CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Erythromycin" "Table 2H-2" 0.25 1 FALSE +"CLSI 2019" "DISK" "Acinetobacter" "Ertapenem" "Table 2B-2" "10ug" FALSE +"CLSI 2019" "MIC" "Acinetobacter" "Ertapenem" "Table 2B-2" FALSE +"CLSI 2019" "DISK" "Aeromonas" "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Ertapenem" "M45 Table 3" 22 18 FALSE +"CLSI 2019" "MIC" "Aeromonas" "Ertapenem" "M45 Table 3" 0.5 2 FALSE +"CLSI 2019" "MIC" "Anaerosalibacter" "Ertapenem" "Table 2J" 4 16 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Ertapenem" "Table 2E" "10ug" 19 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Ertapenem" "Table 2E" 0.5 FALSE +"CLSI 2019" "DISK" "Pseudomonas" "Ertapenem" "10ug" FALSE +"CLSI 2019" "MIC" "Pseudomonas" "Ertapenem" FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Ertapenem" "Table 2C" "10ug" 19 15 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Ertapenem" "Table 2C" 2 8 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Ertapenem" "Table 2H-1" "10ug" FALSE +"CLSI 2019" "MIC" "Streptococcus" "Ertapenem" "Table 2H-1" 1 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Ertapenem" "Table 2G" "10ug" FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Ertapenem" "Table 2G" 1 4 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" "Ertapenem" "Table 2H-2" "10ug" FALSE +"CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Ertapenem" "Table 2H-2" 1 FALSE +"CLSI 2019" "MIC" "Acinetobacter" "Cefiderocol" "Table 2B-2" 4 16 FALSE +"CLSI 2019" "MIC" "Pseudomonas aeruginosa" "Cefiderocol" "Table 2B-1" 4 16 FALSE +"CLSI 2019" "MIC" "Stenotrophomonas maltophilia" "Cefiderocol" "Table 2B-4" 4 16 FALSE +"CLSI 2019" "MIC" "Abiotrophia" "Cefepime" "M45 Table 1" 1 4 FALSE +"CLSI 2019" "DISK" "Acinetobacter" "Cefepime" "Table 2B-2" "30ug" 18 14 FALSE +"CLSI 2019" "MIC" "Acinetobacter" "Cefepime" "Table 2B-2" 8 32 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Cefepime" "M45 Table 3" 25 18 FALSE +"CLSI 2019" "MIC" "Aeromonas" "Cefepime" "M45 Table 3" 2 16 FALSE +"CLSI 2019" "MIC" "Granulicatella" "Cefepime" "M45 Table 1" 1 4 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Cefepime" "Table 2E" "30ug" 26 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Cefepime" "Table 2E" 2 FALSE +"CLSI 2019" "DISK" "Neisseria gonorrhoeae" "Cefepime" "Table 2F" "30ug" 31 FALSE +"CLSI 2019" "MIC" "Neisseria gonorrhoeae" "Cefepime" "Table 2F" 0.5 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" "Cefepime" "Table 2B-1" "30ug" 18 14 FALSE +"CLSI 2019" "MIC" "Pseudomonas aeruginosa" "Cefepime" "Table 2B-1" 8 32 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Cefepime" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Cefepime" "Table 2C" 8 32 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Cefepime" "Table 2H-1" "30ug" 24 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Cefepime" "M45 Table 1" 1 4 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Cefepime" "Table 2H-1" 0.5 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Cefepime" "Table 2G" "30ug" FALSE +"CLSI 2019" "MIC" "Meningitis" "Streptococcus pneumoniae" "Cefepime" "Table 2G" 0.5 2 FALSE +"CLSI 2019" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Cefepime" "Table 2G" 1 4 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" "Cefepime" "Table 2H-2" "30ug" 24 21 FALSE +"CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Cefepime" "Table 2H-2" 1 4 FALSE +"CLSI 2019" "DISK" "Vibrio" "Cefepime" "M45 Table 20" "30ug" 25 18 FALSE +"CLSI 2019" "MIC" "Vibrio" "Cefepime" "M45 Table 20" 2 16 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Fleroxacin" "Table 2E" "5ug" 19 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Fleroxacin" "Table 2E" 2 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Fleroxacin" "Table 2C" "5ug" 19 15 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Fleroxacin" "Table 2C" 2 8 FALSE +"CLSI 2019" "MIC" "Respiratory" "Schistosomatidae" "Florfenicol" "VET08 Table 2A" 4 16 FALSE +"CLSI 2019" "DISK" "Respiratory" "Actinobacillus pleuropneumoniae" "Florfenicol" "VET08 Table 2I" "30ug" 22 18 FALSE +"CLSI 2019" "MIC" "Respiratory" "Actinobacillus pleuropneumoniae" "Florfenicol" "VET08 Table 2I" 2 8 FALSE +"CLSI 2019" "DISK" "Respiratory" "Bordetella bronchiseptica" "Florfenicol" "VET08 Table 2F" "30ug" 22 18 FALSE +"CLSI 2019" "MIC" "Respiratory" "Bordetella bronchiseptica" "Florfenicol" "VET08 Table 2F" 2 8 FALSE +"CLSI 2019" "DISK" "Respiratory" "Histophilus somni" "Florfenicol" "VET08 Table 2J" "30ug" 19 14 FALSE +"CLSI 2019" "MIC" "Respiratory" "Histophilus somni" "Florfenicol" "VET08 Table 2J" 2 8 FALSE +"CLSI 2019" "DISK" "Respiratory" "Mannheimia haemolytica" "Florfenicol" "VET08 Table 2G" "30ug" 19 14 FALSE +"CLSI 2019" "MIC" "Respiratory" "Mannheimia haemolytica" "Florfenicol" "VET08 Table 2G" 2 8 FALSE +"CLSI 2019" "DISK" "Respiratory" "Pasteurella multocida" "Florfenicol" "VET08 Table 2H" "30ug" 22 18 FALSE +"CLSI 2019" "DISK" "Respiratory" "Pasteurella multocida" "Florfenicol" "VET08 Table 2H" "30ug" 19 14 FALSE +"CLSI 2019" "MIC" "Respiratory" "Pasteurella multocida" "Florfenicol" "VET08 Table 2H" 2 8 FALSE +"CLSI 2019" "MIC" "Respiratory" "Pasteurella multocida" "Florfenicol" "VET08 Table 2H" 2 8 FALSE +"CLSI 2019" "MIC" "Respiratory" "Salmonella enterica" "Florfenicol" "VET08 Table 2A" 4 16 FALSE +"CLSI 2019" "DISK" "Respiratory" "Streptococcus suis" "Florfenicol" "VET08 Table 2D" "30ug" 22 18 FALSE +"CLSI 2019" "MIC" "Respiratory" "Streptococcus suis" "Florfenicol" "VET08 Table 2D" 2 8 FALSE +"CLSI 2019" "DISK" "Candida albicans" "Fluconazole" "Table 1" 17 13 FALSE +"CLSI 2019" "MIC" "Candida albicans" "Fluconazole" "Table 1" 2 8 FALSE +"CLSI 2019" "DISK" "Candida glabrata" "Fluconazole" "Table 1" 50 14 FALSE +"CLSI 2019" "MIC" "Candida glabrata" "Fluconazole" "Table 1" 0.001 64 FALSE +"CLSI 2019" "DISK" "Candida parapsilosis" "Fluconazole" "Table 1" 17 13 FALSE +"CLSI 2019" "MIC" "Candida parapsilosis" "Fluconazole" "Table 1" 2 8 FALSE +"CLSI 2019" "DISK" "Candida tropicalis" "Fluconazole" "Table 1" 17 13 FALSE +"CLSI 2019" "MIC" "Candida tropicalis" "Fluconazole" "Table 1" 2 8 FALSE +"CLSI 2019" "DISK" "Enterococcus" "Fosfomycin" "Table 2D" "200ug" 16 12 FALSE +"CLSI 2019" "MIC" "Enterococcus" "Fosfomycin" "Table 2D" 64 256 FALSE +"CLSI 2019" "MIC" "Escherichia coli" "Fosfomycin" "Table 2A" 64 256 FALSE +"CLSI 2019" "MIC" "Escherichia coli" "Fosfomycin" "Table 2A" 64 256 FALSE +"CLSI 2019" "DISK" "UTI" "Escherichia coli" "Cefovecin" "VET08 Table 2A" "30ug" 24 20 TRUE +"CLSI 2019" "DISK" "UTI" "Escherichia coli" "Cefovecin" "VET08 Table 2A" "30ug" 24 20 TRUE +"CLSI 2019" "MIC" "UTI" "Escherichia coli" "Cefovecin" "VET08 Table 2A" 2 8 TRUE +"CLSI 2019" "MIC" "UTI" "Escherichia coli" "Cefovecin" "VET08 Table 2A" 2 8 TRUE +"CLSI 2019" "DISK" "UTI" "Proteus mirabilis" "Cefovecin" "VET08 Table 2A" "30ug" 24 20 TRUE +"CLSI 2019" "MIC" "UTI" "Proteus mirabilis" "Cefovecin" "VET08 Table 2A" 2 8 TRUE +"CLSI 2019" "DISK" "Skin, soft tissue" "Pasteurella multocida" "Cefovecin" "VET08 Table 2H" "30ug" 24 20 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue" "Pasteurella multocida" "Cefovecin" "VET08 Table 2H" 0.125 0.5 FALSE +"CLSI 2019" "DISK" "Skin, soft tissue" "Beta-haemolytic Streptococcus" "Cefovecin" "VET08 Table 2D" "30ug" 24 20 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue" "Beta-haemolytic Streptococcus" "Cefovecin" "VET08 Table 2D" 0.125 0.5 FALSE +"CLSI 2019" "DISK" "Skin, soft tissue" "Pseudallescheria" "Cefovecin" "VET08 Table 2C" "30ug" 24 20 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue" "Pseudallescheria" "Cefovecin" "VET08 Table 2C" 0.5 2 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Cefoxitin" "M45 Table 3" 18 14 FALSE +"CLSI 2019" "MIC" "Aeromonas" "Cefoxitin" "M45 Table 3" 8 32 FALSE +"CLSI 2019" "MIC" "Anaerosalibacter" "Cefoxitin" "Table 2J" 16 64 FALSE +"CLSI 2019" "DISK" "Neisseria gonorrhoeae" "Cefoxitin" "Table 2F" "30ug" 28 23 FALSE +"CLSI 2019" "MIC" "Neisseria gonorrhoeae" "Cefoxitin" "Table 2F" 2 8 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Cefoxitin" "Table 2C" "30ug" 25 24 FALSE +"CLSI 2019" "DISK" "Staphylococcus aureus" "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE +"CLSI 2019" "MIC" "Staphylococcus aureus" "Cefoxitin" "Table 2C" 4 8 FALSE +"CLSI 2019" "DISK" "Coagulase-positive Staphylococcus (CoPS)" "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE +"CLSI 2019" "MIC" "Coagulase-positive Staphylococcus (CoPS)" "Cefoxitin" "Table 2C" 4 8 FALSE +"CLSI 2019" "DISK" "Staphylococcus epidermidis" "Cefoxitin" "Table 2C" "30ug" 25 24 FALSE +"CLSI 2019" "DISK" "Staphylococcus lugdunensis" "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE +"CLSI 2019" "MIC" "Staphylococcus lugdunensis" "Cefoxitin" "Table 2C" 4 8 FALSE +"CLSI 2019" "DISK" "Vibrio" "Cefoxitin" "M45 Table 20" "30ug" 18 14 FALSE +"CLSI 2019" "MIC" "Vibrio" "Cefoxitin" "M45 Table 20" 8 32 FALSE +"CLSI 2019" "DISK" "Respiratory" "Histophilus somni" "Gamithromycin" "VET08 Table 2J" "15ug" 15 11 FALSE +"CLSI 2019" "MIC" "Respiratory" "Histophilus somni" "Gamithromycin" "VET08 Table 2J" 4 16 FALSE +"CLSI 2019" "DISK" "Respiratory" "Mannheimia haemolytica" "Gamithromycin" "VET08 Table 2G" "15ug" 15 11 FALSE +"CLSI 2019" "MIC" "Respiratory" "Mannheimia haemolytica" "Gamithromycin" "VET08 Table 2G" 4 16 FALSE +"CLSI 2019" "DISK" "Respiratory" "Pasteurella multocida" "Gamithromycin" "VET08 Table 2H" "15ug" 15 11 FALSE +"CLSI 2019" "MIC" "Respiratory" "Pasteurella multocida" "Gamithromycin" "VET08 Table 2H" 4 16 FALSE +"CLSI 2019" "DISK" "Acinetobacter" "Gatifloxacin" "Table 2B-2" "5ug" 18 14 FALSE +"CLSI 2019" "MIC" "Acinetobacter" "Gatifloxacin" "Table 2B-2" 2 8 FALSE +"CLSI 2019" "DISK" "Enterococcus" "Gatifloxacin" "Table 2D" "5ug" 18 14 FALSE +"CLSI 2019" "MIC" "Enterococcus" "Gatifloxacin" "Table 2D" 2 8 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Gatifloxacin" "Table 2E" "5ug" 18 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Gatifloxacin" "Table 2E" 1 FALSE +"CLSI 2019" "DISK" "Neisseria gonorrhoeae" "Gatifloxacin" "Table 2F" "5ug" 38 33 FALSE +"CLSI 2019" "MIC" "Neisseria gonorrhoeae" "Gatifloxacin" "Table 2F" 0.125 0.5 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" "Gatifloxacin" "Table 2B-1" "5ug" 18 14 FALSE +"CLSI 2019" "MIC" "Pseudomonas aeruginosa" "Gatifloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Gatifloxacin" "Table 2C" "10ug" 23 19 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Gatifloxacin" "Table 2C" 0.5 2 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Gatifloxacin" "Table 2H-1" "5ug" 21 17 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Gatifloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Gatifloxacin" "Table 2H-1" 1 4 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Gatifloxacin" "Table 2G" "5ug" 21 17 FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Gatifloxacin" "Table 2G" 1 4 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" "Gatifloxacin" "Table 2H-2" "5ug" 21 17 FALSE +"CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Gatifloxacin" "Table 2H-2" 1 4 FALSE +"CLSI 2019" "DISK" "Enterococcus" "Gentamicin-high" "Table 2D" "120ug" 10 6 FALSE +"CLSI 2019" "MIC" "Enterococcus" "Gentamicin-high" "Table 2D" 512 512 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Gemifloxacin" "Table 2E" "5ug" 18 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Gemifloxacin" "Table 2E" 0.125 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Gemifloxacin" "Table 2H-1" "5ug" FALSE +"CLSI 2019" "MIC" "Streptococcus" "Gemifloxacin" "Table 2H-1" FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Gemifloxacin" "Table 2G" "5ug" 23 19 FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Gemifloxacin" "Table 2G" 0.125 0.5 FALSE +"CLSI 2019" "DISK" "Enterobacteriaceae" "Gentamicin" "VET08 Table 2A" "10ug" 16 12 FALSE +"CLSI 2019" "DISK" "Enterobacteriaceae" "Gentamicin" "VET08 Table 2A" "10ug" 16 12 FALSE +"CLSI 2019" "MIC" "Enterobacteriaceae" "Gentamicin" "VET08 Table 2A" 2 8 FALSE +"CLSI 2019" "MIC" "Enterobacteriaceae" "Gentamicin" "VET08 Table 2A" 2 8 FALSE +"CLSI 2019" "DISK" "Acinetobacter" "Gentamicin" "Table 2B-2" "10ug" 15 12 FALSE +"CLSI 2019" "MIC" "Acinetobacter" "Gentamicin" "Table 2B-2" 4 16 FALSE +"CLSI 2019" "DISK" "Actinobacillus pleuropneumoniae" "Gentamicin" "VET08 Table 2I" "10ug" 16 12 FALSE +"CLSI 2019" "MIC" "Actinobacillus pleuropneumoniae" "Gentamicin" "VET08 Table 2I" 2 8 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Gentamicin" "M45 Table 3" 15 12 FALSE +"CLSI 2019" "MIC" "Aeromonas" "Gentamicin" "M45 Table 3" 4 16 FALSE +"CLSI 2019" "MIC" "Bacillus" "Gentamicin" "M45 Table 4" 4 16 FALSE +"CLSI 2019" "MIC" "Brucella" "Gentamicin" "M45 Table 21" 4 FALSE +"CLSI 2019" "MIC" "Enterococcus" "Gentamicin" "Table 2D" 512 512 FALSE +"CLSI 2019" "MIC" "Francisella tularensis" "Gentamicin" "M45 Table 21" 4 FALSE +"CLSI 2019" "MIC" "Lactobacillus" "Gentamicin" "M45 Table 11" 4 16 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" "Gentamicin" "Table 2B-1" "10ug" 15 12 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" "Gentamicin" "VET08 Table 2B" "10ug" 16 12 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" "Gentamicin" "VET08 Table 2B" "10ug" 16 12 FALSE +"CLSI 2019" "MIC" "Pseudomonas aeruginosa" "Gentamicin" "Table 2B-1" 4 16 FALSE +"CLSI 2019" "MIC" "Pseudomonas aeruginosa" "Gentamicin" "VET08 Table 2B" 2 8 FALSE +"CLSI 2019" "MIC" "Pseudomonas aeruginosa" "Gentamicin" "VET08 Table 2B" 2 8 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Gentamicin" "Table 2C" "10ug" 15 12 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Gentamicin" "Table 2C" 4 16 FALSE +"CLSI 2019" "DISK" "Vibrio" "Gentamicin" "M45 Table 20" "10ug" 15 12 FALSE +"CLSI 2019" "MIC" "Vibrio" "Gentamicin" "M45 Table 20" 4 16 FALSE +"CLSI 2019" "MIC" "Yersinia pestis" "Gentamicin" "M45 Table 21" 4 16 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Grepafloxacin" "Table 2E" "5ug" 24 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Grepafloxacin" "Table 2E" 0.5 FALSE +"CLSI 2019" "DISK" "Neisseria gonorrhoeae" "Grepafloxacin" "Table 2F" "5ug" 37 27 FALSE +"CLSI 2019" "MIC" "Neisseria gonorrhoeae" "Grepafloxacin" "Table 2F" 0.064 1 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Grepafloxacin" "Table 2C" "5ug" 18 14 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Grepafloxacin" "Table 2C" 1 4 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Grepafloxacin" "Table 2H-1" "5ug" 19 15 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Grepafloxacin" "Table 2H-1" 0.5 2 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Grepafloxacin" "Table 2G" "5ug" 19 15 FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Grepafloxacin" "Table 2G" 0.5 2 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" "Grepafloxacin" "Table 2H-2" "5ug" 19 15 FALSE +"CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Grepafloxacin" "Table 2H-2" 0.5 2 FALSE +"CLSI 2019" "MIC" "Abiotrophia" "Imipenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2019" "DISK" "Acinetobacter" "Imipenem" "Table 2B-2" "10ug" 22 18 FALSE +"CLSI 2019" "MIC" "Acinetobacter" "Imipenem" "Table 2B-2" 2 8 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Imipenem" "M45 Table 3" 23 19 FALSE +"CLSI 2019" "MIC" "Aeromonas" "Imipenem" "M45 Table 3" 1 4 FALSE +"CLSI 2019" "MIC" "Aggregatibacter" "Imipenem" "M45 Table 9" 4 16 FALSE +"CLSI 2019" "MIC" "Anaerosalibacter" "Imipenem" "Table 2J" 4 16 FALSE +"CLSI 2019" "MIC" "Bacillus" "Imipenem" "M45 Table 4" 4 16 FALSE +"CLSI 2019" "MIC" "Burkholderia mallei" "Imipenem" "M45 Table 21" 4 16 FALSE +"CLSI 2019" "MIC" "Burkholderia pseudomallei" "Imipenem" "M45 Table 21" 4 16 FALSE +"CLSI 2019" "MIC" "Cardiobacterium" "Imipenem" "M45 Table 9" 0.5 2 FALSE +"CLSI 2019" "MIC" "Eikenella corrodens" "Imipenem" "M45 Table 9" 0.5 2 FALSE +"CLSI 2019" "MIC" "Granulicatella" "Imipenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Imipenem" "Table 2E" "10ug" 16 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Imipenem" "Table 2E" 4 FALSE +"CLSI 2019" "MIC" "Kingella" "Imipenem" "M45 Table 9" 0.5 2 FALSE +"CLSI 2019" "MIC" "Lactobacillus" "Imipenem" "M45 Table 11" 0.5 2 FALSE +"CLSI 2019" "MIC" "Pediococcus" "Imipenem" "M45 Table 18" 0.5 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" "Imipenem" "Table 2B-1" "10ug" 19 15 FALSE +"CLSI 2019" "MIC" "Pseudomonas aeruginosa" "Imipenem" "Table 2B-1" 2 8 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Imipenem" "Table 2C" "10ug" 16 13 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Imipenem" "Table 2C" 4 16 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Imipenem" "Table 2H-1" "10ug" FALSE +"CLSI 2019" "MIC" "Streptococcus" "Imipenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Imipenem" "Table 2H-1" FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Imipenem" "Table 2G" "10ug" FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Imipenem" "Table 2G" 0.125 1 FALSE +"CLSI 2019" "DISK" "Vibrio" "Imipenem" "M45 Table 20" "10ug" 23 19 FALSE +"CLSI 2019" "MIC" "Vibrio" "Imipenem" "M45 Table 20" 1 4 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue" "Escherichia coli" "Cephalexin" "VET08 Table 2A" 2 8 FALSE +"CLSI 2019" "MIC" "UTI" "Escherichia coli" "Cephalexin" "VET08 Table 2A" 16 32 TRUE +"CLSI 2019" "MIC" "UTI" "Klebsiella pneumoniae" "Cephalexin" "VET08 Table 2A" 16 32 TRUE +"CLSI 2019" "MIC" "UTI" "Proteus mirabilis" "Cephalexin" "VET08 Table 2A" 16 32 TRUE +"CLSI 2019" "MIC" "Skin, soft tissue" "Staphylococcus aureus" "Cephalexin" "VET08 Table 2C" 2 4 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue" "Beta-haemolytic Streptococcus" "Cephalexin" "VET08 Table 2D" 2 8 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue" "Pseudallescheria" "Cephalexin" "VET08 Table 2C" 2 4 FALSE +"CLSI 2019" "MIC" "Aerococcus" "Linezolid" "M45 Table 2" 2 FALSE +"CLSI 2019" "DISK" "Enterococcus" "Linezolid" "Table 2D" "30ug" 23 20 FALSE +"CLSI 2019" "MIC" "Enterococcus" "Linezolid" "Table 2D" 2 8 FALSE +"CLSI 2019" "MIC" "Lactobacillus" "Linezolid" "M45 Table 11" 4 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Linezolid" "Table 2C" "30ug" 21 20 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Linezolid" "Table 2C" 4 8 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Linezolid" "Table 2H-1" "30ug" 21 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Linezolid" "Table 2H-1" 2 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Linezolid" "Table 2G" "30ug" 21 FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Linezolid" "Table 2G" 2 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" "Linezolid" "Table 2H-2" "30ug" 21 FALSE +"CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Linezolid" "Table 2H-2" 2 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Lomefloxacin" "Table 2E" "10ug" 22 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Lomefloxacin" "Table 2E" 2 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" "Lomefloxacin" "Table 2B-1" "10ug" 22 18 FALSE +"CLSI 2019" "MIC" "Pseudomonas aeruginosa" "Lomefloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Lomefloxacin" "Table 2C" "10ug" 22 18 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Lomefloxacin" "Table 2C" 2 8 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Loracarbef" "Table 2E" "30ug" 19 15 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Loracarbef" "Table 2E" 8 32 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Loracarbef" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Loracarbef" "Table 2C" 8 32 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Loracarbef" "Table 2G" "30ug" FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Loracarbef" "Table 2G" 2 8 FALSE +"CLSI 2019" "MIC" "Anaerosalibacter" "Latamoxef" "Table 2J" 2 8 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Latamoxef" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Latamoxef" "Table 2C" 8 64 FALSE +"CLSI 2019" "MIC" "Abiotrophia" "Levofloxacin" "M45 Table 1" 2 8 FALSE +"CLSI 2019" "DISK" "Acinetobacter" "Levofloxacin" "Table 2B-2" "5ug" 17 13 FALSE +"CLSI 2019" "MIC" "Acinetobacter" "Levofloxacin" "Table 2B-2" 2 8 FALSE +"CLSI 2019" "MIC" "Aerococcus" "Levofloxacin" "M45 Table 2" 2 8 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Levofloxacin" "M45 Table 3" 17 13 FALSE +"CLSI 2019" "MIC" "Aeromonas" "Levofloxacin" "M45 Table 3" 2 4 FALSE +"CLSI 2019" "MIC" "Aggregatibacter" "Levofloxacin" "M45 Table 9" 2 8 FALSE +"CLSI 2019" "MIC" "Bacillus" "Levofloxacin" "M45 Table 4" 2 8 FALSE +"CLSI 2019" "MIC" "Bacillus anthracis" "Levofloxacin" "M45 Table 21" 0.25 FALSE +"CLSI 2019" "DISK" "Burkholderia cepacia" "Levofloxacin" "Table 2B-3" "5ug" FALSE +"CLSI 2019" "DISK" "Burkholderia cepacia" "Levofloxacin" "Table 2B-3" "5ug" FALSE +"CLSI 2019" "MIC" "Burkholderia cepacia" "Levofloxacin" "Table 2B-3" 2 8 FALSE +"CLSI 2019" "MIC" "Burkholderia cepacia" "Levofloxacin" "Table 2B-3" 2 8 FALSE +"CLSI 2019" "MIC" "Cardiobacterium" "Levofloxacin" "M45 Table 9" 2 8 FALSE +"CLSI 2019" "MIC" "Eikenella corrodens" "Levofloxacin" "M45 Table 9" 2 8 FALSE +"CLSI 2019" "DISK" "Enterococcus" "Levofloxacin" "Table 2D" "5ug" 17 13 FALSE +"CLSI 2019" "MIC" "Enterococcus" "Levofloxacin" "Table 2D" 2 8 FALSE +"CLSI 2019" "MIC" "Francisella tularensis" "Levofloxacin" "M45 Table 21" 0.5 FALSE +"CLSI 2019" "MIC" "Gemella" "Levofloxacin" "M45 Table 8" 2 8 FALSE +"CLSI 2019" "MIC" "Granulicatella" "Levofloxacin" "M45 Table 1" 2 8 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Levofloxacin" "Table 2E" "5ug" 17 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Levofloxacin" "Table 2E" 2 FALSE +"CLSI 2019" "MIC" "Kingella" "Levofloxacin" "M45 Table 9" 2 8 FALSE +"CLSI 2019" "MIC" "Lactococcus" "Levofloxacin" "M45 Table 12" 2 8 FALSE +"CLSI 2019" "MIC" "Moraxella catarrhalis" "Levofloxacin" "M45 Table 16" 2 FALSE +"CLSI 2019" "DISK" "Neisseria meningitidis" "Levofloxacin" "Table 2I" "5ug" FALSE +"CLSI 2019" "MIC" "Neisseria meningitidis" "Levofloxacin" "Table 2I" 0.032 0.12 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" "Levofloxacin" "Table 2B-1" "5ug" 22 14 FALSE +"CLSI 2019" "MIC" "Pseudomonas aeruginosa" "Levofloxacin" "Table 2B-1" 1 4 FALSE +"CLSI 2019" "DISK" "Pasteurella" "Levofloxacin" "M45 Table 17" "5ug" 28 FALSE +"CLSI 2019" "MIC" "Pasteurella" "Levofloxacin" "M45 Table 17" 0.064 FALSE +"CLSI 2019" "MIC" "Rothia" "Levofloxacin" "M45 Table 19" 1 4 FALSE +"CLSI 2019" "MIC" "Salmonella" "Levofloxacin" "Table 2A" 0.125 2 FALSE +"CLSI 2019" "MIC" "Extraintestinal" "Salmonella" "Levofloxacin" "Table 2A" 0.125 2 FALSE +"CLSI 2019" "DISK" "Stenotrophomonas maltophilia" "Levofloxacin" "Table 2B-4" "75ug" 17 13 FALSE +"CLSI 2019" "MIC" "Stenotrophomonas maltophilia" "Levofloxacin" "Table 2B-4" 2 8 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Levofloxacin" "Table 2C" "10ug" 19 15 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Levofloxacin" "Table 2C" 1 4 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Levofloxacin" "Table 2H-1" "5ug" 17 13 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Levofloxacin" "M45 Table 1" 2 8 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Levofloxacin" "Table 2H-1" 2 8 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Levofloxacin" "Table 2G" "5ug" 17 13 FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Levofloxacin" "Table 2G" 2 8 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" "Levofloxacin" "Table 2H-2" "5ug" 17 13 FALSE +"CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Levofloxacin" "Table 2H-2" 2 8 FALSE +"CLSI 2019" "DISK" "Vibrio" "Levofloxacin" "M45 Table 20" "5ug" 17 13 FALSE +"CLSI 2019" "MIC" "Vibrio" "Levofloxacin" "M45 Table 20" 2 8 FALSE +"CLSI 2019" "MIC" "Yersinia pestis" "Levofloxacin" "M45 Table 21" 0.25 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Cefamandole" "Table 2E" "30ug" FALSE +"CLSI 2019" "MIC" "Haemophilus" "Cefamandole" "Table 2E" 4 16 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Cefamandole" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Cefamandole" "Table 2C" 8 32 FALSE +"CLSI 2019" "DISK" "Skin, soft tissue, UTI" "Enterobacteriaceae" "Marbofloxacin" "VET08 Table 2A" "5ug" 20 14 TRUE +"CLSI 2019" "DISK" "Skin, soft tissue" "Enterobacteriaceae" "Marbofloxacin" "VET08 Table 2A" "5ug" 20 14 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "Enterobacteriaceae" "Marbofloxacin" "VET08 Table 2A" 1 4 TRUE +"CLSI 2019" "MIC" "Skin, soft tissue" "Enterobacteriaceae" "Marbofloxacin" "VET08 Table 2A" 1 4 FALSE +"CLSI 2019" "DISK" "Skin, soft tissue, UTI" "Staphylococcus" "Marbofloxacin" "VET08 Table 2C" "5ug" 20 14 TRUE +"CLSI 2019" "DISK" "Skin, soft tissue" "Staphylococcus" "Marbofloxacin" "VET08 Table 2C" "5ug" 20 14 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "Staphylococcus" "Marbofloxacin" "VET08 Table 2C" 1 4 TRUE +"CLSI 2019" "MIC" "Skin, soft tissue" "Staphylococcus" "Marbofloxacin" "VET08 Table 2C" 1 4 FALSE +"CLSI 2019" "DISK" "Skin, soft tissue, UTI" "Streptococcus" "Marbofloxacin" "VET08 Table 2D" "5ug" 20 14 TRUE +"CLSI 2019" "DISK" "Skin, soft tissue" "Streptococcus" "Marbofloxacin" "VET08 Table 2D" "5ug" 20 14 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "Streptococcus" "Marbofloxacin" "VET08 Table 2D" 1 4 TRUE +"CLSI 2019" "MIC" "Skin, soft tissue" "Streptococcus" "Marbofloxacin" "VET08 Table 2D" 1 4 FALSE +"CLSI 2019" "MIC" "Abiotrophia" "Meropenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2019" "DISK" "Acinetobacter" "Meropenem" "Table 2B-2" "10ug" 18 14 FALSE +"CLSI 2019" "MIC" "Acinetobacter" "Meropenem" "Table 2B-2" 2 8 FALSE +"CLSI 2019" "MIC" "Aerococcus" "Meropenem" "M45 Table 2" 0.5 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Meropenem" "M45 Table 3" 23 19 FALSE +"CLSI 2019" "MIC" "Aeromonas" "Meropenem" "M45 Table 3" 1 4 FALSE +"CLSI 2019" "MIC" "Aggregatibacter" "Meropenem" "M45 Table 9" 4 16 FALSE +"CLSI 2019" "MIC" "Anaerosalibacter" "Meropenem" "Table 2J" 4 16 FALSE +"CLSI 2019" "MIC" "Bacillus" "Meropenem" "M45 Table 4" 4 16 FALSE +"CLSI 2019" "DISK" "Burkholderia cepacia" "Meropenem" "Table 2B-3" "10ug" 20 15 FALSE +"CLSI 2019" "DISK" "Burkholderia cepacia" "Meropenem" "Table 2B-3" "10ug" 20 15 FALSE +"CLSI 2019" "MIC" "Burkholderia cepacia" "Meropenem" "Table 2B-3" 4 16 FALSE +"CLSI 2019" "MIC" "Burkholderia cepacia" "Meropenem" "Table 2B-3" 4 16 FALSE +"CLSI 2019" "MIC" "Cardiobacterium" "Meropenem" "M45 Table 9" 0.5 2 FALSE +"CLSI 2019" "MIC" "Eikenella corrodens" "Meropenem" "M45 Table 9" 0.5 2 FALSE +"CLSI 2019" "MIC" "Gemella" "Meropenem" "M45 Table 8" 0.5 2 FALSE +"CLSI 2019" "MIC" "Granulicatella" "Meropenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Meropenem" "Table 2E" "10ug" 20 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Meropenem" "Table 2E" 0.5 FALSE +"CLSI 2019" "MIC" "Kingella" "Meropenem" "M45 Table 9" 0.5 2 FALSE +"CLSI 2019" "MIC" "Lactobacillus" "Meropenem" "M45 Table 11" 1 4 FALSE +"CLSI 2019" "MIC" "Lactococcus" "Meropenem" "M45 Table 12" 0.25 1 FALSE +"CLSI 2019" "MIC" "Listeria monocytogenes" "Meropenem" "M45 Table 14" 0.25 FALSE +"CLSI 2019" "DISK" "Neisseria meningitidis" "Meropenem" "Table 2I" "10ug" 30 FALSE +"CLSI 2019" "MIC" "Neisseria meningitidis" "Meropenem" "Table 2I" 0.25 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" "Meropenem" "Table 2B-1" "10ug" 19 15 FALSE +"CLSI 2019" "MIC" "Pseudomonas aeruginosa" "Meropenem" "Table 2B-1" 2 8 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Meropenem" "Table 2C" "10ug" 15 13 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Meropenem" "Table 2C" 4 16 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Meropenem" "Table 2H-1" "10ug" FALSE +"CLSI 2019" "MIC" "Streptococcus" "Meropenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Meropenem" "Table 2H-1" 0.5 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Meropenem" "Table 2G" "10ug" FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Meropenem" "Table 2G" 0.25 1 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" "Meropenem" "Table 2H-2" "10ug" FALSE +"CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Meropenem" "Table 2H-2" 0.5 FALSE +"CLSI 2019" "DISK" "Vibrio" "Meropenem" "M45 Table 20" "10ug" 23 19 FALSE +"CLSI 2019" "MIC" "Vibrio" "Meropenem" "M45 Table 20" 1 4 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Methicillin" "Table 2C" "5ug" 14 9 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Methicillin" "Table 2C" 8 16 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Moxifloxacin" "Table 2E" "5ug" 18 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Moxifloxacin" "Table 2E" 1 FALSE +"CLSI 2019" "DISK" "Pasteurella" "Moxifloxacin" "M45 Table 17" "5ug" 28 FALSE +"CLSI 2019" "MIC" "Pasteurella" "Moxifloxacin" "M45 Table 17" 0.064 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Moxifloxacin" "Table 2C" "5ug" 24 20 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Moxifloxacin" "Table 2C" 0.5 2 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Moxifloxacin" "Table 2H-1" "5ug" FALSE +"CLSI 2019" "MIC" "Streptococcus" "Moxifloxacin" "Table 2H-1" FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Moxifloxacin" "Table 2G" "5ug" 18 14 FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Moxifloxacin" "Table 2G" 1 4 FALSE +"CLSI 2019" "DISK" "Candida" "Micafungin" "Table 1" 16 13 FALSE +"CLSI 2019" "DISK" "Candida" "Micafungin" "Table 1" 22 19 FALSE +"CLSI 2019" "MIC" "Candida" "Micafungin" "Table 1" 2 8 FALSE +"CLSI 2019" "MIC" "Candida" "Micafungin" "Table 1" 0.25 1 FALSE +"CLSI 2019" "DISK" "Candida albicans" "Micafungin" "Table 1" 22 19 FALSE +"CLSI 2019" "MIC" "Candida albicans" "Micafungin" "Table 1" 0.25 1 FALSE +"CLSI 2019" "DISK" "Candida glabrata" "Micafungin" "Table 1" 30 27 FALSE +"CLSI 2019" "MIC" "Candida glabrata" "Micafungin" "Table 1" 0.064 0.25 FALSE +"CLSI 2019" "DISK" "Candida parapsilosis" "Micafungin" "Table 1" 16 13 FALSE +"CLSI 2019" "MIC" "Candida parapsilosis" "Micafungin" "Table 1" 2 8 FALSE +"CLSI 2019" "DISK" "Candida tropicalis" "Micafungin" "Table 1" 22 19 FALSE +"CLSI 2019" "MIC" "Candida tropicalis" "Micafungin" "Table 1" 0.25 1 FALSE +"CLSI 2019" "DISK" "Acinetobacter" "Minocycline" "Table 2B-2" "30ug" 16 12 FALSE +"CLSI 2019" "MIC" "Acinetobacter" "Minocycline" "Table 2B-2" 4 16 FALSE +"CLSI 2019" "DISK" "Burkholderia cepacia" "Minocycline" "Table 2B-3" "30ug" 19 14 FALSE +"CLSI 2019" "DISK" "Burkholderia cepacia" "Minocycline" "Table 2B-3" "30ug" 19 14 FALSE +"CLSI 2019" "MIC" "Burkholderia cepacia" "Minocycline" "Table 2B-3" 4 16 FALSE +"CLSI 2019" "MIC" "Burkholderia cepacia" "Minocycline" "Table 2B-3" 4 16 FALSE +"CLSI 2019" "DISK" "Enterococcus" "Minocycline" "Table 2D" "30ug" 19 14 FALSE +"CLSI 2019" "MIC" "Enterococcus" "Minocycline" "Table 2D" 4 16 FALSE +"CLSI 2019" "MIC" "Respiratory, skin, soft tissue" "Escherichia coli" "Minocycline" "VET08 Table 2A" 0.125 0.5 FALSE +"CLSI 2019" "MIC" "Leuconostoc" "Minocycline" "M45 Table 13" 4 16 FALSE +"CLSI 2019" "DISK" "Neisseria meningitidis" "Minocycline" "Table 2I" "30ug" 26 FALSE +"CLSI 2019" "MIC" "Neisseria meningitidis" "Minocycline" "Table 2I" 2 FALSE +"CLSI 2019" "DISK" "Stenotrophomonas maltophilia" "Minocycline" "Table 2B-4" "30ug" 19 14 FALSE +"CLSI 2019" "MIC" "Stenotrophomonas maltophilia" "Minocycline" "Table 2B-4" 4 16 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Minocycline" "Table 2C" "30ug" 19 14 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Minocycline" "Table 2C" 4 16 FALSE +"CLSI 2019" "MIC" "Respiratory, skin, soft tissue" "Staphylococcus aureus" "Minocycline" "VET08 Table 2C" 0.125 0.5 FALSE +"CLSI 2019" "MIC" "Respiratory, skin, soft tissue" "Streptococcus" "Minocycline" "VET08 Table 2D" 0.125 0.5 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue" "Pseudallescheria" "Minocycline" "VET08 Table 2C" 0.5 2 FALSE +"CLSI 2019" "MIC" "Anaerosalibacter" "Metronidazole" "Table 2J" 8 32 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Nafcillin" "Table 2C" "1ug" 13 10 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Nafcillin" "Table 2C" 2 4 FALSE +"CLSI 2019" "DISK" "Neisseria meningitidis" "Nalidixic acid" "Table 2I" "30ug" 26 25 FALSE +"CLSI 2019" "MIC" "Neisseria meningitidis" "Nalidixic acid" "Table 2I" 4 8 FALSE +"CLSI 2019" "DISK" "Acinetobacter" "Netilmicin" "Table 2B-2" "30ug" FALSE +"CLSI 2019" "MIC" "Acinetobacter" "Netilmicin" "Table 2B-2" 8 32 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" "Netilmicin" "Table 2B-1" "30ug" 15 12 FALSE +"CLSI 2019" "MIC" "Pseudomonas aeruginosa" "Netilmicin" "Table 2B-1" 8 32 FALSE +"CLSI 2019" "DISK" "Enterococcus" "Nitrofurantoin" "Table 2D" "300ug" 17 14 FALSE +"CLSI 2019" "MIC" "Enterococcus" "Nitrofurantoin" "Table 2D" 32 128 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Nitrofurantoin" "Table 2C" "300ug" 17 14 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Nitrofurantoin" "Table 2C" 32 128 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Ofloxacin" "Table 2E" "5ug" 16 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Ofloxacin" "Table 2E" 2 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" "Ofloxacin" "Table 2B-1" "5ug" 16 12 FALSE +"CLSI 2019" "MIC" "Pseudomonas aeruginosa" "Ofloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2019" "MIC" "Salmonella" "Ofloxacin" "Table 2A" 0.125 2 FALSE +"CLSI 2019" "MIC" "Extraintestinal" "Salmonella" "Ofloxacin" "Table 2A" 0.125 2 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Ofloxacin" "Table 2C" "5ug" 18 14 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Ofloxacin" "Table 2C" 1 4 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Ofloxacin" "Table 2H-1" "5ug" 16 12 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Ofloxacin" "Table 2H-1" 2 8 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Ofloxacin" "Table 2G" "5ug" 16 12 FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Ofloxacin" "Table 2G" 2 8 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" "Ofloxacin" "Table 2H-2" "5ug" 16 12 FALSE +"CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Ofloxacin" "Table 2H-2" 2 8 FALSE +"CLSI 2019" "DISK" "Vibrio" "Ofloxacin" "M45 Table 20" "5ug" 16 12 FALSE +"CLSI 2019" "MIC" "Vibrio" "Ofloxacin" "M45 Table 20" 2 8 FALSE +"CLSI 2019" "DISK" "Skin, soft tissue, UTI" "Enterobacteriaceae" "Orbifloxacin" "VET08 Table 2A" "10ug" 23 17 TRUE +"CLSI 2019" "DISK" "Skin, soft tissue" "Enterobacteriaceae" "Orbifloxacin" "VET08 Table 2A" "10ug" 23 17 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "Enterobacteriaceae" "Orbifloxacin" "VET08 Table 2A" 1 8 TRUE +"CLSI 2019" "MIC" "Skin, soft tissue" "Enterobacteriaceae" "Orbifloxacin" "VET08 Table 2A" 1 8 FALSE +"CLSI 2019" "DISK" "Skin, soft tissue, UTI" "Staphylococcus" "Orbifloxacin" "VET08 Table 2C" "10ug" 23 17 TRUE +"CLSI 2019" "DISK" "Skin, soft tissue" "Staphylococcus" "Orbifloxacin" "VET08 Table 2C" "10ug" 23 17 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "Staphylococcus" "Orbifloxacin" "VET08 Table 2C" 1 8 TRUE +"CLSI 2019" "MIC" "Skin, soft tissue" "Staphylococcus" "Orbifloxacin" "VET08 Table 2C" 1 8 FALSE +"CLSI 2019" "DISK" "Skin, soft tissue, UTI" "Streptococcus" "Orbifloxacin" "VET08 Table 2D" "10ug" 23 17 TRUE +"CLSI 2019" "DISK" "Skin, soft tissue" "Streptococcus" "Orbifloxacin" "VET08 Table 2D" "10ug" 23 17 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "Streptococcus" "Orbifloxacin" "VET08 Table 2D" 1 8 TRUE +"CLSI 2019" "MIC" "Skin, soft tissue" "Streptococcus" "Orbifloxacin" "VET08 Table 2D" 1 8 FALSE +"CLSI 2019" "MIC" "Enterococcus" "Oritavancin" "Table 2D" 0.125 FALSE +"CLSI 2019" "MIC" "Staphylococcus aureus" "Oritavancin" "Table 2C" 0.125 FALSE +"CLSI 2019" "MIC" "Coagulase-positive Staphylococcus (CoPS)" "Oritavancin" "Table 2C" 0.125 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Oritavancin" "Table 2H-1" 0.25 FALSE +"CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Oritavancin" "Table 2H-2" 0.25 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Oxacillin" "Table 2C" 0.25 0.5 FALSE +"CLSI 2019" "MIC" "Staphylococcus aureus" "Oxacillin" "Table 2C" 2 4 FALSE +"CLSI 2019" "MIC" "Coagulase-positive Staphylococcus (CoPS)" "Oxacillin" "Table 2C" 2 4 FALSE +"CLSI 2019" "DISK" "Staphylococcus epidermidis" "Oxacillin" "Table 2C" "1ug" 18 17 FALSE +"CLSI 2019" "MIC" "Staphylococcus epidermidis" "Oxacillin" "Table 2C" 0.25 0.5 FALSE +"CLSI 2019" "MIC" "Staphylococcus lugdunensis" "Oxacillin" "Table 2C" 2 4 FALSE +"CLSI 2019" "DISK" "Staphylococcus schleiferi schleiferi" "Oxacillin" "Table 2C" "1ug" 18 17 FALSE +"CLSI 2019" "MIC" "Staphylococcus schleiferi schleiferi" "Oxacillin" "Table 2C" 0.25 0.5 FALSE +"CLSI 2019" "MIC" "Staphylococcus schleiferi schleiferi" "Oxacillin" "Table 2C" "1ug" 0.25 0.5 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Oxacillin" "Table 2G" "1ug" 20 FALSE +"CLSI 2019" "DISK" "Pseudallescheria" "Oxacillin" "Table 2C" "1ug" 18 17 FALSE +"CLSI 2019" "MIC" "Pseudallescheria" "Oxacillin" "Table 2C" 0.25 0.5 FALSE +"CLSI 2019" "MIC" "Pseudallescheria" "Oxacillin" "Table 2C" 0.25 0.5 FALSE +"CLSI 2019" "DISK" "Aeromonas salmonicida" "Oxolinic acid" "VET03 Table 12" "2ug" 30 24 FALSE +"CLSI 2019" "MIC" "Aeromonas salmonicida" "Oxolinic acid" "VET03 Table 12" 0.125 1 FALSE +"CLSI 2019" "DISK" "Aeromonas salmonicida" "Oxytetracycline" "VET03 Table 12" "30ug" 28 21 FALSE +"CLSI 2019" "MIC" "Aeromonas salmonicida" "Oxytetracycline" "VET03 Table 12" 1 8 FALSE +"CLSI 2019" "MIC" "Abiotrophia" "Penicillin G" "M45 Table 1" 0.125 4 FALSE +"CLSI 2019" "MIC" "Aerococcus" "Penicillin G" "M45 Table 2" 0.125 4 FALSE +"CLSI 2019" "MIC" "Aggregatibacter" "Penicillin G" "M45 Table 9" 1 4 FALSE +"CLSI 2019" "MIC" "Anaerosalibacter" "Penicillin G" "Table 2J" 0.5 2 FALSE +"CLSI 2019" "MIC" "Bacillus" "Penicillin G" "M45 Table 4" 0.125 0.25 FALSE +"CLSI 2019" "MIC" "Bacillus anthracis" "Penicillin G" "M45 Table 21" 0.5 1 FALSE +"CLSI 2019" "MIC" "Cardiobacterium" "Penicillin G" "M45 Table 9" 1 4 FALSE +"CLSI 2019" "MIC" "Eikenella corrodens" "Penicillin G" "M45 Table 9" 1 4 FALSE +"CLSI 2019" "DISK" "Enterococcus" "Penicillin G" "Table 2D" "10units" 15 14 FALSE +"CLSI 2019" "MIC" "Enterococcus" "Penicillin G" "Table 2D" 8 16 FALSE +"CLSI 2019" "MIC" "Gemella" "Penicillin G" "M45 Table 8" 0.125 4 FALSE +"CLSI 2019" "MIC" "Granulicatella" "Penicillin G" "M45 Table 1" 0.125 4 FALSE +"CLSI 2019" "MIC" "Respiratory" "Histophilus somni" "Penicillin G" "VET08 Table 2J" 0.25 1 FALSE +"CLSI 2019" "MIC" "Kingella" "Penicillin G" "M45 Table 9" 1 4 FALSE +"CLSI 2019" "MIC" "Leuconostoc" "Penicillin G" "M45 Table 13" 8 FALSE +"CLSI 2019" "MIC" "Lactobacillus" "Penicillin G" "M45 Table 11" 8 FALSE +"CLSI 2019" "MIC" "Lactococcus" "Penicillin G" "M45 Table 12" 1 4 FALSE +"CLSI 2019" "MIC" "Listeria monocytogenes" "Penicillin G" "M45 Table 14" 2 FALSE +"CLSI 2019" "MIC" "Micrococcus" "Penicillin G" "M45 Table 15" 0.125 0.25 FALSE +"CLSI 2019" "MIC" "Respiratory" "Mannheimia haemolytica" "Penicillin G" "VET08 Table 2G" 0.25 1 FALSE +"CLSI 2019" "DISK" "Neisseria gonorrhoeae" "Penicillin G" "Table 2F" "10units" 47 26 FALSE +"CLSI 2019" "MIC" "Neisseria gonorrhoeae" "Penicillin G" "Table 2F" 0.064 2 FALSE +"CLSI 2019" "DISK" "Neisseria meningitidis" "Penicillin G" "Table 2I" "10units" FALSE +"CLSI 2019" "MIC" "Neisseria meningitidis" "Penicillin G" "Table 2I" 0.064 0.5 FALSE +"CLSI 2019" "MIC" "Pediococcus" "Penicillin G" "M45 Table 18" 8 FALSE +"CLSI 2019" "DISK" "Pasteurella" "Penicillin G" "M45 Table 17" "10 Units" 25 FALSE +"CLSI 2019" "MIC" "Pasteurella" "Penicillin G" "M45 Table 17" 0.5 FALSE +"CLSI 2019" "MIC" "Pasteurella multocida" "Penicillin G" "VET08 Table 2H" 0.25 1 FALSE +"CLSI 2019" "MIC" "Respiratory" "Pasteurella multocida" "Penicillin G" "VET08 Table 2H" 0.25 1 FALSE +"CLSI 2019" "MIC" "Rothia" "Penicillin G" "M45 Table 19" 0.125 4 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Penicillin G" "Table 2C" "10ug" 29 28 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Penicillin G" "Table 2C" 0.125 0.25 FALSE +"CLSI 2019" "MIC" "Respiratory, soft tissue" "Staphylococcus" "Penicillin G" "VET08 Table 2C" 0.5 2 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Penicillin G" "Table 2H-1" "10units" 24 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Penicillin G" "M45 Table 1" 0.125 4 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Penicillin G" "Table 2H-1" 0.125 FALSE +"CLSI 2019" "MIC" "Respiratory, soft tissue" "Streptococcus" "Penicillin G" "VET08 Table 2D" 0.5 2 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" "10units" FALSE +"CLSI 2019" "MIC" "Meningitis" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" 0.064 0.12 FALSE +"CLSI 2019" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" 2 8 FALSE +"CLSI 2019" "MIC" "Oral" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" 0.064 2 FALSE +"CLSI 2019" "MIC" "Streptococcus suis" "Penicillin G" "VET08 Table 2D" 0.25 1 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" "Penicillin G" "Table 2H-2" "10units" FALSE +"CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Penicillin G" "Table 2H-2" 0.125 4 FALSE +"CLSI 2019" "DISK" "Acinetobacter" "Piperacillin" "Table 2B-2" "100ug" 21 17 FALSE +"CLSI 2019" "MIC" "Acinetobacter" "Piperacillin" "Table 2B-2" 16 128 FALSE +"CLSI 2019" "MIC" "Anaerosalibacter" "Piperacillin" "Table 2J" 32 128 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" "Piperacillin" "Table 2B-1" "100ug" 21 14 FALSE +"CLSI 2019" "MIC" "Pseudomonas aeruginosa" "Piperacillin" "Table 2B-1" 16 128 FALSE +"CLSI 2019" "DISK" "Vibrio" "Piperacillin" "M45 Table 20" "100ug" 21 17 FALSE +"CLSI 2019" "MIC" "Vibrio" "Piperacillin" "M45 Table 20" 16 128 FALSE +"CLSI 2019" "DISK" "Acinetobacter" "Polymyxin B" "Table 2B-2" "300ug" FALSE +"CLSI 2019" "MIC" "Acinetobacter" "Polymyxin B" "Table 2B-2" 2 4 FALSE +"CLSI 2019" "MIC" "Pseudomonas aeruginosa" "Polymyxin B" "Table 2B-1" 2 8 FALSE +"CLSI 2019" "DISK" "Mastitis" "Staphylococcus aureus" "Penicillin/novobiocin" "VET08 Table 2C" "10units/30ug" 18 14 FALSE +"CLSI 2019" "MIC" "Mastitis" "Staphylococcus aureus" "Penicillin/novobiocin" "VET08 Table 2C" 1 4 FALSE +"CLSI 2019" "DISK" "Mastitis" "Streptococcus agalactiae" "Penicillin/novobiocin" "VET08 Table 2D" "10units/30ug" 18 14 FALSE +"CLSI 2019" "MIC" "Mastitis" "Streptococcus agalactiae" "Penicillin/novobiocin" "VET08 Table 2D" 1 4 FALSE +"CLSI 2019" "DISK" "Mastitis" "Streptococcus dysgalactiae" "Penicillin/novobiocin" "VET08 Table 2D" "10units/30ug" 18 14 FALSE +"CLSI 2019" "MIC" "Mastitis" "Streptococcus dysgalactiae" "Penicillin/novobiocin" "VET08 Table 2D" 1 4 FALSE +"CLSI 2019" "DISK" "Mastitis" "Streptococcus uberis" "Penicillin/novobiocin" "VET08 Table 2D" "10units/30ug" 18 14 FALSE +"CLSI 2019" "MIC" "Mastitis" "Streptococcus uberis" "Penicillin/novobiocin" "VET08 Table 2D" 1 4 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Penicillin V" "Table 2G" "10ug" FALSE +"CLSI 2019" "MIC" "Oral" "Streptococcus pneumoniae" "Penicillin V" "Table 2G" 0.064 2 FALSE +"CLSI 2019" "DISK" "Skin, respiratory" "Actinomyces canis" "Pradofloxacin" "VET08 Table 2D" "5ug" 24 FALSE +"CLSI 2019" "MIC" "Skin, respiratory" "Actinomyces canis" "Pradofloxacin" "VET08 Table 2D" 0.25 FALSE +"CLSI 2019" "DISK" "Skin, UTI" "Escherichia coli" "Pradofloxacin" "VET08 Table 2A" "5ug" 24 19 TRUE +"CLSI 2019" "DISK" "Skin, respiratory" "Escherichia coli" "Pradofloxacin" "VET08 Table 2A" "5ug" 24 19 FALSE +"CLSI 2019" "MIC" "Skin, UTI" "Escherichia coli" "Pradofloxacin" "VET08 Table 2A" 0.25 2 TRUE +"CLSI 2019" "MIC" "Skin, respiratory" "Escherichia coli" "Pradofloxacin" "VET08 Table 2A" 0.25 2 FALSE +"CLSI 2019" "DISK" "Skin, respiratory" "Pasteurella multocida" "Pradofloxacin" "VET08 Table 2H" "5ug" 24 FALSE +"CLSI 2019" "MIC" "Skin, respiratory" "Pasteurella multocida" "Pradofloxacin" "VET08 Table 2H" 0.25 FALSE +"CLSI 2019" "DISK" "Skin, respiratory" "Staphylococcus aureus" "Pradofloxacin" "VET08 Table 2C" "5ug" 24 19 FALSE +"CLSI 2019" "MIC" "Skin, respiratory" "Staphylococcus aureus" "Pradofloxacin" "VET08 Table 2C" 0.25 2 FALSE +"CLSI 2019" "DISK" "Skin, respiratory" "Staphylococcus felis" "Pradofloxacin" "VET08 Table 2C" "5ug" 24 19 FALSE +"CLSI 2019" "MIC" "Skin, respiratory" "Staphylococcus felis" "Pradofloxacin" "VET08 Table 2C" 0.25 2 FALSE +"CLSI 2019" "DISK" "Skin, UTI" "Pseudallescheria" "Pradofloxacin" "VET08 Table 2C" "5ug" 24 19 TRUE +"CLSI 2019" "DISK" "Skin, respiratory" "Pseudallescheria" "Pradofloxacin" "VET08 Table 2C" "5ug" 24 19 FALSE +"CLSI 2019" "MIC" "Skin, UTI" "Pseudallescheria" "Pradofloxacin" "VET08 Table 2C" 0.25 2 TRUE +"CLSI 2019" "MIC" "Skin, respiratory" "Pseudallescheria" "Pradofloxacin" "VET08 Table 2C" 0.25 2 FALSE +"CLSI 2019" "DISK" "Mastitis" "Staphylococcus aureus" "Pirlimycin" "VET08 Table 2C" "2ug" 13 12 FALSE +"CLSI 2019" "MIC" "Mastitis" "Staphylococcus aureus" "Pirlimycin" "VET08 Table 2C" 2 4 FALSE +"CLSI 2019" "DISK" "Mastitis" "Streptococcus agalactiae" "Pirlimycin" "VET08 Table 2D" "2ug" 13 12 FALSE +"CLSI 2019" "MIC" "Mastitis" "Streptococcus agalactiae" "Pirlimycin" "VET08 Table 2D" 2 4 FALSE +"CLSI 2019" "DISK" "Mastitis" "Streptococcus dysgalactiae" "Pirlimycin" "VET08 Table 2D" "2ug" 13 12 FALSE +"CLSI 2019" "MIC" "Mastitis" "Streptococcus dysgalactiae" "Pirlimycin" "VET08 Table 2D" 2 4 FALSE +"CLSI 2019" "DISK" "Mastitis" "Streptococcus uberis" "Pirlimycin" "VET08 Table 2D" "2ug" 13 12 FALSE +"CLSI 2019" "MIC" "Mastitis" "Streptococcus uberis" "Pirlimycin" "VET08 Table 2D" 2 4 FALSE +"CLSI 2019" "DISK" "Enterococcus" "Quinupristin/dalfopristin" "Table 2D" "15ug" 19 15 FALSE +"CLSI 2019" "MIC" "Enterococcus" "Quinupristin/dalfopristin" "Table 2D" 1 4 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Quinupristin/dalfopristin" "Table 2C" "15ug" 19 15 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Quinupristin/dalfopristin" "Table 2C" 1 4 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Quinupristin/dalfopristin" "Table 2H-1" "15ug" 19 15 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Quinupristin/dalfopristin" "Table 2H-1" 1 4 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Quinupristin/dalfopristin" "Table 2G" "15ug" 19 15 FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Quinupristin/dalfopristin" "Table 2G" 1 4 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" "Quinupristin/dalfopristin" "Table 2H-2" "15ug" 19 15 FALSE +"CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Quinupristin/dalfopristin" "Table 2H-2" 1 4 FALSE +"CLSI 2019" "MIC" "Aggregatibacter" "Rifampicin" "M45 Table 9" 1 4 FALSE +"CLSI 2019" "MIC" "Bacillus" "Rifampicin" "M45 Table 4" 1 4 FALSE +"CLSI 2019" "MIC" "Cardiobacterium" "Rifampicin" "M45 Table 9" 1 4 FALSE +"CLSI 2019" "MIC" "Eikenella corrodens" "Rifampicin" "M45 Table 9" 1 4 FALSE +"CLSI 2019" "DISK" "Enterococcus" "Rifampicin" "Table 2D" "5ug" 20 16 FALSE +"CLSI 2019" "MIC" "Enterococcus" "Rifampicin" "Table 2D" 1 4 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Rifampicin" "Table 2E" "5ug" 20 16 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Rifampicin" "Table 2E" 1 4 FALSE +"CLSI 2019" "MIC" "Kingella" "Rifampicin" "M45 Table 9" 1 4 FALSE +"CLSI 2019" "MIC" "Moraxella catarrhalis" "Rifampicin" "M45 Table 16" 1 4 FALSE +"CLSI 2019" "DISK" "Neisseria meningitidis" "Rifampicin" "Table 2I" "5ug" 25 19 FALSE +"CLSI 2019" "MIC" "Neisseria meningitidis" "Rifampicin" "Table 2I" 0.5 2 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Rifampicin" "Table 2C" "5ug" 20 16 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Rifampicin" "Table 2C" 1 4 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Rifampicin" "Table 2H-1" "5ug" FALSE +"CLSI 2019" "MIC" "Streptococcus" "Rifampicin" "Table 2H-1" FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Rifampicin" "Table 2G" "5ug" 19 16 FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Rifampicin" "Table 2G" 1 4 FALSE +"CLSI 2019" "DISK" "Acinetobacter" "Ampicillin/sulbactam" "Table 2B-2" "10ug" 15 11 FALSE +"CLSI 2019" "MIC" "Acinetobacter" "Ampicillin/sulbactam" "Table 2B-2" 8 32 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE +"CLSI 2019" "MIC" "Aggregatibacter" "Ampicillin/sulbactam" "M45 Table 9" 2 4 FALSE +"CLSI 2019" "MIC" "Anaerosalibacter" "Ampicillin/sulbactam" "Table 2J" 8 32 FALSE +"CLSI 2019" "MIC" "Cardiobacterium" "Ampicillin/sulbactam" "M45 Table 9" 2 4 FALSE +"CLSI 2019" "MIC" "Eikenella corrodens" "Ampicillin/sulbactam" "M45 Table 9" 2 4 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Ampicillin/sulbactam" "Table 2E" "10/10ug" 20 19 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Ampicillin/sulbactam" "Table 2E" 2 4 FALSE +"CLSI 2019" "MIC" "Kingella" "Ampicillin/sulbactam" "M45 Table 9" 2 4 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Ampicillin/sulbactam" "Table 2C" "10ug" 15 11 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Ampicillin/sulbactam" "Table 2C" 8 32 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Ampicillin/sulbactam" "Table 2G" "10/10ug" FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Ampicillin/sulbactam" "Table 2G" FALSE +"CLSI 2019" "DISK" "Vibrio" "Ampicillin/sulbactam" "M45 Table 20" "10ug" 15 11 FALSE +"CLSI 2019" "MIC" "Vibrio" "Ampicillin/sulbactam" "M45 Table 20" 8 32 FALSE +"CLSI 2019" "DISK" "Neisseria meningitidis" "Sulfamethoxazole" "Table 2I" "200-300ug" FALSE +"CLSI 2019" "MIC" "Neisseria meningitidis" "Sulfamethoxazole" "Table 2I" 2 8 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Sulfamethoxazole" "Table 2C" "200ug" 17 12 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Sulfamethoxazole" "Table 2C" 256 512 FALSE +"CLSI 2019" "DISK" "Vibrio" "Sulfamethoxazole" "M45 Table 20" "200ug" 17 12 FALSE +"CLSI 2019" "DISK" "Neisseria meningitidis" "Sulfisoxazole" "Table 2I" "200-300ug" FALSE +"CLSI 2019" "MIC" "Neisseria meningitidis" "Sulfisoxazole" "Table 2I" 2 8 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Sulfisoxazole" "Table 2C" "200ug" 17 12 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Sulfisoxazole" "Table 2C" 256 512 FALSE +"CLSI 2019" "DISK" "Vibrio" "Sulfisoxazole" "M45 Table 20" "200ug" 17 12 FALSE +"CLSI 2019" "DISK" "Histophilus somni" "Spectinomycin" "Vet Table" "100ug" 14 10 FALSE +"CLSI 2019" "DISK" "Respiratory" "Histophilus somni" "Spectinomycin" "VET08 Table 2J" "100ug" 14 10 FALSE +"CLSI 2019" "MIC" "Respiratory" "Histophilus somni" "Spectinomycin" "VET08 Table 2J" 32 128 FALSE +"CLSI 2019" "DISK" "Respiratory" "Mannheimia haemolytica" "Spectinomycin" "VET08 Table 2G" "100ug" 14 10 FALSE +"CLSI 2019" "MIC" "Respiratory" "Mannheimia haemolytica" "Spectinomycin" "VET08 Table 2G" 32 128 FALSE +"CLSI 2019" "DISK" "Neisseria gonorrhoeae" "Spectinomycin" "Table 2F" "100ug" 18 14 FALSE +"CLSI 2019" "MIC" "Neisseria gonorrhoeae" "Spectinomycin" "Table 2F" 32 128 FALSE +"CLSI 2019" "DISK" "Providencia heimbachae" "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2019" "DISK" "Pasteurella multocida" "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2019" "DISK" "Respiratory" "Pasteurella multocida" "Spectinomycin" "VET08 Table 2H" "100ug" 14 10 FALSE +"CLSI 2019" "MIC" "Respiratory" "Pasteurella multocida" "Spectinomycin" "VET08 Table 2H" 32 128 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Sparfloxacin" "Table 2E" "5ug" FALSE +"CLSI 2019" "MIC" "Haemophilus" "Sparfloxacin" "Table 2E" 0.25 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Sparfloxacin" "Table 2C" "5ug" 19 15 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Sparfloxacin" "Table 2C" 0.5 2 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Sparfloxacin" "Table 2H-1" "5ug" FALSE +"CLSI 2019" "MIC" "Streptococcus" "Sparfloxacin" "Table 2H-1" FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Sparfloxacin" "Table 2G" "5ug" 19 15 FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Sparfloxacin" "Table 2G" 0.5 2 FALSE +"CLSI 2019" "DISK" "Neisseria meningitidis" "Sulfonamides" "Table 2I" "200-300ug" FALSE +"CLSI 2019" "MIC" "Neisseria meningitidis" "Sulfonamides" "Table 2I" 2 8 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Sulfonamides" "Table 2C" "200ug" 17 12 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Sulfonamides" "Table 2C" 256 512 FALSE +"CLSI 2019" "DISK" "Vibrio" "Sulfonamides" "M45 Table 20" "200ug" 17 12 FALSE +"CLSI 2019" "MIC" "Vibrio" "Sulfonamides" "M45 Table 20" 256 512 FALSE +"CLSI 2019" "DISK" "Enterococcus" "Streptomycin-high" "Table 2D" "300ug" 10 6 FALSE +"CLSI 2019" "MIC" "Enterococcus" "Streptomycin-high" "Table 2D" 1024 1024 FALSE +"CLSI 2019" "MIC" "Brucella" "Streptoduocin" "M45 Table 21" 8 FALSE +"CLSI 2019" "MIC" "Enterococcus" "Streptoduocin" "Table 2D" 1024 1024 FALSE +"CLSI 2019" "MIC" "Francisella tularensis" "Streptoduocin" "M45 Table 21" 8 FALSE +"CLSI 2019" "MIC" "Yersinia pestis" "Streptoduocin" "M45 Table 21" 4 16 FALSE +"CLSI 2019" "DISK" "Acinetobacter" "Trimethoprim/sulfamethoxazole" "Table 2B-2" "1.25/23.75ug" 16 10 FALSE +"CLSI 2019" "MIC" "Acinetobacter" "Trimethoprim/sulfamethoxazole" "Table 2B-2" 2 4 FALSE +"CLSI 2019" "MIC" "Aerococcus" "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25/23.75ug" 16 10 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Trimethoprim/sulfamethoxazole" "M45 Table 3" 16 10 FALSE +"CLSI 2019" "MIC" "Aeromonas" "Trimethoprim/sulfamethoxazole" "M45 Table 3" 2 4 FALSE +"CLSI 2019" "MIC" "Aggregatibacter" "Trimethoprim/sulfamethoxazole" "M45 Table 9" 0.5 4 FALSE +"CLSI 2019" "MIC" "Bacillus" "Trimethoprim/sulfamethoxazole" "M45 Table 4" 2 4 FALSE +"CLSI 2019" "MIC" "Brucella" "Trimethoprim/sulfamethoxazole" "M45 Table 21" 2 FALSE +"CLSI 2019" "DISK" "Burkholderia cepacia" "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25/23.75ug" 16 10 FALSE +"CLSI 2019" "DISK" "Burkholderia cepacia" "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25/23.75ug" 16 10 FALSE +"CLSI 2019" "MIC" "Burkholderia cepacia" "Trimethoprim/sulfamethoxazole" "Table 2B-3" 2 4 FALSE +"CLSI 2019" "MIC" "Burkholderia cepacia" "Trimethoprim/sulfamethoxazole" "Table 2B-3" 2 4 FALSE +"CLSI 2019" "MIC" "Burkholderia pseudomallei" "Trimethoprim/sulfamethoxazole" "M45 Table 21" 2 4 FALSE +"CLSI 2019" "MIC" "Cardiobacterium" "Trimethoprim/sulfamethoxazole" "M45 Table 9" 0.5 4 FALSE +"CLSI 2019" "MIC" "Eikenella corrodens" "Trimethoprim/sulfamethoxazole" "M45 Table 9" 0.5 4 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Trimethoprim/sulfamethoxazole" "Table 2E" "1.25/23.75ug" 15 10 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Trimethoprim/sulfamethoxazole" "Table 2E" 0.5 4 FALSE +"CLSI 2019" "MIC" "Kingella" "Trimethoprim/sulfamethoxazole" "M45 Table 9" 0.5 4 FALSE +"CLSI 2019" "MIC" "Lactococcus" "Trimethoprim/sulfamethoxazole" "M45 Table 12" 2 4 FALSE +"CLSI 2019" "MIC" "Listeria monocytogenes" "Trimethoprim/sulfamethoxazole" "M45 Table 14" 0.5 FALSE +"CLSI 2019" "DISK" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" "M45 Table 16" "1.25/23.75ug" 13 10 FALSE +"CLSI 2019" "MIC" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" "M45 Table 16" 0.5 4 FALSE +"CLSI 2019" "DISK" "Neisseria meningitidis" "Trimethoprim/sulfamethoxazole" "Table 2I" "1.25/23.75ug" 30 25 FALSE +"CLSI 2019" "MIC" "Neisseria meningitidis" "Trimethoprim/sulfamethoxazole" "Table 2I" 0.125 0.5 FALSE +"CLSI 2019" "DISK" "Pasteurella" "Trimethoprim/sulfamethoxazole" "M45 Table 17" "1.25/23.75ug" 24 FALSE +"CLSI 2019" "MIC" "Pasteurella" "Trimethoprim/sulfamethoxazole" "M45 Table 17" 0.5 FALSE +"CLSI 2019" "MIC" "Rothia" "Trimethoprim/sulfamethoxazole" "M45 Table 19" 2 4 FALSE +"CLSI 2019" "DISK" "Stenotrophomonas maltophilia" "Trimethoprim/sulfamethoxazole" "Table 2B-4" "30ug" 16 10 FALSE +"CLSI 2019" "MIC" "Stenotrophomonas maltophilia" "Trimethoprim/sulfamethoxazole" "Table 2B-4" 2 4 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Trimethoprim/sulfamethoxazole" "Table 2C" "1.25/23.75ug" 16 10 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Trimethoprim/sulfamethoxazole" "Table 2C" 2 4 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Trimethoprim/sulfamethoxazole" "Table 2H-1" "1.25/23.75ug" FALSE +"CLSI 2019" "MIC" "Streptococcus" "Trimethoprim/sulfamethoxazole" "Table 2H-1" FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" "Table 2G" "1.25/23.75ug" 19 15 FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" "Table 2G" 0.5 4 FALSE +"CLSI 2019" "DISK" "Vibrio" "Trimethoprim/sulfamethoxazole" "M45 Table 20" "1.25ug" 16 10 FALSE +"CLSI 2019" "MIC" "Vibrio" "Trimethoprim/sulfamethoxazole" "M45 Table 20" 2 4 FALSE +"CLSI 2019" "MIC" "Yersinia pestis" "Trimethoprim/sulfamethoxazole" "M45 Table 21" 2 4 FALSE +"CLSI 2019" "DISK" "Acinetobacter" "Ticarcillin/clavulanic acid" "Table 2B-2" "75ug" 20 14 FALSE +"CLSI 2019" "MIC" "Acinetobacter" "Ticarcillin/clavulanic acid" "Table 2B-2" 16 128 FALSE +"CLSI 2019" "MIC" "Anaerosalibacter" "Ticarcillin/clavulanic acid" "Table 2J" 32 128 FALSE +"CLSI 2019" "DISK" "Burkholderia cepacia" "Ticarcillin/clavulanic acid" "Table 2B-3" "75ug" FALSE +"CLSI 2019" "DISK" "Burkholderia cepacia" "Ticarcillin/clavulanic acid" "Table 2B-3" "75ug" FALSE +"CLSI 2019" "MIC" "Burkholderia cepacia" "Ticarcillin/clavulanic acid" "Table 2B-3" 16 128 FALSE +"CLSI 2019" "MIC" "Burkholderia cepacia" "Ticarcillin/clavulanic acid" "Table 2B-3" 16 128 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" "Ticarcillin/clavulanic acid" "Table 2B-1" "75ug" 24 15 FALSE +"CLSI 2019" "MIC" "Pseudomonas aeruginosa" "Ticarcillin/clavulanic acid" "Table 2B-1" 16 128 FALSE +"CLSI 2019" "DISK" "Stenotrophomonas maltophilia" "Ticarcillin/clavulanic acid" "Table 2B-4" "30ug" FALSE +"CLSI 2019" "MIC" "Stenotrophomonas maltophilia" "Ticarcillin/clavulanic acid" "Table 2B-4" 16 128 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Ticarcillin/clavulanic acid" "Table 2C" "75/10ug" 23 22 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Ticarcillin/clavulanic acid" "Table 2C" 8 16 FALSE +"CLSI 2019" "DISK" "Acinetobacter" "Tetracycline" "Table 2B-2" "30ug" 15 11 FALSE +"CLSI 2019" "MIC" "Acinetobacter" "Tetracycline" "Table 2B-2" 4 16 FALSE +"CLSI 2019" "MIC" "Respiratory" "Actinobacillus pleuropneumoniae" "Tetracycline" "VET08 Table 2I" 0.5 2 FALSE +"CLSI 2019" "MIC" "Aerococcus" "Tetracycline" "M45 Table 2" 2 8 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Tetracycline" "M45 Table 3" 15 11 FALSE +"CLSI 2019" "MIC" "Aeromonas" "Tetracycline" "M45 Table 3" 4 16 FALSE +"CLSI 2019" "MIC" "Aggregatibacter" "Tetracycline" "M45 Table 9" 2 8 FALSE +"CLSI 2019" "MIC" "Anaerosalibacter" "Tetracycline" "Table 2J" 4 16 FALSE +"CLSI 2019" "MIC" "Bacillus" "Tetracycline" "M45 Table 4" 4 16 FALSE +"CLSI 2019" "MIC" "Brucella" "Tetracycline" "M45 Table 21" 1 FALSE +"CLSI 2019" "MIC" "Burkholderia mallei" "Tetracycline" "M45 Table 21" 4 16 FALSE +"CLSI 2019" "MIC" "Burkholderia pseudomallei" "Tetracycline" "M45 Table 21" 4 16 FALSE +"CLSI 2019" "DISK" "Campylobacter" "Tetracycline" "M45 Table 5" 26 22 FALSE +"CLSI 2019" "MIC" "Campylobacter" "Tetracycline" "M45 Table 5" 4 16 FALSE +"CLSI 2019" "MIC" "Cardiobacterium" "Tetracycline" "M45 Table 9" 2 8 FALSE +"CLSI 2019" "MIC" "Eikenella corrodens" "Tetracycline" "M45 Table 9" 2 8 FALSE +"CLSI 2019" "DISK" "Enterococcus" "Tetracycline" "Table 2D" "30ug" 19 14 FALSE +"CLSI 2019" "MIC" "Enterococcus" "Tetracycline" "Table 2D" 4 16 FALSE +"CLSI 2019" "MIC" "Francisella tularensis" "Tetracycline" "M45 Table 21" 4 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Tetracycline" "Table 2E" "30ug" 29 25 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Tetracycline" "Table 2E" 2 8 FALSE +"CLSI 2019" "MIC" "Respiratory" "Histophilus somni" "Tetracycline" "VET08 Table 2J" 2 8 FALSE +"CLSI 2019" "MIC" "Kingella" "Tetracycline" "M45 Table 9" 2 8 FALSE +"CLSI 2019" "MIC" "Lactococcus" "Tetracycline" "M45 Table 12" 2 8 FALSE +"CLSI 2019" "MIC" "Respiratory" "Mannheimia haemolytica" "Tetracycline" "VET08 Table 2G" 2 8 FALSE +"CLSI 2019" "DISK" "Moraxella catarrhalis" "Tetracycline" "M45 Table 16" "30ug" 29 24 FALSE +"CLSI 2019" "MIC" "Moraxella catarrhalis" "Tetracycline" "M45 Table 16" 2 8 FALSE +"CLSI 2019" "DISK" "Neisseria gonorrhoeae" "Tetracycline" "Table 2F" "30ug" 38 30 FALSE +"CLSI 2019" "MIC" "Neisseria gonorrhoeae" "Tetracycline" "Table 2F" 0.25 2 FALSE +"CLSI 2019" "DISK" "Pasteurella" "Tetracycline" "M45 Table 17" "30ug" 23 FALSE +"CLSI 2019" "MIC" "Pasteurella" "Tetracycline" "M45 Table 17" 1 FALSE +"CLSI 2019" "MIC" "Respiratory" "Pasteurella multocida" "Tetracycline" "VET08 Table 2H" 2 8 FALSE +"CLSI 2019" "MIC" "Respiratory" "Pasteurella multocida" "Tetracycline" "VET08 Table 2H" 0.5 2 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Tetracycline" "Table 2C" "30ug" 19 14 FALSE +"CLSI 2019" "DISK" "Skin, soft tissue" "Staphylococcus" "Tetracycline" "VET08 Table 2C" "30ug" 23 17 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Tetracycline" "Table 2C" 4 16 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue" "Staphylococcus" "Tetracycline" "VET08 Table 2C" 0.25 1 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Tetracycline" "Table 2H-1" "30ug" 23 18 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Tetracycline" "Table 2H-1" 2 8 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Tetracycline" "Table 2G" "30ug" 28 24 FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Tetracycline" "Table 2G" 1 4 FALSE +"CLSI 2019" "MIC" "Respiratory" "Streptococcus suis" "Tetracycline" "VET08 Table 2D" 0.5 2 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" "Tetracycline" "Table 2H-2" "30ug" 23 18 FALSE +"CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Tetracycline" "Table 2H-2" 2 8 FALSE +"CLSI 2019" "DISK" "Vibrio" "Tetracycline" "M45 Table 20" "30ug" 15 11 FALSE +"CLSI 2019" "MIC" "Vibrio" "Tetracycline" "M45 Table 20" 4 16 FALSE +"CLSI 2019" "MIC" "Yersinia pestis" "Tetracycline" "M45 Table 21" 4 16 FALSE +"CLSI 2019" "DISK" "Enterococcus" "Teicoplanin" "Table 2D" "30ug" 14 10 FALSE +"CLSI 2019" "MIC" "Enterococcus" "Teicoplanin" "Table 2D" 8 32 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Teicoplanin" "Table 2C" "30ug" 14 10 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Teicoplanin" "Table 2C" 8 32 FALSE +"CLSI 2019" "DISK" "Respiratory" "Actinobacillus pleuropneumoniae" "Tiamulin" "VET08 Table 2I" "30ug" 9 8 FALSE +"CLSI 2019" "MIC" "Respiratory" "Actinobacillus pleuropneumoniae" "Tiamulin" "VET08 Table 2I" 16 32 FALSE +"CLSI 2019" "DISK" "Actinobacillus pleuropneumoniae" "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE +"CLSI 2019" "DISK" "Respiratory" "Actinobacillus pleuropneumoniae" "Tilmicosin" "VET08 Table 2I" "15ug" 11 10 FALSE +"CLSI 2019" "MIC" "Actinobacillus pleuropneumoniae" "Tilmicosin" "Vet Table" 16 32 FALSE +"CLSI 2019" "MIC" "Respiratory" "Actinobacillus pleuropneumoniae" "Tilmicosin" "VET08 Table 2I" 16 32 FALSE +"CLSI 2019" "DISK" "Respiratory" "Mannheimia haemolytica" "Tilmicosin" "VET08 Table 2G" "15ug" 14 10 FALSE +"CLSI 2019" "MIC" "Respiratory" "Mannheimia haemolytica" "Tilmicosin" "VET08 Table 2G" 8 32 FALSE +"CLSI 2019" "DISK" "Pasteurella multocida" "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE +"CLSI 2019" "DISK" "Respiratory" "Pasteurella multocida" "Tilmicosin" "VET08 Table 2H" "15ug" 11 10 FALSE +"CLSI 2019" "MIC" "Pasteurella multocida" "Tilmicosin" "Vet Table" 16 32 FALSE +"CLSI 2019" "MIC" "Respiratory" "Pasteurella multocida" "Tilmicosin" "VET08 Table 2H" 16 32 FALSE +"CLSI 2019" "DISK" "Respiratory" "Schistosomatidae" "Ceftiofur" "VET08 Table 2A" "30ug" 21 17 FALSE +"CLSI 2019" "MIC" "Respiratory" "Schistosomatidae" "Ceftiofur" "VET08 Table 2A" 2 8 FALSE +"CLSI 2019" "DISK" "Respiratory" "Actinobacillus pleuropneumoniae" "Ceftiofur" "VET08 Table 2I" "30ug" 21 17 FALSE +"CLSI 2019" "MIC" "Respiratory" "Actinobacillus pleuropneumoniae" "Ceftiofur" "VET08 Table 2I" 2 8 FALSE +"CLSI 2019" "DISK" "Mastitis" "Escherichia coli" "Ceftiofur" "VET08 Table 2A" "30ug" 21 17 FALSE +"CLSI 2019" "MIC" "Mastitis" "Escherichia coli" "Ceftiofur" "VET08 Table 2A" 2 8 FALSE +"CLSI 2019" "DISK" "Respiratory" "Histophilus somni" "Ceftiofur" "VET08 Table 2J" "30ug" 21 17 FALSE +"CLSI 2019" "MIC" "Respiratory" "Histophilus somni" "Ceftiofur" "VET08 Table 2J" 2 8 FALSE +"CLSI 2019" "DISK" "Respiratory" "Mannheimia haemolytica" "Ceftiofur" "VET08 Table 2G" "30ug" 21 17 FALSE +"CLSI 2019" "MIC" "Respiratory" "Mannheimia haemolytica" "Ceftiofur" "VET08 Table 2G" 2 8 FALSE +"CLSI 2019" "DISK" "Respiratory" "Pasteurella multocida" "Ceftiofur" "VET08 Table 2H" "30ug" 21 17 FALSE +"CLSI 2019" "DISK" "Respiratory" "Pasteurella multocida" "Ceftiofur" "VET08 Table 2H" "30ug" 21 17 FALSE +"CLSI 2019" "MIC" "Respiratory" "Pasteurella multocida" "Ceftiofur" "VET08 Table 2H" 2 8 FALSE +"CLSI 2019" "MIC" "Respiratory" "Pasteurella multocida" "Ceftiofur" "VET08 Table 2H" 2 8 FALSE +"CLSI 2019" "DISK" "Mastitis" "Staphylococcus aureus" "Ceftiofur" "VET08 Table 2C" "30ug" 21 17 FALSE +"CLSI 2019" "MIC" "Mastitis" "Staphylococcus aureus" "Ceftiofur" "VET08 Table 2C" 2 8 FALSE +"CLSI 2019" "DISK" "Mastitis" "Streptococcus agalactiae" "Ceftiofur" "VET08 Table 2D" "30ug" 21 17 FALSE +"CLSI 2019" "MIC" "Mastitis" "Streptococcus agalactiae" "Ceftiofur" "VET08 Table 2D" 2 8 FALSE +"CLSI 2019" "DISK" "Mastitis" "Streptococcus dysgalactiae" "Ceftiofur" "VET08 Table 2D" "30ug" 21 17 FALSE +"CLSI 2019" "MIC" "Mastitis" "Streptococcus dysgalactiae" "Ceftiofur" "VET08 Table 2D" 2 8 FALSE +"CLSI 2019" "DISK" "Respiratory" "Streptococcus equi zooepidemicus" "Ceftiofur" "VET08 Table 2D" "30ug" 22 FALSE +"CLSI 2019" "MIC" "Respiratory" "Streptococcus equi zooepidemicus" "Ceftiofur" "VET08 Table 2D" 0.25 FALSE +"CLSI 2019" "DISK" "Respiratory" "Streptococcus suis" "Ceftiofur" "VET08 Table 2D" "30ug" 21 17 FALSE +"CLSI 2019" "MIC" "Respiratory" "Streptococcus suis" "Ceftiofur" "VET08 Table 2D" 2 8 FALSE +"CLSI 2019" "DISK" "Mastitis" "Streptococcus uberis" "Ceftiofur" "VET08 Table 2D" "30ug" 21 17 FALSE +"CLSI 2019" "MIC" "Mastitis" "Streptococcus uberis" "Ceftiofur" "VET08 Table 2D" 2 8 FALSE +"CLSI 2019" "MIC" "Respiratory" "Actinobacillus pleuropneumoniae" "Tildipirosin" "VET08 Table 2I" 16 FALSE +"CLSI 2019" "DISK" "Respiratory" "Bordetella bronchiseptica" "Tildipirosin" "VET08 Table 2F" "60ug" 18 FALSE +"CLSI 2019" "MIC" "Respiratory" "Bordetella bronchiseptica" "Tildipirosin" "VET08 Table 2F" 8 FALSE +"CLSI 2019" "DISK" "Respiratory" "Histophilus somni" "Tildipirosin" "VET08 Table 2J" "60ug" 17 13 FALSE +"CLSI 2019" "MIC" "Respiratory" "Histophilus somni" "Tildipirosin" "VET08 Table 2J" 8 32 FALSE +"CLSI 2019" "DISK" "Respiratory" "Mannheimia haemolytica" "Tildipirosin" "VET08 Table 2G" "60ug" 20 16 FALSE +"CLSI 2019" "MIC" "Respiratory" "Mannheimia haemolytica" "Tildipirosin" "VET08 Table 2G" 4 16 FALSE +"CLSI 2019" "DISK" "Respiratory" "Pasteurella multocida" "Tildipirosin" "VET08 Table 2H" "60ug" 21 17 FALSE +"CLSI 2019" "DISK" "Respiratory" "Pasteurella multocida" "Tildipirosin" "VET08 Table 2H" "60ug" 19 FALSE +"CLSI 2019" "MIC" "Respiratory" "Pasteurella multocida" "Tildipirosin" "VET08 Table 2H" 8 32 FALSE +"CLSI 2019" "MIC" "Respiratory" "Pasteurella multocida" "Tildipirosin" "VET08 Table 2H" 4 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Telithromycin" "Table 2H-1" FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Telithromycin" "Table 2G" "15ug" 19 15 FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Telithromycin" "Table 2G" 1 4 FALSE +"CLSI 2019" "MIC" "Enterococcus" "Telavancin" "Table 2D" 0.125 FALSE +"CLSI 2019" "MIC" "Staphylococcus aureus" "Telavancin" "Table 2C" 0.125 FALSE +"CLSI 2019" "MIC" "Coagulase-positive Staphylococcus (CoPS)" "Telavancin" "Table 2C" 0.125 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Telavancin" "Table 2H-1" 0.125 FALSE +"CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Telavancin" "Table 2H-2" 0.125 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Trimethoprim" "Table 2C" "5ug" 16 10 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Trimethoprim" "Table 2C" 8 16 FALSE +"CLSI 2019" "DISK" "Acinetobacter" "Tobramycin" "Table 2B-2" "10ug" 15 12 FALSE +"CLSI 2019" "MIC" "Acinetobacter" "Tobramycin" "Table 2B-2" 4 16 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" "Tobramycin" "Table 2B-1" "10ug" 15 12 FALSE +"CLSI 2019" "MIC" "Pseudomonas aeruginosa" "Tobramycin" "Table 2B-1" 4 16 FALSE +"CLSI 2019" "DISK" "Respiratory" "Actinobacillus pleuropneumoniae" "Tulathromycin" "VET08 Table 2I" "30ug" 10 FALSE +"CLSI 2019" "MIC" "Respiratory" "Actinobacillus pleuropneumoniae" "Tulathromycin" "VET08 Table 2I" 64 FALSE +"CLSI 2019" "DISK" "Respiratory" "Bordetella bronchiseptica" "Tulathromycin" "VET08 Table 2F" "30ug" 18 14 FALSE +"CLSI 2019" "MIC" "Respiratory" "Bordetella bronchiseptica" "Tulathromycin" "VET08 Table 2F" 16 64 FALSE +"CLSI 2019" "DISK" "Respiratory" "Histophilus somni" "Tulathromycin" "VET08 Table 2J" "30ug" 18 14 FALSE +"CLSI 2019" "MIC" "Respiratory" "Histophilus somni" "Tulathromycin" "VET08 Table 2J" 16 64 FALSE +"CLSI 2019" "DISK" "Respiratory" "Mannheimia haemolytica" "Tulathromycin" "VET08 Table 2G" "30ug" 18 14 FALSE +"CLSI 2019" "MIC" "Respiratory" "Mannheimia haemolytica" "Tulathromycin" "VET08 Table 2G" 16 64 FALSE +"CLSI 2019" "DISK" "Respiratory" "Pasteurella multocida" "Tulathromycin" "VET08 Table 2H" "30ug" 18 14 FALSE +"CLSI 2019" "DISK" "Respiratory" "Pasteurella multocida" "Tulathromycin" "VET08 Table 2H" "30ug" 18 14 FALSE +"CLSI 2019" "MIC" "Respiratory" "Pasteurella multocida" "Tulathromycin" "VET08 Table 2H" 16 64 FALSE +"CLSI 2019" "MIC" "Respiratory" "Pasteurella multocida" "Tulathromycin" "VET08 Table 2H" 16 64 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Trovafloxacin" "Table 2E" "10ug" 22 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Trovafloxacin" "Table 2E" 1 FALSE +"CLSI 2019" "DISK" "Neisseria gonorrhoeae" "Trovafloxacin" "Table 2F" "10ug" 34 FALSE +"CLSI 2019" "MIC" "Neisseria gonorrhoeae" "Trovafloxacin" "Table 2F" 0.25 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Trovafloxacin" "Table 2H-1" "10ug" 19 15 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Trovafloxacin" "Table 2H-1" 1 4 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Trovafloxacin" "Table 2G" "10ug" 19 15 FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Trovafloxacin" "Table 2G" 1 4 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" "Trovafloxacin" "Table 2H-2" "10ug" 19 15 FALSE +"CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Trovafloxacin" "Table 2H-2" 1 4 FALSE +"CLSI 2019" "MIC" "Enterococcus" "Tedizolid" "Table 2D" 0.5 FALSE +"CLSI 2019" "MIC" "Staphylococcus aureus" "Tedizolid" "Table 2C" 0.5 2 FALSE +"CLSI 2019" "MIC" "Coagulase-positive Staphylococcus (CoPS)" "Tedizolid" "Table 2C" 0.5 2 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Tedizolid" "Table 2H-1" 0.5 FALSE +"CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Tedizolid" "Table 2H-2" 0.25 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "Enterobacteriaceae" "Piperacillin/tazobactam" "VET08 Table 2A" 8 32 TRUE +"CLSI 2019" "DISK" "Acinetobacter" "Piperacillin/tazobactam" "Table 2B-2" "100ug" 21 17 FALSE +"CLSI 2019" "MIC" "Acinetobacter" "Piperacillin/tazobactam" "Table 2B-2" 16 128 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE +"CLSI 2019" "DISK" "Aeromonas" "Piperacillin/tazobactam" "M45 Table 3" 21 17 FALSE +"CLSI 2019" "MIC" "Aeromonas" "Piperacillin/tazobactam" "M45 Table 3" 16 128 FALSE +"CLSI 2019" "MIC" "Anaerosalibacter" "Piperacillin/tazobactam" "Table 2J" 16 128 FALSE +"CLSI 2019" "DISK" "Haemophilus" "Piperacillin/tazobactam" "Table 2E" "100ug" 21 FALSE +"CLSI 2019" "MIC" "Haemophilus" "Piperacillin/tazobactam" "Table 2E" 1 2 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" "Piperacillin/tazobactam" "Table 2B-1" "100ug" 21 14 FALSE +"CLSI 2019" "MIC" "Pseudomonas aeruginosa" "Piperacillin/tazobactam" "Table 2B-1" 16 128 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "Pseudomonas aeruginosa" "Piperacillin/tazobactam" "VET08 Table 2B" 8 32 TRUE +"CLSI 2019" "DISK" "Staphylococcus" "Piperacillin/tazobactam" "Table 2C" "100/10ug" 18 17 FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Piperacillin/tazobactam" "Table 2C" 8 16 FALSE +"CLSI 2019" "MIC" "Skin, soft tissue, UTI" "Staphylococcus" "Piperacillin/tazobactam" "VET08 Table 2C" 8 32 TRUE +"CLSI 2019" "DISK" "Vibrio" "Piperacillin/tazobactam" "M45 Table 20" "100ug" 21 17 FALSE +"CLSI 2019" "MIC" "Vibrio" "Piperacillin/tazobactam" "M45 Table 20" 16 128 FALSE +"CLSI 2019" "MIC" "Abiotrophia" "Vancomycin" "M45 Table 1" 1 FALSE +"CLSI 2019" "MIC" "Aerococcus" "Vancomycin" "M45 Table 2" 1 FALSE +"CLSI 2019" "MIC" "Bacillus" "Vancomycin" "M45 Table 4" 4 FALSE +"CLSI 2019" "DISK" "Enterococcus" "Vancomycin" "Table 2D" "30ug" 17 14 FALSE +"CLSI 2019" "MIC" "Enterococcus" "Vancomycin" "Table 2D" 4 32 FALSE +"CLSI 2019" "MIC" "Gemella" "Vancomycin" "M45 Table 8" 1 FALSE +"CLSI 2019" "MIC" "Granulicatella" "Vancomycin" "M45 Table 1" 1 FALSE +"CLSI 2019" "MIC" "Lactobacillus" "Vancomycin" "M45 Table 11" 2 16 FALSE +"CLSI 2019" "MIC" "Lactococcus" "Vancomycin" "M45 Table 12" 2 4 FALSE +"CLSI 2019" "MIC" "Micrococcus" "Vancomycin" "M45 Table 15" 2 FALSE +"CLSI 2019" "MIC" "Propionibacterium" "Vancomycin" "Table 2J-2" 2 4 FALSE +"CLSI 2019" "MIC" "Rothia" "Vancomycin" "M45 Table 19" 2 FALSE +"CLSI 2019" "DISK" "Staphylococcus" "Vancomycin" "Table 2C" "30ug" FALSE +"CLSI 2019" "MIC" "Staphylococcus" "Vancomycin" "Table 2C" 4 32 FALSE +"CLSI 2019" "MIC" "Staphylococcus aureus" "Vancomycin" "Table 2C" 2 16 FALSE +"CLSI 2019" "MIC" "Coagulase-positive Staphylococcus (CoPS)" "Vancomycin" "Table 2C" 2 16 FALSE +"CLSI 2019" "DISK" "Streptococcus" "Vancomycin" "Table 2H-1" "30ug" 17 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Vancomycin" "M45 Table 1" 1 FALSE +"CLSI 2019" "MIC" "Streptococcus" "Vancomycin" "Table 2H-1" 1 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" "Vancomycin" "Table 2G" "30ug" 17 FALSE +"CLSI 2019" "MIC" "Streptococcus pneumoniae" "Vancomycin" "Table 2G" 1 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" "Vancomycin" "Table 2H-2" "30ug" 17 FALSE +"CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" "Vancomycin" "Table 2H-2" 1 FALSE +"CLSI 2019" "DISK" "Candida" "Voriconazole" "Table 1" 15 12 FALSE +"CLSI 2019" "MIC" "Candida" "Voriconazole" "Table 1" 0.5 2 FALSE +"CLSI 2019" "DISK" "Candida albicans" "Voriconazole" "Table 1" 17 14 FALSE +"CLSI 2019" "MIC" "Candida albicans" "Voriconazole" "Table 1" 0.125 1 FALSE +"CLSI 2019" "DISK" "Candida parapsilosis" "Voriconazole" "Table 1" 17 14 FALSE +"CLSI 2019" "MIC" "Candida parapsilosis" "Voriconazole" "Table 1" 0.125 1 FALSE +"CLSI 2019" "DISK" "Candida tropicalis" "Voriconazole" "Table 1" 17 14 FALSE +"CLSI 2019" "MIC" "Candida tropicalis" "Voriconazole" "Table 1" 0.125 1 FALSE +"CLSI 2018" "DISK" "Aeromonas" "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE +"CLSI 2018" "MIC" "Aeromonas" "Amoxicillin/clavulanic acid" "M45 Table 2" 8 32 FALSE +"CLSI 2018" "MIC" "Aggregatibacter" "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE +"CLSI 2018" "MIC" "Anaerosalibacter" "Amoxicillin/clavulanic acid" "Table 2J" 4 16 FALSE +"CLSI 2018" "MIC" "Burkholderia pseudomallei" "Amoxicillin/clavulanic acid" "M45 Table 16" 8 32 FALSE +"CLSI 2018" "MIC" "Cardiobacterium" "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE +"CLSI 2018" "MIC" "Eikenella" "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Amoxicillin/clavulanic acid" "Table 2E" "20/10ug" 20 19 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Amoxicillin/clavulanic acid" "Table 2E" 4 8 FALSE +"CLSI 2018" "DISK" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" "M45 Table 12" "20ug" 24 23 FALSE +"CLSI 2018" "MIC" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" "M45 Table 12" 4 8 FALSE +"CLSI 2018" "DISK" "Plesiomonas" "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE +"CLSI 2018" "MIC" "Plesiomonas" "Amoxicillin/clavulanic acid" "M45 Table 2" 8 32 FALSE +"CLSI 2018" "DISK" "Pasteurella" "Amoxicillin/clavulanic acid" "M45 Table 13" "20ug" 27 FALSE +"CLSI 2018" "MIC" "Pasteurella" "Amoxicillin/clavulanic acid" "M45 Table 13" 0.5 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Amoxicillin/clavulanic acid" "Table 2C" "20ug" 20 19 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Amoxicillin/clavulanic acid" "Table 2C" 4 8 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Amoxicillin/clavulanic acid" "Table 2H-1" "20ug" FALSE +"CLSI 2018" "MIC" "Streptococcus" "Amoxicillin/clavulanic acid" "Table 2H-1" FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Amoxicillin/clavulanic acid" "Table 2G" "10/10ug" FALSE +"CLSI 2018" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Amoxicillin/clavulanic acid" "Table 2G" 2 8 FALSE +"CLSI 2018" "DISK" "Acinetobacter" "Amikacin" "Table 2B-2" "30ug" 17 14 FALSE +"CLSI 2018" "MIC" "Acinetobacter" "Amikacin" "Table 2B-2" 16 64 FALSE +"CLSI 2018" "DISK" "Aeromonas" "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE +"CLSI 2018" "MIC" "Aeromonas" "Amikacin" "M45 Table 2" 16 64 FALSE +"CLSI 2018" "MIC" "Bacillus" "Amikacin" "M45 Table 3" 16 64 FALSE +"CLSI 2018" "MIC" "Bacillus anthracis" "Amikacin" "M45 Table 16" FALSE +"CLSI 2018" "DISK" "Plesiomonas" "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE +"CLSI 2018" "MIC" "Plesiomonas" "Amikacin" "M45 Table 2" 16 64 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" "Amikacin" "Table 2B-1" "30ug" 17 14 FALSE +"CLSI 2018" "MIC" "Pseudomonas aeruginosa" "Amikacin" "Table 2B-1" 16 64 FALSE +"CLSI 2018" "MIC" "Aggregatibacter" "Ampicillin" "M45 Table 7" 1 4 FALSE +"CLSI 2018" "MIC" "Anaerosalibacter" "Ampicillin" "Table 2J" 0.5 2 FALSE +"CLSI 2018" "MIC" "Bacillus" "Ampicillin" "M45 Table 3" 0.25 0.5 FALSE +"CLSI 2018" "MIC" "Bacillus anthracis" "Ampicillin" "M45 Table 16" FALSE +"CLSI 2018" "MIC" "Cardiobacterium" "Ampicillin" "M45 Table 7" 1 4 FALSE +"CLSI 2018" "MIC" "Eikenella" "Ampicillin" "M45 Table 7" 1 4 FALSE +"CLSI 2018" "DISK" "Enterococcus" "Ampicillin" "Table 2D" "10ug" 17 16 FALSE +"CLSI 2018" "MIC" "Enterococcus" "Ampicillin" "Table 2D" 8 16 FALSE +"CLSI 2018" "MIC" "Erysipelothrix rhusiopathiae" "Ampicillin" "M45 Table 6" 0.25 FALSE +"CLSI 2018" "MIC" "Granulicatella" "Ampicillin" "M45 Table 1" 0.25 8 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Ampicillin" "Table 2E" "10ug" 22 18 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Ampicillin" "Table 2E" 1 4 FALSE +"CLSI 2018" "MIC" "Leuconostoc" "Ampicillin" "M45 Table 10" 8 FALSE +"CLSI 2018" "MIC" "Lactobacillus" "Ampicillin" "M45 Table 9" 8 FALSE +"CLSI 2018" "DISK" "Listeria monocytogenes" "Ampicillin" "M45 Table 11" "10ug" FALSE +"CLSI 2018" "MIC" "Listeria monocytogenes" "Ampicillin" "M45 Table 11" 2 FALSE +"CLSI 2018" "DISK" "Neisseria meningitidis" "Ampicillin" "Table 2I" "10ug" FALSE +"CLSI 2018" "MIC" "Neisseria meningitidis" "Ampicillin" "Table 2I" 0.125 2 FALSE +"CLSI 2018" "MIC" "Pediococcus" "Ampicillin" "M45 Table 14" 8 FALSE +"CLSI 2018" "DISK" "Pasteurella" "Ampicillin" "M45 Table 13" "10ug" 27 FALSE +"CLSI 2018" "MIC" "Pasteurella" "Ampicillin" "M45 Table 13" 0.5 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Ampicillin" "Table 2C" "10ug" 29 28 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Ampicillin" "Table 2C" 0.25 0.5 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Ampicillin" "Table 2H-1" "10ug" 24 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Ampicillin" "M45 Table 1" 0.25 8 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Ampicillin" "Table 2H-1" 0.25 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Ampicillin" "Table 2G" "10ug" FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Ampicillin" "Table 2G" FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" "Ampicillin" "Table 2H-2" "10ug" FALSE +"CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Ampicillin" "Table 2H-2" 0.25 8 FALSE +"CLSI 2018" "MIC" "Pasteurella" "Amoxicillin" "M45 Table 13" 0.5 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Amoxicillin" "Table 2H-1" "30ug" FALSE +"CLSI 2018" "MIC" "Streptococcus" "Amoxicillin" "Table 2H-1" FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Amoxicillin" "Table 2G" "30ug" FALSE +"CLSI 2018" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Amoxicillin" "Table 2G" 2 8 FALSE +"CLSI 2018" "DISK" "Aeromonas" "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2018" "MIC" "Aeromonas" "Aztreonam" "M45 Table 2" 4 16 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Aztreonam" "Table 2E" "30ug" 26 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Aztreonam" "Table 2E" 2 FALSE +"CLSI 2018" "DISK" "Plesiomonas" "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2018" "MIC" "Plesiomonas" "Aztreonam" "M45 Table 2" 4 16 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" "Aztreonam" "Table 2B-1" "30ug" 22 15 FALSE +"CLSI 2018" "MIC" "Pseudomonas aeruginosa" "Aztreonam" "Table 2B-1" 8 32 FALSE +"CLSI 2018" "MIC" "Aggregatibacter" "Azithromycin" "M45 Table 7" 4 FALSE +"CLSI 2018" "MIC" "Cardiobacterium" "Azithromycin" "M45 Table 7" 4 FALSE +"CLSI 2018" "MIC" "Eikenella" "Azithromycin" "M45 Table 7" 4 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Azithromycin" "Table 2E" "15ug" 12 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Azithromycin" "Table 2E" 4 FALSE +"CLSI 2018" "MIC" "Kingella" "Azithromycin" "M45 Table 7" 4 FALSE +"CLSI 2018" "DISK" "Moraxella catarrhalis" "Azithromycin" "M45 Table 12" "15ug" 26 FALSE +"CLSI 2018" "MIC" "Moraxella catarrhalis" "Azithromycin" "M45 Table 12" 0.25 FALSE +"CLSI 2018" "DISK" "Neisseria meningitidis" "Azithromycin" "Table 2I" "15ug" 20 FALSE +"CLSI 2018" "MIC" "Neisseria meningitidis" "Azithromycin" "Table 2I" 2 FALSE +"CLSI 2018" "DISK" "Pasteurella" "Azithromycin" "M45 Table 13" "15ug" 20 FALSE +"CLSI 2018" "MIC" "Pasteurella" "Azithromycin" "M45 Table 13" 1 FALSE +"CLSI 2018" "MIC" "Salmonella enterica" "Azithromycin" "Table 2A" 16 32 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Azithromycin" "Table 2C" "15ug" 18 13 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Azithromycin" "Table 2C" 2 8 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Azithromycin" "Table 2H-1" "15ug" 18 13 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Azithromycin" "Table 2H-1" 0.5 2 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Azithromycin" "Table 2G" "15ug" 18 13 FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Azithromycin" "Table 2G" 0.5 2 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" "Azithromycin" "Table 2H-2" "15ug" 18 13 FALSE +"CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Azithromycin" "Table 2H-2" 0.5 2 FALSE +"CLSI 2018" "MIC" "Vibrio cholerae" "Azithromycin" "M45 Table 14" "30ug" 2 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Cefetamet" "Table 2E" "10ug" 18 14 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Cefetamet" "Table 2E" 4 16 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" "Cefetamet" "Table 2F" "10ug" 29 FALSE +"CLSI 2018" "MIC" "Neisseria gonorrhoeae" "Cefetamet" "Table 2F" 0.5 FALSE +"CLSI 2018" "DISK" "Acinetobacter" "Ceftazidime" "Table 2B-2" "30ug" 18 14 FALSE +"CLSI 2018" "MIC" "Acinetobacter" "Ceftazidime" "Table 2B-2" 8 32 FALSE +"CLSI 2018" "DISK" "Aeromonas" "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2018" "MIC" "Aeromonas" "Ceftazidime" "M45 Table 2" 4 16 FALSE +"CLSI 2018" "MIC" "Bacillus" "Ceftazidime" "M45 Table 3" 8 32 FALSE +"CLSI 2018" "MIC" "Bacillus anthracis" "Ceftazidime" "M45 Table 16" FALSE +"CLSI 2018" "DISK" "Burkholderia cepacia" "Ceftazidime" "Table 2B-3" "30ug" 21 17 FALSE +"CLSI 2018" "DISK" "Burkholderia cepacia" "Ceftazidime" "Table 2B-3" "30ug" 21 17 FALSE +"CLSI 2018" "MIC" "Burkholderia cepacia" "Ceftazidime" "Table 2B-3" 8 32 FALSE +"CLSI 2018" "MIC" "Burkholderia cepacia" "Ceftazidime" "Table 2B-3" 8 32 FALSE +"CLSI 2018" "MIC" "Burkholderia mallei" "Ceftazidime" "M45 Table 16" 8 32 FALSE +"CLSI 2018" "MIC" "Burkholderia pseudomallei" "Ceftazidime" "M45 Table 16" 8 32 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Ceftazidime" "Table 2E" "30ug" 26 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Ceftazidime" "Table 2E" 2 FALSE +"CLSI 2018" "MIC" "Moraxella catarrhalis" "Ceftazidime" "M45 Table 12" 2 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" "Ceftazidime" "Table 2F" "30ug" 31 FALSE +"CLSI 2018" "MIC" "Neisseria gonorrhoeae" "Ceftazidime" "Table 2F" 0.5 FALSE +"CLSI 2018" "DISK" "Plesiomonas" "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2018" "MIC" "Plesiomonas" "Ceftazidime" "M45 Table 2" 4 16 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" "Ceftazidime" "Table 2B-1" "30ug" 18 14 FALSE +"CLSI 2018" "MIC" "Pseudomonas aeruginosa" "Ceftazidime" "Table 2B-1" 8 32 FALSE +"CLSI 2018" "DISK" "Stenotrophomonas maltophilia" "Ceftazidime" "Table 2B-4" "30ug" FALSE +"CLSI 2018" "MIC" "Stenotrophomonas maltophilia" "Ceftazidime" "Table 2B-4" 8 32 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Ceftazidime" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Ceftazidime" "Table 2C" 8 32 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Cefdinir" "Table 2E" "5ug" 20 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Cefdinir" "Table 2E" 1 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Cefdinir" "Table 2C" "5ug" 20 16 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Cefdinir" "Table 2C" 1 4 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Cefdinir" "Table 2G" "5ug" FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Cefdinir" "Table 2G" 0.5 2 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Cefaclor" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Cefaclor" "Table 2E" 8 32 FALSE +"CLSI 2018" "MIC" "Moraxella catarrhalis" "Cefaclor" "M45 Table 12" 8 32 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Cefaclor" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Cefaclor" "Table 2C" 8 32 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Cefaclor" "Table 2G" "30ug" FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Cefaclor" "Table 2G" 1 4 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Cephalothin" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Cephalothin" "Table 2C" 8 32 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Cefixime" "Table 2E" "5ug" 21 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Cefixime" "Table 2E" 1 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" "Cefixime" "Table 2F" "5ug" 31 FALSE +"CLSI 2018" "MIC" "Neisseria gonorrhoeae" "Cefixime" "Table 2F" 0.25 FALSE +"CLSI 2018" "MIC" "Anaerosalibacter" "Cefoperazone" "Table 2J" 16 64 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Cefoperazone" "Table 2C" "75ug" 21 15 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Cefoperazone" "Table 2C" 16 64 FALSE +"CLSI 2018" "DISK" "Aeromonas" "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE +"CLSI 2018" "MIC" "Aeromonas" "Chloramphenicol" "M45 Table 2" 8 32 FALSE +"CLSI 2018" "MIC" "Aggregatibacter" "Chloramphenicol" "M45 Table 7" 4 16 FALSE +"CLSI 2018" "MIC" "Anaerosalibacter" "Chloramphenicol" "Table 2J" 8 32 FALSE +"CLSI 2018" "MIC" "Bacillus" "Chloramphenicol" "M45 Table 3" 8 32 FALSE +"CLSI 2018" "MIC" "Bacillus anthracis" "Chloramphenicol" "M45 Table 16" FALSE +"CLSI 2018" "DISK" "Burkholderia cepacia" "Chloramphenicol" "Table 2B-3" "30ug" FALSE +"CLSI 2018" "DISK" "Burkholderia cepacia" "Chloramphenicol" "Table 2B-3" "30ug" FALSE +"CLSI 2018" "MIC" "Burkholderia cepacia" "Chloramphenicol" "Table 2B-3" 8 32 FALSE +"CLSI 2018" "MIC" "Burkholderia cepacia" "Chloramphenicol" "Table 2B-3" 8 32 FALSE +"CLSI 2018" "MIC" "Cardiobacterium" "Chloramphenicol" "M45 Table 7" 4 16 FALSE +"CLSI 2018" "MIC" "Eikenella" "Chloramphenicol" "M45 Table 7" 4 16 FALSE +"CLSI 2018" "DISK" "Enterococcus" "Chloramphenicol" "Table 2D" "30ug" 18 12 FALSE +"CLSI 2018" "MIC" "Enterococcus" "Chloramphenicol" "Table 2D" 8 32 FALSE +"CLSI 2018" "MIC" "Francisella tularensis" "Chloramphenicol" "M45 Table 16" 8 FALSE +"CLSI 2018" "MIC" "Granulicatella" "Chloramphenicol" "M45 Table 1" 4 8 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Chloramphenicol" "Table 2E" "30ug" 29 25 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Chloramphenicol" "Table 2E" 2 8 FALSE +"CLSI 2018" "MIC" "Kingella" "Chloramphenicol" "M45 Table 7" 4 16 FALSE +"CLSI 2018" "MIC" "Leuconostoc" "Chloramphenicol" "M45 Table 10" 8 32 FALSE +"CLSI 2018" "MIC" "Moraxella catarrhalis" "Chloramphenicol" "M45 Table 12" 2 8 FALSE +"CLSI 2018" "DISK" "Neisseria meningitidis" "Chloramphenicol" "Table 2I" "30ug" 26 19 FALSE +"CLSI 2018" "MIC" "Neisseria meningitidis" "Chloramphenicol" "Table 2I" 2 8 FALSE +"CLSI 2018" "MIC" "Pediococcus" "Chloramphenicol" "M45 Table 14" 8 32 FALSE +"CLSI 2018" "DISK" "Plesiomonas" "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE +"CLSI 2018" "MIC" "Plesiomonas" "Chloramphenicol" "M45 Table 2" 8 32 FALSE +"CLSI 2018" "DISK" "Pasteurella" "Chloramphenicol" "M45 Table 13" "30ug" 28 FALSE +"CLSI 2018" "MIC" "Pasteurella" "Chloramphenicol" "M45 Table 13" 2 FALSE +"CLSI 2018" "DISK" "Stenotrophomonas maltophilia" "Chloramphenicol" "Table 2B-4" "30ug" FALSE +"CLSI 2018" "MIC" "Stenotrophomonas maltophilia" "Chloramphenicol" "Table 2B-4" 8 32 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Chloramphenicol" "Table 2C" "30ug" 18 12 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Chloramphenicol" "Table 2C" 8 32 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Chloramphenicol" "Table 2H-1" "30ug" 21 17 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Chloramphenicol" "M45 Table 1" 4 8 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Chloramphenicol" "Table 2H-1" 4 16 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Chloramphenicol" "Table 2G" "30ug" 21 20 FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Chloramphenicol" "Table 2G" 4 8 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" "Chloramphenicol" "Table 2H-2" "30ug" 21 17 FALSE +"CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Chloramphenicol" "Table 2H-2" 4 16 FALSE +"CLSI 2018" "MIC" "Yersinia pestis" "Chloramphenicol" "M45 Table 16" 8 32 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Cefonicid" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Cefonicid" "Table 2E" 4 16 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Cefonicid" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Cefonicid" "Table 2C" 8 32 FALSE +"CLSI 2018" "DISK" "Acinetobacter" "Ciprofloxacin" "Table 2B-2" "5ug" 21 15 FALSE +"CLSI 2018" "MIC" "Acinetobacter" "Ciprofloxacin" "Table 2B-2" 1 4 FALSE +"CLSI 2018" "DISK" "Aeromonas" "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE +"CLSI 2018" "MIC" "Aeromonas" "Ciprofloxacin" "M45 Table 2" 1 4 FALSE +"CLSI 2018" "MIC" "Aggregatibacter" "Ciprofloxacin" "M45 Table 7" 1 4 FALSE +"CLSI 2018" "MIC" "Bacillus" "Ciprofloxacin" "M45 Table 3" 1 4 FALSE +"CLSI 2018" "MIC" "Bacillus anthracis" "Ciprofloxacin" "M45 Table 16" 0.25 FALSE +"CLSI 2018" "MIC" "Campylobacter" "Ciprofloxacin" "M45 Table 3" 1 4 FALSE +"CLSI 2018" "MIC" "Cardiobacterium" "Ciprofloxacin" "M45 Table 7" 1 4 FALSE +"CLSI 2018" "MIC" "Eikenella" "Ciprofloxacin" "M45 Table 7" 1 4 FALSE +"CLSI 2018" "DISK" "Enterococcus" "Ciprofloxacin" "Table 2D" "5ug" 21 15 FALSE +"CLSI 2018" "MIC" "Enterococcus" "Ciprofloxacin" "Table 2D" 1 4 FALSE +"CLSI 2018" "MIC" "Erysipelothrix rhusiopathiae" "Ciprofloxacin" "M45 Table 6" 1 FALSE +"CLSI 2018" "MIC" "Francisella tularensis" "Ciprofloxacin" "M45 Table 16" 0.5 FALSE +"CLSI 2018" "MIC" "Granulicatella" "Ciprofloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Ciprofloxacin" "Table 2E" "5ug" 21 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Ciprofloxacin" "Table 2E" 1 FALSE +"CLSI 2018" "MIC" "Kingella" "Ciprofloxacin" "M45 Table 7" 1 4 FALSE +"CLSI 2018" "MIC" "Moraxella catarrhalis" "Ciprofloxacin" "M45 Table 12" 1 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" "Ciprofloxacin" "Table 2F" "5ug" 41 27 FALSE +"CLSI 2018" "MIC" "Neisseria gonorrhoeae" "Ciprofloxacin" "Table 2F" 0.064 1 FALSE +"CLSI 2018" "DISK" "Neisseria meningitidis" "Ciprofloxacin" "Table 2I" "5ug" 35 32 FALSE +"CLSI 2018" "MIC" "Neisseria meningitidis" "Ciprofloxacin" "Table 2I" 0.032 0.12 FALSE +"CLSI 2018" "DISK" "Plesiomonas" "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE +"CLSI 2018" "MIC" "Plesiomonas" "Ciprofloxacin" "M45 Table 2" 1 4 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" "Ciprofloxacin" "Table 2B-1" "5ug" 21 15 FALSE +"CLSI 2018" "MIC" "Pseudomonas aeruginosa" "Ciprofloxacin" "Table 2B-1" 1 4 FALSE +"CLSI 2018" "DISK" "Extraintestinal" "Salmonella" "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE +"CLSI 2018" "DISK" "Salmonella" "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE +"CLSI 2018" "MIC" "Extraintestinal" "Salmonella" "Ciprofloxacin" "Table 2A" 0.064 1 FALSE +"CLSI 2018" "MIC" "Salmonella" "Ciprofloxacin" "Table 2A" 0.064 1 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Ciprofloxacin" "Table 2C" "5ug" 21 15 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Ciprofloxacin" "Table 2C" 1 4 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Ciprofloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Ciprofloxacin" "Table 2G" "5ug" FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Ciprofloxacin" "Table 2G" FALSE +"CLSI 2018" "MIC" "Yersinia pestis" "Ciprofloxacin" "M45 Table 16" 0.25 FALSE +"CLSI 2018" "MIC" "Anaerosalibacter" "Clindamycin" "Table 2J" 2 8 FALSE +"CLSI 2018" "MIC" "Bacillus" "Clindamycin" "M45 Table 3" 0.5 4 FALSE +"CLSI 2018" "MIC" "Bacillus anthracis" "Clindamycin" "M45 Table 16" FALSE +"CLSI 2018" "MIC" "Erysipelothrix rhusiopathiae" "Clindamycin" "M45 Table 6" 0.25 1 FALSE +"CLSI 2018" "MIC" "Granulicatella" "Clindamycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2018" "MIC" "Lactobacillus" "Clindamycin" "M45 Table 9" 0.5 2 FALSE +"CLSI 2018" "MIC" "Moraxella catarrhalis" "Clindamycin" "M45 Table 12" 0.5 4 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Clindamycin" "Table 2C" "2ug" 21 14 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Clindamycin" "Table 2C" 0.5 4 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Clindamycin" "Table 2H-1" "2ug" 19 15 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Clindamycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Clindamycin" "Table 2H-1" 0.25 1 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Clindamycin" "Table 2G" "2ug" 19 15 FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Clindamycin" "Table 2G" 0.25 1 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" "Clindamycin" "Table 2H-2" "2ug" 19 15 FALSE +"CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Clindamycin" "Table 2H-2" 0.25 1 FALSE +"CLSI 2018" "MIC" "Aggregatibacter" "Clarithromycin" "M45 Table 7" 8 32 FALSE +"CLSI 2018" "MIC" "Cardiobacterium" "Clarithromycin" "M45 Table 7" 8 32 FALSE +"CLSI 2018" "MIC" "Eikenella" "Clarithromycin" "M45 Table 7" 8 32 FALSE +"CLSI 2018" "MIC" "Helicobacter pylori" "Clarithromycin" "M45 Table 8" 0.25 1 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Clarithromycin" "Table 2E" "15ug" 13 10 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Clarithromycin" "Table 2E" 8 32 FALSE +"CLSI 2018" "MIC" "Kingella" "Clarithromycin" "M45 Table 7" 8 32 FALSE +"CLSI 2018" "DISK" "Moraxella catarrhalis" "Clarithromycin" "M45 Table 12" "15ug" 24 FALSE +"CLSI 2018" "MIC" "Moraxella catarrhalis" "Clarithromycin" "M45 Table 12" 1 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Clarithromycin" "Table 2C" "15ug" 18 13 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Clarithromycin" "Table 2C" 2 8 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Clarithromycin" "Table 2H-1" "15ug" 21 16 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Clarithromycin" "Table 2H-1" 0.25 1 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Clarithromycin" "Table 2G" "15ug" 21 16 FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Clarithromycin" "Table 2G" 0.25 1 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" "Clarithromycin" "Table 2H-2" "15ug" 21 16 FALSE +"CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Clarithromycin" "Table 2H-2" 0.25 1 FALSE +"CLSI 2018" "MIC" "Anaerosalibacter" "Cefmetazole" "Table 2J" 16 64 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" "Cefmetazole" "Table 2F" "30ug" 33 27 FALSE +"CLSI 2018" "MIC" "Neisseria gonorrhoeae" "Cefmetazole" "Table 2F" 2 8 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Cefmetazole" "Table 2C" "30ug" 16 12 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Cefmetazole" "Table 2C" 16 64 FALSE +"CLSI 2018" "DISK" "Acinetobacter" "Colistin" "Table 2B-2" "10ug" FALSE +"CLSI 2018" "MIC" "Acinetobacter" "Colistin" "Table 2B-2" 2 4 FALSE +"CLSI 2018" "MIC" "Pseudomonas aeruginosa" "Colistin" "Table 2B-1" 2 4 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Cefpodoxime" "Table 2E" "10ug" 21 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Cefpodoxime" "Table 2E" 2 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" "Cefpodoxime" "Table 2F" "10ug" 29 FALSE +"CLSI 2018" "MIC" "Neisseria gonorrhoeae" "Cefpodoxime" "Table 2F" 0.5 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Cefpodoxime" "Table 2C" "10ug" 21 17 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Cefpodoxime" "Table 2C" 2 8 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Cefpodoxime" "Table 2G" "10ug" FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Cefpodoxime" "Table 2G" 0.5 2 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Cefprozil" "Table 2E" "30ug" 18 14 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Cefprozil" "Table 2E" 8 32 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Cefprozil" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Cefprozil" "Table 2C" 8 32 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Cefprozil" "Table 2G" "30ug" FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Cefprozil" "Table 2G" 2 8 FALSE +"CLSI 2018" "DISK" "Haemophilus influenzae" "Ceftaroline" "Table 2E" "30ug" 30 FALSE +"CLSI 2018" "MIC" "Haemophilus influenzae" "Ceftaroline" "Table 2E" 0.5 FALSE +"CLSI 2018" "DISK" "Staphylococcus aureus" "Ceftaroline" "Table 2C" "30ug" 24 20 FALSE +"CLSI 2018" "MIC" "Staphylococcus aureus" "Ceftaroline" "Table 2C" 1 4 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Ceftaroline" "Table 2H-1" "30ug" 26 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Ceftaroline" "Table 2H-1" 0.5 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Ceftaroline" "Table 2G" "30ug" FALSE +"CLSI 2018" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Ceftaroline" "Table 2G" 0.5 FALSE +"CLSI 2018" "DISK" "Acinetobacter" "Ceftriaxone" "Table 2B-2" "30ug" 21 13 FALSE +"CLSI 2018" "MIC" "Acinetobacter" "Ceftriaxone" "Table 2B-2" 8 64 FALSE +"CLSI 2018" "DISK" "Aeromonas" "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE +"CLSI 2018" "MIC" "Aeromonas" "Ceftriaxone" "M45 Table 2" 1 4 FALSE +"CLSI 2018" "MIC" "Aggregatibacter" "Ceftriaxone" "M45 Table 7" 2 FALSE +"CLSI 2018" "MIC" "Anaerosalibacter" "Ceftriaxone" "Table 2J" 16 64 FALSE +"CLSI 2018" "MIC" "Bacillus" "Ceftriaxone" "M45 Table 3" 8 64 FALSE +"CLSI 2018" "MIC" "Bacillus anthracis" "Ceftriaxone" "M45 Table 16" FALSE +"CLSI 2018" "MIC" "Cardiobacterium" "Ceftriaxone" "M45 Table 7" 2 FALSE +"CLSI 2018" "MIC" "Eikenella" "Ceftriaxone" "M45 Table 7" 2 FALSE +"CLSI 2018" "MIC" "Erysipelothrix rhusiopathiae" "Ceftriaxone" "M45 Table 6" 1 FALSE +"CLSI 2018" "MIC" "Granulicatella" "Ceftriaxone" "M45 Table 1" 1 4 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Ceftriaxone" "Table 2E" "30ug" 26 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Ceftriaxone" "Table 2E" 2 FALSE +"CLSI 2018" "MIC" "Kingella" "Ceftriaxone" "M45 Table 7" 2 FALSE +"CLSI 2018" "MIC" "Moraxella catarrhalis" "Ceftriaxone" "M45 Table 12" 2 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" "Ceftriaxone" "Table 2F" "30ug" 35 FALSE +"CLSI 2018" "MIC" "Neisseria gonorrhoeae" "Ceftriaxone" "Table 2F" 0.25 FALSE +"CLSI 2018" "DISK" "Neisseria meningitidis" "Ceftriaxone" "Table 2I" "30ug" 34 FALSE +"CLSI 2018" "MIC" "Neisseria meningitidis" "Ceftriaxone" "Table 2I" 0.125 FALSE +"CLSI 2018" "DISK" "Plesiomonas" "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE +"CLSI 2018" "MIC" "Plesiomonas" "Ceftriaxone" "M45 Table 2" 1 4 FALSE +"CLSI 2018" "DISK" "Pasteurella" "Ceftriaxone" "M45 Table 13" "30ug" 34 FALSE +"CLSI 2018" "MIC" "Pasteurella" "Ceftriaxone" "M45 Table 13" 0.125 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Ceftriaxone" "Table 2C" "30ug" 21 13 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Ceftriaxone" "Table 2C" 8 64 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Ceftriaxone" "Table 2H-1" "30ug" 24 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Ceftriaxone" "M45 Table 1" 1 4 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Ceftriaxone" "Table 2H-1" 0.5 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Ceftriaxone" "Table 2G" "30ug" FALSE +"CLSI 2018" "MIC" "Meningitis" "Streptococcus pneumoniae" "Ceftriaxone" "Table 2G" 0.5 2 FALSE +"CLSI 2018" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Ceftriaxone" "Table 2G" 1 4 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" "Table 2H-2" "30ug" 27 24 FALSE +"CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" "Table 2H-2" 1 4 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Ceftibuten" "Table 2E" "30ug" 28 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Ceftibuten" "Table 2E" 2 FALSE +"CLSI 2018" "MIC" "Anaerosalibacter" "Cefotetan" "Table 2J" 16 64 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" "Cefotetan" "Table 2F" "30ug" 26 19 FALSE +"CLSI 2018" "MIC" "Neisseria gonorrhoeae" "Cefotetan" "Table 2F" 2 8 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Cefotetan" "Table 2C" "30ug" 16 12 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Cefotetan" "Table 2C" 16 64 FALSE +"CLSI 2018" "DISK" "Acinetobacter" "Cefotaxime" "Table 2B-2" "30ug" 23 14 FALSE +"CLSI 2018" "MIC" "Acinetobacter" "Cefotaxime" "Table 2B-2" 8 64 FALSE +"CLSI 2018" "DISK" "Aeromonas" "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE +"CLSI 2018" "MIC" "Aeromonas" "Cefotaxime" "M45 Table 2" 1 4 FALSE +"CLSI 2018" "MIC" "Aggregatibacter" "Cefotaxime" "M45 Table 7" 2 FALSE +"CLSI 2018" "MIC" "Anaerosalibacter" "Cefotaxime" "Table 2J" 16 64 FALSE +"CLSI 2018" "MIC" "Bacillus" "Cefotaxime" "M45 Table 3" 8 64 FALSE +"CLSI 2018" "MIC" "Bacillus anthracis" "Cefotaxime" "M45 Table 16" FALSE +"CLSI 2018" "MIC" "Cardiobacterium" "Cefotaxime" "M45 Table 7" 2 FALSE +"CLSI 2018" "MIC" "Eikenella" "Cefotaxime" "M45 Table 7" 2 FALSE +"CLSI 2018" "MIC" "Erysipelothrix rhusiopathiae" "Cefotaxime" "M45 Table 6" 1 FALSE +"CLSI 2018" "MIC" "Granulicatella" "Cefotaxime" "M45 Table 1" 1 4 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Cefotaxime" "Table 2E" "30ug" 26 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Cefotaxime" "Table 2E" 2 FALSE +"CLSI 2018" "MIC" "Kingella" "Cefotaxime" "M45 Table 7" 2 FALSE +"CLSI 2018" "MIC" "Moraxella catarrhalis" "Cefotaxime" "M45 Table 12" 2 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" "Cefotaxime" "Table 2F" "30ug" 31 FALSE +"CLSI 2018" "MIC" "Neisseria gonorrhoeae" "Cefotaxime" "Table 2F" 0.5 FALSE +"CLSI 2018" "DISK" "Neisseria meningitidis" "Cefotaxime" "Table 2I" "30ug" 34 FALSE +"CLSI 2018" "MIC" "Neisseria meningitidis" "Cefotaxime" "Table 2I" 0.125 FALSE +"CLSI 2018" "DISK" "Plesiomonas" "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE +"CLSI 2018" "MIC" "Plesiomonas" "Cefotaxime" "M45 Table 2" 1 4 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Cefotaxime" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Cefotaxime" "Table 2C" 8 64 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Cefotaxime" "Table 2H-1" "30ug" 24 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Cefotaxime" "M45 Table 1" 1 4 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Cefotaxime" "Table 2H-1" 0.5 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Cefotaxime" "Table 2G" "30ug" FALSE +"CLSI 2018" "MIC" "Meningitis" "Streptococcus pneumoniae" "Cefotaxime" "Table 2G" 0.5 2 FALSE +"CLSI 2018" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Cefotaxime" "Table 2G" 1 4 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" "Cefotaxime" "Table 2H-2" "30ug" 28 25 FALSE +"CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Cefotaxime" "Table 2H-2" 1 4 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Cefuroxime axetil" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Cefuroxime axetil" "Table 2E" 4 16 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Cefuroxime axetil" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Cefuroxime axetil" "Table 2C" 4 32 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Cefuroxime axetil" "Table 2G" "30ug" FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Cefuroxime axetil" "Table 2G" 1 4 FALSE +"CLSI 2018" "DISK" "Aeromonas" "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2018" "MIC" "Aeromonas" "Cefuroxime" "M45 Table 2" 8 32 FALSE +"CLSI 2018" "DISK" "Oral" "Haemophilus" "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2018" "MIC" "Oral" "Haemophilus" "Cefuroxime" "Table 2E" 4 16 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Cefuroxime" "Table 2E" 4 16 FALSE +"CLSI 2018" "MIC" "Moraxella catarrhalis" "Cefuroxime" "M45 Table 12" 4 16 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" "Cefuroxime" "Table 2F" "30ug" 31 25 FALSE +"CLSI 2018" "MIC" "Neisseria gonorrhoeae" "Cefuroxime" "Table 2F" 1 4 FALSE +"CLSI 2018" "DISK" "Plesiomonas" "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2018" "MIC" "Plesiomonas" "Cefuroxime" "M45 Table 2" 8 32 FALSE +"CLSI 2018" "DISK" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2018" "DISK" "Parenteral" "Staphylococcus" "Cefuroxime" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2018" "DISK" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2018" "MIC" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" 4 32 FALSE +"CLSI 2018" "MIC" "Intravenous" "Staphylococcus" "Cefuroxime" "Table 2C" 8 32 FALSE +"CLSI 2018" "MIC" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" 4 32 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Cefuroxime" "Table 2H-1" "30ug" FALSE +"CLSI 2018" "MIC" "Streptococcus" "Cefuroxime" "Table 2H-1" FALSE +"CLSI 2018" "DISK" "Oral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" "30ug" FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" "30ug" FALSE +"CLSI 2018" "MIC" "Oral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" 1 4 FALSE +"CLSI 2018" "MIC" "Parenteral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" 0.5 2 FALSE +"CLSI 2018" "MIC" "Oral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" 1 4 FALSE +"CLSI 2018" "MIC" "Pseudomonas aeruginosa" "Ceftazidime/avibactam" "Table 2B-1" 8 16 FALSE +"CLSI 2018" "DISK" "Urine" "Enterobacteriaceae" "Cefazolin" "Table 2A" 15 14 FALSE +"CLSI 2018" "MIC" "Urine" "Enterobacteriaceae" "Cefazolin" "Table 2A" 16 32 FALSE +"CLSI 2018" "MIC" "Aeromonas" "Cefazolin" "M45 Table 2" 1 4 FALSE +"CLSI 2018" "MIC" "Bacillus" "Cefazolin" "M45 Table 3" 8 16 FALSE +"CLSI 2018" "MIC" "Bacillus anthracis" "Cefazolin" "M45 Table 16" FALSE +"CLSI 2018" "MIC" "Plesiomonas" "Cefazolin" "M45 Table 2" 1 4 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Cefazolin" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Cefazolin" "Table 2C" 8 32 FALSE +"CLSI 2018" "MIC" "Pseudomonas aeruginosa" "Ceftolozane/tazobactam" 4 16 FALSE +"CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Ceftolozane/tazobactam" "Table 2H-2" 8 32 FALSE +"CLSI 2018" "MIC" "Anaerosalibacter" "Ceftizoxime" "Table 2J" 32 128 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Ceftizoxime" "Table 2E" "30ug" 26 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Ceftizoxime" "Table 2E" 2 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" "Ceftizoxime" "Table 2F" "30ug" 38 FALSE +"CLSI 2018" "MIC" "Neisseria gonorrhoeae" "Ceftizoxime" "Table 2F" 0.5 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Ceftizoxime" "Table 2C" "30ug" 20 14 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Ceftizoxime" "Table 2C" 8 64 FALSE +"CLSI 2018" "MIC" "Enterococcus faecalis" "Dalbavancin" "Table 2D" 0.25 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Dalbavancin" "Table 2C" 0.25 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Dalbavancin" "Table 2H-1" 0.25 FALSE +"CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Dalbavancin" "Table 2H-2" 0.25 FALSE +"CLSI 2018" "DISK" "Enterococcus" "Daptomycin" "Table 2D" "30ug" FALSE +"CLSI 2018" "MIC" "Enterococcus" "Daptomycin" "Table 2D" 4 FALSE +"CLSI 2018" "MIC" "Lactobacillus" "Daptomycin" "M45 Table 9" 4 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Daptomycin" "Table 2C" "30ug" FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Daptomycin" "Table 2C" 1 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Daptomycin" "Table 2H-1" "30ug" 16 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Daptomycin" "Table 2H-1" FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Daptomycin" "Table 2G" "30ug" FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" "Daptomycin" "Table 2H-2" "30ug" FALSE +"CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Daptomycin" "Table 2H-2" 1 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Dirithromycin" "Table 2C" "15ug" 19 15 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Dirithromycin" "Table 2C" 2 8 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Dirithromycin" "Table 2H-1" "15ug" 18 13 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Dirithromycin" "Table 2H-1" 0.5 2 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Dirithromycin" "Table 2G" "15ug" 18 13 FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Dirithromycin" "Table 2G" 0.5 2 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" "Dirithromycin" "Table 2H-2" "15ug" 18 13 FALSE +"CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Dirithromycin" "Table 2H-2" 0.5 2 FALSE +"CLSI 2018" "DISK" "Acinetobacter" "Doripenem" "Table 2B-2" 18 14 FALSE +"CLSI 2018" "MIC" "Acinetobacter" "Doripenem" "Table 2B-2" 2 8 FALSE +"CLSI 2018" "MIC" "Anaerosalibacter" "Doripenem" "Table 2J" 2 8 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Doripenem" "Table 2E" "10ug" 16 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Doripenem" "Table 2E" 1 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" "Doripenem" "Table 2B-1" "10ug" 19 15 FALSE +"CLSI 2018" "MIC" "Pseudomonas aeruginosa" "Doripenem" "Table 2B-1" 2 8 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Doripenem" "Table 2C" "10ug" 30 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Doripenem" "Table 2C" 0.5 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Doripenem" "Table 2H-1" "10ug" FALSE +"CLSI 2018" "MIC" "Streptococcus" "Doripenem" "Table 2H-1" 0.125 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Doripenem" "Table 2G" "10ug" FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Doripenem" "Table 2G" 1 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" "Doripenem" "Table 2H-2" "10ug" FALSE +"CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Doripenem" "Table 2H-2" 1 FALSE +"CLSI 2018" "DISK" "Acinetobacter" "Doxycycline" "Table 2B-2" "30ug" 13 9 FALSE +"CLSI 2018" "MIC" "Acinetobacter" "Doxycycline" "Table 2B-2" 4 16 FALSE +"CLSI 2018" "MIC" "Bacillus anthracis" "Doxycycline" "M45 Table 16" 1 FALSE +"CLSI 2018" "MIC" "Brucella" "Doxycycline" "M45 Table 16" 1 FALSE +"CLSI 2018" "MIC" "Burkholderia mallei" "Doxycycline" "M45 Table 16" 4 16 FALSE +"CLSI 2018" "MIC" "Burkholderia pseudomallei" "Doxycycline" "M45 Table 16" 4 16 FALSE +"CLSI 2018" "MIC" "Campylobacter" "Doxycycline" "M45 Table 3" 2 8 FALSE +"CLSI 2018" "DISK" "Enterococcus" "Doxycycline" "Table 2D" "30ug" 16 12 FALSE +"CLSI 2018" "MIC" "Enterococcus" "Doxycycline" "Table 2D" 4 16 FALSE +"CLSI 2018" "MIC" "Francisella tularensis" "Doxycycline" "M45 Table 16" 4 FALSE +"CLSI 2018" "DISK" "Pasteurella" "Doxycycline" "M45 Table 13" "30ug" 23 FALSE +"CLSI 2018" "MIC" "Pasteurella" "Doxycycline" "M45 Table 13" 0.5 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Doxycycline" "Table 2C" "30ug" 16 12 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Doxycycline" "Table 2C" 4 16 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Doxycycline" "Table 2G" "30ug" 28 24 FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Doxycycline" "Table 2G" 0.25 1 FALSE +"CLSI 2018" "MIC" "Vibrio cholerae" "Doxycycline" "M45 Table 14" "30ug" 4 16 FALSE +"CLSI 2018" "MIC" "Yersinia pestis" "Doxycycline" "M45 Table 16" 4 16 FALSE +"CLSI 2018" "MIC" "Canine, feline" "Alloscardovia" "Enrofloxacin" "Vet Table" 0.5 4 FALSE +"CLSI 2018" "DISK" "Histophilus somni" "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2018" "MIC" "Histophilus somni" "Enrofloxacin" "Vet Table" 0.25 2 FALSE +"CLSI 2018" "DISK" "Providencia heimbachae" "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2018" "DISK" "Pasteurella multocida" "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" "Enoxacin" "Table 2F" "10ug" 36 31 FALSE +"CLSI 2018" "MIC" "Neisseria gonorrhoeae" "Enoxacin" "Table 2F" 0.5 2 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Enoxacin" "Table 2C" "10ug" 18 14 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Enoxacin" "Table 2C" 2 8 FALSE +"CLSI 2018" "MIC" "Bacillus" "Erythromycin" "M45 Table 3" 0.5 8 FALSE +"CLSI 2018" "MIC" "Bacillus anthracis" "Erythromycin" "M45 Table 16" FALSE +"CLSI 2018" "MIC" "Campylobacter" "Erythromycin" "M45 Table 3" 8 32 FALSE +"CLSI 2018" "DISK" "Enterococcus" "Erythromycin" "Table 2D" "15ug" 23 13 FALSE +"CLSI 2018" "MIC" "Enterococcus" "Erythromycin" "Table 2D" 0.5 8 FALSE +"CLSI 2018" "MIC" "Erysipelothrix rhusiopathiae" "Erythromycin" "M45 Table 6" 0.25 1 FALSE +"CLSI 2018" "MIC" "Granulicatella" "Erythromycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2018" "MIC" "Lactobacillus" "Erythromycin" "M45 Table 9" 0.5 8 FALSE +"CLSI 2018" "DISK" "Moraxella catarrhalis" "Erythromycin" "M45 Table 12" "15ug" 21 FALSE +"CLSI 2018" "MIC" "Moraxella catarrhalis" "Erythromycin" "M45 Table 12" 2 FALSE +"CLSI 2018" "DISK" "Pasteurella" "Erythromycin" "M45 Table 13" "15ug" 27 24 FALSE +"CLSI 2018" "MIC" "Pasteurella" "Erythromycin" "M45 Table 13" 0.5 2 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Erythromycin" "Table 2C" "15ug" 23 13 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Erythromycin" "Table 2C" 0.5 8 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Erythromycin" "Table 2H-1" "15ug" 21 15 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Erythromycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Erythromycin" "Table 2H-1" 0.25 1 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Erythromycin" "Table 2G" "15ug" 21 15 FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Erythromycin" "Table 2G" 0.25 1 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" "Erythromycin" "Table 2H-2" "15ug" 21 15 FALSE +"CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Erythromycin" "Table 2H-2" 0.25 1 FALSE +"CLSI 2018" "DISK" "Acinetobacter" "Ertapenem" "Table 2B-2" "10ug" FALSE +"CLSI 2018" "MIC" "Acinetobacter" "Ertapenem" "Table 2B-2" FALSE +"CLSI 2018" "DISK" "Aeromonas" "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE +"CLSI 2018" "MIC" "Aeromonas" "Ertapenem" "M45 Table 2" 2 8 FALSE +"CLSI 2018" "MIC" "Anaerosalibacter" "Ertapenem" "Table 2J" 4 16 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Ertapenem" "Table 2E" "10ug" 19 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Ertapenem" "Table 2E" 0.5 FALSE +"CLSI 2018" "DISK" "Plesiomonas" "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE +"CLSI 2018" "MIC" "Plesiomonas" "Ertapenem" "M45 Table 2" 2 8 FALSE +"CLSI 2018" "DISK" "Pseudomonas" "Ertapenem" "10ug" FALSE +"CLSI 2018" "MIC" "Pseudomonas" "Ertapenem" FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Ertapenem" "Table 2C" "10ug" 19 15 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Ertapenem" "Table 2C" 2 8 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Ertapenem" "Table 2H-1" "10ug" FALSE +"CLSI 2018" "MIC" "Streptococcus" "Ertapenem" "Table 2H-1" 1 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Ertapenem" "Table 2G" "10ug" FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Ertapenem" "Table 2G" 1 4 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" "Ertapenem" "Table 2H-2" "10ug" FALSE +"CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Ertapenem" "Table 2H-2" 1 FALSE +"CLSI 2018" "MIC" "Abiotrophia" "Cefepime" "M45 Table 1" 1 4 FALSE +"CLSI 2018" "DISK" "Acinetobacter" "Cefepime" "Table 2B-2" "30ug" 18 14 FALSE +"CLSI 2018" "MIC" "Acinetobacter" "Cefepime" "Table 2B-2" 8 32 FALSE +"CLSI 2018" "DISK" "Aeromonas" "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2018" "MIC" "Aeromonas" "Cefepime" "M45 Table 2" 8 32 FALSE +"CLSI 2018" "MIC" "Erysipelothrix rhusiopathiae" "Cefepime" "M45 Table 6" 1 FALSE +"CLSI 2018" "MIC" "Granulicatella" "Cefepime" "M45 Table 1" 1 4 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Cefepime" "Table 2E" "30ug" 26 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Cefepime" "Table 2E" 2 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" "Cefepime" "Table 2F" "30ug" 31 FALSE +"CLSI 2018" "MIC" "Neisseria gonorrhoeae" "Cefepime" "Table 2F" 0.5 FALSE +"CLSI 2018" "DISK" "Plesiomonas" "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2018" "MIC" "Plesiomonas" "Cefepime" "M45 Table 2" 8 32 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" "Cefepime" "Table 2B-1" "30ug" 18 14 FALSE +"CLSI 2018" "MIC" "Pseudomonas aeruginosa" "Cefepime" "Table 2B-1" 8 32 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Cefepime" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Cefepime" "Table 2C" 8 32 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Cefepime" "Table 2H-1" "30ug" 24 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Cefepime" "M45 Table 1" 1 4 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Cefepime" "Table 2H-1" 0.5 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Cefepime" "Table 2G" "30ug" FALSE +"CLSI 2018" "MIC" "Meningitis" "Streptococcus pneumoniae" "Cefepime" "Table 2G" 0.5 2 FALSE +"CLSI 2018" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Cefepime" "Table 2G" 1 4 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" "Cefepime" "Table 2H-2" "30ug" 24 21 FALSE +"CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Cefepime" "Table 2H-2" 1 4 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Fleroxacin" "Table 2E" "5ug" 19 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Fleroxacin" "Table 2E" 2 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" "Fleroxacin" "Table 2F" "5ug" 35 28 FALSE +"CLSI 2018" "MIC" "Neisseria gonorrhoeae" "Fleroxacin" "Table 2F" 0.25 1 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Fleroxacin" "Table 2C" "5ug" 19 15 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Fleroxacin" "Table 2C" 2 8 FALSE +"CLSI 2018" "DISK" "Enterococcus" "Fosfomycin" "Table 2D" "200ug" 16 12 FALSE +"CLSI 2018" "MIC" "Enterococcus" "Fosfomycin" "Table 2D" 64 256 FALSE +"CLSI 2018" "DISK" "Aeromonas" "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2018" "MIC" "Aeromonas" "Cefoxitin" "M45 Table 2" 8 32 FALSE +"CLSI 2018" "MIC" "Anaerosalibacter" "Cefoxitin" "Table 2J" 16 64 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" "Cefoxitin" "Table 2F" "30ug" 28 23 FALSE +"CLSI 2018" "MIC" "Neisseria gonorrhoeae" "Cefoxitin" "Table 2F" 2 8 FALSE +"CLSI 2018" "DISK" "Plesiomonas" "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2018" "MIC" "Plesiomonas" "Cefoxitin" "M45 Table 2" 8 32 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Cefoxitin" "Table 2C" "30ug" 25 24 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Cefoxitin" "Table 2C" 4 8 FALSE +"CLSI 2018" "DISK" "Staphylococcus aureus" "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE +"CLSI 2018" "MIC" "Staphylococcus aureus" "Cefoxitin" "Table 2C" 4 8 FALSE +"CLSI 2018" "DISK" "Staphylococcus lugdunensis" "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE +"CLSI 2018" "MIC" "Staphylococcus lugdunensis" "Cefoxitin" "Table 2C" 4 8 FALSE +"CLSI 2018" "MIC" "Abiotrophia" "Gatifloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2018" "DISK" "Acinetobacter" "Gatifloxacin" "Table 2B-2" "5ug" 18 14 FALSE +"CLSI 2018" "MIC" "Acinetobacter" "Gatifloxacin" "Table 2B-2" 2 8 FALSE +"CLSI 2018" "DISK" "Enterococcus" "Gatifloxacin" "Table 2D" "5ug" 18 14 FALSE +"CLSI 2018" "MIC" "Enterococcus" "Gatifloxacin" "Table 2D" 2 8 FALSE +"CLSI 2018" "MIC" "Granulicatella" "Gatifloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Gatifloxacin" "Table 2E" "5ug" 18 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Gatifloxacin" "Table 2E" 1 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" "Gatifloxacin" "Table 2F" "5ug" 38 33 FALSE +"CLSI 2018" "MIC" "Neisseria gonorrhoeae" "Gatifloxacin" "Table 2F" 0.125 0.5 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" "Gatifloxacin" "Table 2B-1" "5ug" 18 14 FALSE +"CLSI 2018" "MIC" "Pseudomonas aeruginosa" "Gatifloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Gatifloxacin" "Table 2C" "10ug" 23 19 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Gatifloxacin" "Table 2C" 0.5 2 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Gatifloxacin" "Table 2H-1" "5ug" 21 17 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Gatifloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Gatifloxacin" "Table 2H-1" 1 4 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Gatifloxacin" "Table 2G" "5ug" 21 17 FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Gatifloxacin" "Table 2G" 1 4 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" "Gatifloxacin" "Table 2H-2" "5ug" 21 17 FALSE +"CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Gatifloxacin" "Table 2H-2" 1 4 FALSE +"CLSI 2018" "DISK" "Enterococcus" "Gentamicin-high" "Table 2D" "120ug" 10 6 FALSE +"CLSI 2018" "MIC" "Enterococcus" "Gentamicin-high" "Table 2D" 512 512 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Gemifloxacin" "Table 2E" "5ug" 18 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Gemifloxacin" "Table 2E" 0.125 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Gemifloxacin" "Table 2H-1" "5ug" FALSE +"CLSI 2018" "MIC" "Streptococcus" "Gemifloxacin" "Table 2H-1" FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Gemifloxacin" "Table 2G" "5ug" 23 19 FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Gemifloxacin" "Table 2G" 0.125 0.5 FALSE +"CLSI 2018" "DISK" "Acinetobacter" "Gentamicin" "Table 2B-2" "10ug" 15 12 FALSE +"CLSI 2018" "MIC" "Acinetobacter" "Gentamicin" "Table 2B-2" 4 16 FALSE +"CLSI 2018" "DISK" "Aeromonas" "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE +"CLSI 2018" "MIC" "Aeromonas" "Gentamicin" "M45 Table 2" 4 16 FALSE +"CLSI 2018" "MIC" "Bacillus" "Gentamicin" "M45 Table 3" 4 16 FALSE +"CLSI 2018" "MIC" "Bacillus anthracis" "Gentamicin" "M45 Table 16" FALSE +"CLSI 2018" "MIC" "Brucella" "Gentamicin" "M45 Table 16" 4 FALSE +"CLSI 2018" "MIC" "Enterococcus" "Gentamicin" "Table 2D" 512 512 FALSE +"CLSI 2018" "MIC" "Francisella tularensis" "Gentamicin" "M45 Table 16" 4 FALSE +"CLSI 2018" "MIC" "Leuconostoc" "Gentamicin" "M45 Table 10" 4 16 FALSE +"CLSI 2018" "MIC" "Lactobacillus" "Gentamicin" "M45 Table 9" 4 16 FALSE +"CLSI 2018" "MIC" "Pediococcus" "Gentamicin" "M45 Table 14" 4 16 FALSE +"CLSI 2018" "DISK" "Plesiomonas" "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE +"CLSI 2018" "MIC" "Plesiomonas" "Gentamicin" "M45 Table 2" 4 16 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" "Gentamicin" "Table 2B-1" "10ug" 15 12 FALSE +"CLSI 2018" "MIC" "Pseudomonas aeruginosa" "Gentamicin" "Table 2B-1" 4 16 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Gentamicin" "Table 2C" "10ug" 15 12 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Gentamicin" "Table 2C" 4 16 FALSE +"CLSI 2018" "MIC" "Yersinia pestis" "Gentamicin" "M45 Table 16" 4 16 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Grepafloxacin" "Table 2E" "5ug" 24 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Grepafloxacin" "Table 2E" 0.5 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" "Grepafloxacin" "Table 2F" "5ug" 37 27 FALSE +"CLSI 2018" "MIC" "Neisseria gonorrhoeae" "Grepafloxacin" "Table 2F" 0.064 1 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Grepafloxacin" "Table 2C" "5ug" 18 14 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Grepafloxacin" "Table 2C" 1 4 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Grepafloxacin" "Table 2H-1" "5ug" 19 15 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Grepafloxacin" "Table 2H-1" 0.5 2 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Grepafloxacin" "Table 2G" "5ug" 19 15 FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Grepafloxacin" "Table 2G" 0.5 2 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" "Grepafloxacin" "Table 2H-2" "5ug" 19 15 FALSE +"CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Grepafloxacin" "Table 2H-2" 0.5 2 FALSE +"CLSI 2018" "MIC" "Abiotrophia" "Imipenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2018" "DISK" "Acinetobacter" "Imipenem" "Table 2B-2" "10ug" 22 18 FALSE +"CLSI 2018" "MIC" "Acinetobacter" "Imipenem" "Table 2B-2" 2 8 FALSE +"CLSI 2018" "DISK" "Aeromonas" "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2018" "MIC" "Aeromonas" "Imipenem" "M45 Table 2" 4 16 FALSE +"CLSI 2018" "MIC" "Aggregatibacter" "Imipenem" "M45 Table 7" 4 16 FALSE +"CLSI 2018" "MIC" "Anaerosalibacter" "Imipenem" "Table 2J" 4 16 FALSE +"CLSI 2018" "MIC" "Bacillus" "Imipenem" "M45 Table 3" 4 16 FALSE +"CLSI 2018" "MIC" "Bacillus anthracis" "Imipenem" "M45 Table 16" FALSE +"CLSI 2018" "MIC" "Burkholderia mallei" "Imipenem" "M45 Table 16" 4 16 FALSE +"CLSI 2018" "MIC" "Burkholderia pseudomallei" "Imipenem" "M45 Table 16" 4 16 FALSE +"CLSI 2018" "MIC" "Cardiobacterium" "Imipenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2018" "MIC" "Eikenella" "Imipenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2018" "MIC" "Erysipelothrix rhusiopathiae" "Imipenem" "M45 Table 6" 0.5 FALSE +"CLSI 2018" "MIC" "Granulicatella" "Imipenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Imipenem" "Table 2E" "10ug" 16 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Imipenem" "Table 2E" 4 FALSE +"CLSI 2018" "MIC" "Kingella" "Imipenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2018" "MIC" "Lactobacillus" "Imipenem" "M45 Table 9" 0.5 2 FALSE +"CLSI 2018" "MIC" "Pediococcus" "Imipenem" "M45 Table 14" 0.5 FALSE +"CLSI 2018" "DISK" "Plesiomonas" "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2018" "MIC" "Plesiomonas" "Imipenem" "M45 Table 2" 4 16 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" "Imipenem" "Table 2B-1" "10ug" 19 15 FALSE +"CLSI 2018" "MIC" "Pseudomonas aeruginosa" "Imipenem" "Table 2B-1" 2 8 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Imipenem" "Table 2C" "10ug" 16 13 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Imipenem" "Table 2C" 4 16 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Imipenem" "Table 2H-1" "10ug" FALSE +"CLSI 2018" "MIC" "Streptococcus" "Imipenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Imipenem" "Table 2H-1" FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Imipenem" "Table 2G" "10ug" FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Imipenem" "Table 2G" 0.125 1 FALSE +"CLSI 2018" "DISK" "Enterococcus" "Linezolid" "Table 2D" "30ug" 23 20 FALSE +"CLSI 2018" "MIC" "Enterococcus" "Linezolid" "Table 2D" 2 8 FALSE +"CLSI 2018" "MIC" "Lactobacillus" "Linezolid" "M45 Table 9" 4 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Linezolid" "Table 2C" "30ug" 21 20 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Linezolid" "Table 2C" 4 8 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Linezolid" "Table 2H-1" "30ug" 21 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Linezolid" "Table 2H-1" 2 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Linezolid" "Table 2G" "30ug" 21 FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Linezolid" "Table 2G" 2 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" "Linezolid" "Table 2H-2" "30ug" 21 FALSE +"CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Linezolid" "Table 2H-2" 2 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Lomefloxacin" "Table 2E" "10ug" 22 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Lomefloxacin" "Table 2E" 2 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" "Lomefloxacin" "Table 2F" "10ug" 38 26 FALSE +"CLSI 2018" "MIC" "Neisseria gonorrhoeae" "Lomefloxacin" "Table 2F" 0.125 2 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" "Lomefloxacin" "Table 2B-1" "10ug" 22 18 FALSE +"CLSI 2018" "MIC" "Pseudomonas aeruginosa" "Lomefloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Lomefloxacin" "Table 2C" "10ug" 22 18 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Lomefloxacin" "Table 2C" 2 8 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Loracarbef" "Table 2E" "30ug" 19 15 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Loracarbef" "Table 2E" 8 32 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Loracarbef" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Loracarbef" "Table 2C" 8 32 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Loracarbef" "Table 2G" "30ug" FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Loracarbef" "Table 2G" 2 8 FALSE +"CLSI 2018" "MIC" "Anaerosalibacter" "Latamoxef" "Table 2J" 2 8 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Latamoxef" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Latamoxef" "Table 2C" 8 64 FALSE +"CLSI 2018" "MIC" "Abiotrophia" "Levofloxacin" "M45 Table 1" 2 8 FALSE +"CLSI 2018" "DISK" "Acinetobacter" "Levofloxacin" "Table 2B-2" "5ug" 17 13 FALSE +"CLSI 2018" "MIC" "Acinetobacter" "Levofloxacin" "Table 2B-2" 2 8 FALSE +"CLSI 2018" "DISK" "Aeromonas" "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE +"CLSI 2018" "MIC" "Aeromonas" "Levofloxacin" "M45 Table 2" 2 8 FALSE +"CLSI 2018" "MIC" "Aggregatibacter" "Levofloxacin" "M45 Table 7" 2 8 FALSE +"CLSI 2018" "MIC" "Bacillus" "Levofloxacin" "M45 Table 3" 2 8 FALSE +"CLSI 2018" "MIC" "Bacillus anthracis" "Levofloxacin" "M45 Table 16" 0.25 FALSE +"CLSI 2018" "DISK" "Burkholderia cepacia" "Levofloxacin" "Table 2B-3" "5ug" FALSE +"CLSI 2018" "DISK" "Burkholderia cepacia" "Levofloxacin" "Table 2B-3" "5ug" FALSE +"CLSI 2018" "MIC" "Burkholderia cepacia" "Levofloxacin" "Table 2B-3" 2 8 FALSE +"CLSI 2018" "MIC" "Burkholderia cepacia" "Levofloxacin" "Table 2B-3" 2 8 FALSE +"CLSI 2018" "MIC" "Cardiobacterium" "Levofloxacin" "M45 Table 7" 2 8 FALSE +"CLSI 2018" "MIC" "Eikenella" "Levofloxacin" "M45 Table 7" 2 8 FALSE +"CLSI 2018" "DISK" "Enterococcus" "Levofloxacin" "Table 2D" "5ug" 17 13 FALSE +"CLSI 2018" "MIC" "Enterococcus" "Levofloxacin" "Table 2D" 2 8 FALSE +"CLSI 2018" "MIC" "Erysipelothrix rhusiopathiae" "Levofloxacin" "M45 Table 6" 2 FALSE +"CLSI 2018" "MIC" "Francisella tularensis" "Levofloxacin" "M45 Table 16" 0.5 FALSE +"CLSI 2018" "MIC" "Granulicatella" "Levofloxacin" "M45 Table 1" 2 8 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Levofloxacin" "Table 2E" "5ug" 17 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Levofloxacin" "Table 2E" 2 FALSE +"CLSI 2018" "MIC" "Kingella" "Levofloxacin" "M45 Table 7" 2 8 FALSE +"CLSI 2018" "MIC" "Moraxella catarrhalis" "Levofloxacin" "M45 Table 12" 2 FALSE +"CLSI 2018" "DISK" "Neisseria meningitidis" "Levofloxacin" "Table 2I" "5ug" FALSE +"CLSI 2018" "MIC" "Neisseria meningitidis" "Levofloxacin" "Table 2I" 0.032 0.12 FALSE +"CLSI 2018" "DISK" "Plesiomonas" "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE +"CLSI 2018" "MIC" "Plesiomonas" "Levofloxacin" "M45 Table 2" 2 8 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" "Levofloxacin" "Table 2B-1" "5ug" 17 13 FALSE +"CLSI 2018" "MIC" "Pseudomonas aeruginosa" "Levofloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2018" "DISK" "Pasteurella" "Levofloxacin" "M45 Table 13" "5ug" 28 FALSE +"CLSI 2018" "MIC" "Pasteurella" "Levofloxacin" "M45 Table 13" 0.064 FALSE +"CLSI 2018" "MIC" "Salmonella" "Levofloxacin" "Table 2A" 0.125 2 FALSE +"CLSI 2018" "MIC" "Extraintestinal" "Salmonella" "Levofloxacin" "Table 2A" 0.125 2 FALSE +"CLSI 2018" "DISK" "Stenotrophomonas maltophilia" "Levofloxacin" "Table 2B-4" "75ug" 17 13 FALSE +"CLSI 2018" "MIC" "Stenotrophomonas maltophilia" "Levofloxacin" "Table 2B-4" 2 8 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Levofloxacin" "Table 2C" "10ug" 19 15 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Levofloxacin" "Table 2C" 1 4 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Levofloxacin" "Table 2H-1" "5ug" 17 13 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Levofloxacin" "M45 Table 1" 2 8 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Levofloxacin" "Table 2H-1" 2 8 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Levofloxacin" "Table 2G" "5ug" 17 13 FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Levofloxacin" "Table 2G" 2 8 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" "Levofloxacin" "Table 2H-2" "5ug" 17 13 FALSE +"CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Levofloxacin" "Table 2H-2" 2 8 FALSE +"CLSI 2018" "MIC" "Yersinia pestis" "Levofloxacin" "M45 Table 16" 0.25 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Cefamandole" "Table 2E" "30ug" FALSE +"CLSI 2018" "MIC" "Haemophilus" "Cefamandole" "Table 2E" 4 16 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Cefamandole" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Cefamandole" "Table 2C" 8 32 FALSE +"CLSI 2018" "MIC" "Abiotrophia" "Meropenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2018" "DISK" "Acinetobacter" "Meropenem" "Table 2B-2" "10ug" 18 14 FALSE +"CLSI 2018" "MIC" "Acinetobacter" "Meropenem" "Table 2B-2" 2 8 FALSE +"CLSI 2018" "DISK" "Aeromonas" "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2018" "MIC" "Aeromonas" "Meropenem" "M45 Table 2" 4 16 FALSE +"CLSI 2018" "MIC" "Aggregatibacter" "Meropenem" "M45 Table 7" 4 16 FALSE +"CLSI 2018" "MIC" "Anaerosalibacter" "Meropenem" "Table 2J" 4 16 FALSE +"CLSI 2018" "DISK" "Burkholderia cepacia" "Meropenem" "Table 2B-3" "10ug" 20 15 FALSE +"CLSI 2018" "DISK" "Burkholderia cepacia" "Meropenem" "Table 2B-3" "10ug" 20 15 FALSE +"CLSI 2018" "MIC" "Burkholderia cepacia" "Meropenem" "Table 2B-3" 4 16 FALSE +"CLSI 2018" "MIC" "Burkholderia cepacia" "Meropenem" "Table 2B-3" 4 16 FALSE +"CLSI 2018" "MIC" "Cardiobacterium" "Meropenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2018" "MIC" "Eikenella" "Meropenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2018" "MIC" "Erysipelothrix rhusiopathiae" "Meropenem" "M45 Table 6" 0.5 FALSE +"CLSI 2018" "MIC" "Granulicatella" "Meropenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Meropenem" "Table 2E" "10ug" 20 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Meropenem" "Table 2E" 0.5 FALSE +"CLSI 2018" "MIC" "Kingella" "Meropenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2018" "DISK" "Neisseria meningitidis" "Meropenem" "Table 2I" "10ug" 30 FALSE +"CLSI 2018" "MIC" "Neisseria meningitidis" "Meropenem" "Table 2I" 0.25 FALSE +"CLSI 2018" "DISK" "Plesiomonas" "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2018" "MIC" "Plesiomonas" "Meropenem" "M45 Table 2" 4 16 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" "Meropenem" "Table 2B-1" "10ug" 19 15 FALSE +"CLSI 2018" "MIC" "Pseudomonas aeruginosa" "Meropenem" "Table 2B-1" 2 8 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Meropenem" "Table 2C" "10ug" 15 13 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Meropenem" "Table 2C" 4 16 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Meropenem" "Table 2H-1" "10ug" FALSE +"CLSI 2018" "MIC" "Streptococcus" "Meropenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Meropenem" "Table 2H-1" 0.5 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Meropenem" "Table 2G" "10ug" FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Meropenem" "Table 2G" 0.25 1 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" "Meropenem" "Table 2H-2" "10ug" FALSE +"CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Meropenem" "Table 2H-2" 0.5 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Methicillin" "Table 2C" "5ug" 14 9 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Methicillin" "Table 2C" 8 16 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Moxifloxacin" "Table 2E" "5ug" 18 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Moxifloxacin" "Table 2E" 1 FALSE +"CLSI 2018" "DISK" "Pasteurella" "Moxifloxacin" "M45 Table 13" "5ug" 28 FALSE +"CLSI 2018" "MIC" "Pasteurella" "Moxifloxacin" "M45 Table 13" 0.064 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Moxifloxacin" "Table 2C" "5ug" 24 20 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Moxifloxacin" "Table 2C" 0.5 2 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Moxifloxacin" "Table 2H-1" "5ug" FALSE +"CLSI 2018" "MIC" "Streptococcus" "Moxifloxacin" "Table 2H-1" FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Moxifloxacin" "Table 2G" "5ug" 18 14 FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Moxifloxacin" "Table 2G" 1 4 FALSE +"CLSI 2018" "DISK" "Acinetobacter" "Minocycline" "Table 2B-2" "30ug" 16 12 FALSE +"CLSI 2018" "MIC" "Acinetobacter" "Minocycline" "Table 2B-2" 4 16 FALSE +"CLSI 2018" "DISK" "Burkholderia cepacia" "Minocycline" "Table 2B-3" "30ug" 19 14 FALSE +"CLSI 2018" "DISK" "Burkholderia cepacia" "Minocycline" "Table 2B-3" "30ug" 19 14 FALSE +"CLSI 2018" "MIC" "Burkholderia cepacia" "Minocycline" "Table 2B-3" 4 16 FALSE +"CLSI 2018" "MIC" "Burkholderia cepacia" "Minocycline" "Table 2B-3" 4 16 FALSE +"CLSI 2018" "DISK" "Enterococcus" "Minocycline" "Table 2D" "30ug" 19 14 FALSE +"CLSI 2018" "MIC" "Enterococcus" "Minocycline" "Table 2D" 4 16 FALSE +"CLSI 2018" "MIC" "Leuconostoc" "Minocycline" "M45 Table 10" 4 16 FALSE +"CLSI 2018" "DISK" "Neisseria meningitidis" "Minocycline" "Table 2I" "30ug" 26 FALSE +"CLSI 2018" "MIC" "Neisseria meningitidis" "Minocycline" "Table 2I" 2 FALSE +"CLSI 2018" "DISK" "Stenotrophomonas maltophilia" "Minocycline" "Table 2B-4" "30ug" 19 14 FALSE +"CLSI 2018" "MIC" "Stenotrophomonas maltophilia" "Minocycline" "Table 2B-4" 4 16 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Minocycline" "Table 2C" "30ug" 19 14 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Minocycline" "Table 2C" 4 16 FALSE +"CLSI 2018" "MIC" "Anaerosalibacter" "Metronidazole" "Table 2J" 8 32 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Nafcillin" "Table 2C" "1ug" 13 10 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Nafcillin" "Table 2C" 2 4 FALSE +"CLSI 2018" "DISK" "Neisseria meningitidis" "Nalidixic acid" "Table 2I" "30ug" 26 25 FALSE +"CLSI 2018" "MIC" "Neisseria meningitidis" "Nalidixic acid" "Table 2I" 4 8 FALSE +"CLSI 2018" "DISK" "Acinetobacter" "Netilmicin" "Table 2B-2" "30ug" FALSE +"CLSI 2018" "MIC" "Acinetobacter" "Netilmicin" "Table 2B-2" 8 32 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" "Netilmicin" "Table 2B-1" "30ug" 15 12 FALSE +"CLSI 2018" "MIC" "Pseudomonas aeruginosa" "Netilmicin" "Table 2B-1" 8 32 FALSE +"CLSI 2018" "DISK" "Enterococcus" "Nitrofurantoin" "Table 2D" "300ug" 17 14 FALSE +"CLSI 2018" "MIC" "Enterococcus" "Nitrofurantoin" "Table 2D" 32 128 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Nitrofurantoin" "Table 2C" "300ug" 17 14 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Nitrofurantoin" "Table 2C" 32 128 FALSE +"CLSI 2018" "DISK" "Enterococcus" "Norfloxacin" "Table 2D" "10ug" 17 12 FALSE +"CLSI 2018" "MIC" "Enterococcus" "Norfloxacin" "Table 2D" 4 16 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" "Norfloxacin" "Table 2B-1" "10ug" 17 12 FALSE +"CLSI 2018" "MIC" "Pseudomonas aeruginosa" "Norfloxacin" "Table 2B-1" 4 16 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Norfloxacin" "Table 2C" "10ug" 17 12 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Norfloxacin" "Table 2C" 4 16 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Norfloxacin" "Table 2G" "5ug" FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Norfloxacin" "Table 2G" FALSE +"CLSI 2018" "DISK" "Haemophilus" "Ofloxacin" "Table 2E" "5ug" 16 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Ofloxacin" "Table 2E" 2 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" "Ofloxacin" "Table 2F" "5ug" 31 24 FALSE +"CLSI 2018" "MIC" "Neisseria gonorrhoeae" "Ofloxacin" "Table 2F" 0.25 2 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" "Ofloxacin" "Table 2B-1" "5ug" 16 12 FALSE +"CLSI 2018" "MIC" "Pseudomonas aeruginosa" "Ofloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2018" "MIC" "Salmonella" "Ofloxacin" "Table 2A" 0.125 2 FALSE +"CLSI 2018" "MIC" "Extraintestinal" "Salmonella" "Ofloxacin" "Table 2A" 0.125 2 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Ofloxacin" "Table 2C" "5ug" 18 14 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Ofloxacin" "Table 2C" 1 4 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Ofloxacin" "Table 2H-1" "5ug" 16 12 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Ofloxacin" "Table 2H-1" 2 8 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Ofloxacin" "Table 2G" "5ug" 16 12 FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Ofloxacin" "Table 2G" 2 8 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" "Ofloxacin" "Table 2H-2" "5ug" 16 12 FALSE +"CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Ofloxacin" "Table 2H-2" 2 8 FALSE +"CLSI 2018" "MIC" "Enterococcus" "Oritavancin" "Table 2D" 0.125 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Oritavancin" "Table 2C" 0.125 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Oritavancin" "Table 2H-1" 0.25 FALSE +"CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Oritavancin" "Table 2H-2" 0.25 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Oxacillin" "Table 2C" "1ug" 13 10 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Oxacillin" "Table 2C" 2 4 FALSE +"CLSI 2018" "DISK" "Staphylococcus aureus" "Oxacillin" "Table 2C" "1ug" 13 10 FALSE +"CLSI 2018" "MIC" "Staphylococcus aureus" "Oxacillin" "Table 2C" 2 4 FALSE +"CLSI 2018" "DISK" "Staphylococcus lugdunensis" "Oxacillin" "Table 2C" "1ug" FALSE +"CLSI 2018" "MIC" "Staphylococcus lugdunensis" "Oxacillin" "Table 2C" 2 4 FALSE +"CLSI 2018" "MIC" "Staphylococcus schleiferi schleiferi" "Oxacillin" "Table 2C" "1ug" 0.25 0.5 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Oxacillin" "Table 2G" "1ug" 20 FALSE +"CLSI 2018" "MIC" "Pseudallescheria" "Oxacillin" "Table 2C" 0.25 0.5 FALSE +"CLSI 2018" "MIC" "Abiotrophia" "Penicillin G" "M45 Table 1" 0.125 4 FALSE +"CLSI 2018" "MIC" "Aggregatibacter" "Penicillin G" "M45 Table 7" 1 4 FALSE +"CLSI 2018" "MIC" "Anaerosalibacter" "Penicillin G" "Table 2J" 0.5 2 FALSE +"CLSI 2018" "MIC" "Bacillus" "Penicillin G" "M45 Table 3" 0.125 0.25 FALSE +"CLSI 2018" "MIC" "Bacillus anthracis" "Penicillin G" "M45 Table 16" 0.125 0.25 FALSE +"CLSI 2018" "MIC" "Cardiobacterium" "Penicillin G" "M45 Table 7" 1 4 FALSE +"CLSI 2018" "MIC" "Eikenella" "Penicillin G" "M45 Table 7" 1 4 FALSE +"CLSI 2018" "DISK" "Enterococcus" "Penicillin G" "Table 2D" "10units" 15 14 FALSE +"CLSI 2018" "MIC" "Enterococcus" "Penicillin G" "Table 2D" 8 16 FALSE +"CLSI 2018" "MIC" "Erysipelothrix rhusiopathiae" "Penicillin G" "M45 Table 6" 0.125 FALSE +"CLSI 2018" "MIC" "Granulicatella" "Penicillin G" "M45 Table 1" 0.125 4 FALSE +"CLSI 2018" "MIC" "Kingella" "Penicillin G" "M45 Table 7" 1 4 FALSE +"CLSI 2018" "MIC" "Leuconostoc" "Penicillin G" "M45 Table 10" 8 FALSE +"CLSI 2018" "MIC" "Lactobacillus" "Penicillin G" "M45 Table 9" 8 FALSE +"CLSI 2018" "DISK" "Listeria monocytogenes" "Penicillin G" "M45 Table 11" "10units" FALSE +"CLSI 2018" "MIC" "Listeria monocytogenes" "Penicillin G" "M45 Table 11" 2 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" "Penicillin G" "Table 2F" "10units" 47 26 FALSE +"CLSI 2018" "MIC" "Neisseria gonorrhoeae" "Penicillin G" "Table 2F" 0.064 2 FALSE +"CLSI 2018" "DISK" "Neisseria meningitidis" "Penicillin G" "Table 2I" "10units" FALSE +"CLSI 2018" "MIC" "Neisseria meningitidis" "Penicillin G" "Table 2I" 0.064 0.5 FALSE +"CLSI 2018" "MIC" "Pediococcus" "Penicillin G" "M45 Table 14" 8 FALSE +"CLSI 2018" "DISK" "Pasteurella" "Penicillin G" "M45 Table 13" "10 Units" 25 FALSE +"CLSI 2018" "MIC" "Pasteurella" "Penicillin G" "M45 Table 13" 0.5 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Penicillin G" "Table 2C" "10ug" 29 28 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Penicillin G" "Table 2C" 0.125 0.25 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Penicillin G" "Table 2H-1" "10units" 24 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Penicillin G" "M45 Table 1" 0.125 4 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Penicillin G" "Table 2H-1" 0.125 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" "10units" FALSE +"CLSI 2018" "MIC" "Meningitis" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" 0.064 0.12 FALSE +"CLSI 2018" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" 2 8 FALSE +"CLSI 2018" "MIC" "Oral" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" 0.064 2 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" "Penicillin G" "Table 2H-2" "10units" FALSE +"CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Penicillin G" "Table 2H-2" 0.125 4 FALSE +"CLSI 2018" "DISK" "Acinetobacter" "Piperacillin" "Table 2B-2" "100ug" 21 17 FALSE +"CLSI 2018" "MIC" "Acinetobacter" "Piperacillin" "Table 2B-2" 16 128 FALSE +"CLSI 2018" "MIC" "Anaerosalibacter" "Piperacillin" "Table 2J" 32 128 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" "Piperacillin" "Table 2B-1" "100ug" 21 14 FALSE +"CLSI 2018" "MIC" "Pseudomonas aeruginosa" "Piperacillin" "Table 2B-1" 16 128 FALSE +"CLSI 2018" "DISK" "Acinetobacter" "Polymyxin B" "Table 2B-2" "300ug" FALSE +"CLSI 2018" "MIC" "Acinetobacter" "Polymyxin B" "Table 2B-2" 2 4 FALSE +"CLSI 2018" "MIC" "Pseudomonas aeruginosa" "Polymyxin B" "Table 2B-1" 2 8 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Penicillin V" "Table 2G" "10ug" FALSE +"CLSI 2018" "MIC" "Oral" "Streptococcus pneumoniae" "Penicillin V" "Table 2G" 0.064 2 FALSE +"CLSI 2018" "DISK" "Enterococcus" "Quinupristin/dalfopristin" "Table 2D" "15ug" 19 15 FALSE +"CLSI 2018" "MIC" "Enterococcus" "Quinupristin/dalfopristin" "Table 2D" 1 4 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Quinupristin/dalfopristin" "Table 2C" "15ug" 19 15 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Quinupristin/dalfopristin" "Table 2C" 1 4 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Quinupristin/dalfopristin" "Table 2H-1" "15ug" 19 15 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Quinupristin/dalfopristin" "Table 2H-1" 1 4 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Quinupristin/dalfopristin" "Table 2G" "15ug" 19 15 FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Quinupristin/dalfopristin" "Table 2G" 1 4 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" "Quinupristin/dalfopristin" "Table 2H-2" "15ug" 19 15 FALSE +"CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Quinupristin/dalfopristin" "Table 2H-2" 1 4 FALSE +"CLSI 2018" "MIC" "Aggregatibacter" "Rifampicin" "M45 Table 7" 1 4 FALSE +"CLSI 2018" "MIC" "Bacillus" "Rifampicin" "M45 Table 3" 1 4 FALSE +"CLSI 2018" "MIC" "Bacillus anthracis" "Rifampicin" "M45 Table 16" FALSE +"CLSI 2018" "MIC" "Cardiobacterium" "Rifampicin" "M45 Table 7" 1 4 FALSE +"CLSI 2018" "MIC" "Eikenella" "Rifampicin" "M45 Table 7" 1 4 FALSE +"CLSI 2018" "DISK" "Enterococcus" "Rifampicin" "Table 2D" "5ug" 20 16 FALSE +"CLSI 2018" "MIC" "Enterococcus" "Rifampicin" "Table 2D" 1 4 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Rifampicin" "Table 2E" "5ug" 20 16 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Rifampicin" "Table 2E" 1 4 FALSE +"CLSI 2018" "MIC" "Kingella" "Rifampicin" "M45 Table 7" 1 4 FALSE +"CLSI 2018" "MIC" "Moraxella catarrhalis" "Rifampicin" "M45 Table 12" 1 4 FALSE +"CLSI 2018" "DISK" "Neisseria meningitidis" "Rifampicin" "Table 2I" "5ug" 25 19 FALSE +"CLSI 2018" "MIC" "Neisseria meningitidis" "Rifampicin" "Table 2I" 0.5 2 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Rifampicin" "Table 2C" "5ug" 20 16 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Rifampicin" "Table 2C" 1 4 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Rifampicin" "Table 2H-1" "5ug" FALSE +"CLSI 2018" "MIC" "Streptococcus" "Rifampicin" "Table 2H-1" FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Rifampicin" "Table 2G" "5ug" 19 16 FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Rifampicin" "Table 2G" 1 4 FALSE +"CLSI 2018" "DISK" "Acinetobacter" "Ampicillin/sulbactam" "Table 2B-2" "10ug" 15 11 FALSE +"CLSI 2018" "MIC" "Acinetobacter" "Ampicillin/sulbactam" "Table 2B-2" 8 32 FALSE +"CLSI 2018" "DISK" "Aeromonas" "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE +"CLSI 2018" "MIC" "Aeromonas" "Ampicillin/sulbactam" "M45 Table 2" 8 32 FALSE +"CLSI 2018" "MIC" "Aggregatibacter" "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE +"CLSI 2018" "MIC" "Anaerosalibacter" "Ampicillin/sulbactam" "Table 2J" 8 32 FALSE +"CLSI 2018" "MIC" "Cardiobacterium" "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE +"CLSI 2018" "MIC" "Eikenella" "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Ampicillin/sulbactam" "Table 2E" "10/10ug" 20 19 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Ampicillin/sulbactam" "Table 2E" 2 4 FALSE +"CLSI 2018" "DISK" "Plesiomonas" "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE +"CLSI 2018" "MIC" "Plesiomonas" "Ampicillin/sulbactam" "M45 Table 2" 8 32 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Ampicillin/sulbactam" "Table 2C" "10ug" 15 11 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Ampicillin/sulbactam" "Table 2C" 8 32 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Ampicillin/sulbactam" "Table 2G" "10/10ug" FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Ampicillin/sulbactam" "Table 2G" FALSE +"CLSI 2018" "DISK" "Neisseria meningitidis" "Sulfamethoxazole" "Table 2I" "200-300ug" FALSE +"CLSI 2018" "MIC" "Neisseria meningitidis" "Sulfamethoxazole" "Table 2I" 2 8 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Sulfamethoxazole" "Table 2C" "200ug" 17 12 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Sulfamethoxazole" "Table 2C" 256 512 FALSE +"CLSI 2018" "DISK" "Neisseria meningitidis" "Sulfisoxazole" "Table 2I" "200-300ug" FALSE +"CLSI 2018" "MIC" "Neisseria meningitidis" "Sulfisoxazole" "Table 2I" 2 8 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Sulfisoxazole" "Table 2C" "200ug" 17 12 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Sulfisoxazole" "Table 2C" 256 512 FALSE +"CLSI 2018" "DISK" "Histophilus somni" "Spectinomycin" "Vet Table" "100ug" 14 10 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" "Spectinomycin" "Table 2F" "100ug" 18 14 FALSE +"CLSI 2018" "MIC" "Neisseria gonorrhoeae" "Spectinomycin" "Table 2F" 32 128 FALSE +"CLSI 2018" "DISK" "Providencia heimbachae" "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2018" "DISK" "Pasteurella multocida" "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Sparfloxacin" "Table 2E" "5ug" FALSE +"CLSI 2018" "MIC" "Haemophilus" "Sparfloxacin" "Table 2E" 0.25 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Sparfloxacin" "Table 2C" "5ug" 19 15 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Sparfloxacin" "Table 2C" 0.5 2 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Sparfloxacin" "Table 2H-1" "5ug" FALSE +"CLSI 2018" "MIC" "Streptococcus" "Sparfloxacin" "Table 2H-1" FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Sparfloxacin" "Table 2G" "5ug" 19 15 FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Sparfloxacin" "Table 2G" 0.5 2 FALSE +"CLSI 2018" "DISK" "Neisseria meningitidis" "Sulfonamides" "Table 2I" "200-300ug" FALSE +"CLSI 2018" "MIC" "Neisseria meningitidis" "Sulfonamides" "Table 2I" 2 8 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Sulfonamides" "Table 2C" "200ug" 17 12 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Sulfonamides" "Table 2C" 256 512 FALSE +"CLSI 2018" "DISK" "Enterococcus" "Streptomycin-high" "Table 2D" "300ug" 10 6 FALSE +"CLSI 2018" "MIC" "Enterococcus" "Streptomycin-high" "Table 2D" 1024 1024 FALSE +"CLSI 2018" "MIC" "Brucella" "Streptoduocin" "M45 Table 16" 8 FALSE +"CLSI 2018" "MIC" "Enterococcus" "Streptoduocin" "Table 2D" 1024 1024 FALSE +"CLSI 2018" "MIC" "Francisella tularensis" "Streptoduocin" "M45 Table 16" 8 FALSE +"CLSI 2018" "MIC" "Yersinia pestis" "Streptoduocin" "M45 Table 16" 4 16 FALSE +"CLSI 2018" "DISK" "Acinetobacter" "Trimethoprim/sulfamethoxazole" "Table 2B-2" "1.25/23.75ug" 16 10 FALSE +"CLSI 2018" "MIC" "Acinetobacter" "Trimethoprim/sulfamethoxazole" "Table 2B-2" 2 4 FALSE +"CLSI 2018" "DISK" "Aeromonas" "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25/23.75ug" 16 10 FALSE +"CLSI 2018" "MIC" "Aeromonas" "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE +"CLSI 2018" "MIC" "Aggregatibacter" "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE +"CLSI 2018" "MIC" "Bacillus" "Trimethoprim/sulfamethoxazole" "M45 Table 3" 2 4 FALSE +"CLSI 2018" "MIC" "Bacillus anthracis" "Trimethoprim/sulfamethoxazole" "M45 Table 16" FALSE +"CLSI 2018" "MIC" "Brucella" "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 FALSE +"CLSI 2018" "DISK" "Burkholderia cepacia" "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25/23.75ug" 16 10 FALSE +"CLSI 2018" "DISK" "Burkholderia cepacia" "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25/23.75ug" 16 10 FALSE +"CLSI 2018" "MIC" "Burkholderia cepacia" "Trimethoprim/sulfamethoxazole" "Table 2B-3" 2 4 FALSE +"CLSI 2018" "MIC" "Burkholderia cepacia" "Trimethoprim/sulfamethoxazole" "Table 2B-3" 2 4 FALSE +"CLSI 2018" "MIC" "Burkholderia pseudomallei" "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 4 FALSE +"CLSI 2018" "MIC" "Cardiobacterium" "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE +"CLSI 2018" "MIC" "Eikenella" "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Trimethoprim/sulfamethoxazole" "Table 2E" "1.25/23.75ug" 15 10 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Trimethoprim/sulfamethoxazole" "Table 2E" 0.5 4 FALSE +"CLSI 2018" "MIC" "Kingella" "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE +"CLSI 2018" "MIC" "Listeria monocytogenes" "Trimethoprim/sulfamethoxazole" "M45 Table 11" 0.5 4 FALSE +"CLSI 2018" "DISK" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" "M45 Table 12" "1.25/23.75ug" 13 10 FALSE +"CLSI 2018" "MIC" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" "M45 Table 12" 0.5 4 FALSE +"CLSI 2018" "DISK" "Neisseria meningitidis" "Trimethoprim/sulfamethoxazole" "Table 2I" "1.25/23.75ug" 30 25 FALSE +"CLSI 2018" "MIC" "Neisseria meningitidis" "Trimethoprim/sulfamethoxazole" "Table 2I" 0.125 0.5 FALSE +"CLSI 2018" "DISK" "Plesiomonas" "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25/23.75ug" 16 10 FALSE +"CLSI 2018" "MIC" "Plesiomonas" "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE +"CLSI 2018" "DISK" "Pasteurella" "Trimethoprim/sulfamethoxazole" "M45 Table 13" "1.25/23.75ug" 24 FALSE +"CLSI 2018" "MIC" "Pasteurella" "Trimethoprim/sulfamethoxazole" "M45 Table 13" 0.5 FALSE +"CLSI 2018" "DISK" "Stenotrophomonas maltophilia" "Trimethoprim/sulfamethoxazole" "Table 2B-4" "30ug" 16 10 FALSE +"CLSI 2018" "MIC" "Stenotrophomonas maltophilia" "Trimethoprim/sulfamethoxazole" "Table 2B-4" 2 4 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Trimethoprim/sulfamethoxazole" "Table 2C" "1.25/23.75ug" 16 10 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Trimethoprim/sulfamethoxazole" "Table 2C" 2 4 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Trimethoprim/sulfamethoxazole" "Table 2H-1" "1.25/23.75ug" FALSE +"CLSI 2018" "MIC" "Streptococcus" "Trimethoprim/sulfamethoxazole" "Table 2H-1" FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" "Table 2G" "1.25/23.75ug" 19 15 FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" "Table 2G" 0.5 4 FALSE +"CLSI 2018" "MIC" "Yersinia pestis" "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 4 FALSE +"CLSI 2018" "DISK" "Acinetobacter" "Ticarcillin/clavulanic acid" "Table 2B-2" "75ug" 20 14 FALSE +"CLSI 2018" "MIC" "Acinetobacter" "Ticarcillin/clavulanic acid" "Table 2B-2" 16 128 FALSE +"CLSI 2018" "MIC" "Anaerosalibacter" "Ticarcillin/clavulanic acid" "Table 2J" 32 128 FALSE +"CLSI 2018" "DISK" "Burkholderia cepacia" "Ticarcillin/clavulanic acid" "Table 2B-3" "75ug" FALSE +"CLSI 2018" "DISK" "Burkholderia cepacia" "Ticarcillin/clavulanic acid" "Table 2B-3" "75ug" FALSE +"CLSI 2018" "MIC" "Burkholderia cepacia" "Ticarcillin/clavulanic acid" "Table 2B-3" 16 128 FALSE +"CLSI 2018" "MIC" "Burkholderia cepacia" "Ticarcillin/clavulanic acid" "Table 2B-3" 16 128 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" "Ticarcillin/clavulanic acid" "Table 2B-1" "75ug" 24 15 FALSE +"CLSI 2018" "MIC" "Pseudomonas aeruginosa" "Ticarcillin/clavulanic acid" "Table 2B-1" 16 128 FALSE +"CLSI 2018" "DISK" "Stenotrophomonas maltophilia" "Ticarcillin/clavulanic acid" "Table 2B-4" "30ug" FALSE +"CLSI 2018" "MIC" "Stenotrophomonas maltophilia" "Ticarcillin/clavulanic acid" "Table 2B-4" 16 128 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Ticarcillin/clavulanic acid" "Table 2C" "75/10ug" 23 22 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Ticarcillin/clavulanic acid" "Table 2C" 8 16 FALSE +"CLSI 2018" "DISK" "Acinetobacter" "Tetracycline" "Table 2B-2" "30ug" 15 11 FALSE +"CLSI 2018" "MIC" "Acinetobacter" "Tetracycline" "Table 2B-2" 4 16 FALSE +"CLSI 2018" "DISK" "Aeromonas" "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE +"CLSI 2018" "MIC" "Aeromonas" "Tetracycline" "M45 Table 2" 4 16 FALSE +"CLSI 2018" "MIC" "Aggregatibacter" "Tetracycline" "M45 Table 7" 2 8 FALSE +"CLSI 2018" "MIC" "Anaerosalibacter" "Tetracycline" "Table 2J" 4 16 FALSE +"CLSI 2018" "MIC" "Bacillus" "Tetracycline" "M45 Table 3" 4 16 FALSE +"CLSI 2018" "MIC" "Bacillus anthracis" "Tetracycline" "M45 Table 16" 1 FALSE +"CLSI 2018" "MIC" "Brucella" "Tetracycline" "M45 Table 16" 1 FALSE +"CLSI 2018" "MIC" "Burkholderia mallei" "Tetracycline" "M45 Table 16" 4 16 FALSE +"CLSI 2018" "MIC" "Burkholderia pseudomallei" "Tetracycline" "M45 Table 16" 4 16 FALSE +"CLSI 2018" "MIC" "Campylobacter" "Tetracycline" "M45 Table 3" 4 16 FALSE +"CLSI 2018" "MIC" "Cardiobacterium" "Tetracycline" "M45 Table 7" 2 8 FALSE +"CLSI 2018" "MIC" "Eikenella" "Tetracycline" "M45 Table 7" 2 8 FALSE +"CLSI 2018" "DISK" "Enterococcus" "Tetracycline" "Table 2D" "30ug" 19 14 FALSE +"CLSI 2018" "MIC" "Enterococcus" "Tetracycline" "Table 2D" 4 16 FALSE +"CLSI 2018" "MIC" "Francisella tularensis" "Tetracycline" "M45 Table 16" 4 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Tetracycline" "Table 2E" "30ug" 29 25 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Tetracycline" "Table 2E" 2 8 FALSE +"CLSI 2018" "MIC" "Kingella" "Tetracycline" "M45 Table 7" 2 8 FALSE +"CLSI 2018" "DISK" "Moraxella catarrhalis" "Tetracycline" "M45 Table 12" "30ug" 29 24 FALSE +"CLSI 2018" "MIC" "Moraxella catarrhalis" "Tetracycline" "M45 Table 12" 2 8 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" "Tetracycline" "Table 2F" "30ug" 38 30 FALSE +"CLSI 2018" "MIC" "Neisseria gonorrhoeae" "Tetracycline" "Table 2F" 0.25 2 FALSE +"CLSI 2018" "DISK" "Plesiomonas" "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE +"CLSI 2018" "MIC" "Plesiomonas" "Tetracycline" "M45 Table 2" 4 16 FALSE +"CLSI 2018" "DISK" "Pasteurella" "Tetracycline" "M45 Table 13" "30ug" 23 FALSE +"CLSI 2018" "MIC" "Pasteurella" "Tetracycline" "M45 Table 13" 1 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Tetracycline" "Table 2C" "30ug" 19 14 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Tetracycline" "Table 2C" 4 16 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Tetracycline" "Table 2H-1" "30ug" 23 18 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Tetracycline" "Table 2H-1" 2 8 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Tetracycline" "Table 2G" "30ug" 28 24 FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Tetracycline" "Table 2G" 1 4 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" "Tetracycline" "Table 2H-2" "30ug" 23 18 FALSE +"CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Tetracycline" "Table 2H-2" 2 8 FALSE +"CLSI 2018" "MIC" "Yersinia pestis" "Tetracycline" "M45 Table 16" 4 16 FALSE +"CLSI 2018" "DISK" "Enterococcus" "Teicoplanin" "Table 2D" "30ug" 14 10 FALSE +"CLSI 2018" "MIC" "Enterococcus" "Teicoplanin" "Table 2D" 8 32 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Teicoplanin" "Table 2C" "30ug" 14 10 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Teicoplanin" "Table 2C" 8 32 FALSE +"CLSI 2018" "DISK" "Actinobacillus pleuropneumoniae" "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE +"CLSI 2018" "MIC" "Actinobacillus pleuropneumoniae" "Tilmicosin" "Vet Table" 16 32 FALSE +"CLSI 2018" "DISK" "Pasteurella multocida" "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE +"CLSI 2018" "MIC" "Pasteurella multocida" "Tilmicosin" "Vet Table" 16 32 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Telithromycin" "Table 2E" "15ug" 15 11 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Telithromycin" "Table 2E" 4 16 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Telithromycin" "Table 2C" "15ug" 22 18 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Telithromycin" "Table 2C" 1 4 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Telithromycin" "Table 2H-1" FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Telithromycin" "Table 2G" "15ug" 19 15 FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Telithromycin" "Table 2G" 1 4 FALSE +"CLSI 2018" "MIC" "Enterococcus" "Telavancin" "Table 2D" 0.125 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Telavancin" "Table 2C" 0.125 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Telavancin" "Table 2H-1" 0.125 FALSE +"CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Telavancin" "Table 2H-2" 0.125 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Trimethoprim" "Table 2C" "5ug" 16 10 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Trimethoprim" "Table 2C" 8 16 FALSE +"CLSI 2018" "DISK" "Acinetobacter" "Tobramycin" "Table 2B-2" "10ug" 15 12 FALSE +"CLSI 2018" "MIC" "Acinetobacter" "Tobramycin" "Table 2B-2" 4 16 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" "Tobramycin" "Table 2B-1" "10ug" 15 12 FALSE +"CLSI 2018" "MIC" "Pseudomonas aeruginosa" "Tobramycin" "Table 2B-1" 4 16 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Trovafloxacin" "Table 2E" "10ug" 22 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Trovafloxacin" "Table 2E" 1 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" "Trovafloxacin" "Table 2F" "10ug" 34 FALSE +"CLSI 2018" "MIC" "Neisseria gonorrhoeae" "Trovafloxacin" "Table 2F" 0.25 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Trovafloxacin" "Table 2H-1" "10ug" 19 15 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Trovafloxacin" "Table 2H-1" 1 4 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Trovafloxacin" "Table 2G" "10ug" 19 15 FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Trovafloxacin" "Table 2G" 1 4 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" "Trovafloxacin" "Table 2H-2" "10ug" 19 15 FALSE +"CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Trovafloxacin" "Table 2H-2" 1 4 FALSE +"CLSI 2018" "MIC" "Enterococcus" "Tedizolid" "Table 2D" 0.5 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Tedizolid" "Table 2C" 0.5 2 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Tedizolid" "Table 2H-1" 0.5 FALSE +"CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Tedizolid" "Table 2H-2" 0.25 FALSE +"CLSI 2018" "DISK" "Acinetobacter" "Piperacillin/tazobactam" "Table 2B-2" "100ug" 21 17 FALSE +"CLSI 2018" "MIC" "Acinetobacter" "Piperacillin/tazobactam" "Table 2B-2" 16 128 FALSE +"CLSI 2018" "DISK" "Aeromonas" "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE +"CLSI 2018" "MIC" "Aeromonas" "Piperacillin/tazobactam" "M45 Table 2" 16 128 FALSE +"CLSI 2018" "MIC" "Anaerosalibacter" "Piperacillin/tazobactam" "Table 2J" 16 128 FALSE +"CLSI 2018" "DISK" "Haemophilus" "Piperacillin/tazobactam" "Table 2E" "100ug" 21 FALSE +"CLSI 2018" "MIC" "Haemophilus" "Piperacillin/tazobactam" "Table 2E" 1 2 FALSE +"CLSI 2018" "DISK" "Plesiomonas" "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE +"CLSI 2018" "MIC" "Plesiomonas" "Piperacillin/tazobactam" "M45 Table 2" 16 128 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" "Piperacillin/tazobactam" "Table 2B-1" "100ug" 21 14 FALSE +"CLSI 2018" "MIC" "Pseudomonas aeruginosa" "Piperacillin/tazobactam" "Table 2B-1" 16 128 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Piperacillin/tazobactam" "Table 2C" "100/10ug" 18 17 FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Piperacillin/tazobactam" "Table 2C" 8 16 FALSE +"CLSI 2018" "MIC" "Abiotrophia" "Vancomycin" "M45 Table 1" 1 FALSE +"CLSI 2018" "MIC" "Bacillus" "Vancomycin" "M45 Table 3" 4 FALSE +"CLSI 2018" "MIC" "Bacillus anthracis" "Vancomycin" "M45 Table 16" FALSE +"CLSI 2018" "DISK" "Enterococcus" "Vancomycin" "Table 2D" "30ug" 17 14 FALSE +"CLSI 2018" "MIC" "Enterococcus" "Vancomycin" "Table 2D" 4 32 FALSE +"CLSI 2018" "MIC" "Granulicatella" "Vancomycin" "M45 Table 1" 1 FALSE +"CLSI 2018" "MIC" "Lactobacillus" "Vancomycin" "M45 Table 9" 2 16 FALSE +"CLSI 2018" "MIC" "Propionibacterium" "Vancomycin" "Table 2J-2" 2 4 FALSE +"CLSI 2018" "DISK" "Staphylococcus" "Vancomycin" "Table 2C" "30ug" FALSE +"CLSI 2018" "MIC" "Staphylococcus" "Vancomycin" "Table 2C" 4 32 FALSE +"CLSI 2018" "MIC" "Staphylococcus aureus" "Vancomycin" "Table 2C" 2 16 FALSE +"CLSI 2018" "DISK" "Streptococcus" "Vancomycin" "Table 2H-1" "30ug" 17 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Vancomycin" "M45 Table 1" 1 FALSE +"CLSI 2018" "MIC" "Streptococcus" "Vancomycin" "Table 2H-1" 1 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" "Vancomycin" "Table 2G" "30ug" 17 FALSE +"CLSI 2018" "MIC" "Streptococcus pneumoniae" "Vancomycin" "Table 2G" 1 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" "Vancomycin" "Table 2H-2" "30ug" 17 FALSE +"CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" "Vancomycin" "Table 2H-2" 1 FALSE +"CLSI 2017" "DISK" "Aeromonas" "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE +"CLSI 2017" "MIC" "Aeromonas" "Amoxicillin/clavulanic acid" "M45 Table 2" 8 32 FALSE +"CLSI 2017" "MIC" "Aggregatibacter" "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE +"CLSI 2017" "MIC" "Anaerosalibacter" "Amoxicillin/clavulanic acid" "Table 2J" 4 16 FALSE +"CLSI 2017" "MIC" "Burkholderia pseudomallei" "Amoxicillin/clavulanic acid" "M45 Table 16" 8 32 FALSE +"CLSI 2017" "MIC" "Cardiobacterium" "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE +"CLSI 2017" "MIC" "Eikenella" "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Amoxicillin/clavulanic acid" "Table 2E" "20/10ug" 20 19 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Amoxicillin/clavulanic acid" "Table 2E" 4 8 FALSE +"CLSI 2017" "DISK" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" "M45 Table 12" "20ug" 24 23 FALSE +"CLSI 2017" "MIC" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" "M45 Table 12" 4 8 FALSE +"CLSI 2017" "DISK" "Plesiomonas" "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE +"CLSI 2017" "MIC" "Plesiomonas" "Amoxicillin/clavulanic acid" "M45 Table 2" 8 32 FALSE +"CLSI 2017" "DISK" "Pasteurella" "Amoxicillin/clavulanic acid" "M45 Table 13" "20ug" 27 FALSE +"CLSI 2017" "MIC" "Pasteurella" "Amoxicillin/clavulanic acid" "M45 Table 13" 0.5 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Amoxicillin/clavulanic acid" "Table 2C" "20ug" 20 19 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Amoxicillin/clavulanic acid" "Table 2C" 4 8 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Amoxicillin/clavulanic acid" "Table 2H-1" "20ug" FALSE +"CLSI 2017" "MIC" "Streptococcus" "Amoxicillin/clavulanic acid" "Table 2H-1" FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Amoxicillin/clavulanic acid" "Table 2G" "10/10ug" FALSE +"CLSI 2017" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Amoxicillin/clavulanic acid" "Table 2G" 2 8 FALSE +"CLSI 2017" "DISK" "Acinetobacter" "Amikacin" "Table 2B-2" "30ug" 17 14 FALSE +"CLSI 2017" "MIC" "Acinetobacter" "Amikacin" "Table 2B-2" 16 64 FALSE +"CLSI 2017" "DISK" "Aeromonas" "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE +"CLSI 2017" "MIC" "Aeromonas" "Amikacin" "M45 Table 2" 16 64 FALSE +"CLSI 2017" "MIC" "Bacillus" "Amikacin" "M45 Table 3" 16 64 FALSE +"CLSI 2017" "MIC" "Bacillus anthracis" "Amikacin" "M45 Table 16" FALSE +"CLSI 2017" "DISK" "Plesiomonas" "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE +"CLSI 2017" "MIC" "Plesiomonas" "Amikacin" "M45 Table 2" 16 64 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" "Amikacin" "Table 2B-1" "30ug" 17 14 FALSE +"CLSI 2017" "MIC" "Pseudomonas aeruginosa" "Amikacin" "Table 2B-1" 16 64 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Amikacin" "Table 2C" "30ug" 17 14 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Amikacin" "Table 2C" 16 64 FALSE +"CLSI 2017" "MIC" "Aggregatibacter" "Ampicillin" "M45 Table 7" 1 4 FALSE +"CLSI 2017" "MIC" "Anaerosalibacter" "Ampicillin" "Table 2J" 0.5 2 FALSE +"CLSI 2017" "MIC" "Bacillus" "Ampicillin" "M45 Table 3" 0.25 0.5 FALSE +"CLSI 2017" "MIC" "Bacillus anthracis" "Ampicillin" "M45 Table 16" FALSE +"CLSI 2017" "MIC" "Cardiobacterium" "Ampicillin" "M45 Table 7" 1 4 FALSE +"CLSI 2017" "MIC" "Eikenella" "Ampicillin" "M45 Table 7" 1 4 FALSE +"CLSI 2017" "DISK" "Enterococcus" "Ampicillin" "Table 2D" "10ug" 17 16 FALSE +"CLSI 2017" "MIC" "Enterococcus" "Ampicillin" "Table 2D" 8 16 FALSE +"CLSI 2017" "MIC" "Erysipelothrix rhusiopathiae" "Ampicillin" "M45 Table 6" 0.25 FALSE +"CLSI 2017" "MIC" "Granulicatella" "Ampicillin" "M45 Table 1" 0.25 8 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Ampicillin" "Table 2E" "10ug" 22 18 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Ampicillin" "Table 2E" 1 4 FALSE +"CLSI 2017" "MIC" "Leuconostoc" "Ampicillin" "M45 Table 10" 8 FALSE +"CLSI 2017" "MIC" "Lactobacillus" "Ampicillin" "M45 Table 9" 8 FALSE +"CLSI 2017" "DISK" "Listeria monocytogenes" "Ampicillin" "M45 Table 11" "10ug" FALSE +"CLSI 2017" "MIC" "Listeria monocytogenes" "Ampicillin" "M45 Table 11" 2 FALSE +"CLSI 2017" "DISK" "Neisseria meningitidis" "Ampicillin" "Table 2I" "10ug" FALSE +"CLSI 2017" "MIC" "Neisseria meningitidis" "Ampicillin" "Table 2I" 0.125 2 FALSE +"CLSI 2017" "MIC" "Pediococcus" "Ampicillin" "M45 Table 14" 8 FALSE +"CLSI 2017" "DISK" "Pasteurella" "Ampicillin" "M45 Table 13" "10ug" 27 FALSE +"CLSI 2017" "MIC" "Pasteurella" "Ampicillin" "M45 Table 13" 0.5 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Ampicillin" "Table 2C" "10ug" 29 28 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Ampicillin" "Table 2C" 0.25 0.5 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Ampicillin" "Table 2H-1" "10ug" 24 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Ampicillin" "M45 Table 1" 0.25 8 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Ampicillin" "Table 2H-1" 0.25 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Ampicillin" "Table 2G" "10ug" FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Ampicillin" "Table 2G" FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" "Ampicillin" "Table 2H-2" "10ug" FALSE +"CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Ampicillin" "Table 2H-2" 0.25 8 FALSE +"CLSI 2017" "MIC" "Pasteurella" "Amoxicillin" "M45 Table 13" 0.5 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Amoxicillin" "Table 2H-1" "30ug" FALSE +"CLSI 2017" "MIC" "Streptococcus" "Amoxicillin" "Table 2H-1" FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Amoxicillin" "Table 2G" "30ug" FALSE +"CLSI 2017" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Amoxicillin" "Table 2G" 2 8 FALSE +"CLSI 2017" "DISK" "Aeromonas" "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2017" "MIC" "Aeromonas" "Aztreonam" "M45 Table 2" 4 16 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Aztreonam" "Table 2E" "30ug" 26 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Aztreonam" "Table 2E" 2 FALSE +"CLSI 2017" "DISK" "Plesiomonas" "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2017" "MIC" "Plesiomonas" "Aztreonam" "M45 Table 2" 4 16 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" "Aztreonam" "Table 2B-1" "30ug" 22 15 FALSE +"CLSI 2017" "MIC" "Pseudomonas aeruginosa" "Aztreonam" "Table 2B-1" 8 32 FALSE +"CLSI 2017" "MIC" "Aggregatibacter" "Azithromycin" "M45 Table 7" 4 FALSE +"CLSI 2017" "MIC" "Cardiobacterium" "Azithromycin" "M45 Table 7" 4 FALSE +"CLSI 2017" "MIC" "Eikenella" "Azithromycin" "M45 Table 7" 4 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Azithromycin" "Table 2E" "15ug" 12 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Azithromycin" "Table 2E" 4 FALSE +"CLSI 2017" "MIC" "Kingella" "Azithromycin" "M45 Table 7" 4 FALSE +"CLSI 2017" "DISK" "Moraxella catarrhalis" "Azithromycin" "M45 Table 12" "15ug" 26 FALSE +"CLSI 2017" "MIC" "Moraxella catarrhalis" "Azithromycin" "M45 Table 12" 0.25 FALSE +"CLSI 2017" "DISK" "Neisseria meningitidis" "Azithromycin" "Table 2I" "15ug" 20 FALSE +"CLSI 2017" "MIC" "Neisseria meningitidis" "Azithromycin" "Table 2I" 2 FALSE +"CLSI 2017" "DISK" "Pasteurella" "Azithromycin" "M45 Table 13" "15ug" 20 FALSE +"CLSI 2017" "MIC" "Pasteurella" "Azithromycin" "M45 Table 13" 1 FALSE +"CLSI 2017" "MIC" "Salmonella enterica" "Azithromycin" "Table 2A" 16 32 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Azithromycin" "Table 2C" "15ug" 18 13 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Azithromycin" "Table 2C" 2 8 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Azithromycin" "Table 2H-1" "15ug" 18 13 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Azithromycin" "Table 2H-1" 0.5 2 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Azithromycin" "Table 2G" "15ug" 18 13 FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Azithromycin" "Table 2G" 0.5 2 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" "Azithromycin" "Table 2H-2" "15ug" 18 13 FALSE +"CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Azithromycin" "Table 2H-2" 0.5 2 FALSE +"CLSI 2017" "MIC" "Vibrio cholerae" "Azithromycin" "M45 Table 14" "30ug" 2 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Cefetamet" "Table 2E" "10ug" 18 14 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Cefetamet" "Table 2E" 4 16 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" "Cefetamet" "Table 2F" "10ug" 29 FALSE +"CLSI 2017" "MIC" "Neisseria gonorrhoeae" "Cefetamet" "Table 2F" 0.5 FALSE +"CLSI 2017" "DISK" "Acinetobacter" "Ceftazidime" "Table 2B-2" "30ug" 18 14 FALSE +"CLSI 2017" "MIC" "Acinetobacter" "Ceftazidime" "Table 2B-2" 8 32 FALSE +"CLSI 2017" "DISK" "Aeromonas" "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2017" "MIC" "Aeromonas" "Ceftazidime" "M45 Table 2" 4 16 FALSE +"CLSI 2017" "MIC" "Bacillus" "Ceftazidime" "M45 Table 3" 8 32 FALSE +"CLSI 2017" "MIC" "Bacillus anthracis" "Ceftazidime" "M45 Table 16" FALSE +"CLSI 2017" "DISK" "Burkholderia cepacia" "Ceftazidime" "Table 2B-3" "30ug" 21 17 FALSE +"CLSI 2017" "MIC" "Burkholderia cepacia" "Ceftazidime" "Table 2B-3" 8 32 FALSE +"CLSI 2017" "MIC" "Burkholderia mallei" "Ceftazidime" "M45 Table 16" 8 32 FALSE +"CLSI 2017" "MIC" "Burkholderia pseudomallei" "Ceftazidime" "M45 Table 16" 8 32 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Ceftazidime" "Table 2E" "30ug" 26 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Ceftazidime" "Table 2E" 2 FALSE +"CLSI 2017" "MIC" "Moraxella catarrhalis" "Ceftazidime" "M45 Table 12" 2 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" "Ceftazidime" "Table 2F" "30ug" 31 FALSE +"CLSI 2017" "MIC" "Neisseria gonorrhoeae" "Ceftazidime" "Table 2F" 0.5 FALSE +"CLSI 2017" "DISK" "Plesiomonas" "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2017" "MIC" "Plesiomonas" "Ceftazidime" "M45 Table 2" 4 16 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" "Ceftazidime" "Table 2B-1" "30ug" 18 14 FALSE +"CLSI 2017" "MIC" "Pseudomonas aeruginosa" "Ceftazidime" "Table 2B-1" 8 32 FALSE +"CLSI 2017" "DISK" "Stenotrophomonas maltophilia" "Ceftazidime" "Table 2B-4" "30ug" FALSE +"CLSI 2017" "MIC" "Stenotrophomonas maltophilia" "Ceftazidime" "Table 2B-4" 8 32 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Ceftazidime" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Ceftazidime" "Table 2C" 8 32 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Cefdinir" "Table 2E" "5ug" 20 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Cefdinir" "Table 2E" 1 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Cefdinir" "Table 2C" "5ug" 20 16 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Cefdinir" "Table 2C" 1 4 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Cefdinir" "Table 2G" "5ug" FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Cefdinir" "Table 2G" 0.5 2 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Cefaclor" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Cefaclor" "Table 2E" 8 32 FALSE +"CLSI 2017" "MIC" "Moraxella catarrhalis" "Cefaclor" "M45 Table 12" 8 32 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Cefaclor" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Cefaclor" "Table 2C" 8 32 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Cefaclor" "Table 2G" "30ug" FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Cefaclor" "Table 2G" 1 4 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Cephalothin" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Cephalothin" "Table 2C" 8 32 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Cefixime" "Table 2E" "5ug" 21 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Cefixime" "Table 2E" 1 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" "Cefixime" "Table 2F" "5ug" 31 FALSE +"CLSI 2017" "MIC" "Neisseria gonorrhoeae" "Cefixime" "Table 2F" 0.25 FALSE +"CLSI 2017" "MIC" "Anaerosalibacter" "Cefoperazone" "Table 2J" 16 64 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Cefoperazone" "Table 2C" "75ug" 21 15 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Cefoperazone" "Table 2C" 16 64 FALSE +"CLSI 2017" "DISK" "Aeromonas" "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE +"CLSI 2017" "MIC" "Aeromonas" "Chloramphenicol" "M45 Table 2" 8 32 FALSE +"CLSI 2017" "MIC" "Aggregatibacter" "Chloramphenicol" "M45 Table 7" 4 16 FALSE +"CLSI 2017" "MIC" "Anaerosalibacter" "Chloramphenicol" "Table 2J" 8 32 FALSE +"CLSI 2017" "MIC" "Bacillus" "Chloramphenicol" "M45 Table 3" 8 32 FALSE +"CLSI 2017" "MIC" "Bacillus anthracis" "Chloramphenicol" "M45 Table 16" FALSE +"CLSI 2017" "DISK" "Burkholderia cepacia" "Chloramphenicol" "Table 2B-3" "30ug" FALSE +"CLSI 2017" "MIC" "Burkholderia cepacia" "Chloramphenicol" "Table 2B-3" 8 32 FALSE +"CLSI 2017" "MIC" "Cardiobacterium" "Chloramphenicol" "M45 Table 7" 4 16 FALSE +"CLSI 2017" "MIC" "Eikenella" "Chloramphenicol" "M45 Table 7" 4 16 FALSE +"CLSI 2017" "DISK" "Enterococcus" "Chloramphenicol" "Table 2D" "30ug" 18 12 FALSE +"CLSI 2017" "MIC" "Enterococcus" "Chloramphenicol" "Table 2D" 8 32 FALSE +"CLSI 2017" "MIC" "Francisella tularensis" "Chloramphenicol" "M45 Table 16" 8 FALSE +"CLSI 2017" "MIC" "Granulicatella" "Chloramphenicol" "M45 Table 1" 4 8 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Chloramphenicol" "Table 2E" "30ug" 29 25 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Chloramphenicol" "Table 2E" 2 8 FALSE +"CLSI 2017" "MIC" "Kingella" "Chloramphenicol" "M45 Table 7" 4 16 FALSE +"CLSI 2017" "MIC" "Leuconostoc" "Chloramphenicol" "M45 Table 10" 8 32 FALSE +"CLSI 2017" "MIC" "Moraxella catarrhalis" "Chloramphenicol" "M45 Table 12" 2 8 FALSE +"CLSI 2017" "DISK" "Neisseria meningitidis" "Chloramphenicol" "Table 2I" "30ug" 26 19 FALSE +"CLSI 2017" "MIC" "Neisseria meningitidis" "Chloramphenicol" "Table 2I" 2 8 FALSE +"CLSI 2017" "MIC" "Pediococcus" "Chloramphenicol" "M45 Table 14" 8 32 FALSE +"CLSI 2017" "DISK" "Plesiomonas" "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE +"CLSI 2017" "MIC" "Plesiomonas" "Chloramphenicol" "M45 Table 2" 8 32 FALSE +"CLSI 2017" "DISK" "Pasteurella" "Chloramphenicol" "M45 Table 13" "30ug" 28 FALSE +"CLSI 2017" "MIC" "Pasteurella" "Chloramphenicol" "M45 Table 13" 2 FALSE +"CLSI 2017" "DISK" "Stenotrophomonas maltophilia" "Chloramphenicol" "Table 2B-4" "30ug" FALSE +"CLSI 2017" "MIC" "Stenotrophomonas maltophilia" "Chloramphenicol" "Table 2B-4" 8 32 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Chloramphenicol" "Table 2C" "30ug" 18 12 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Chloramphenicol" "Table 2C" 8 32 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Chloramphenicol" "Table 2H-1" "30ug" 21 17 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Chloramphenicol" "M45 Table 1" 4 8 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Chloramphenicol" "Table 2H-1" 4 16 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Chloramphenicol" "Table 2G" "30ug" 21 20 FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Chloramphenicol" "Table 2G" 4 8 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" "Chloramphenicol" "Table 2H-2" "30ug" 21 17 FALSE +"CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Chloramphenicol" "Table 2H-2" 4 16 FALSE +"CLSI 2017" "MIC" "Yersinia pestis" "Chloramphenicol" "M45 Table 16" 8 32 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Cefonicid" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Cefonicid" "Table 2E" 4 16 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Cefonicid" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Cefonicid" "Table 2C" 8 32 FALSE +"CLSI 2017" "DISK" "Acinetobacter" "Ciprofloxacin" "Table 2B-2" "5ug" 21 15 FALSE +"CLSI 2017" "MIC" "Acinetobacter" "Ciprofloxacin" "Table 2B-2" 1 4 FALSE +"CLSI 2017" "DISK" "Aeromonas" "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE +"CLSI 2017" "MIC" "Aeromonas" "Ciprofloxacin" "M45 Table 2" 1 4 FALSE +"CLSI 2017" "MIC" "Aggregatibacter" "Ciprofloxacin" "M45 Table 7" 1 4 FALSE +"CLSI 2017" "MIC" "Bacillus" "Ciprofloxacin" "M45 Table 3" 1 4 FALSE +"CLSI 2017" "MIC" "Bacillus anthracis" "Ciprofloxacin" "M45 Table 16" 0.25 FALSE +"CLSI 2017" "MIC" "Campylobacter" "Ciprofloxacin" "M45 Table 3" 1 4 FALSE +"CLSI 2017" "MIC" "Cardiobacterium" "Ciprofloxacin" "M45 Table 7" 1 4 FALSE +"CLSI 2017" "MIC" "Eikenella" "Ciprofloxacin" "M45 Table 7" 1 4 FALSE +"CLSI 2017" "DISK" "Enterococcus" "Ciprofloxacin" "Table 2D" "5ug" 21 15 FALSE +"CLSI 2017" "MIC" "Enterococcus" "Ciprofloxacin" "Table 2D" 1 4 FALSE +"CLSI 2017" "MIC" "Erysipelothrix rhusiopathiae" "Ciprofloxacin" "M45 Table 6" 1 FALSE +"CLSI 2017" "MIC" "Francisella tularensis" "Ciprofloxacin" "M45 Table 16" 0.5 FALSE +"CLSI 2017" "MIC" "Granulicatella" "Ciprofloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Ciprofloxacin" "Table 2E" "5ug" 21 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Ciprofloxacin" "Table 2E" 1 FALSE +"CLSI 2017" "MIC" "Kingella" "Ciprofloxacin" "M45 Table 7" 1 4 FALSE +"CLSI 2017" "MIC" "Moraxella catarrhalis" "Ciprofloxacin" "M45 Table 12" 1 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" "Ciprofloxacin" "Table 2F" "5ug" 41 27 FALSE +"CLSI 2017" "MIC" "Neisseria gonorrhoeae" "Ciprofloxacin" "Table 2F" 0.064 1 FALSE +"CLSI 2017" "DISK" "Neisseria meningitidis" "Ciprofloxacin" "Table 2I" "5ug" 35 32 FALSE +"CLSI 2017" "MIC" "Neisseria meningitidis" "Ciprofloxacin" "Table 2I" 0.032 0.12 FALSE +"CLSI 2017" "DISK" "Plesiomonas" "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE +"CLSI 2017" "MIC" "Plesiomonas" "Ciprofloxacin" "M45 Table 2" 1 4 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" "Ciprofloxacin" "Table 2B-1" "5ug" 21 15 FALSE +"CLSI 2017" "MIC" "Pseudomonas aeruginosa" "Ciprofloxacin" "Table 2B-1" 1 4 FALSE +"CLSI 2017" "DISK" "Extraintestinal" "Salmonella" "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE +"CLSI 2017" "DISK" "Salmonella" "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE +"CLSI 2017" "MIC" "Extraintestinal" "Salmonella" "Ciprofloxacin" "Table 2A" 0.064 1 FALSE +"CLSI 2017" "MIC" "Salmonella" "Ciprofloxacin" "Table 2A" 0.064 1 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Ciprofloxacin" "Table 2C" "5ug" 21 15 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Ciprofloxacin" "Table 2C" 1 4 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Ciprofloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Ciprofloxacin" "Table 2G" "5ug" FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Ciprofloxacin" "Table 2G" FALSE +"CLSI 2017" "MIC" "Yersinia pestis" "Ciprofloxacin" "M45 Table 16" 0.25 FALSE +"CLSI 2017" "MIC" "Anaerosalibacter" "Clindamycin" "Table 2J" 2 8 FALSE +"CLSI 2017" "MIC" "Bacillus" "Clindamycin" "M45 Table 3" 0.5 4 FALSE +"CLSI 2017" "MIC" "Bacillus anthracis" "Clindamycin" "M45 Table 16" FALSE +"CLSI 2017" "MIC" "Erysipelothrix rhusiopathiae" "Clindamycin" "M45 Table 6" 0.25 1 FALSE +"CLSI 2017" "MIC" "Granulicatella" "Clindamycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2017" "MIC" "Lactobacillus" "Clindamycin" "M45 Table 9" 0.5 2 FALSE +"CLSI 2017" "MIC" "Moraxella catarrhalis" "Clindamycin" "M45 Table 12" 0.5 4 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Clindamycin" "Table 2C" "2ug" 21 14 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Clindamycin" "Table 2C" 0.5 4 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Clindamycin" "Table 2H-1" "2ug" 19 15 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Clindamycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Clindamycin" "Table 2H-1" 0.25 1 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Clindamycin" "Table 2G" "2ug" 19 15 FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Clindamycin" "Table 2G" 0.25 1 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" "Clindamycin" "Table 2H-2" "2ug" 19 15 FALSE +"CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Clindamycin" "Table 2H-2" 0.25 1 FALSE +"CLSI 2017" "MIC" "Aggregatibacter" "Clarithromycin" "M45 Table 7" 8 32 FALSE +"CLSI 2017" "MIC" "Cardiobacterium" "Clarithromycin" "M45 Table 7" 8 32 FALSE +"CLSI 2017" "MIC" "Eikenella" "Clarithromycin" "M45 Table 7" 8 32 FALSE +"CLSI 2017" "MIC" "Helicobacter pylori" "Clarithromycin" "M45 Table 8" 0.25 1 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Clarithromycin" "Table 2E" "15ug" 13 10 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Clarithromycin" "Table 2E" 8 32 FALSE +"CLSI 2017" "MIC" "Kingella" "Clarithromycin" "M45 Table 7" 8 32 FALSE +"CLSI 2017" "DISK" "Moraxella catarrhalis" "Clarithromycin" "M45 Table 12" "15ug" 24 FALSE +"CLSI 2017" "MIC" "Moraxella catarrhalis" "Clarithromycin" "M45 Table 12" 1 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Clarithromycin" "Table 2C" "15ug" 18 13 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Clarithromycin" "Table 2C" 2 8 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Clarithromycin" "Table 2H-1" "15ug" 21 16 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Clarithromycin" "Table 2H-1" 0.25 1 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Clarithromycin" "Table 2G" "15ug" 21 16 FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Clarithromycin" "Table 2G" 0.25 1 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" "Clarithromycin" "Table 2H-2" "15ug" 21 16 FALSE +"CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Clarithromycin" "Table 2H-2" 0.25 1 FALSE +"CLSI 2017" "MIC" "Anaerosalibacter" "Cefmetazole" "Table 2J" 16 64 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" "Cefmetazole" "Table 2F" "30ug" 33 27 FALSE +"CLSI 2017" "MIC" "Neisseria gonorrhoeae" "Cefmetazole" "Table 2F" 2 8 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Cefmetazole" "Table 2C" "30ug" 16 12 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Cefmetazole" "Table 2C" 16 64 FALSE +"CLSI 2017" "DISK" "Acinetobacter" "Colistin" "Table 2B-2" "10ug" FALSE +"CLSI 2017" "MIC" "Acinetobacter" "Colistin" "Table 2B-2" 2 4 FALSE +"CLSI 2017" "MIC" "Pseudomonas aeruginosa" "Colistin" "Table 2B-1" 2 4 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Cefpodoxime" "Table 2E" "10ug" 21 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Cefpodoxime" "Table 2E" 2 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" "Cefpodoxime" "Table 2F" "10ug" 29 FALSE +"CLSI 2017" "MIC" "Neisseria gonorrhoeae" "Cefpodoxime" "Table 2F" 0.5 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Cefpodoxime" "Table 2C" "10ug" 21 17 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Cefpodoxime" "Table 2C" 2 8 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Cefpodoxime" "Table 2G" "10ug" FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Cefpodoxime" "Table 2G" 0.5 2 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Cefprozil" "Table 2E" "30ug" 18 14 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Cefprozil" "Table 2E" 8 32 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Cefprozil" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Cefprozil" "Table 2C" 8 32 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Cefprozil" "Table 2G" "30ug" FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Cefprozil" "Table 2G" 2 8 FALSE +"CLSI 2017" "DISK" "Haemophilus influenzae" "Ceftaroline" "Table 2E" "30ug" 30 FALSE +"CLSI 2017" "MIC" "Haemophilus influenzae" "Ceftaroline" "Table 2E" 0.5 FALSE +"CLSI 2017" "DISK" "Staphylococcus aureus" "Ceftaroline" "Table 2C" "30ug" 24 20 FALSE +"CLSI 2017" "MIC" "Staphylococcus aureus" "Ceftaroline" "Table 2C" 1 4 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Ceftaroline" "Table 2H-1" "30ug" 26 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Ceftaroline" "Table 2H-1" 0.5 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Ceftaroline" "Table 2G" "30ug" FALSE +"CLSI 2017" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Ceftaroline" "Table 2G" 0.5 FALSE +"CLSI 2017" "DISK" "Acinetobacter" "Ceftriaxone" "Table 2B-2" "30ug" 21 13 FALSE +"CLSI 2017" "MIC" "Acinetobacter" "Ceftriaxone" "Table 2B-2" 8 64 FALSE +"CLSI 2017" "DISK" "Aeromonas" "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE +"CLSI 2017" "MIC" "Aeromonas" "Ceftriaxone" "M45 Table 2" 1 4 FALSE +"CLSI 2017" "MIC" "Aggregatibacter" "Ceftriaxone" "M45 Table 7" 2 FALSE +"CLSI 2017" "MIC" "Anaerosalibacter" "Ceftriaxone" "Table 2J" 16 64 FALSE +"CLSI 2017" "MIC" "Bacillus" "Ceftriaxone" "M45 Table 3" 8 64 FALSE +"CLSI 2017" "MIC" "Bacillus anthracis" "Ceftriaxone" "M45 Table 16" FALSE +"CLSI 2017" "MIC" "Cardiobacterium" "Ceftriaxone" "M45 Table 7" 2 FALSE +"CLSI 2017" "MIC" "Eikenella" "Ceftriaxone" "M45 Table 7" 2 FALSE +"CLSI 2017" "MIC" "Erysipelothrix rhusiopathiae" "Ceftriaxone" "M45 Table 6" 1 FALSE +"CLSI 2017" "MIC" "Granulicatella" "Ceftriaxone" "M45 Table 1" 1 4 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Ceftriaxone" "Table 2E" "30ug" 26 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Ceftriaxone" "Table 2E" 2 FALSE +"CLSI 2017" "MIC" "Kingella" "Ceftriaxone" "M45 Table 7" 2 FALSE +"CLSI 2017" "MIC" "Moraxella catarrhalis" "Ceftriaxone" "M45 Table 12" 2 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" "Ceftriaxone" "Table 2F" "30ug" 35 FALSE +"CLSI 2017" "MIC" "Neisseria gonorrhoeae" "Ceftriaxone" "Table 2F" 0.25 FALSE +"CLSI 2017" "DISK" "Neisseria meningitidis" "Ceftriaxone" "Table 2I" "30ug" 34 FALSE +"CLSI 2017" "MIC" "Neisseria meningitidis" "Ceftriaxone" "Table 2I" 0.125 FALSE +"CLSI 2017" "DISK" "Plesiomonas" "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE +"CLSI 2017" "MIC" "Plesiomonas" "Ceftriaxone" "M45 Table 2" 1 4 FALSE +"CLSI 2017" "DISK" "Pasteurella" "Ceftriaxone" "M45 Table 13" "30ug" 34 FALSE +"CLSI 2017" "MIC" "Pasteurella" "Ceftriaxone" "M45 Table 13" 0.125 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Ceftriaxone" "Table 2C" "30ug" 21 13 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Ceftriaxone" "Table 2C" 8 64 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Ceftriaxone" "Table 2H-1" "30ug" 24 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Ceftriaxone" "M45 Table 1" 1 4 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Ceftriaxone" "Table 2H-1" 0.5 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Ceftriaxone" "Table 2G" "30ug" FALSE +"CLSI 2017" "MIC" "Meningitis" "Streptococcus pneumoniae" "Ceftriaxone" "Table 2G" 0.5 2 FALSE +"CLSI 2017" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Ceftriaxone" "Table 2G" 1 4 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" "Table 2H-2" "30ug" 27 24 FALSE +"CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" "Table 2H-2" 1 4 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Ceftibuten" "Table 2E" "30ug" 28 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Ceftibuten" "Table 2E" 2 FALSE +"CLSI 2017" "MIC" "Anaerosalibacter" "Cefotetan" "Table 2J" 16 64 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" "Cefotetan" "Table 2F" "30ug" 26 19 FALSE +"CLSI 2017" "MIC" "Neisseria gonorrhoeae" "Cefotetan" "Table 2F" 2 8 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Cefotetan" "Table 2C" "30ug" 16 12 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Cefotetan" "Table 2C" 16 64 FALSE +"CLSI 2017" "DISK" "Acinetobacter" "Cefotaxime" "Table 2B-2" "30ug" 23 14 FALSE +"CLSI 2017" "MIC" "Acinetobacter" "Cefotaxime" "Table 2B-2" 8 64 FALSE +"CLSI 2017" "DISK" "Aeromonas" "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE +"CLSI 2017" "MIC" "Aeromonas" "Cefotaxime" "M45 Table 2" 1 4 FALSE +"CLSI 2017" "MIC" "Aggregatibacter" "Cefotaxime" "M45 Table 7" 2 FALSE +"CLSI 2017" "MIC" "Anaerosalibacter" "Cefotaxime" "Table 2J" 16 64 FALSE +"CLSI 2017" "MIC" "Bacillus" "Cefotaxime" "M45 Table 3" 8 64 FALSE +"CLSI 2017" "MIC" "Bacillus anthracis" "Cefotaxime" "M45 Table 16" FALSE +"CLSI 2017" "MIC" "Cardiobacterium" "Cefotaxime" "M45 Table 7" 2 FALSE +"CLSI 2017" "MIC" "Eikenella" "Cefotaxime" "M45 Table 7" 2 FALSE +"CLSI 2017" "MIC" "Erysipelothrix rhusiopathiae" "Cefotaxime" "M45 Table 6" 1 FALSE +"CLSI 2017" "MIC" "Granulicatella" "Cefotaxime" "M45 Table 1" 1 4 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Cefotaxime" "Table 2E" "30ug" 26 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Cefotaxime" "Table 2E" 2 FALSE +"CLSI 2017" "MIC" "Kingella" "Cefotaxime" "M45 Table 7" 2 FALSE +"CLSI 2017" "MIC" "Moraxella catarrhalis" "Cefotaxime" "M45 Table 12" 2 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" "Cefotaxime" "Table 2F" "30ug" 31 FALSE +"CLSI 2017" "MIC" "Neisseria gonorrhoeae" "Cefotaxime" "Table 2F" 0.5 FALSE +"CLSI 2017" "DISK" "Neisseria meningitidis" "Cefotaxime" "Table 2I" "30ug" 34 FALSE +"CLSI 2017" "MIC" "Neisseria meningitidis" "Cefotaxime" "Table 2I" 0.125 FALSE +"CLSI 2017" "DISK" "Plesiomonas" "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE +"CLSI 2017" "MIC" "Plesiomonas" "Cefotaxime" "M45 Table 2" 1 4 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Cefotaxime" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Cefotaxime" "Table 2C" 8 64 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Cefotaxime" "Table 2H-1" "30ug" 24 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Cefotaxime" "M45 Table 1" 1 4 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Cefotaxime" "Table 2H-1" 0.5 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Cefotaxime" "Table 2G" "30ug" FALSE +"CLSI 2017" "MIC" "Meningitis" "Streptococcus pneumoniae" "Cefotaxime" "Table 2G" 0.5 2 FALSE +"CLSI 2017" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Cefotaxime" "Table 2G" 1 4 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" "Cefotaxime" "Table 2H-2" "30ug" 28 25 FALSE +"CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Cefotaxime" "Table 2H-2" 1 4 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Cefuroxime axetil" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Cefuroxime axetil" "Table 2E" 4 16 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Cefuroxime axetil" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Cefuroxime axetil" "Table 2C" 4 32 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Cefuroxime axetil" "Table 2G" "30ug" FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Cefuroxime axetil" "Table 2G" 1 4 FALSE +"CLSI 2017" "DISK" "Aeromonas" "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2017" "MIC" "Aeromonas" "Cefuroxime" "M45 Table 2" 8 32 FALSE +"CLSI 2017" "DISK" "Oral" "Haemophilus" "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2017" "MIC" "Oral" "Haemophilus" "Cefuroxime" "Table 2E" 4 16 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Cefuroxime" "Table 2E" 4 16 FALSE +"CLSI 2017" "MIC" "Moraxella catarrhalis" "Cefuroxime" "M45 Table 12" 4 16 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" "Cefuroxime" "Table 2F" "30ug" 31 25 FALSE +"CLSI 2017" "MIC" "Neisseria gonorrhoeae" "Cefuroxime" "Table 2F" 1 4 FALSE +"CLSI 2017" "DISK" "Plesiomonas" "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2017" "MIC" "Plesiomonas" "Cefuroxime" "M45 Table 2" 8 32 FALSE +"CLSI 2017" "DISK" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2017" "DISK" "Parenteral" "Staphylococcus" "Cefuroxime" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2017" "DISK" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2017" "MIC" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" 4 32 FALSE +"CLSI 2017" "MIC" "Intravenous" "Staphylococcus" "Cefuroxime" "Table 2C" 8 32 FALSE +"CLSI 2017" "MIC" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" 4 32 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Cefuroxime" "Table 2H-1" "30ug" FALSE +"CLSI 2017" "MIC" "Streptococcus" "Cefuroxime" "Table 2H-1" FALSE +"CLSI 2017" "DISK" "Oral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" "30ug" FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" "30ug" FALSE +"CLSI 2017" "MIC" "Oral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" 1 4 FALSE +"CLSI 2017" "MIC" "Parenteral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" 0.5 2 FALSE +"CLSI 2017" "MIC" "Oral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" 1 4 FALSE +"CLSI 2017" "DISK" "Urine" "Enterobacteriaceae" "Cefazolin" "Table 2A" 15 14 FALSE +"CLSI 2017" "MIC" "Urine" "Enterobacteriaceae" "Cefazolin" "Table 2A" 16 32 FALSE +"CLSI 2017" "MIC" "Aeromonas" "Cefazolin" "M45 Table 2" 1 4 FALSE +"CLSI 2017" "MIC" "Bacillus" "Cefazolin" "M45 Table 3" 8 16 FALSE +"CLSI 2017" "MIC" "Bacillus anthracis" "Cefazolin" "M45 Table 16" FALSE +"CLSI 2017" "MIC" "Plesiomonas" "Cefazolin" "M45 Table 2" 1 4 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Cefazolin" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Cefazolin" "Table 2C" 8 32 FALSE +"CLSI 2017" "MIC" "Pseudomonas aeruginosa" "Ceftolozane/tazobactam" 4 16 FALSE +"CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Ceftolozane/tazobactam" "Table 2H-2" 8 32 FALSE +"CLSI 2017" "MIC" "Anaerosalibacter" "Ceftizoxime" "Table 2J" 32 128 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Ceftizoxime" "Table 2E" "30ug" 26 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Ceftizoxime" "Table 2E" 2 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" "Ceftizoxime" "Table 2F" "30ug" 38 FALSE +"CLSI 2017" "MIC" "Neisseria gonorrhoeae" "Ceftizoxime" "Table 2F" 0.5 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Ceftizoxime" "Table 2C" "30ug" 20 14 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Ceftizoxime" "Table 2C" 8 64 FALSE +"CLSI 2017" "DISK" "Enterococcus" "Daptomycin" "Table 2D" "30ug" FALSE +"CLSI 2017" "MIC" "Enterococcus" "Daptomycin" "Table 2D" 4 FALSE +"CLSI 2017" "MIC" "Lactobacillus" "Daptomycin" "M45 Table 9" 4 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Daptomycin" "Table 2C" "30ug" FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Daptomycin" "Table 2C" 1 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Daptomycin" "Table 2H-1" "30ug" 16 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Daptomycin" "Table 2H-1" FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Daptomycin" "Table 2G" "30ug" FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" "Daptomycin" "Table 2H-2" "30ug" FALSE +"CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Daptomycin" "Table 2H-2" 1 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Dirithromycin" "Table 2C" "15ug" 19 15 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Dirithromycin" "Table 2C" 2 8 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Dirithromycin" "Table 2H-1" "15ug" 18 13 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Dirithromycin" "Table 2H-1" 0.5 2 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Dirithromycin" "Table 2G" "15ug" 18 13 FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Dirithromycin" "Table 2G" 0.5 2 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" "Dirithromycin" "Table 2H-2" "15ug" 18 13 FALSE +"CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Dirithromycin" "Table 2H-2" 0.5 2 FALSE +"CLSI 2017" "DISK" "Acinetobacter" "Doripenem" "Table 2B-2" 18 14 FALSE +"CLSI 2017" "MIC" "Acinetobacter" "Doripenem" "Table 2B-2" 2 8 FALSE +"CLSI 2017" "MIC" "Anaerosalibacter" "Doripenem" "Table 2J" 2 8 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Doripenem" "Table 2E" "10ug" 16 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Doripenem" "Table 2E" 1 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" "Doripenem" "Table 2B-1" "10ug" 19 15 FALSE +"CLSI 2017" "MIC" "Pseudomonas aeruginosa" "Doripenem" "Table 2B-1" 2 8 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Doripenem" "Table 2C" "10ug" 30 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Doripenem" "Table 2C" 0.5 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Doripenem" "Table 2H-1" "10ug" FALSE +"CLSI 2017" "MIC" "Streptococcus" "Doripenem" "Table 2H-1" 0.125 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Doripenem" "Table 2G" "10ug" FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Doripenem" "Table 2G" 1 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" "Doripenem" "Table 2H-2" "10ug" FALSE +"CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Doripenem" "Table 2H-2" 1 FALSE +"CLSI 2017" "DISK" "Acinetobacter" "Doxycycline" "Table 2B-2" "30ug" 13 9 FALSE +"CLSI 2017" "MIC" "Acinetobacter" "Doxycycline" "Table 2B-2" 4 16 FALSE +"CLSI 2017" "MIC" "Bacillus anthracis" "Doxycycline" "M45 Table 16" 1 FALSE +"CLSI 2017" "MIC" "Brucella" "Doxycycline" "M45 Table 16" 1 FALSE +"CLSI 2017" "MIC" "Burkholderia mallei" "Doxycycline" "M45 Table 16" 4 16 FALSE +"CLSI 2017" "MIC" "Burkholderia pseudomallei" "Doxycycline" "M45 Table 16" 4 16 FALSE +"CLSI 2017" "MIC" "Campylobacter" "Doxycycline" "M45 Table 3" 2 8 FALSE +"CLSI 2017" "DISK" "Enterococcus" "Doxycycline" "Table 2D" "30ug" 16 12 FALSE +"CLSI 2017" "MIC" "Enterococcus" "Doxycycline" "Table 2D" 4 16 FALSE +"CLSI 2017" "MIC" "Francisella tularensis" "Doxycycline" "M45 Table 16" 4 FALSE +"CLSI 2017" "DISK" "Pasteurella" "Doxycycline" "M45 Table 13" "30ug" 23 FALSE +"CLSI 2017" "MIC" "Pasteurella" "Doxycycline" "M45 Table 13" 0.5 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Doxycycline" "Table 2C" "30ug" 16 12 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Doxycycline" "Table 2C" 4 16 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Doxycycline" "Table 2G" "30ug" 28 24 FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Doxycycline" "Table 2G" 0.25 1 FALSE +"CLSI 2017" "MIC" "Vibrio cholerae" "Doxycycline" "M45 Table 14" "30ug" 4 16 FALSE +"CLSI 2017" "MIC" "Yersinia pestis" "Doxycycline" "M45 Table 16" 4 16 FALSE +"CLSI 2017" "MIC" "Canine, feline" "Alloscardovia" "Enrofloxacin" "Vet Table" 0.5 4 FALSE +"CLSI 2017" "DISK" "Histophilus somni" "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2017" "MIC" "Histophilus somni" "Enrofloxacin" "Vet Table" 0.25 2 FALSE +"CLSI 2017" "DISK" "Providencia heimbachae" "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2017" "DISK" "Pasteurella multocida" "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" "Enoxacin" "Table 2F" "10ug" 36 31 FALSE +"CLSI 2017" "MIC" "Neisseria gonorrhoeae" "Enoxacin" "Table 2F" 0.5 2 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Enoxacin" "Table 2C" "10ug" 18 14 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Enoxacin" "Table 2C" 2 8 FALSE +"CLSI 2017" "MIC" "Bacillus" "Erythromycin" "M45 Table 3" 0.5 8 FALSE +"CLSI 2017" "MIC" "Bacillus anthracis" "Erythromycin" "M45 Table 16" FALSE +"CLSI 2017" "MIC" "Campylobacter" "Erythromycin" "M45 Table 3" 8 32 FALSE +"CLSI 2017" "DISK" "Enterococcus" "Erythromycin" "Table 2D" "15ug" 23 13 FALSE +"CLSI 2017" "MIC" "Enterococcus" "Erythromycin" "Table 2D" 0.5 8 FALSE +"CLSI 2017" "MIC" "Erysipelothrix rhusiopathiae" "Erythromycin" "M45 Table 6" 0.25 1 FALSE +"CLSI 2017" "MIC" "Granulicatella" "Erythromycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2017" "MIC" "Lactobacillus" "Erythromycin" "M45 Table 9" 0.5 8 FALSE +"CLSI 2017" "DISK" "Moraxella catarrhalis" "Erythromycin" "M45 Table 12" "15ug" 21 FALSE +"CLSI 2017" "MIC" "Moraxella catarrhalis" "Erythromycin" "M45 Table 12" 2 FALSE +"CLSI 2017" "DISK" "Pasteurella" "Erythromycin" "M45 Table 13" "15ug" 27 24 FALSE +"CLSI 2017" "MIC" "Pasteurella" "Erythromycin" "M45 Table 13" 0.5 2 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Erythromycin" "Table 2C" "15ug" 23 13 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Erythromycin" "Table 2C" 0.5 8 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Erythromycin" "Table 2H-1" "15ug" 21 15 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Erythromycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Erythromycin" "Table 2H-1" 0.25 1 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Erythromycin" "Table 2G" "15ug" 21 15 FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Erythromycin" "Table 2G" 0.25 1 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" "Erythromycin" "Table 2H-2" "15ug" 21 15 FALSE +"CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Erythromycin" "Table 2H-2" 0.25 1 FALSE +"CLSI 2017" "DISK" "Acinetobacter" "Ertapenem" "Table 2B-2" "10ug" FALSE +"CLSI 2017" "MIC" "Acinetobacter" "Ertapenem" "Table 2B-2" FALSE +"CLSI 2017" "DISK" "Aeromonas" "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE +"CLSI 2017" "MIC" "Aeromonas" "Ertapenem" "M45 Table 2" 2 8 FALSE +"CLSI 2017" "MIC" "Anaerosalibacter" "Ertapenem" "Table 2J" 4 16 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Ertapenem" "Table 2E" "10ug" 19 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Ertapenem" "Table 2E" 0.5 FALSE +"CLSI 2017" "DISK" "Plesiomonas" "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE +"CLSI 2017" "MIC" "Plesiomonas" "Ertapenem" "M45 Table 2" 2 8 FALSE +"CLSI 2017" "DISK" "Pseudomonas" "Ertapenem" "10ug" FALSE +"CLSI 2017" "MIC" "Pseudomonas" "Ertapenem" FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Ertapenem" "Table 2C" "10ug" 19 15 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Ertapenem" "Table 2C" 2 8 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Ertapenem" "Table 2H-1" "10ug" FALSE +"CLSI 2017" "MIC" "Streptococcus" "Ertapenem" "Table 2H-1" 1 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Ertapenem" "Table 2G" "10ug" FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Ertapenem" "Table 2G" 1 4 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" "Ertapenem" "Table 2H-2" "10ug" FALSE +"CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Ertapenem" "Table 2H-2" 1 FALSE +"CLSI 2017" "MIC" "Abiotrophia" "Cefepime" "M45 Table 1" 1 4 FALSE +"CLSI 2017" "DISK" "Acinetobacter" "Cefepime" "Table 2B-2" "30ug" 18 14 FALSE +"CLSI 2017" "MIC" "Acinetobacter" "Cefepime" "Table 2B-2" 8 32 FALSE +"CLSI 2017" "DISK" "Aeromonas" "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2017" "MIC" "Aeromonas" "Cefepime" "M45 Table 2" 8 32 FALSE +"CLSI 2017" "MIC" "Erysipelothrix rhusiopathiae" "Cefepime" "M45 Table 6" 1 FALSE +"CLSI 2017" "MIC" "Granulicatella" "Cefepime" "M45 Table 1" 1 4 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Cefepime" "Table 2E" "30ug" 26 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Cefepime" "Table 2E" 2 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" "Cefepime" "Table 2F" "30ug" 31 FALSE +"CLSI 2017" "MIC" "Neisseria gonorrhoeae" "Cefepime" "Table 2F" 0.5 FALSE +"CLSI 2017" "DISK" "Plesiomonas" "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2017" "MIC" "Plesiomonas" "Cefepime" "M45 Table 2" 8 32 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" "Cefepime" "Table 2B-1" "30ug" 18 14 FALSE +"CLSI 2017" "MIC" "Pseudomonas aeruginosa" "Cefepime" "Table 2B-1" 8 32 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Cefepime" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Cefepime" "Table 2C" 8 32 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Cefepime" "Table 2H-1" "30ug" 24 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Cefepime" "M45 Table 1" 1 4 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Cefepime" "Table 2H-1" 0.5 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Cefepime" "Table 2G" "30ug" FALSE +"CLSI 2017" "MIC" "Meningitis" "Streptococcus pneumoniae" "Cefepime" "Table 2G" 0.5 2 FALSE +"CLSI 2017" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Cefepime" "Table 2G" 1 4 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" "Cefepime" "Table 2H-2" "30ug" 24 21 FALSE +"CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Cefepime" "Table 2H-2" 1 4 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Fleroxacin" "Table 2E" "5ug" 19 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Fleroxacin" "Table 2E" 2 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" "Fleroxacin" "Table 2F" "5ug" 35 28 FALSE +"CLSI 2017" "MIC" "Neisseria gonorrhoeae" "Fleroxacin" "Table 2F" 0.25 1 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Fleroxacin" "Table 2C" "5ug" 19 15 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Fleroxacin" "Table 2C" 2 8 FALSE +"CLSI 2017" "DISK" "Enterococcus" "Fosfomycin" "Table 2D" "200ug" 16 12 FALSE +"CLSI 2017" "MIC" "Enterococcus" "Fosfomycin" "Table 2D" 64 256 FALSE +"CLSI 2017" "DISK" "Aeromonas" "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2017" "MIC" "Aeromonas" "Cefoxitin" "M45 Table 2" 8 32 FALSE +"CLSI 2017" "MIC" "Anaerosalibacter" "Cefoxitin" "Table 2J" 16 64 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" "Cefoxitin" "Table 2F" "30ug" 28 23 FALSE +"CLSI 2017" "MIC" "Neisseria gonorrhoeae" "Cefoxitin" "Table 2F" 2 8 FALSE +"CLSI 2017" "DISK" "Plesiomonas" "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2017" "MIC" "Plesiomonas" "Cefoxitin" "M45 Table 2" 8 32 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Cefoxitin" "Table 2C" "30ug" 25 24 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Cefoxitin" "Table 2C" 4 8 FALSE +"CLSI 2017" "DISK" "Staphylococcus aureus" "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE +"CLSI 2017" "MIC" "Staphylococcus aureus" "Cefoxitin" "Table 2C" 4 8 FALSE +"CLSI 2017" "DISK" "Staphylococcus lugdunensis" "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE +"CLSI 2017" "MIC" "Staphylococcus lugdunensis" "Cefoxitin" "Table 2C" 4 8 FALSE +"CLSI 2017" "MIC" "Abiotrophia" "Gatifloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2017" "DISK" "Acinetobacter" "Gatifloxacin" "Table 2B-2" "5ug" 18 14 FALSE +"CLSI 2017" "MIC" "Acinetobacter" "Gatifloxacin" "Table 2B-2" 2 8 FALSE +"CLSI 2017" "DISK" "Enterococcus" "Gatifloxacin" "Table 2D" "5ug" 18 14 FALSE +"CLSI 2017" "MIC" "Enterococcus" "Gatifloxacin" "Table 2D" 2 8 FALSE +"CLSI 2017" "MIC" "Granulicatella" "Gatifloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Gatifloxacin" "Table 2E" "5ug" 18 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Gatifloxacin" "Table 2E" 1 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" "Gatifloxacin" "Table 2F" "5ug" 38 33 FALSE +"CLSI 2017" "MIC" "Neisseria gonorrhoeae" "Gatifloxacin" "Table 2F" 0.125 0.5 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" "Gatifloxacin" "Table 2B-1" "5ug" 18 14 FALSE +"CLSI 2017" "MIC" "Pseudomonas aeruginosa" "Gatifloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Gatifloxacin" "Table 2C" "10ug" 23 19 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Gatifloxacin" "Table 2C" 0.5 2 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Gatifloxacin" "Table 2H-1" "5ug" 21 17 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Gatifloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Gatifloxacin" "Table 2H-1" 1 4 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Gatifloxacin" "Table 2G" "5ug" 21 17 FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Gatifloxacin" "Table 2G" 1 4 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" "Gatifloxacin" "Table 2H-2" "5ug" 21 17 FALSE +"CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Gatifloxacin" "Table 2H-2" 1 4 FALSE +"CLSI 2017" "DISK" "Enterococcus" "Gentamicin-high" "Table 2D" "120ug" 10 6 FALSE +"CLSI 2017" "MIC" "Enterococcus" "Gentamicin-high" "Table 2D" 512 512 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Gemifloxacin" "Table 2E" "5ug" 18 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Gemifloxacin" "Table 2E" 0.125 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Gemifloxacin" "Table 2H-1" "5ug" FALSE +"CLSI 2017" "MIC" "Streptococcus" "Gemifloxacin" "Table 2H-1" FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Gemifloxacin" "Table 2G" "5ug" 23 19 FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Gemifloxacin" "Table 2G" 0.125 0.5 FALSE +"CLSI 2017" "DISK" "Acinetobacter" "Gentamicin" "Table 2B-2" "10ug" 15 12 FALSE +"CLSI 2017" "MIC" "Acinetobacter" "Gentamicin" "Table 2B-2" 4 16 FALSE +"CLSI 2017" "DISK" "Aeromonas" "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE +"CLSI 2017" "MIC" "Aeromonas" "Gentamicin" "M45 Table 2" 4 16 FALSE +"CLSI 2017" "MIC" "Bacillus" "Gentamicin" "M45 Table 3" 4 16 FALSE +"CLSI 2017" "MIC" "Bacillus anthracis" "Gentamicin" "M45 Table 16" FALSE +"CLSI 2017" "MIC" "Brucella" "Gentamicin" "M45 Table 16" 4 FALSE +"CLSI 2017" "MIC" "Enterococcus" "Gentamicin" "Table 2D" 512 512 FALSE +"CLSI 2017" "MIC" "Francisella tularensis" "Gentamicin" "M45 Table 16" 4 FALSE +"CLSI 2017" "MIC" "Leuconostoc" "Gentamicin" "M45 Table 10" 4 16 FALSE +"CLSI 2017" "MIC" "Lactobacillus" "Gentamicin" "M45 Table 9" 4 16 FALSE +"CLSI 2017" "MIC" "Pediococcus" "Gentamicin" "M45 Table 14" 4 16 FALSE +"CLSI 2017" "DISK" "Plesiomonas" "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE +"CLSI 2017" "MIC" "Plesiomonas" "Gentamicin" "M45 Table 2" 4 16 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" "Gentamicin" "Table 2B-1" "10ug" 15 12 FALSE +"CLSI 2017" "MIC" "Pseudomonas aeruginosa" "Gentamicin" "Table 2B-1" 4 16 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Gentamicin" "Table 2C" "10ug" 15 12 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Gentamicin" "Table 2C" 4 16 FALSE +"CLSI 2017" "MIC" "Yersinia pestis" "Gentamicin" "M45 Table 16" 4 16 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Grepafloxacin" "Table 2E" "5ug" 24 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Grepafloxacin" "Table 2E" 0.5 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" "Grepafloxacin" "Table 2F" "5ug" 37 27 FALSE +"CLSI 2017" "MIC" "Neisseria gonorrhoeae" "Grepafloxacin" "Table 2F" 0.064 1 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Grepafloxacin" "Table 2C" "5ug" 18 14 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Grepafloxacin" "Table 2C" 1 4 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Grepafloxacin" "Table 2H-1" "5ug" 19 15 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Grepafloxacin" "Table 2H-1" 0.5 2 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Grepafloxacin" "Table 2G" "5ug" 19 15 FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Grepafloxacin" "Table 2G" 0.5 2 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" "Grepafloxacin" "Table 2H-2" "5ug" 19 15 FALSE +"CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Grepafloxacin" "Table 2H-2" 0.5 2 FALSE +"CLSI 2017" "MIC" "Abiotrophia" "Imipenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2017" "DISK" "Acinetobacter" "Imipenem" "Table 2B-2" "10ug" 22 18 FALSE +"CLSI 2017" "MIC" "Acinetobacter" "Imipenem" "Table 2B-2" 2 8 FALSE +"CLSI 2017" "DISK" "Aeromonas" "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2017" "MIC" "Aeromonas" "Imipenem" "M45 Table 2" 4 16 FALSE +"CLSI 2017" "MIC" "Aggregatibacter" "Imipenem" "M45 Table 7" 4 16 FALSE +"CLSI 2017" "MIC" "Anaerosalibacter" "Imipenem" "Table 2J" 4 16 FALSE +"CLSI 2017" "MIC" "Bacillus" "Imipenem" "M45 Table 3" 4 16 FALSE +"CLSI 2017" "MIC" "Bacillus anthracis" "Imipenem" "M45 Table 16" FALSE +"CLSI 2017" "MIC" "Burkholderia mallei" "Imipenem" "M45 Table 16" 4 16 FALSE +"CLSI 2017" "MIC" "Burkholderia pseudomallei" "Imipenem" "M45 Table 16" 4 16 FALSE +"CLSI 2017" "MIC" "Cardiobacterium" "Imipenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2017" "MIC" "Eikenella" "Imipenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2017" "MIC" "Erysipelothrix rhusiopathiae" "Imipenem" "M45 Table 6" 0.5 FALSE +"CLSI 2017" "MIC" "Granulicatella" "Imipenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Imipenem" "Table 2E" "10ug" 16 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Imipenem" "Table 2E" 4 FALSE +"CLSI 2017" "MIC" "Kingella" "Imipenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2017" "MIC" "Lactobacillus" "Imipenem" "M45 Table 9" 0.5 2 FALSE +"CLSI 2017" "MIC" "Pediococcus" "Imipenem" "M45 Table 14" 0.5 FALSE +"CLSI 2017" "DISK" "Plesiomonas" "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2017" "MIC" "Plesiomonas" "Imipenem" "M45 Table 2" 4 16 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" "Imipenem" "Table 2B-1" "10ug" 19 15 FALSE +"CLSI 2017" "MIC" "Pseudomonas aeruginosa" "Imipenem" "Table 2B-1" 2 8 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Imipenem" "Table 2C" "10ug" 16 13 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Imipenem" "Table 2C" 4 16 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Imipenem" "Table 2H-1" "10ug" FALSE +"CLSI 2017" "MIC" "Streptococcus" "Imipenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Imipenem" "Table 2H-1" FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Imipenem" "Table 2G" "10ug" FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Imipenem" "Table 2G" 0.125 1 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Kanamycin" "Table 2C" "30ug" 18 13 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Kanamycin" "Table 2C" 16 64 FALSE +"CLSI 2017" "DISK" "Enterococcus" "Linezolid" "Table 2D" "30ug" 23 20 FALSE +"CLSI 2017" "MIC" "Enterococcus" "Linezolid" "Table 2D" 2 8 FALSE +"CLSI 2017" "MIC" "Lactobacillus" "Linezolid" "M45 Table 9" 4 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Linezolid" "Table 2C" "30ug" 21 20 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Linezolid" "Table 2C" 4 8 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Linezolid" "Table 2H-1" "30ug" 21 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Linezolid" "Table 2H-1" 2 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Linezolid" "Table 2G" "30ug" 21 FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Linezolid" "Table 2G" 2 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" "Linezolid" "Table 2H-2" "30ug" 21 FALSE +"CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Linezolid" "Table 2H-2" 2 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Lomefloxacin" "Table 2E" "10ug" 22 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Lomefloxacin" "Table 2E" 2 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" "Lomefloxacin" "Table 2F" "10ug" 38 26 FALSE +"CLSI 2017" "MIC" "Neisseria gonorrhoeae" "Lomefloxacin" "Table 2F" 0.125 2 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" "Lomefloxacin" "Table 2B-1" "10ug" 22 18 FALSE +"CLSI 2017" "MIC" "Pseudomonas aeruginosa" "Lomefloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Lomefloxacin" "Table 2C" "10ug" 22 18 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Lomefloxacin" "Table 2C" 2 8 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Loracarbef" "Table 2E" "30ug" 19 15 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Loracarbef" "Table 2E" 8 32 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Loracarbef" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Loracarbef" "Table 2C" 8 32 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Loracarbef" "Table 2G" "30ug" FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Loracarbef" "Table 2G" 2 8 FALSE +"CLSI 2017" "MIC" "Anaerosalibacter" "Latamoxef" "Table 2J" 2 8 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Latamoxef" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Latamoxef" "Table 2C" 8 64 FALSE +"CLSI 2017" "MIC" "Abiotrophia" "Levofloxacin" "M45 Table 1" 2 8 FALSE +"CLSI 2017" "DISK" "Acinetobacter" "Levofloxacin" "Table 2B-2" "5ug" 17 13 FALSE +"CLSI 2017" "MIC" "Acinetobacter" "Levofloxacin" "Table 2B-2" 2 8 FALSE +"CLSI 2017" "DISK" "Aeromonas" "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE +"CLSI 2017" "MIC" "Aeromonas" "Levofloxacin" "M45 Table 2" 2 8 FALSE +"CLSI 2017" "MIC" "Aggregatibacter" "Levofloxacin" "M45 Table 7" 2 8 FALSE +"CLSI 2017" "MIC" "Bacillus" "Levofloxacin" "M45 Table 3" 2 8 FALSE +"CLSI 2017" "MIC" "Bacillus anthracis" "Levofloxacin" "M45 Table 16" 0.25 FALSE +"CLSI 2017" "DISK" "Burkholderia cepacia" "Levofloxacin" "Table 2B-3" "5ug" FALSE +"CLSI 2017" "MIC" "Burkholderia cepacia" "Levofloxacin" "Table 2B-3" 2 8 FALSE +"CLSI 2017" "MIC" "Cardiobacterium" "Levofloxacin" "M45 Table 7" 2 8 FALSE +"CLSI 2017" "MIC" "Eikenella" "Levofloxacin" "M45 Table 7" 2 8 FALSE +"CLSI 2017" "DISK" "Enterococcus" "Levofloxacin" "Table 2D" "5ug" 17 13 FALSE +"CLSI 2017" "MIC" "Enterococcus" "Levofloxacin" "Table 2D" 2 8 FALSE +"CLSI 2017" "MIC" "Erysipelothrix rhusiopathiae" "Levofloxacin" "M45 Table 6" 2 FALSE +"CLSI 2017" "MIC" "Francisella tularensis" "Levofloxacin" "M45 Table 16" 0.5 FALSE +"CLSI 2017" "MIC" "Granulicatella" "Levofloxacin" "M45 Table 1" 2 8 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Levofloxacin" "Table 2E" "5ug" 17 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Levofloxacin" "Table 2E" 2 FALSE +"CLSI 2017" "MIC" "Kingella" "Levofloxacin" "M45 Table 7" 2 8 FALSE +"CLSI 2017" "MIC" "Moraxella catarrhalis" "Levofloxacin" "M45 Table 12" 2 FALSE +"CLSI 2017" "DISK" "Neisseria meningitidis" "Levofloxacin" "Table 2I" "5ug" FALSE +"CLSI 2017" "MIC" "Neisseria meningitidis" "Levofloxacin" "Table 2I" 0.032 0.12 FALSE +"CLSI 2017" "DISK" "Plesiomonas" "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE +"CLSI 2017" "MIC" "Plesiomonas" "Levofloxacin" "M45 Table 2" 2 8 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" "Levofloxacin" "Table 2B-1" "5ug" 17 13 FALSE +"CLSI 2017" "MIC" "Pseudomonas aeruginosa" "Levofloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2017" "DISK" "Pasteurella" "Levofloxacin" "M45 Table 13" "5ug" 28 FALSE +"CLSI 2017" "MIC" "Pasteurella" "Levofloxacin" "M45 Table 13" 0.064 FALSE +"CLSI 2017" "MIC" "Salmonella" "Levofloxacin" "Table 2A" 0.125 2 FALSE +"CLSI 2017" "MIC" "Extraintestinal" "Salmonella" "Levofloxacin" "Table 2A" 0.125 2 FALSE +"CLSI 2017" "DISK" "Stenotrophomonas maltophilia" "Levofloxacin" "Table 2B-4" "75ug" 17 13 FALSE +"CLSI 2017" "MIC" "Stenotrophomonas maltophilia" "Levofloxacin" "Table 2B-4" 2 8 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Levofloxacin" "Table 2C" "10ug" 19 15 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Levofloxacin" "Table 2C" 1 4 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Levofloxacin" "Table 2H-1" "5ug" 17 13 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Levofloxacin" "M45 Table 1" 2 8 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Levofloxacin" "Table 2H-1" 2 8 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Levofloxacin" "Table 2G" "5ug" 17 13 FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Levofloxacin" "Table 2G" 2 8 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" "Levofloxacin" "Table 2H-2" "5ug" 17 13 FALSE +"CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Levofloxacin" "Table 2H-2" 2 8 FALSE +"CLSI 2017" "MIC" "Yersinia pestis" "Levofloxacin" "M45 Table 16" 0.25 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Cefamandole" "Table 2E" "30ug" FALSE +"CLSI 2017" "MIC" "Haemophilus" "Cefamandole" "Table 2E" 4 16 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Cefamandole" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Cefamandole" "Table 2C" 8 32 FALSE +"CLSI 2017" "MIC" "Abiotrophia" "Meropenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2017" "DISK" "Acinetobacter" "Meropenem" "Table 2B-2" "10ug" 18 14 FALSE +"CLSI 2017" "MIC" "Acinetobacter" "Meropenem" "Table 2B-2" 2 8 FALSE +"CLSI 2017" "DISK" "Aeromonas" "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2017" "MIC" "Aeromonas" "Meropenem" "M45 Table 2" 4 16 FALSE +"CLSI 2017" "MIC" "Aggregatibacter" "Meropenem" "M45 Table 7" 4 16 FALSE +"CLSI 2017" "MIC" "Anaerosalibacter" "Meropenem" "Table 2J" 4 16 FALSE +"CLSI 2017" "DISK" "Burkholderia cepacia" "Meropenem" "Table 2B-3" "10ug" 20 15 FALSE +"CLSI 2017" "MIC" "Burkholderia cepacia" "Meropenem" "Table 2B-3" 4 16 FALSE +"CLSI 2017" "MIC" "Cardiobacterium" "Meropenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2017" "MIC" "Eikenella" "Meropenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2017" "MIC" "Erysipelothrix rhusiopathiae" "Meropenem" "M45 Table 6" 0.5 FALSE +"CLSI 2017" "MIC" "Granulicatella" "Meropenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Meropenem" "Table 2E" "10ug" 20 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Meropenem" "Table 2E" 0.5 FALSE +"CLSI 2017" "MIC" "Kingella" "Meropenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2017" "DISK" "Neisseria meningitidis" "Meropenem" "Table 2I" "10ug" 30 FALSE +"CLSI 2017" "MIC" "Neisseria meningitidis" "Meropenem" "Table 2I" 0.25 FALSE +"CLSI 2017" "DISK" "Plesiomonas" "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2017" "MIC" "Plesiomonas" "Meropenem" "M45 Table 2" 4 16 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" "Meropenem" "Table 2B-1" "10ug" 19 15 FALSE +"CLSI 2017" "MIC" "Pseudomonas aeruginosa" "Meropenem" "Table 2B-1" 2 8 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Meropenem" "Table 2C" "10ug" 15 13 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Meropenem" "Table 2C" 4 16 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Meropenem" "Table 2H-1" "10ug" FALSE +"CLSI 2017" "MIC" "Streptococcus" "Meropenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Meropenem" "Table 2H-1" 0.5 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Meropenem" "Table 2G" "10ug" FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Meropenem" "Table 2G" 0.25 1 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" "Meropenem" "Table 2H-2" "10ug" FALSE +"CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Meropenem" "Table 2H-2" 0.5 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Methicillin" "Table 2C" "5ug" 14 9 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Methicillin" "Table 2C" 8 16 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Moxifloxacin" "Table 2E" "5ug" 18 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Moxifloxacin" "Table 2E" 1 FALSE +"CLSI 2017" "DISK" "Pasteurella" "Moxifloxacin" "M45 Table 13" "5ug" 28 FALSE +"CLSI 2017" "MIC" "Pasteurella" "Moxifloxacin" "M45 Table 13" 0.064 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Moxifloxacin" "Table 2C" "5ug" 24 20 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Moxifloxacin" "Table 2C" 0.5 2 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Moxifloxacin" "Table 2H-1" "5ug" FALSE +"CLSI 2017" "MIC" "Streptococcus" "Moxifloxacin" "Table 2H-1" FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Moxifloxacin" "Table 2G" "5ug" 18 14 FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Moxifloxacin" "Table 2G" 1 4 FALSE +"CLSI 2017" "DISK" "Acinetobacter" "Minocycline" "Table 2B-2" "30ug" 16 12 FALSE +"CLSI 2017" "MIC" "Acinetobacter" "Minocycline" "Table 2B-2" 4 16 FALSE +"CLSI 2017" "DISK" "Burkholderia cepacia" "Minocycline" "Table 2B-3" "30ug" 19 14 FALSE +"CLSI 2017" "MIC" "Burkholderia cepacia" "Minocycline" "Table 2B-3" 4 16 FALSE +"CLSI 2017" "DISK" "Enterococcus" "Minocycline" "Table 2D" "30ug" 19 14 FALSE +"CLSI 2017" "MIC" "Enterococcus" "Minocycline" "Table 2D" 4 16 FALSE +"CLSI 2017" "MIC" "Leuconostoc" "Minocycline" "M45 Table 10" 4 16 FALSE +"CLSI 2017" "DISK" "Neisseria meningitidis" "Minocycline" "Table 2I" "30ug" 26 FALSE +"CLSI 2017" "MIC" "Neisseria meningitidis" "Minocycline" "Table 2I" 2 FALSE +"CLSI 2017" "DISK" "Stenotrophomonas maltophilia" "Minocycline" "Table 2B-4" "30ug" 19 14 FALSE +"CLSI 2017" "MIC" "Stenotrophomonas maltophilia" "Minocycline" "Table 2B-4" 4 16 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Minocycline" "Table 2C" "30ug" 19 14 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Minocycline" "Table 2C" 4 16 FALSE +"CLSI 2017" "MIC" "Anaerosalibacter" "Metronidazole" "Table 2J" 8 32 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Nafcillin" "Table 2C" "1ug" 13 10 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Nafcillin" "Table 2C" 2 4 FALSE +"CLSI 2017" "DISK" "Neisseria meningitidis" "Nalidixic acid" "Table 2I" "30ug" 26 25 FALSE +"CLSI 2017" "MIC" "Neisseria meningitidis" "Nalidixic acid" "Table 2I" 4 8 FALSE +"CLSI 2017" "DISK" "Acinetobacter" "Netilmicin" "Table 2B-2" "30ug" FALSE +"CLSI 2017" "MIC" "Acinetobacter" "Netilmicin" "Table 2B-2" 8 32 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" "Netilmicin" "Table 2B-1" "30ug" 15 12 FALSE +"CLSI 2017" "MIC" "Pseudomonas aeruginosa" "Netilmicin" "Table 2B-1" 8 32 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Netilmicin" "Table 2C" "30ug" 15 12 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Netilmicin" "Table 2C" 8 32 FALSE +"CLSI 2017" "DISK" "Enterococcus" "Nitrofurantoin" "Table 2D" "300ug" 17 14 FALSE +"CLSI 2017" "MIC" "Enterococcus" "Nitrofurantoin" "Table 2D" 32 128 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Nitrofurantoin" "Table 2C" "300ug" 17 14 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Nitrofurantoin" "Table 2C" 32 128 FALSE +"CLSI 2017" "DISK" "Enterococcus" "Norfloxacin" "Table 2D" "10ug" 17 12 FALSE +"CLSI 2017" "MIC" "Enterococcus" "Norfloxacin" "Table 2D" 4 16 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" "Norfloxacin" "Table 2B-1" "10ug" 17 12 FALSE +"CLSI 2017" "MIC" "Pseudomonas aeruginosa" "Norfloxacin" "Table 2B-1" 4 16 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Norfloxacin" "Table 2C" "10ug" 17 12 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Norfloxacin" "Table 2C" 4 16 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Norfloxacin" "Table 2G" "5ug" FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Norfloxacin" "Table 2G" FALSE +"CLSI 2017" "DISK" "Haemophilus" "Ofloxacin" "Table 2E" "5ug" 16 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Ofloxacin" "Table 2E" 2 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" "Ofloxacin" "Table 2F" "5ug" 31 24 FALSE +"CLSI 2017" "MIC" "Neisseria gonorrhoeae" "Ofloxacin" "Table 2F" 0.25 2 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" "Ofloxacin" "Table 2B-1" "5ug" 16 12 FALSE +"CLSI 2017" "MIC" "Pseudomonas aeruginosa" "Ofloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2017" "MIC" "Salmonella" "Ofloxacin" "Table 2A" 0.125 2 FALSE +"CLSI 2017" "MIC" "Extraintestinal" "Salmonella" "Ofloxacin" "Table 2A" 0.125 2 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Ofloxacin" "Table 2C" "5ug" 18 14 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Ofloxacin" "Table 2C" 1 4 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Ofloxacin" "Table 2H-1" "5ug" 16 12 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Ofloxacin" "Table 2H-1" 2 8 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Ofloxacin" "Table 2G" "5ug" 16 12 FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Ofloxacin" "Table 2G" 2 8 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" "Ofloxacin" "Table 2H-2" "5ug" 16 12 FALSE +"CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Ofloxacin" "Table 2H-2" 2 8 FALSE +"CLSI 2017" "MIC" "Enterococcus" "Oritavancin" "Table 2D" 0.125 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Oritavancin" "Table 2C" 0.125 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Oritavancin" "Table 2H-1" 0.25 FALSE +"CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Oritavancin" "Table 2H-2" 0.25 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Oxacillin" "Table 2C" "1ug" 13 10 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Oxacillin" "Table 2C" 2 4 FALSE +"CLSI 2017" "DISK" "Staphylococcus aureus" "Oxacillin" "Table 2C" "1ug" 13 10 FALSE +"CLSI 2017" "MIC" "Staphylococcus aureus" "Oxacillin" "Table 2C" 2 4 FALSE +"CLSI 2017" "DISK" "Staphylococcus lugdunensis" "Oxacillin" "Table 2C" "1ug" FALSE +"CLSI 2017" "MIC" "Staphylococcus lugdunensis" "Oxacillin" "Table 2C" 2 4 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Oxacillin" "Table 2G" "1ug" 20 FALSE +"CLSI 2017" "MIC" "Pseudallescheria" "Oxacillin" "Table 2C" 0.25 0.5 FALSE +"CLSI 2017" "MIC" "Abiotrophia" "Penicillin G" "M45 Table 1" 0.125 4 FALSE +"CLSI 2017" "MIC" "Aggregatibacter" "Penicillin G" "M45 Table 7" 1 4 FALSE +"CLSI 2017" "MIC" "Anaerosalibacter" "Penicillin G" "Table 2J" 0.5 2 FALSE +"CLSI 2017" "MIC" "Bacillus" "Penicillin G" "M45 Table 3" 0.125 0.25 FALSE +"CLSI 2017" "MIC" "Bacillus anthracis" "Penicillin G" "M45 Table 16" 0.125 0.25 FALSE +"CLSI 2017" "MIC" "Cardiobacterium" "Penicillin G" "M45 Table 7" 1 4 FALSE +"CLSI 2017" "MIC" "Eikenella" "Penicillin G" "M45 Table 7" 1 4 FALSE +"CLSI 2017" "DISK" "Enterococcus" "Penicillin G" "Table 2D" "10units" 15 14 FALSE +"CLSI 2017" "MIC" "Enterococcus" "Penicillin G" "Table 2D" 8 16 FALSE +"CLSI 2017" "MIC" "Erysipelothrix rhusiopathiae" "Penicillin G" "M45 Table 6" 0.125 FALSE +"CLSI 2017" "MIC" "Granulicatella" "Penicillin G" "M45 Table 1" 0.125 4 FALSE +"CLSI 2017" "MIC" "Kingella" "Penicillin G" "M45 Table 7" 1 4 FALSE +"CLSI 2017" "MIC" "Leuconostoc" "Penicillin G" "M45 Table 10" 8 FALSE +"CLSI 2017" "MIC" "Lactobacillus" "Penicillin G" "M45 Table 9" 8 FALSE +"CLSI 2017" "DISK" "Listeria monocytogenes" "Penicillin G" "M45 Table 11" "10units" FALSE +"CLSI 2017" "MIC" "Listeria monocytogenes" "Penicillin G" "M45 Table 11" 2 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" "Penicillin G" "Table 2F" "10units" 47 26 FALSE +"CLSI 2017" "MIC" "Neisseria gonorrhoeae" "Penicillin G" "Table 2F" 0.064 2 FALSE +"CLSI 2017" "DISK" "Neisseria meningitidis" "Penicillin G" "Table 2I" "10units" FALSE +"CLSI 2017" "MIC" "Neisseria meningitidis" "Penicillin G" "Table 2I" 0.064 0.5 FALSE +"CLSI 2017" "MIC" "Pediococcus" "Penicillin G" "M45 Table 14" 8 FALSE +"CLSI 2017" "DISK" "Pasteurella" "Penicillin G" "M45 Table 13" "10 Units" 25 FALSE +"CLSI 2017" "MIC" "Pasteurella" "Penicillin G" "M45 Table 13" 0.5 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Penicillin G" "Table 2C" "10ug" 29 28 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Penicillin G" "Table 2C" 0.125 0.25 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Penicillin G" "Table 2H-1" "10units" 24 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Penicillin G" "M45 Table 1" 0.125 4 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Penicillin G" "Table 2H-1" 0.125 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" "10units" FALSE +"CLSI 2017" "MIC" "Meningitis" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" 0.064 0.12 FALSE +"CLSI 2017" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" 2 8 FALSE +"CLSI 2017" "MIC" "Oral" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" 0.064 2 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" "Penicillin G" "Table 2H-2" "10units" FALSE +"CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Penicillin G" "Table 2H-2" 0.125 4 FALSE +"CLSI 2017" "DISK" "Acinetobacter" "Piperacillin" "Table 2B-2" "100ug" 21 17 FALSE +"CLSI 2017" "MIC" "Acinetobacter" "Piperacillin" "Table 2B-2" 16 128 FALSE +"CLSI 2017" "MIC" "Anaerosalibacter" "Piperacillin" "Table 2J" 32 128 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" "Piperacillin" "Table 2B-1" "100ug" 21 14 FALSE +"CLSI 2017" "MIC" "Pseudomonas aeruginosa" "Piperacillin" "Table 2B-1" 16 128 FALSE +"CLSI 2017" "DISK" "Acinetobacter" "Polymyxin B" "Table 2B-2" "300ug" FALSE +"CLSI 2017" "MIC" "Acinetobacter" "Polymyxin B" "Table 2B-2" 2 4 FALSE +"CLSI 2017" "MIC" "Pseudomonas aeruginosa" "Polymyxin B" "Table 2B-1" 2 8 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Penicillin V" "Table 2G" "10ug" FALSE +"CLSI 2017" "MIC" "Oral" "Streptococcus pneumoniae" "Penicillin V" "Table 2G" 0.064 2 FALSE +"CLSI 2017" "DISK" "Enterococcus" "Quinupristin/dalfopristin" "Table 2D" "15ug" 19 15 FALSE +"CLSI 2017" "MIC" "Enterococcus" "Quinupristin/dalfopristin" "Table 2D" 1 4 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Quinupristin/dalfopristin" "Table 2C" "15ug" 19 15 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Quinupristin/dalfopristin" "Table 2C" 1 4 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Quinupristin/dalfopristin" "Table 2H-1" "15ug" 19 15 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Quinupristin/dalfopristin" "Table 2H-1" 1 4 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Quinupristin/dalfopristin" "Table 2G" "15ug" 19 15 FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Quinupristin/dalfopristin" "Table 2G" 1 4 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" "Quinupristin/dalfopristin" "Table 2H-2" "15ug" 19 15 FALSE +"CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Quinupristin/dalfopristin" "Table 2H-2" 1 4 FALSE +"CLSI 2017" "MIC" "Aggregatibacter" "Rifampicin" "M45 Table 7" 1 4 FALSE +"CLSI 2017" "MIC" "Bacillus" "Rifampicin" "M45 Table 3" 1 4 FALSE +"CLSI 2017" "MIC" "Bacillus anthracis" "Rifampicin" "M45 Table 16" FALSE +"CLSI 2017" "MIC" "Cardiobacterium" "Rifampicin" "M45 Table 7" 1 4 FALSE +"CLSI 2017" "MIC" "Eikenella" "Rifampicin" "M45 Table 7" 1 4 FALSE +"CLSI 2017" "DISK" "Enterococcus" "Rifampicin" "Table 2D" "5ug" 20 16 FALSE +"CLSI 2017" "MIC" "Enterococcus" "Rifampicin" "Table 2D" 1 4 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Rifampicin" "Table 2E" "5ug" 20 16 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Rifampicin" "Table 2E" 1 4 FALSE +"CLSI 2017" "MIC" "Kingella" "Rifampicin" "M45 Table 7" 1 4 FALSE +"CLSI 2017" "MIC" "Moraxella catarrhalis" "Rifampicin" "M45 Table 12" 1 4 FALSE +"CLSI 2017" "DISK" "Neisseria meningitidis" "Rifampicin" "Table 2I" "5ug" 25 19 FALSE +"CLSI 2017" "MIC" "Neisseria meningitidis" "Rifampicin" "Table 2I" 0.5 2 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Rifampicin" "Table 2C" "5ug" 20 16 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Rifampicin" "Table 2C" 1 4 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Rifampicin" "Table 2H-1" "5ug" FALSE +"CLSI 2017" "MIC" "Streptococcus" "Rifampicin" "Table 2H-1" FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Rifampicin" "Table 2G" "5ug" 19 16 FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Rifampicin" "Table 2G" 1 4 FALSE +"CLSI 2017" "DISK" "Acinetobacter" "Ampicillin/sulbactam" "Table 2B-2" "10ug" 15 11 FALSE +"CLSI 2017" "MIC" "Acinetobacter" "Ampicillin/sulbactam" "Table 2B-2" 8 32 FALSE +"CLSI 2017" "DISK" "Aeromonas" "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE +"CLSI 2017" "MIC" "Aeromonas" "Ampicillin/sulbactam" "M45 Table 2" 8 32 FALSE +"CLSI 2017" "MIC" "Aggregatibacter" "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE +"CLSI 2017" "MIC" "Anaerosalibacter" "Ampicillin/sulbactam" "Table 2J" 8 32 FALSE +"CLSI 2017" "MIC" "Cardiobacterium" "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE +"CLSI 2017" "MIC" "Eikenella" "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Ampicillin/sulbactam" "Table 2E" "10/10ug" 20 19 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Ampicillin/sulbactam" "Table 2E" 2 4 FALSE +"CLSI 2017" "DISK" "Plesiomonas" "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE +"CLSI 2017" "MIC" "Plesiomonas" "Ampicillin/sulbactam" "M45 Table 2" 8 32 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Ampicillin/sulbactam" "Table 2C" "10ug" 15 11 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Ampicillin/sulbactam" "Table 2C" 8 32 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Ampicillin/sulbactam" "Table 2G" "10/10ug" FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Ampicillin/sulbactam" "Table 2G" FALSE +"CLSI 2017" "DISK" "Neisseria meningitidis" "Sulfamethoxazole" "Table 2I" "200-300ug" FALSE +"CLSI 2017" "MIC" "Neisseria meningitidis" "Sulfamethoxazole" "Table 2I" 2 8 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Sulfamethoxazole" "Table 2C" "200ug" 17 12 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Sulfamethoxazole" "Table 2C" 256 512 FALSE +"CLSI 2017" "DISK" "Neisseria meningitidis" "Sulfisoxazole" "Table 2I" "200-300ug" FALSE +"CLSI 2017" "MIC" "Neisseria meningitidis" "Sulfisoxazole" "Table 2I" 2 8 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Sulfisoxazole" "Table 2C" "200ug" 17 12 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Sulfisoxazole" "Table 2C" 256 512 FALSE +"CLSI 2017" "DISK" "Histophilus somni" "Spectinomycin" "Vet Table" "100ug" 14 10 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" "Spectinomycin" "Table 2F" "100ug" 18 14 FALSE +"CLSI 2017" "MIC" "Neisseria gonorrhoeae" "Spectinomycin" "Table 2F" 32 128 FALSE +"CLSI 2017" "DISK" "Providencia heimbachae" "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2017" "DISK" "Pasteurella multocida" "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Sparfloxacin" "Table 2E" "5ug" FALSE +"CLSI 2017" "MIC" "Haemophilus" "Sparfloxacin" "Table 2E" 0.25 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Sparfloxacin" "Table 2C" "5ug" 19 15 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Sparfloxacin" "Table 2C" 0.5 2 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Sparfloxacin" "Table 2H-1" "5ug" FALSE +"CLSI 2017" "MIC" "Streptococcus" "Sparfloxacin" "Table 2H-1" FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Sparfloxacin" "Table 2G" "5ug" 19 15 FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Sparfloxacin" "Table 2G" 0.5 2 FALSE +"CLSI 2017" "DISK" "Neisseria meningitidis" "Sulfonamides" "Table 2I" "200-300ug" FALSE +"CLSI 2017" "MIC" "Neisseria meningitidis" "Sulfonamides" "Table 2I" 2 8 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Sulfonamides" "Table 2C" "200ug" 17 12 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Sulfonamides" "Table 2C" 256 512 FALSE +"CLSI 2017" "DISK" "Enterococcus" "Streptomycin-high" "Table 2D" "300ug" 10 6 FALSE +"CLSI 2017" "MIC" "Enterococcus" "Streptomycin-high" "Table 2D" 1024 1024 FALSE +"CLSI 2017" "MIC" "Brucella" "Streptoduocin" "M45 Table 16" 8 FALSE +"CLSI 2017" "MIC" "Enterococcus" "Streptoduocin" "Table 2D" 1024 1024 FALSE +"CLSI 2017" "MIC" "Francisella tularensis" "Streptoduocin" "M45 Table 16" 8 FALSE +"CLSI 2017" "MIC" "Yersinia pestis" "Streptoduocin" "M45 Table 16" 4 16 FALSE +"CLSI 2017" "DISK" "Acinetobacter" "Trimethoprim/sulfamethoxazole" "Table 2B-2" "1.25/23.75ug" 16 10 FALSE +"CLSI 2017" "MIC" "Acinetobacter" "Trimethoprim/sulfamethoxazole" "Table 2B-2" 2 4 FALSE +"CLSI 2017" "DISK" "Aeromonas" "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25/23.75ug" 16 10 FALSE +"CLSI 2017" "MIC" "Aeromonas" "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE +"CLSI 2017" "MIC" "Aggregatibacter" "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE +"CLSI 2017" "MIC" "Bacillus" "Trimethoprim/sulfamethoxazole" "M45 Table 3" 2 4 FALSE +"CLSI 2017" "MIC" "Bacillus anthracis" "Trimethoprim/sulfamethoxazole" "M45 Table 16" FALSE +"CLSI 2017" "MIC" "Brucella" "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 FALSE +"CLSI 2017" "DISK" "Burkholderia cepacia" "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25/23.75ug" 16 10 FALSE +"CLSI 2017" "MIC" "Burkholderia cepacia" "Trimethoprim/sulfamethoxazole" "Table 2B-3" 2 4 FALSE +"CLSI 2017" "MIC" "Burkholderia pseudomallei" "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 4 FALSE +"CLSI 2017" "MIC" "Cardiobacterium" "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE +"CLSI 2017" "MIC" "Eikenella" "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Trimethoprim/sulfamethoxazole" "Table 2E" "1.25/23.75ug" 15 10 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Trimethoprim/sulfamethoxazole" "Table 2E" 0.5 4 FALSE +"CLSI 2017" "MIC" "Kingella" "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE +"CLSI 2017" "MIC" "Listeria monocytogenes" "Trimethoprim/sulfamethoxazole" "M45 Table 11" 0.5 4 FALSE +"CLSI 2017" "DISK" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" "M45 Table 12" "1.25/23.75ug" 13 10 FALSE +"CLSI 2017" "MIC" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" "M45 Table 12" 0.5 4 FALSE +"CLSI 2017" "DISK" "Neisseria meningitidis" "Trimethoprim/sulfamethoxazole" "Table 2I" "1.25/23.75ug" 30 25 FALSE +"CLSI 2017" "MIC" "Neisseria meningitidis" "Trimethoprim/sulfamethoxazole" "Table 2I" 0.125 0.5 FALSE +"CLSI 2017" "DISK" "Plesiomonas" "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25/23.75ug" 16 10 FALSE +"CLSI 2017" "MIC" "Plesiomonas" "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE +"CLSI 2017" "DISK" "Pasteurella" "Trimethoprim/sulfamethoxazole" "M45 Table 13" "1.25/23.75ug" 24 FALSE +"CLSI 2017" "MIC" "Pasteurella" "Trimethoprim/sulfamethoxazole" "M45 Table 13" 0.5 FALSE +"CLSI 2017" "DISK" "Stenotrophomonas maltophilia" "Trimethoprim/sulfamethoxazole" "Table 2B-4" "30ug" 16 10 FALSE +"CLSI 2017" "MIC" "Stenotrophomonas maltophilia" "Trimethoprim/sulfamethoxazole" "Table 2B-4" 2 4 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Trimethoprim/sulfamethoxazole" "Table 2C" "1.25/23.75ug" 16 10 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Trimethoprim/sulfamethoxazole" "Table 2C" 2 4 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Trimethoprim/sulfamethoxazole" "Table 2H-1" "1.25/23.75ug" FALSE +"CLSI 2017" "MIC" "Streptococcus" "Trimethoprim/sulfamethoxazole" "Table 2H-1" FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" "Table 2G" "1.25/23.75ug" 19 15 FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" "Table 2G" 0.5 4 FALSE +"CLSI 2017" "MIC" "Yersinia pestis" "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 4 FALSE +"CLSI 2017" "DISK" "Acinetobacter" "Ticarcillin/clavulanic acid" "Table 2B-2" "75ug" 20 14 FALSE +"CLSI 2017" "MIC" "Acinetobacter" "Ticarcillin/clavulanic acid" "Table 2B-2" 16 128 FALSE +"CLSI 2017" "MIC" "Anaerosalibacter" "Ticarcillin/clavulanic acid" "Table 2J" 32 128 FALSE +"CLSI 2017" "DISK" "Burkholderia cepacia" "Ticarcillin/clavulanic acid" "Table 2B-3" "75ug" FALSE +"CLSI 2017" "MIC" "Burkholderia cepacia" "Ticarcillin/clavulanic acid" "Table 2B-3" 16 128 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" "Ticarcillin/clavulanic acid" "Table 2B-1" "75ug" 24 15 FALSE +"CLSI 2017" "MIC" "Pseudomonas aeruginosa" "Ticarcillin/clavulanic acid" "Table 2B-1" 16 128 FALSE +"CLSI 2017" "DISK" "Stenotrophomonas maltophilia" "Ticarcillin/clavulanic acid" "Table 2B-4" "30ug" FALSE +"CLSI 2017" "MIC" "Stenotrophomonas maltophilia" "Ticarcillin/clavulanic acid" "Table 2B-4" 16 128 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Ticarcillin/clavulanic acid" "Table 2C" "75/10ug" 23 22 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Ticarcillin/clavulanic acid" "Table 2C" 8 16 FALSE +"CLSI 2017" "DISK" "Acinetobacter" "Tetracycline" "Table 2B-2" "30ug" 15 11 FALSE +"CLSI 2017" "MIC" "Acinetobacter" "Tetracycline" "Table 2B-2" 4 16 FALSE +"CLSI 2017" "DISK" "Aeromonas" "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE +"CLSI 2017" "MIC" "Aeromonas" "Tetracycline" "M45 Table 2" 4 16 FALSE +"CLSI 2017" "MIC" "Aggregatibacter" "Tetracycline" "M45 Table 7" 2 8 FALSE +"CLSI 2017" "MIC" "Anaerosalibacter" "Tetracycline" "Table 2J" 4 16 FALSE +"CLSI 2017" "MIC" "Bacillus" "Tetracycline" "M45 Table 3" 4 16 FALSE +"CLSI 2017" "MIC" "Bacillus anthracis" "Tetracycline" "M45 Table 16" 1 FALSE +"CLSI 2017" "MIC" "Brucella" "Tetracycline" "M45 Table 16" 1 FALSE +"CLSI 2017" "MIC" "Burkholderia mallei" "Tetracycline" "M45 Table 16" 4 16 FALSE +"CLSI 2017" "MIC" "Burkholderia pseudomallei" "Tetracycline" "M45 Table 16" 4 16 FALSE +"CLSI 2017" "MIC" "Campylobacter" "Tetracycline" "M45 Table 3" 4 16 FALSE +"CLSI 2017" "MIC" "Cardiobacterium" "Tetracycline" "M45 Table 7" 2 8 FALSE +"CLSI 2017" "MIC" "Eikenella" "Tetracycline" "M45 Table 7" 2 8 FALSE +"CLSI 2017" "DISK" "Enterococcus" "Tetracycline" "Table 2D" "30ug" 19 14 FALSE +"CLSI 2017" "MIC" "Enterococcus" "Tetracycline" "Table 2D" 4 16 FALSE +"CLSI 2017" "MIC" "Francisella tularensis" "Tetracycline" "M45 Table 16" 4 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Tetracycline" "Table 2E" "30ug" 29 25 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Tetracycline" "Table 2E" 2 8 FALSE +"CLSI 2017" "MIC" "Kingella" "Tetracycline" "M45 Table 7" 2 8 FALSE +"CLSI 2017" "DISK" "Moraxella catarrhalis" "Tetracycline" "M45 Table 12" "30ug" 29 24 FALSE +"CLSI 2017" "MIC" "Moraxella catarrhalis" "Tetracycline" "M45 Table 12" 2 8 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" "Tetracycline" "Table 2F" "30ug" 38 30 FALSE +"CLSI 2017" "MIC" "Neisseria gonorrhoeae" "Tetracycline" "Table 2F" 0.25 2 FALSE +"CLSI 2017" "DISK" "Plesiomonas" "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE +"CLSI 2017" "MIC" "Plesiomonas" "Tetracycline" "M45 Table 2" 4 16 FALSE +"CLSI 2017" "DISK" "Pasteurella" "Tetracycline" "M45 Table 13" "30ug" 23 FALSE +"CLSI 2017" "MIC" "Pasteurella" "Tetracycline" "M45 Table 13" 1 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Tetracycline" "Table 2C" "30ug" 19 14 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Tetracycline" "Table 2C" 4 16 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Tetracycline" "Table 2H-1" "30ug" 23 18 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Tetracycline" "Table 2H-1" 2 8 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Tetracycline" "Table 2G" "30ug" 28 24 FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Tetracycline" "Table 2G" 1 4 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" "Tetracycline" "Table 2H-2" "30ug" 23 18 FALSE +"CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Tetracycline" "Table 2H-2" 2 8 FALSE +"CLSI 2017" "MIC" "Yersinia pestis" "Tetracycline" "M45 Table 16" 4 16 FALSE +"CLSI 2017" "DISK" "Enterococcus" "Teicoplanin" "Table 2D" "30ug" 14 10 FALSE +"CLSI 2017" "MIC" "Enterococcus" "Teicoplanin" "Table 2D" 8 32 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Teicoplanin" "Table 2C" "30ug" 14 10 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Teicoplanin" "Table 2C" 8 32 FALSE +"CLSI 2017" "DISK" "Actinobacillus pleuropneumoniae" "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE +"CLSI 2017" "MIC" "Actinobacillus pleuropneumoniae" "Tilmicosin" "Vet Table" 16 32 FALSE +"CLSI 2017" "DISK" "Pasteurella multocida" "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE +"CLSI 2017" "MIC" "Pasteurella multocida" "Tilmicosin" "Vet Table" 16 32 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Telithromycin" "Table 2E" "15ug" 15 11 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Telithromycin" "Table 2E" 4 16 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Telithromycin" "Table 2C" "15ug" 22 18 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Telithromycin" "Table 2C" 1 4 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Telithromycin" "Table 2H-1" FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Telithromycin" "Table 2G" "15ug" 19 15 FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Telithromycin" "Table 2G" 1 4 FALSE +"CLSI 2017" "MIC" "Enterococcus" "Telavancin" "Table 2D" 0.125 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Telavancin" "Table 2C" 0.125 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Telavancin" "Table 2H-1" 0.125 FALSE +"CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Telavancin" "Table 2H-2" 0.125 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Trimethoprim" "Table 2C" "5ug" 16 10 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Trimethoprim" "Table 2C" 8 16 FALSE +"CLSI 2017" "DISK" "Acinetobacter" "Tobramycin" "Table 2B-2" "10ug" 15 12 FALSE +"CLSI 2017" "MIC" "Acinetobacter" "Tobramycin" "Table 2B-2" 4 16 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" "Tobramycin" "Table 2B-1" "10ug" 15 12 FALSE +"CLSI 2017" "MIC" "Pseudomonas aeruginosa" "Tobramycin" "Table 2B-1" 4 16 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Tobramycin" "Table 2C" "10ug" 15 12 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Tobramycin" "Table 2C" 4 16 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Trovafloxacin" "Table 2E" "10ug" 22 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Trovafloxacin" "Table 2E" 1 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" "Trovafloxacin" "Table 2F" "10ug" 34 FALSE +"CLSI 2017" "MIC" "Neisseria gonorrhoeae" "Trovafloxacin" "Table 2F" 0.25 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Trovafloxacin" "Table 2H-1" "10ug" 19 15 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Trovafloxacin" "Table 2H-1" 1 4 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Trovafloxacin" "Table 2G" "10ug" 19 15 FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Trovafloxacin" "Table 2G" 1 4 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" "Trovafloxacin" "Table 2H-2" "10ug" 19 15 FALSE +"CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Trovafloxacin" "Table 2H-2" 1 4 FALSE +"CLSI 2017" "MIC" "Enterococcus" "Tedizolid" "Table 2D" 0.5 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Tedizolid" "Table 2C" 0.5 2 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Tedizolid" "Table 2H-1" 0.5 FALSE +"CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Tedizolid" "Table 2H-2" 0.25 FALSE +"CLSI 2017" "DISK" "Acinetobacter" "Piperacillin/tazobactam" "Table 2B-2" "100ug" 21 17 FALSE +"CLSI 2017" "MIC" "Acinetobacter" "Piperacillin/tazobactam" "Table 2B-2" 16 128 FALSE +"CLSI 2017" "DISK" "Aeromonas" "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE +"CLSI 2017" "MIC" "Aeromonas" "Piperacillin/tazobactam" "M45 Table 2" 16 128 FALSE +"CLSI 2017" "MIC" "Anaerosalibacter" "Piperacillin/tazobactam" "Table 2J" 32 128 FALSE +"CLSI 2017" "DISK" "Haemophilus" "Piperacillin/tazobactam" "Table 2E" "100ug" 21 FALSE +"CLSI 2017" "MIC" "Haemophilus" "Piperacillin/tazobactam" "Table 2E" 1 2 FALSE +"CLSI 2017" "DISK" "Plesiomonas" "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE +"CLSI 2017" "MIC" "Plesiomonas" "Piperacillin/tazobactam" "M45 Table 2" 16 128 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" "Piperacillin/tazobactam" "Table 2B-1" "100ug" 21 14 FALSE +"CLSI 2017" "MIC" "Pseudomonas aeruginosa" "Piperacillin/tazobactam" "Table 2B-1" 16 128 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Piperacillin/tazobactam" "Table 2C" "100/10ug" 18 17 FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Piperacillin/tazobactam" "Table 2C" 8 16 FALSE +"CLSI 2017" "MIC" "Abiotrophia" "Vancomycin" "M45 Table 1" 1 FALSE +"CLSI 2017" "MIC" "Bacillus" "Vancomycin" "M45 Table 3" 4 FALSE +"CLSI 2017" "MIC" "Bacillus anthracis" "Vancomycin" "M45 Table 16" FALSE +"CLSI 2017" "DISK" "Enterococcus" "Vancomycin" "Table 2D" "30ug" 17 14 FALSE +"CLSI 2017" "MIC" "Enterococcus" "Vancomycin" "Table 2D" 4 32 FALSE +"CLSI 2017" "MIC" "Granulicatella" "Vancomycin" "M45 Table 1" 1 FALSE +"CLSI 2017" "MIC" "Lactobacillus" "Vancomycin" "M45 Table 9" 2 16 FALSE +"CLSI 2017" "MIC" "Propionibacterium" "Vancomycin" "Table 2J-2" 2 4 FALSE +"CLSI 2017" "DISK" "Staphylococcus" "Vancomycin" "Table 2C" "30ug" FALSE +"CLSI 2017" "MIC" "Staphylococcus" "Vancomycin" "Table 2C" 4 32 FALSE +"CLSI 2017" "MIC" "Staphylococcus aureus" "Vancomycin" "Table 2C" 2 16 FALSE +"CLSI 2017" "DISK" "Streptococcus" "Vancomycin" "Table 2H-1" "30ug" 17 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Vancomycin" "M45 Table 1" 1 FALSE +"CLSI 2017" "MIC" "Streptococcus" "Vancomycin" "Table 2H-1" 1 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" "Vancomycin" "Table 2G" "30ug" 17 FALSE +"CLSI 2017" "MIC" "Streptococcus pneumoniae" "Vancomycin" "Table 2G" 1 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" "Vancomycin" "Table 2H-2" "30ug" 17 FALSE +"CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" "Vancomycin" "Table 2H-2" 1 FALSE +"CLSI 2016" "DISK" "Aeromonas" "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE +"CLSI 2016" "MIC" "Aeromonas" "Amoxicillin/clavulanic acid" "M45 Table 2" 8 32 FALSE +"CLSI 2016" "MIC" "Aggregatibacter" "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE +"CLSI 2016" "MIC" "Anaerosalibacter" "Amoxicillin/clavulanic acid" "Table 2J" 4 16 FALSE +"CLSI 2016" "MIC" "Burkholderia pseudomallei" "Amoxicillin/clavulanic acid" "M45 Table 16" 8 32 FALSE +"CLSI 2016" "MIC" "Cardiobacterium" "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE +"CLSI 2016" "MIC" "Eikenella" "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Amoxicillin/clavulanic acid" "Table 2E" "20/10ug" 20 19 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Amoxicillin/clavulanic acid" "Table 2E" 4 8 FALSE +"CLSI 2016" "DISK" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" "M45 Table 12" "20ug" 24 23 FALSE +"CLSI 2016" "MIC" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" "M45 Table 12" 4 8 FALSE +"CLSI 2016" "DISK" "Plesiomonas" "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE +"CLSI 2016" "MIC" "Plesiomonas" "Amoxicillin/clavulanic acid" "M45 Table 2" 8 32 FALSE +"CLSI 2016" "DISK" "Pasteurella" "Amoxicillin/clavulanic acid" "M45 Table 13" "20ug" 27 FALSE +"CLSI 2016" "MIC" "Pasteurella" "Amoxicillin/clavulanic acid" "M45 Table 13" 0.5 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Amoxicillin/clavulanic acid" "Table 2C" "20ug" 20 19 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Amoxicillin/clavulanic acid" "Table 2C" 4 8 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Amoxicillin/clavulanic acid" "Table 2H-1" "20ug" FALSE +"CLSI 2016" "MIC" "Streptococcus" "Amoxicillin/clavulanic acid" "Table 2H-1" FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Amoxicillin/clavulanic acid" "Table 2G" "10/10ug" FALSE +"CLSI 2016" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Amoxicillin/clavulanic acid" "Table 2G" 2 8 FALSE +"CLSI 2016" "DISK" "Acinetobacter" "Amikacin" "Table 2B-2" "30ug" 17 14 FALSE +"CLSI 2016" "MIC" "Acinetobacter" "Amikacin" "Table 2B-2" 16 64 FALSE +"CLSI 2016" "DISK" "Aeromonas" "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE +"CLSI 2016" "MIC" "Aeromonas" "Amikacin" "M45 Table 2" 16 64 FALSE +"CLSI 2016" "MIC" "Bacillus" "Amikacin" "M45 Table 3" 16 64 FALSE +"CLSI 2016" "MIC" "Bacillus anthracis" "Amikacin" "M45 Table 16" FALSE +"CLSI 2016" "DISK" "Plesiomonas" "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE +"CLSI 2016" "MIC" "Plesiomonas" "Amikacin" "M45 Table 2" 16 64 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" "Amikacin" "Table 2B-1" "30ug" 17 14 FALSE +"CLSI 2016" "MIC" "Pseudomonas aeruginosa" "Amikacin" "Table 2B-1" 16 64 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Amikacin" "Table 2C" "30ug" 17 14 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Amikacin" "Table 2C" 16 64 FALSE +"CLSI 2016" "MIC" "Aggregatibacter" "Ampicillin" "M45 Table 7" 1 4 FALSE +"CLSI 2016" "MIC" "Anaerosalibacter" "Ampicillin" "Table 2J" 0.5 2 FALSE +"CLSI 2016" "MIC" "Bacillus" "Ampicillin" "M45 Table 3" 0.25 0.5 FALSE +"CLSI 2016" "MIC" "Bacillus anthracis" "Ampicillin" "M45 Table 16" FALSE +"CLSI 2016" "MIC" "Cardiobacterium" "Ampicillin" "M45 Table 7" 1 4 FALSE +"CLSI 2016" "MIC" "Eikenella" "Ampicillin" "M45 Table 7" 1 4 FALSE +"CLSI 2016" "DISK" "Enterococcus" "Ampicillin" "Table 2D" "10ug" 17 16 FALSE +"CLSI 2016" "MIC" "Enterococcus" "Ampicillin" "Table 2D" 8 16 FALSE +"CLSI 2016" "MIC" "Erysipelothrix rhusiopathiae" "Ampicillin" "M45 Table 6" 0.25 FALSE +"CLSI 2016" "MIC" "Granulicatella" "Ampicillin" "M45 Table 1" 0.25 8 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Ampicillin" "Table 2E" "10ug" 22 18 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Ampicillin" "Table 2E" 1 4 FALSE +"CLSI 2016" "MIC" "Leuconostoc" "Ampicillin" "M45 Table 10" 8 FALSE +"CLSI 2016" "MIC" "Lactobacillus" "Ampicillin" "M45 Table 9" 8 FALSE +"CLSI 2016" "DISK" "Listeria monocytogenes" "Ampicillin" "M45 Table 11" "10ug" FALSE +"CLSI 2016" "MIC" "Listeria monocytogenes" "Ampicillin" "M45 Table 11" 2 FALSE +"CLSI 2016" "DISK" "Neisseria meningitidis" "Ampicillin" "Table 2I" "10ug" FALSE +"CLSI 2016" "MIC" "Neisseria meningitidis" "Ampicillin" "Table 2I" 0.125 2 FALSE +"CLSI 2016" "MIC" "Pediococcus" "Ampicillin" "M45 Table 14" 8 FALSE +"CLSI 2016" "DISK" "Pasteurella" "Ampicillin" "M45 Table 13" "10ug" 27 FALSE +"CLSI 2016" "MIC" "Pasteurella" "Ampicillin" "M45 Table 13" 0.5 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Ampicillin" "Table 2C" "10ug" 29 28 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Ampicillin" "Table 2C" 0.25 0.5 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Ampicillin" "Table 2H-1" "10ug" 24 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Ampicillin" "M45 Table 1" 0.25 8 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Ampicillin" "Table 2H-1" 0.25 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Ampicillin" "Table 2G" "10ug" FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Ampicillin" "Table 2G" FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" "Ampicillin" "Table 2H-2" "10ug" FALSE +"CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Ampicillin" "Table 2H-2" 0.25 8 FALSE +"CLSI 2016" "MIC" "Pasteurella" "Amoxicillin" "M45 Table 13" 0.5 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Amoxicillin" "Table 2H-1" "30ug" FALSE +"CLSI 2016" "MIC" "Streptococcus" "Amoxicillin" "Table 2H-1" FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Amoxicillin" "Table 2G" "30ug" FALSE +"CLSI 2016" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Amoxicillin" "Table 2G" 2 8 FALSE +"CLSI 2016" "DISK" "Aeromonas" "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2016" "MIC" "Aeromonas" "Aztreonam" "M45 Table 2" 4 16 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Aztreonam" "Table 2E" "30ug" 26 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Aztreonam" "Table 2E" 2 FALSE +"CLSI 2016" "DISK" "Plesiomonas" "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2016" "MIC" "Plesiomonas" "Aztreonam" "M45 Table 2" 4 16 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" "Aztreonam" "Table 2B-1" "30ug" 22 15 FALSE +"CLSI 2016" "MIC" "Pseudomonas aeruginosa" "Aztreonam" "Table 2B-1" 8 32 FALSE +"CLSI 2016" "MIC" "Aggregatibacter" "Azithromycin" "M45 Table 7" 4 FALSE +"CLSI 2016" "MIC" "Cardiobacterium" "Azithromycin" "M45 Table 7" 4 FALSE +"CLSI 2016" "MIC" "Eikenella" "Azithromycin" "M45 Table 7" 4 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Azithromycin" "Table 2E" "15ug" 12 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Azithromycin" "Table 2E" 4 FALSE +"CLSI 2016" "MIC" "Kingella" "Azithromycin" "M45 Table 7" 4 FALSE +"CLSI 2016" "DISK" "Moraxella catarrhalis" "Azithromycin" "M45 Table 12" "15ug" 26 FALSE +"CLSI 2016" "MIC" "Moraxella catarrhalis" "Azithromycin" "M45 Table 12" 0.25 FALSE +"CLSI 2016" "DISK" "Neisseria meningitidis" "Azithromycin" "Table 2I" "15ug" 20 FALSE +"CLSI 2016" "MIC" "Neisseria meningitidis" "Azithromycin" "Table 2I" 2 FALSE +"CLSI 2016" "DISK" "Pasteurella" "Azithromycin" "M45 Table 13" "15ug" 20 FALSE +"CLSI 2016" "MIC" "Pasteurella" "Azithromycin" "M45 Table 13" 1 FALSE +"CLSI 2016" "MIC" "Salmonella enterica" "Azithromycin" "Table 2A" 16 32 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Azithromycin" "Table 2C" "15ug" 18 13 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Azithromycin" "Table 2C" 2 8 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Azithromycin" "Table 2H-1" "15ug" 18 13 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Azithromycin" "Table 2H-1" 0.5 2 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Azithromycin" "Table 2G" "15ug" 18 13 FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Azithromycin" "Table 2G" 0.5 2 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" "Azithromycin" "Table 2H-2" "15ug" 18 13 FALSE +"CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Azithromycin" "Table 2H-2" 0.5 2 FALSE +"CLSI 2016" "MIC" "Vibrio cholerae" "Azithromycin" "M45 Table 14" "30ug" 2 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Cefetamet" "Table 2E" "10ug" 18 14 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Cefetamet" "Table 2E" 4 16 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" "Cefetamet" "Table 2F" "10ug" 29 FALSE +"CLSI 2016" "MIC" "Neisseria gonorrhoeae" "Cefetamet" "Table 2F" 0.5 FALSE +"CLSI 2016" "DISK" "Acinetobacter" "Ceftazidime" "Table 2B-2" "30ug" 18 14 FALSE +"CLSI 2016" "MIC" "Acinetobacter" "Ceftazidime" "Table 2B-2" 8 32 FALSE +"CLSI 2016" "DISK" "Aeromonas" "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2016" "MIC" "Aeromonas" "Ceftazidime" "M45 Table 2" 4 16 FALSE +"CLSI 2016" "MIC" "Bacillus" "Ceftazidime" "M45 Table 3" 8 32 FALSE +"CLSI 2016" "MIC" "Bacillus anthracis" "Ceftazidime" "M45 Table 16" FALSE +"CLSI 2016" "DISK" "Burkholderia cepacia" "Ceftazidime" "Table 2B-3" "30ug" 21 17 FALSE +"CLSI 2016" "MIC" "Burkholderia cepacia" "Ceftazidime" "Table 2B-3" 8 32 FALSE +"CLSI 2016" "MIC" "Burkholderia mallei" "Ceftazidime" "M45 Table 16" 8 32 FALSE +"CLSI 2016" "MIC" "Burkholderia pseudomallei" "Ceftazidime" "M45 Table 16" 8 32 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Ceftazidime" "Table 2E" "30ug" 26 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Ceftazidime" "Table 2E" 2 FALSE +"CLSI 2016" "MIC" "Moraxella catarrhalis" "Ceftazidime" "M45 Table 12" 2 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" "Ceftazidime" "Table 2F" "30ug" 31 FALSE +"CLSI 2016" "MIC" "Neisseria gonorrhoeae" "Ceftazidime" "Table 2F" 0.5 FALSE +"CLSI 2016" "DISK" "Plesiomonas" "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2016" "MIC" "Plesiomonas" "Ceftazidime" "M45 Table 2" 4 16 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" "Ceftazidime" "Table 2B-1" "30ug" 18 14 FALSE +"CLSI 2016" "MIC" "Pseudomonas aeruginosa" "Ceftazidime" "Table 2B-1" 8 32 FALSE +"CLSI 2016" "DISK" "Stenotrophomonas maltophilia" "Ceftazidime" "Table 2B-4" "30ug" FALSE +"CLSI 2016" "MIC" "Stenotrophomonas maltophilia" "Ceftazidime" "Table 2B-4" 8 32 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Ceftazidime" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Ceftazidime" "Table 2C" 8 32 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Cefdinir" "Table 2E" "5ug" 20 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Cefdinir" "Table 2E" 1 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Cefdinir" "Table 2C" "5ug" 20 16 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Cefdinir" "Table 2C" 1 4 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Cefdinir" "Table 2G" "5ug" FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Cefdinir" "Table 2G" 0.5 2 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Cefaclor" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Cefaclor" "Table 2E" 8 32 FALSE +"CLSI 2016" "MIC" "Moraxella catarrhalis" "Cefaclor" "M45 Table 12" 8 32 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Cefaclor" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Cefaclor" "Table 2C" 8 32 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Cefaclor" "Table 2G" "30ug" FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Cefaclor" "Table 2G" 1 4 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Cephalothin" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Cephalothin" "Table 2C" 8 32 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Cefixime" "Table 2E" "5ug" 21 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Cefixime" "Table 2E" 1 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" "Cefixime" "Table 2F" "5ug" 31 FALSE +"CLSI 2016" "MIC" "Neisseria gonorrhoeae" "Cefixime" "Table 2F" 0.25 FALSE +"CLSI 2016" "MIC" "Anaerosalibacter" "Cefoperazone" "Table 2J" 16 64 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Cefoperazone" "Table 2C" "75ug" 21 15 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Cefoperazone" "Table 2C" 16 64 FALSE +"CLSI 2016" "DISK" "Aeromonas" "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE +"CLSI 2016" "MIC" "Aeromonas" "Chloramphenicol" "M45 Table 2" 8 32 FALSE +"CLSI 2016" "MIC" "Aggregatibacter" "Chloramphenicol" "M45 Table 7" 4 16 FALSE +"CLSI 2016" "MIC" "Anaerosalibacter" "Chloramphenicol" "Table 2J" 8 32 FALSE +"CLSI 2016" "MIC" "Bacillus" "Chloramphenicol" "M45 Table 3" 8 32 FALSE +"CLSI 2016" "MIC" "Bacillus anthracis" "Chloramphenicol" "M45 Table 16" FALSE +"CLSI 2016" "DISK" "Burkholderia cepacia" "Chloramphenicol" "Table 2B-3" "30ug" FALSE +"CLSI 2016" "MIC" "Burkholderia cepacia" "Chloramphenicol" "Table 2B-3" 8 32 FALSE +"CLSI 2016" "MIC" "Cardiobacterium" "Chloramphenicol" "M45 Table 7" 4 16 FALSE +"CLSI 2016" "MIC" "Eikenella" "Chloramphenicol" "M45 Table 7" 4 16 FALSE +"CLSI 2016" "DISK" "Enterococcus" "Chloramphenicol" "Table 2D" "30ug" 18 12 FALSE +"CLSI 2016" "MIC" "Enterococcus" "Chloramphenicol" "Table 2D" 8 32 FALSE +"CLSI 2016" "MIC" "Francisella tularensis" "Chloramphenicol" "M45 Table 16" 8 FALSE +"CLSI 2016" "MIC" "Granulicatella" "Chloramphenicol" "M45 Table 1" 4 8 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Chloramphenicol" "Table 2E" "30ug" 29 25 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Chloramphenicol" "Table 2E" 2 8 FALSE +"CLSI 2016" "MIC" "Kingella" "Chloramphenicol" "M45 Table 7" 4 16 FALSE +"CLSI 2016" "MIC" "Leuconostoc" "Chloramphenicol" "M45 Table 10" 8 32 FALSE +"CLSI 2016" "MIC" "Moraxella catarrhalis" "Chloramphenicol" "M45 Table 12" 2 8 FALSE +"CLSI 2016" "DISK" "Neisseria meningitidis" "Chloramphenicol" "Table 2I" "30ug" 26 19 FALSE +"CLSI 2016" "MIC" "Neisseria meningitidis" "Chloramphenicol" "Table 2I" 2 8 FALSE +"CLSI 2016" "MIC" "Pediococcus" "Chloramphenicol" "M45 Table 14" 8 32 FALSE +"CLSI 2016" "DISK" "Plesiomonas" "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE +"CLSI 2016" "MIC" "Plesiomonas" "Chloramphenicol" "M45 Table 2" 8 32 FALSE +"CLSI 2016" "DISK" "Pasteurella" "Chloramphenicol" "M45 Table 13" "30ug" 28 FALSE +"CLSI 2016" "MIC" "Pasteurella" "Chloramphenicol" "M45 Table 13" 2 FALSE +"CLSI 2016" "DISK" "Stenotrophomonas maltophilia" "Chloramphenicol" "Table 2B-4" "30ug" FALSE +"CLSI 2016" "MIC" "Stenotrophomonas maltophilia" "Chloramphenicol" "Table 2B-4" 8 32 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Chloramphenicol" "Table 2C" "30ug" 18 12 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Chloramphenicol" "Table 2C" 8 32 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Chloramphenicol" "Table 2H-1" "30ug" 21 17 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Chloramphenicol" "M45 Table 1" 4 8 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Chloramphenicol" "Table 2H-1" 4 16 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Chloramphenicol" "Table 2G" "30ug" 21 20 FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Chloramphenicol" "Table 2G" 4 8 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" "Chloramphenicol" "Table 2H-2" "30ug" 21 17 FALSE +"CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Chloramphenicol" "Table 2H-2" 4 16 FALSE +"CLSI 2016" "MIC" "Yersinia pestis" "Chloramphenicol" "M45 Table 16" 8 32 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Cefonicid" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Cefonicid" "Table 2E" 4 16 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Cefonicid" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Cefonicid" "Table 2C" 8 32 FALSE +"CLSI 2016" "DISK" "Acinetobacter" "Ciprofloxacin" "Table 2B-2" "5ug" 21 15 FALSE +"CLSI 2016" "MIC" "Acinetobacter" "Ciprofloxacin" "Table 2B-2" 1 4 FALSE +"CLSI 2016" "DISK" "Aeromonas" "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE +"CLSI 2016" "MIC" "Aeromonas" "Ciprofloxacin" "M45 Table 2" 1 4 FALSE +"CLSI 2016" "MIC" "Aggregatibacter" "Ciprofloxacin" "M45 Table 7" 1 4 FALSE +"CLSI 2016" "MIC" "Bacillus" "Ciprofloxacin" "M45 Table 3" 1 4 FALSE +"CLSI 2016" "MIC" "Bacillus anthracis" "Ciprofloxacin" "M45 Table 16" 0.25 FALSE +"CLSI 2016" "MIC" "Campylobacter" "Ciprofloxacin" "M45 Table 3" 1 4 FALSE +"CLSI 2016" "MIC" "Cardiobacterium" "Ciprofloxacin" "M45 Table 7" 1 4 FALSE +"CLSI 2016" "MIC" "Eikenella" "Ciprofloxacin" "M45 Table 7" 1 4 FALSE +"CLSI 2016" "DISK" "Enterococcus" "Ciprofloxacin" "Table 2D" "5ug" 21 15 FALSE +"CLSI 2016" "MIC" "Enterococcus" "Ciprofloxacin" "Table 2D" 1 4 FALSE +"CLSI 2016" "MIC" "Erysipelothrix rhusiopathiae" "Ciprofloxacin" "M45 Table 6" 1 FALSE +"CLSI 2016" "MIC" "Francisella tularensis" "Ciprofloxacin" "M45 Table 16" 0.5 FALSE +"CLSI 2016" "MIC" "Granulicatella" "Ciprofloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Ciprofloxacin" "Table 2E" "5ug" 21 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Ciprofloxacin" "Table 2E" 1 FALSE +"CLSI 2016" "MIC" "Kingella" "Ciprofloxacin" "M45 Table 7" 1 4 FALSE +"CLSI 2016" "MIC" "Moraxella catarrhalis" "Ciprofloxacin" "M45 Table 12" 1 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" "Ciprofloxacin" "Table 2F" "5ug" 41 27 FALSE +"CLSI 2016" "MIC" "Neisseria gonorrhoeae" "Ciprofloxacin" "Table 2F" 0.064 1 FALSE +"CLSI 2016" "DISK" "Neisseria meningitidis" "Ciprofloxacin" "Table 2I" "5ug" 35 32 FALSE +"CLSI 2016" "MIC" "Neisseria meningitidis" "Ciprofloxacin" "Table 2I" 0.032 0.12 FALSE +"CLSI 2016" "DISK" "Plesiomonas" "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE +"CLSI 2016" "MIC" "Plesiomonas" "Ciprofloxacin" "M45 Table 2" 1 4 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" "Ciprofloxacin" "Table 2B-1" "5ug" 21 15 FALSE +"CLSI 2016" "MIC" "Pseudomonas aeruginosa" "Ciprofloxacin" "Table 2B-1" 1 4 FALSE +"CLSI 2016" "DISK" "Extraintestinal" "Salmonella" "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE +"CLSI 2016" "DISK" "Salmonella" "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE +"CLSI 2016" "MIC" "Extraintestinal" "Salmonella" "Ciprofloxacin" "Table 2A" 0.064 1 FALSE +"CLSI 2016" "MIC" "Salmonella" "Ciprofloxacin" "Table 2A" 0.064 1 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Ciprofloxacin" "Table 2C" "5ug" 21 15 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Ciprofloxacin" "Table 2C" 1 4 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Ciprofloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Ciprofloxacin" "Table 2G" "5ug" FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Ciprofloxacin" "Table 2G" FALSE +"CLSI 2016" "MIC" "Yersinia pestis" "Ciprofloxacin" "M45 Table 16" 0.25 FALSE +"CLSI 2016" "MIC" "Anaerosalibacter" "Clindamycin" "Table 2J" 2 8 FALSE +"CLSI 2016" "MIC" "Bacillus" "Clindamycin" "M45 Table 3" 0.5 4 FALSE +"CLSI 2016" "MIC" "Bacillus anthracis" "Clindamycin" "M45 Table 16" FALSE +"CLSI 2016" "MIC" "Erysipelothrix rhusiopathiae" "Clindamycin" "M45 Table 6" 0.25 1 FALSE +"CLSI 2016" "MIC" "Granulicatella" "Clindamycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2016" "MIC" "Lactobacillus" "Clindamycin" "M45 Table 9" 0.5 2 FALSE +"CLSI 2016" "MIC" "Moraxella catarrhalis" "Clindamycin" "M45 Table 12" 0.5 4 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Clindamycin" "Table 2C" "2ug" 21 14 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Clindamycin" "Table 2C" 0.5 4 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Clindamycin" "Table 2H-1" "2ug" 19 15 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Clindamycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Clindamycin" "Table 2H-1" 0.25 1 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Clindamycin" "Table 2G" "2ug" 19 15 FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Clindamycin" "Table 2G" 0.25 1 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" "Clindamycin" "Table 2H-2" "2ug" 19 15 FALSE +"CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Clindamycin" "Table 2H-2" 0.25 1 FALSE +"CLSI 2016" "MIC" "Aggregatibacter" "Clarithromycin" "M45 Table 7" 8 32 FALSE +"CLSI 2016" "MIC" "Cardiobacterium" "Clarithromycin" "M45 Table 7" 8 32 FALSE +"CLSI 2016" "MIC" "Eikenella" "Clarithromycin" "M45 Table 7" 8 32 FALSE +"CLSI 2016" "MIC" "Helicobacter pylori" "Clarithromycin" "M45 Table 8" 0.25 1 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Clarithromycin" "Table 2E" "15ug" 13 10 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Clarithromycin" "Table 2E" 8 32 FALSE +"CLSI 2016" "MIC" "Kingella" "Clarithromycin" "M45 Table 7" 8 32 FALSE +"CLSI 2016" "DISK" "Moraxella catarrhalis" "Clarithromycin" "M45 Table 12" "15ug" 24 FALSE +"CLSI 2016" "MIC" "Moraxella catarrhalis" "Clarithromycin" "M45 Table 12" 1 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Clarithromycin" "Table 2C" "15ug" 18 13 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Clarithromycin" "Table 2C" 2 8 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Clarithromycin" "Table 2H-1" "15ug" 21 16 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Clarithromycin" "Table 2H-1" 0.25 1 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Clarithromycin" "Table 2G" "15ug" 21 16 FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Clarithromycin" "Table 2G" 0.25 1 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" "Clarithromycin" "Table 2H-2" "15ug" 21 16 FALSE +"CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Clarithromycin" "Table 2H-2" 0.25 1 FALSE +"CLSI 2016" "MIC" "Anaerosalibacter" "Cefmetazole" "Table 2J" 16 64 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" "Cefmetazole" "Table 2F" "30ug" 33 27 FALSE +"CLSI 2016" "MIC" "Neisseria gonorrhoeae" "Cefmetazole" "Table 2F" 2 8 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Cefmetazole" "Table 2C" "30ug" 16 12 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Cefmetazole" "Table 2C" 16 64 FALSE +"CLSI 2016" "DISK" "Acinetobacter" "Colistin" "Table 2B-2" "10ug" FALSE +"CLSI 2016" "MIC" "Acinetobacter" "Colistin" "Table 2B-2" 2 4 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" "Colistin" "Table 2B-1" "10ug" 11 10 FALSE +"CLSI 2016" "MIC" "Pseudomonas aeruginosa" "Colistin" "Table 2B-1" 2 8 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Cefpodoxime" "Table 2E" "10ug" 21 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Cefpodoxime" "Table 2E" 2 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" "Cefpodoxime" "Table 2F" "10ug" 29 FALSE +"CLSI 2016" "MIC" "Neisseria gonorrhoeae" "Cefpodoxime" "Table 2F" 0.5 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Cefpodoxime" "Table 2C" "10ug" 21 17 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Cefpodoxime" "Table 2C" 2 8 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Cefpodoxime" "Table 2G" "10ug" FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Cefpodoxime" "Table 2G" 0.5 2 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Cefprozil" "Table 2E" "30ug" 18 14 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Cefprozil" "Table 2E" 8 32 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Cefprozil" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Cefprozil" "Table 2C" 8 32 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Cefprozil" "Table 2G" "30ug" FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Cefprozil" "Table 2G" 2 8 FALSE +"CLSI 2016" "DISK" "Haemophilus influenzae" "Ceftaroline" "Table 2E" "30ug" 30 FALSE +"CLSI 2016" "MIC" "Haemophilus influenzae" "Ceftaroline" "Table 2E" 0.5 FALSE +"CLSI 2016" "DISK" "Staphylococcus aureus" "Ceftaroline" "Table 2C" "30ug" 24 20 FALSE +"CLSI 2016" "MIC" "Staphylococcus aureus" "Ceftaroline" "Table 2C" 1 4 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Ceftaroline" "Table 2H-1" "30ug" 26 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Ceftaroline" "Table 2H-1" 0.5 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Ceftaroline" "Table 2G" "30ug" FALSE +"CLSI 2016" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Ceftaroline" "Table 2G" 0.5 FALSE +"CLSI 2016" "DISK" "Acinetobacter" "Ceftriaxone" "Table 2B-2" "30ug" 21 13 FALSE +"CLSI 2016" "MIC" "Acinetobacter" "Ceftriaxone" "Table 2B-2" 8 64 FALSE +"CLSI 2016" "DISK" "Aeromonas" "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE +"CLSI 2016" "MIC" "Aeromonas" "Ceftriaxone" "M45 Table 2" 1 4 FALSE +"CLSI 2016" "MIC" "Aggregatibacter" "Ceftriaxone" "M45 Table 7" 2 FALSE +"CLSI 2016" "MIC" "Anaerosalibacter" "Ceftriaxone" "Table 2J" 16 64 FALSE +"CLSI 2016" "MIC" "Bacillus" "Ceftriaxone" "M45 Table 3" 8 64 FALSE +"CLSI 2016" "MIC" "Bacillus anthracis" "Ceftriaxone" "M45 Table 16" FALSE +"CLSI 2016" "MIC" "Cardiobacterium" "Ceftriaxone" "M45 Table 7" 2 FALSE +"CLSI 2016" "MIC" "Eikenella" "Ceftriaxone" "M45 Table 7" 2 FALSE +"CLSI 2016" "MIC" "Erysipelothrix rhusiopathiae" "Ceftriaxone" "M45 Table 6" 1 FALSE +"CLSI 2016" "MIC" "Granulicatella" "Ceftriaxone" "M45 Table 1" 1 4 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Ceftriaxone" "Table 2E" "30ug" 26 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Ceftriaxone" "Table 2E" 2 FALSE +"CLSI 2016" "MIC" "Kingella" "Ceftriaxone" "M45 Table 7" 2 FALSE +"CLSI 2016" "MIC" "Moraxella catarrhalis" "Ceftriaxone" "M45 Table 12" 2 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" "Ceftriaxone" "Table 2F" "30ug" 35 FALSE +"CLSI 2016" "MIC" "Neisseria gonorrhoeae" "Ceftriaxone" "Table 2F" 0.25 FALSE +"CLSI 2016" "DISK" "Neisseria meningitidis" "Ceftriaxone" "Table 2I" "30ug" 34 FALSE +"CLSI 2016" "MIC" "Neisseria meningitidis" "Ceftriaxone" "Table 2I" 0.125 FALSE +"CLSI 2016" "DISK" "Plesiomonas" "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE +"CLSI 2016" "MIC" "Plesiomonas" "Ceftriaxone" "M45 Table 2" 1 4 FALSE +"CLSI 2016" "DISK" "Pasteurella" "Ceftriaxone" "M45 Table 13" "30ug" 34 FALSE +"CLSI 2016" "MIC" "Pasteurella" "Ceftriaxone" "M45 Table 13" 0.125 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Ceftriaxone" "Table 2C" "30ug" 21 13 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Ceftriaxone" "Table 2C" 8 64 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Ceftriaxone" "Table 2H-1" "30ug" 24 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Ceftriaxone" "M45 Table 1" 1 4 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Ceftriaxone" "Table 2H-1" 0.5 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Ceftriaxone" "Table 2G" "30ug" FALSE +"CLSI 2016" "MIC" "Meningitis" "Streptococcus pneumoniae" "Ceftriaxone" "Table 2G" 0.5 2 FALSE +"CLSI 2016" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Ceftriaxone" "Table 2G" 1 4 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" "Table 2H-2" "30ug" 27 24 FALSE +"CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" "Table 2H-2" 1 4 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Ceftibuten" "Table 2E" "30ug" 28 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Ceftibuten" "Table 2E" 2 FALSE +"CLSI 2016" "MIC" "Anaerosalibacter" "Cefotetan" "Table 2J" 16 64 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" "Cefotetan" "Table 2F" "30ug" 26 19 FALSE +"CLSI 2016" "MIC" "Neisseria gonorrhoeae" "Cefotetan" "Table 2F" 2 8 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Cefotetan" "Table 2C" "30ug" 16 12 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Cefotetan" "Table 2C" 16 64 FALSE +"CLSI 2016" "DISK" "Acinetobacter" "Cefotaxime" "Table 2B-2" "30ug" 23 14 FALSE +"CLSI 2016" "MIC" "Acinetobacter" "Cefotaxime" "Table 2B-2" 8 64 FALSE +"CLSI 2016" "DISK" "Aeromonas" "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE +"CLSI 2016" "MIC" "Aeromonas" "Cefotaxime" "M45 Table 2" 1 4 FALSE +"CLSI 2016" "MIC" "Aggregatibacter" "Cefotaxime" "M45 Table 7" 2 FALSE +"CLSI 2016" "MIC" "Anaerosalibacter" "Cefotaxime" "Table 2J" 16 64 FALSE +"CLSI 2016" "MIC" "Bacillus" "Cefotaxime" "M45 Table 3" 8 64 FALSE +"CLSI 2016" "MIC" "Bacillus anthracis" "Cefotaxime" "M45 Table 16" FALSE +"CLSI 2016" "MIC" "Cardiobacterium" "Cefotaxime" "M45 Table 7" 2 FALSE +"CLSI 2016" "MIC" "Eikenella" "Cefotaxime" "M45 Table 7" 2 FALSE +"CLSI 2016" "MIC" "Erysipelothrix rhusiopathiae" "Cefotaxime" "M45 Table 6" 1 FALSE +"CLSI 2016" "MIC" "Granulicatella" "Cefotaxime" "M45 Table 1" 1 4 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Cefotaxime" "Table 2E" "30ug" 26 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Cefotaxime" "Table 2E" 2 FALSE +"CLSI 2016" "MIC" "Kingella" "Cefotaxime" "M45 Table 7" 2 FALSE +"CLSI 2016" "MIC" "Moraxella catarrhalis" "Cefotaxime" "M45 Table 12" 2 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" "Cefotaxime" "Table 2F" "30ug" 31 FALSE +"CLSI 2016" "MIC" "Neisseria gonorrhoeae" "Cefotaxime" "Table 2F" 0.5 FALSE +"CLSI 2016" "DISK" "Neisseria meningitidis" "Cefotaxime" "Table 2I" "30ug" 34 FALSE +"CLSI 2016" "MIC" "Neisseria meningitidis" "Cefotaxime" "Table 2I" 0.125 FALSE +"CLSI 2016" "DISK" "Plesiomonas" "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE +"CLSI 2016" "MIC" "Plesiomonas" "Cefotaxime" "M45 Table 2" 1 4 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Cefotaxime" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Cefotaxime" "Table 2C" 8 64 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Cefotaxime" "Table 2H-1" "30ug" 24 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Cefotaxime" "M45 Table 1" 1 4 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Cefotaxime" "Table 2H-1" 0.5 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Cefotaxime" "Table 2G" "30ug" FALSE +"CLSI 2016" "MIC" "Meningitis" "Streptococcus pneumoniae" "Cefotaxime" "Table 2G" 0.5 2 FALSE +"CLSI 2016" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Cefotaxime" "Table 2G" 1 4 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" "Cefotaxime" "Table 2H-2" "30ug" 28 25 FALSE +"CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Cefotaxime" "Table 2H-2" 1 4 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Cefuroxime axetil" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Cefuroxime axetil" "Table 2E" 4 16 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Cefuroxime axetil" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Cefuroxime axetil" "Table 2C" 4 32 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Cefuroxime axetil" "Table 2G" "30ug" FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Cefuroxime axetil" "Table 2G" 1 4 FALSE +"CLSI 2016" "DISK" "Aeromonas" "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2016" "MIC" "Aeromonas" "Cefuroxime" "M45 Table 2" 8 32 FALSE +"CLSI 2016" "DISK" "Oral" "Haemophilus" "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2016" "MIC" "Oral" "Haemophilus" "Cefuroxime" "Table 2E" 4 16 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Cefuroxime" "Table 2E" 4 16 FALSE +"CLSI 2016" "MIC" "Moraxella catarrhalis" "Cefuroxime" "M45 Table 12" 4 16 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" "Cefuroxime" "Table 2F" "30ug" 31 25 FALSE +"CLSI 2016" "MIC" "Neisseria gonorrhoeae" "Cefuroxime" "Table 2F" 1 4 FALSE +"CLSI 2016" "DISK" "Plesiomonas" "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2016" "MIC" "Plesiomonas" "Cefuroxime" "M45 Table 2" 8 32 FALSE +"CLSI 2016" "DISK" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2016" "DISK" "Parenteral" "Staphylococcus" "Cefuroxime" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2016" "DISK" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2016" "MIC" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" 4 32 FALSE +"CLSI 2016" "MIC" "Intravenous" "Staphylococcus" "Cefuroxime" "Table 2C" 8 32 FALSE +"CLSI 2016" "MIC" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" 4 32 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Cefuroxime" "Table 2H-1" "30ug" FALSE +"CLSI 2016" "MIC" "Streptococcus" "Cefuroxime" "Table 2H-1" FALSE +"CLSI 2016" "DISK" "Oral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" "30ug" FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" "30ug" FALSE +"CLSI 2016" "MIC" "Oral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" 1 4 FALSE +"CLSI 2016" "MIC" "Parenteral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" 0.5 2 FALSE +"CLSI 2016" "MIC" "Oral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" 1 4 FALSE +"CLSI 2016" "DISK" "Urine" "Enterobacteriaceae" "Cefazolin" "Table 2A" 15 14 FALSE +"CLSI 2016" "MIC" "Urine" "Enterobacteriaceae" "Cefazolin" "Table 2A" 16 32 FALSE +"CLSI 2016" "MIC" "Aeromonas" "Cefazolin" "M45 Table 2" 1 4 FALSE +"CLSI 2016" "MIC" "Bacillus" "Cefazolin" "M45 Table 3" 8 16 FALSE +"CLSI 2016" "MIC" "Bacillus anthracis" "Cefazolin" "M45 Table 16" FALSE +"CLSI 2016" "MIC" "Plesiomonas" "Cefazolin" "M45 Table 2" 1 4 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Cefazolin" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Cefazolin" "Table 2C" 8 32 FALSE +"CLSI 2016" "MIC" "Pseudomonas aeruginosa" "Ceftolozane/tazobactam" 4 16 FALSE +"CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Ceftolozane/tazobactam" "Table 2H-2" 8 32 FALSE +"CLSI 2016" "MIC" "Anaerosalibacter" "Ceftizoxime" "Table 2J" 32 128 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Ceftizoxime" "Table 2E" "30ug" 26 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Ceftizoxime" "Table 2E" 2 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" "Ceftizoxime" "Table 2F" "30ug" 38 FALSE +"CLSI 2016" "MIC" "Neisseria gonorrhoeae" "Ceftizoxime" "Table 2F" 0.5 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Ceftizoxime" "Table 2C" "30ug" 20 14 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Ceftizoxime" "Table 2C" 8 64 FALSE +"CLSI 2016" "DISK" "Enterococcus" "Daptomycin" "Table 2D" "30ug" FALSE +"CLSI 2016" "MIC" "Enterococcus" "Daptomycin" "Table 2D" 4 FALSE +"CLSI 2016" "MIC" "Lactobacillus" "Daptomycin" "M45 Table 9" 4 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Daptomycin" "Table 2C" "30ug" FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Daptomycin" "Table 2C" 1 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Daptomycin" "Table 2H-1" "30ug" 16 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Daptomycin" "Table 2H-1" FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Daptomycin" "Table 2G" "30ug" FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" "Daptomycin" "Table 2H-2" "30ug" FALSE +"CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Daptomycin" "Table 2H-2" 1 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Dirithromycin" "Table 2C" "15ug" 19 15 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Dirithromycin" "Table 2C" 2 8 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Dirithromycin" "Table 2H-1" "15ug" 18 13 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Dirithromycin" "Table 2H-1" 0.5 2 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Dirithromycin" "Table 2G" "15ug" 18 13 FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Dirithromycin" "Table 2G" 0.5 2 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" "Dirithromycin" "Table 2H-2" "15ug" 18 13 FALSE +"CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Dirithromycin" "Table 2H-2" 0.5 2 FALSE +"CLSI 2016" "DISK" "Acinetobacter" "Doripenem" "Table 2B-2" 18 14 FALSE +"CLSI 2016" "MIC" "Acinetobacter" "Doripenem" "Table 2B-2" 2 8 FALSE +"CLSI 2016" "MIC" "Anaerosalibacter" "Doripenem" "Table 2J" 2 8 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Doripenem" "Table 2E" "10ug" 16 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Doripenem" "Table 2E" 1 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" "Doripenem" "Table 2B-1" "10ug" 19 15 FALSE +"CLSI 2016" "MIC" "Pseudomonas aeruginosa" "Doripenem" "Table 2B-1" 2 8 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Doripenem" "Table 2C" "10ug" 30 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Doripenem" "Table 2C" 0.5 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Doripenem" "Table 2H-1" "10ug" FALSE +"CLSI 2016" "MIC" "Streptococcus" "Doripenem" "Table 2H-1" 0.125 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Doripenem" "Table 2G" "10ug" FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Doripenem" "Table 2G" 1 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" "Doripenem" "Table 2H-2" "10ug" FALSE +"CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Doripenem" "Table 2H-2" 1 FALSE +"CLSI 2016" "DISK" "Acinetobacter" "Doxycycline" "Table 2B-2" "30ug" 13 9 FALSE +"CLSI 2016" "MIC" "Acinetobacter" "Doxycycline" "Table 2B-2" 4 16 FALSE +"CLSI 2016" "MIC" "Bacillus anthracis" "Doxycycline" "M45 Table 16" 1 FALSE +"CLSI 2016" "MIC" "Brucella" "Doxycycline" "M45 Table 16" 1 FALSE +"CLSI 2016" "MIC" "Burkholderia mallei" "Doxycycline" "M45 Table 16" 4 16 FALSE +"CLSI 2016" "MIC" "Burkholderia pseudomallei" "Doxycycline" "M45 Table 16" 4 16 FALSE +"CLSI 2016" "MIC" "Campylobacter" "Doxycycline" "M45 Table 3" 2 8 FALSE +"CLSI 2016" "DISK" "Enterococcus" "Doxycycline" "Table 2D" "30ug" 16 12 FALSE +"CLSI 2016" "MIC" "Enterococcus" "Doxycycline" "Table 2D" 4 16 FALSE +"CLSI 2016" "MIC" "Francisella tularensis" "Doxycycline" "M45 Table 16" 4 FALSE +"CLSI 2016" "DISK" "Pasteurella" "Doxycycline" "M45 Table 13" "30ug" 23 FALSE +"CLSI 2016" "MIC" "Pasteurella" "Doxycycline" "M45 Table 13" 0.5 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Doxycycline" "Table 2C" "30ug" 16 12 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Doxycycline" "Table 2C" 4 16 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Doxycycline" "Table 2G" "30ug" 28 24 FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Doxycycline" "Table 2G" 0.25 1 FALSE +"CLSI 2016" "MIC" "Vibrio cholerae" "Doxycycline" "M45 Table 14" "30ug" 4 16 FALSE +"CLSI 2016" "MIC" "Yersinia pestis" "Doxycycline" "M45 Table 16" 4 16 FALSE +"CLSI 2016" "MIC" "Canine, feline" "Alloscardovia" "Enrofloxacin" "Vet Table" 0.5 4 FALSE +"CLSI 2016" "DISK" "Histophilus somni" "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2016" "MIC" "Histophilus somni" "Enrofloxacin" "Vet Table" 0.25 2 FALSE +"CLSI 2016" "DISK" "Providencia heimbachae" "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2016" "DISK" "Pasteurella multocida" "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" "Enoxacin" "Table 2F" "10ug" 36 31 FALSE +"CLSI 2016" "MIC" "Neisseria gonorrhoeae" "Enoxacin" "Table 2F" 0.5 2 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Enoxacin" "Table 2C" "10ug" 18 14 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Enoxacin" "Table 2C" 2 8 FALSE +"CLSI 2016" "MIC" "Bacillus" "Erythromycin" "M45 Table 3" 0.5 8 FALSE +"CLSI 2016" "MIC" "Bacillus anthracis" "Erythromycin" "M45 Table 16" FALSE +"CLSI 2016" "MIC" "Campylobacter" "Erythromycin" "M45 Table 3" 8 32 FALSE +"CLSI 2016" "DISK" "Enterococcus" "Erythromycin" "Table 2D" "15ug" 23 13 FALSE +"CLSI 2016" "MIC" "Enterococcus" "Erythromycin" "Table 2D" 0.5 8 FALSE +"CLSI 2016" "MIC" "Erysipelothrix rhusiopathiae" "Erythromycin" "M45 Table 6" 0.25 1 FALSE +"CLSI 2016" "MIC" "Granulicatella" "Erythromycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2016" "MIC" "Lactobacillus" "Erythromycin" "M45 Table 9" 0.5 8 FALSE +"CLSI 2016" "DISK" "Moraxella catarrhalis" "Erythromycin" "M45 Table 12" "15ug" 21 FALSE +"CLSI 2016" "MIC" "Moraxella catarrhalis" "Erythromycin" "M45 Table 12" 2 FALSE +"CLSI 2016" "DISK" "Pasteurella" "Erythromycin" "M45 Table 13" "15ug" 27 24 FALSE +"CLSI 2016" "MIC" "Pasteurella" "Erythromycin" "M45 Table 13" 0.5 2 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Erythromycin" "Table 2C" "15ug" 23 13 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Erythromycin" "Table 2C" 0.5 8 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Erythromycin" "Table 2H-1" "15ug" 21 15 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Erythromycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Erythromycin" "Table 2H-1" 0.25 1 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Erythromycin" "Table 2G" "15ug" 21 15 FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Erythromycin" "Table 2G" 0.25 1 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" "Erythromycin" "Table 2H-2" "15ug" 21 15 FALSE +"CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Erythromycin" "Table 2H-2" 0.25 1 FALSE +"CLSI 2016" "DISK" "Acinetobacter" "Ertapenem" "Table 2B-2" "10ug" FALSE +"CLSI 2016" "MIC" "Acinetobacter" "Ertapenem" "Table 2B-2" FALSE +"CLSI 2016" "DISK" "Aeromonas" "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE +"CLSI 2016" "MIC" "Aeromonas" "Ertapenem" "M45 Table 2" 2 8 FALSE +"CLSI 2016" "MIC" "Anaerosalibacter" "Ertapenem" "Table 2J" 4 16 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Ertapenem" "Table 2E" "10ug" 19 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Ertapenem" "Table 2E" 0.5 FALSE +"CLSI 2016" "DISK" "Plesiomonas" "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE +"CLSI 2016" "MIC" "Plesiomonas" "Ertapenem" "M45 Table 2" 2 8 FALSE +"CLSI 2016" "DISK" "Pseudomonas" "Ertapenem" "10ug" FALSE +"CLSI 2016" "MIC" "Pseudomonas" "Ertapenem" FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Ertapenem" "Table 2C" "10ug" 19 15 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Ertapenem" "Table 2C" 2 8 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Ertapenem" "Table 2H-1" "10ug" FALSE +"CLSI 2016" "MIC" "Streptococcus" "Ertapenem" "Table 2H-1" 1 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Ertapenem" "Table 2G" "10ug" FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Ertapenem" "Table 2G" 1 4 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" "Ertapenem" "Table 2H-2" "10ug" FALSE +"CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Ertapenem" "Table 2H-2" 1 FALSE +"CLSI 2016" "MIC" "Abiotrophia" "Cefepime" "M45 Table 1" 1 4 FALSE +"CLSI 2016" "DISK" "Acinetobacter" "Cefepime" "Table 2B-2" "30ug" 18 14 FALSE +"CLSI 2016" "MIC" "Acinetobacter" "Cefepime" "Table 2B-2" 8 32 FALSE +"CLSI 2016" "DISK" "Aeromonas" "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2016" "MIC" "Aeromonas" "Cefepime" "M45 Table 2" 8 32 FALSE +"CLSI 2016" "MIC" "Erysipelothrix rhusiopathiae" "Cefepime" "M45 Table 6" 1 FALSE +"CLSI 2016" "MIC" "Granulicatella" "Cefepime" "M45 Table 1" 1 4 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Cefepime" "Table 2E" "30ug" 26 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Cefepime" "Table 2E" 2 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" "Cefepime" "Table 2F" "30ug" 31 FALSE +"CLSI 2016" "MIC" "Neisseria gonorrhoeae" "Cefepime" "Table 2F" 0.5 FALSE +"CLSI 2016" "DISK" "Plesiomonas" "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2016" "MIC" "Plesiomonas" "Cefepime" "M45 Table 2" 8 32 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" "Cefepime" "Table 2B-1" "30ug" 18 14 FALSE +"CLSI 2016" "MIC" "Pseudomonas aeruginosa" "Cefepime" "Table 2B-1" 8 32 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Cefepime" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Cefepime" "Table 2C" 8 32 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Cefepime" "Table 2H-1" "30ug" 24 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Cefepime" "M45 Table 1" 1 4 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Cefepime" "Table 2H-1" 0.5 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Cefepime" "Table 2G" "30ug" FALSE +"CLSI 2016" "MIC" "Meningitis" "Streptococcus pneumoniae" "Cefepime" "Table 2G" 0.5 2 FALSE +"CLSI 2016" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Cefepime" "Table 2G" 1 4 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" "Cefepime" "Table 2H-2" "30ug" 24 21 FALSE +"CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Cefepime" "Table 2H-2" 1 4 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Fleroxacin" "Table 2E" "5ug" 19 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Fleroxacin" "Table 2E" 2 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" "Fleroxacin" "Table 2F" "5ug" 35 28 FALSE +"CLSI 2016" "MIC" "Neisseria gonorrhoeae" "Fleroxacin" "Table 2F" 0.25 1 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Fleroxacin" "Table 2C" "5ug" 19 15 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Fleroxacin" "Table 2C" 2 8 FALSE +"CLSI 2016" "DISK" "Enterococcus" "Fosfomycin" "Table 2D" "200ug" 16 12 FALSE +"CLSI 2016" "MIC" "Enterococcus" "Fosfomycin" "Table 2D" 64 256 FALSE +"CLSI 2016" "DISK" "Aeromonas" "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2016" "MIC" "Aeromonas" "Cefoxitin" "M45 Table 2" 8 32 FALSE +"CLSI 2016" "MIC" "Anaerosalibacter" "Cefoxitin" "Table 2J" 16 64 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" "Cefoxitin" "Table 2F" "30ug" 28 23 FALSE +"CLSI 2016" "MIC" "Neisseria gonorrhoeae" "Cefoxitin" "Table 2F" 2 8 FALSE +"CLSI 2016" "DISK" "Plesiomonas" "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2016" "MIC" "Plesiomonas" "Cefoxitin" "M45 Table 2" 8 32 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Cefoxitin" "Table 2C" "30ug" 25 24 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Cefoxitin" "Table 2C" 4 8 FALSE +"CLSI 2016" "DISK" "Staphylococcus aureus" "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE +"CLSI 2016" "MIC" "Staphylococcus aureus" "Cefoxitin" "Table 2C" 4 8 FALSE +"CLSI 2016" "DISK" "Staphylococcus lugdunensis" "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE +"CLSI 2016" "MIC" "Staphylococcus lugdunensis" "Cefoxitin" "Table 2C" 4 8 FALSE +"CLSI 2016" "MIC" "Abiotrophia" "Gatifloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2016" "DISK" "Acinetobacter" "Gatifloxacin" "Table 2B-2" "5ug" 18 14 FALSE +"CLSI 2016" "MIC" "Acinetobacter" "Gatifloxacin" "Table 2B-2" 2 8 FALSE +"CLSI 2016" "DISK" "Enterococcus" "Gatifloxacin" "Table 2D" "5ug" 18 14 FALSE +"CLSI 2016" "MIC" "Enterococcus" "Gatifloxacin" "Table 2D" 2 8 FALSE +"CLSI 2016" "MIC" "Granulicatella" "Gatifloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Gatifloxacin" "Table 2E" "5ug" 18 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Gatifloxacin" "Table 2E" 1 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" "Gatifloxacin" "Table 2F" "5ug" 38 33 FALSE +"CLSI 2016" "MIC" "Neisseria gonorrhoeae" "Gatifloxacin" "Table 2F" 0.125 0.5 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" "Gatifloxacin" "Table 2B-1" "5ug" 18 14 FALSE +"CLSI 2016" "MIC" "Pseudomonas aeruginosa" "Gatifloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Gatifloxacin" "Table 2C" "10ug" 23 19 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Gatifloxacin" "Table 2C" 0.5 2 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Gatifloxacin" "Table 2H-1" "5ug" 21 17 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Gatifloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Gatifloxacin" "Table 2H-1" 1 4 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Gatifloxacin" "Table 2G" "5ug" 21 17 FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Gatifloxacin" "Table 2G" 1 4 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" "Gatifloxacin" "Table 2H-2" "5ug" 21 17 FALSE +"CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Gatifloxacin" "Table 2H-2" 1 4 FALSE +"CLSI 2016" "DISK" "Enterococcus" "Gentamicin-high" "Table 2D" "120ug" 10 6 FALSE +"CLSI 2016" "MIC" "Enterococcus" "Gentamicin-high" "Table 2D" 512 512 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Gemifloxacin" "Table 2E" "5ug" 18 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Gemifloxacin" "Table 2E" 0.125 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Gemifloxacin" "Table 2H-1" "5ug" FALSE +"CLSI 2016" "MIC" "Streptococcus" "Gemifloxacin" "Table 2H-1" FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Gemifloxacin" "Table 2G" "5ug" 23 19 FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Gemifloxacin" "Table 2G" 0.125 0.5 FALSE +"CLSI 2016" "DISK" "Acinetobacter" "Gentamicin" "Table 2B-2" "10ug" 15 12 FALSE +"CLSI 2016" "MIC" "Acinetobacter" "Gentamicin" "Table 2B-2" 4 16 FALSE +"CLSI 2016" "DISK" "Aeromonas" "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE +"CLSI 2016" "MIC" "Aeromonas" "Gentamicin" "M45 Table 2" 4 16 FALSE +"CLSI 2016" "MIC" "Bacillus" "Gentamicin" "M45 Table 3" 4 16 FALSE +"CLSI 2016" "MIC" "Bacillus anthracis" "Gentamicin" "M45 Table 16" FALSE +"CLSI 2016" "MIC" "Brucella" "Gentamicin" "M45 Table 16" 4 FALSE +"CLSI 2016" "MIC" "Enterococcus" "Gentamicin" "Table 2D" 512 512 FALSE +"CLSI 2016" "MIC" "Francisella tularensis" "Gentamicin" "M45 Table 16" 4 FALSE +"CLSI 2016" "MIC" "Leuconostoc" "Gentamicin" "M45 Table 10" 4 16 FALSE +"CLSI 2016" "MIC" "Lactobacillus" "Gentamicin" "M45 Table 9" 4 16 FALSE +"CLSI 2016" "MIC" "Pediococcus" "Gentamicin" "M45 Table 14" 4 16 FALSE +"CLSI 2016" "DISK" "Plesiomonas" "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE +"CLSI 2016" "MIC" "Plesiomonas" "Gentamicin" "M45 Table 2" 4 16 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" "Gentamicin" "Table 2B-1" "10ug" 15 12 FALSE +"CLSI 2016" "MIC" "Pseudomonas aeruginosa" "Gentamicin" "Table 2B-1" 4 16 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Gentamicin" "Table 2C" "10ug" 15 12 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Gentamicin" "Table 2C" 4 16 FALSE +"CLSI 2016" "MIC" "Yersinia pestis" "Gentamicin" "M45 Table 16" 4 16 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Grepafloxacin" "Table 2E" "5ug" 24 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Grepafloxacin" "Table 2E" 0.5 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" "Grepafloxacin" "Table 2F" "5ug" 37 27 FALSE +"CLSI 2016" "MIC" "Neisseria gonorrhoeae" "Grepafloxacin" "Table 2F" 0.064 1 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Grepafloxacin" "Table 2C" "5ug" 18 14 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Grepafloxacin" "Table 2C" 1 4 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Grepafloxacin" "Table 2H-1" "5ug" 19 15 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Grepafloxacin" "Table 2H-1" 0.5 2 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Grepafloxacin" "Table 2G" "5ug" 19 15 FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Grepafloxacin" "Table 2G" 0.5 2 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" "Grepafloxacin" "Table 2H-2" "5ug" 19 15 FALSE +"CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Grepafloxacin" "Table 2H-2" 0.5 2 FALSE +"CLSI 2016" "MIC" "Abiotrophia" "Imipenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2016" "DISK" "Acinetobacter" "Imipenem" "Table 2B-2" "10ug" 22 18 FALSE +"CLSI 2016" "MIC" "Acinetobacter" "Imipenem" "Table 2B-2" 2 8 FALSE +"CLSI 2016" "DISK" "Aeromonas" "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2016" "MIC" "Aeromonas" "Imipenem" "M45 Table 2" 4 16 FALSE +"CLSI 2016" "MIC" "Aggregatibacter" "Imipenem" "M45 Table 7" 4 16 FALSE +"CLSI 2016" "MIC" "Anaerosalibacter" "Imipenem" "Table 2J" 4 16 FALSE +"CLSI 2016" "MIC" "Bacillus" "Imipenem" "M45 Table 3" 4 16 FALSE +"CLSI 2016" "MIC" "Bacillus anthracis" "Imipenem" "M45 Table 16" FALSE +"CLSI 2016" "MIC" "Burkholderia mallei" "Imipenem" "M45 Table 16" 4 16 FALSE +"CLSI 2016" "MIC" "Burkholderia pseudomallei" "Imipenem" "M45 Table 16" 4 16 FALSE +"CLSI 2016" "MIC" "Cardiobacterium" "Imipenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2016" "MIC" "Eikenella" "Imipenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2016" "MIC" "Erysipelothrix rhusiopathiae" "Imipenem" "M45 Table 6" 0.5 FALSE +"CLSI 2016" "MIC" "Granulicatella" "Imipenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Imipenem" "Table 2E" "10ug" 16 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Imipenem" "Table 2E" 4 FALSE +"CLSI 2016" "MIC" "Kingella" "Imipenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2016" "MIC" "Lactobacillus" "Imipenem" "M45 Table 9" 0.5 2 FALSE +"CLSI 2016" "MIC" "Pediococcus" "Imipenem" "M45 Table 14" 0.5 FALSE +"CLSI 2016" "DISK" "Plesiomonas" "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2016" "MIC" "Plesiomonas" "Imipenem" "M45 Table 2" 4 16 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" "Imipenem" "Table 2B-1" "10ug" 19 15 FALSE +"CLSI 2016" "MIC" "Pseudomonas aeruginosa" "Imipenem" "Table 2B-1" 2 8 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Imipenem" "Table 2C" "10ug" 16 13 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Imipenem" "Table 2C" 4 16 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Imipenem" "Table 2H-1" "10ug" FALSE +"CLSI 2016" "MIC" "Streptococcus" "Imipenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Imipenem" "Table 2H-1" FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Imipenem" "Table 2G" "10ug" FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Imipenem" "Table 2G" 0.125 1 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Kanamycin" "Table 2C" "30ug" 18 13 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Kanamycin" "Table 2C" 16 64 FALSE +"CLSI 2016" "DISK" "Enterococcus" "Linezolid" "Table 2D" "30ug" 23 20 FALSE +"CLSI 2016" "MIC" "Enterococcus" "Linezolid" "Table 2D" 2 8 FALSE +"CLSI 2016" "MIC" "Lactobacillus" "Linezolid" "M45 Table 9" 4 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Linezolid" "Table 2C" "30ug" 21 20 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Linezolid" "Table 2C" 4 8 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Linezolid" "Table 2H-1" "30ug" 21 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Linezolid" "Table 2H-1" 2 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Linezolid" "Table 2G" "30ug" 21 FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Linezolid" "Table 2G" 2 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" "Linezolid" "Table 2H-2" "30ug" 21 FALSE +"CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Linezolid" "Table 2H-2" 2 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Lomefloxacin" "Table 2E" "10ug" 22 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Lomefloxacin" "Table 2E" 2 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" "Lomefloxacin" "Table 2F" "10ug" 38 26 FALSE +"CLSI 2016" "MIC" "Neisseria gonorrhoeae" "Lomefloxacin" "Table 2F" 0.125 2 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" "Lomefloxacin" "Table 2B-1" "10ug" 22 18 FALSE +"CLSI 2016" "MIC" "Pseudomonas aeruginosa" "Lomefloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Lomefloxacin" "Table 2C" "10ug" 22 18 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Lomefloxacin" "Table 2C" 2 8 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Loracarbef" "Table 2E" "30ug" 19 15 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Loracarbef" "Table 2E" 8 32 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Loracarbef" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Loracarbef" "Table 2C" 8 32 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Loracarbef" "Table 2G" "30ug" FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Loracarbef" "Table 2G" 2 8 FALSE +"CLSI 2016" "MIC" "Anaerosalibacter" "Latamoxef" "Table 2J" 2 8 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Latamoxef" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Latamoxef" "Table 2C" 8 64 FALSE +"CLSI 2016" "MIC" "Abiotrophia" "Levofloxacin" "M45 Table 1" 2 8 FALSE +"CLSI 2016" "DISK" "Acinetobacter" "Levofloxacin" "Table 2B-2" "5ug" 17 13 FALSE +"CLSI 2016" "MIC" "Acinetobacter" "Levofloxacin" "Table 2B-2" 2 8 FALSE +"CLSI 2016" "DISK" "Aeromonas" "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE +"CLSI 2016" "MIC" "Aeromonas" "Levofloxacin" "M45 Table 2" 2 8 FALSE +"CLSI 2016" "MIC" "Aggregatibacter" "Levofloxacin" "M45 Table 7" 2 8 FALSE +"CLSI 2016" "MIC" "Bacillus" "Levofloxacin" "M45 Table 3" 2 8 FALSE +"CLSI 2016" "MIC" "Bacillus anthracis" "Levofloxacin" "M45 Table 16" 0.25 FALSE +"CLSI 2016" "DISK" "Burkholderia cepacia" "Levofloxacin" "Table 2B-3" "5ug" FALSE +"CLSI 2016" "MIC" "Burkholderia cepacia" "Levofloxacin" "Table 2B-3" 2 8 FALSE +"CLSI 2016" "MIC" "Cardiobacterium" "Levofloxacin" "M45 Table 7" 2 8 FALSE +"CLSI 2016" "MIC" "Eikenella" "Levofloxacin" "M45 Table 7" 2 8 FALSE +"CLSI 2016" "DISK" "Enterococcus" "Levofloxacin" "Table 2D" "5ug" 17 13 FALSE +"CLSI 2016" "MIC" "Enterococcus" "Levofloxacin" "Table 2D" 2 8 FALSE +"CLSI 2016" "MIC" "Erysipelothrix rhusiopathiae" "Levofloxacin" "M45 Table 6" 2 FALSE +"CLSI 2016" "MIC" "Francisella tularensis" "Levofloxacin" "M45 Table 16" 0.5 FALSE +"CLSI 2016" "MIC" "Granulicatella" "Levofloxacin" "M45 Table 1" 2 8 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Levofloxacin" "Table 2E" "5ug" 17 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Levofloxacin" "Table 2E" 2 FALSE +"CLSI 2016" "MIC" "Kingella" "Levofloxacin" "M45 Table 7" 2 8 FALSE +"CLSI 2016" "MIC" "Moraxella catarrhalis" "Levofloxacin" "M45 Table 12" 2 FALSE +"CLSI 2016" "DISK" "Neisseria meningitidis" "Levofloxacin" "Table 2I" "5ug" FALSE +"CLSI 2016" "MIC" "Neisseria meningitidis" "Levofloxacin" "Table 2I" 0.032 0.12 FALSE +"CLSI 2016" "DISK" "Plesiomonas" "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE +"CLSI 2016" "MIC" "Plesiomonas" "Levofloxacin" "M45 Table 2" 2 8 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" "Levofloxacin" "Table 2B-1" "5ug" 17 13 FALSE +"CLSI 2016" "MIC" "Pseudomonas aeruginosa" "Levofloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2016" "DISK" "Pasteurella" "Levofloxacin" "M45 Table 13" "5ug" 28 FALSE +"CLSI 2016" "MIC" "Pasteurella" "Levofloxacin" "M45 Table 13" 0.064 FALSE +"CLSI 2016" "MIC" "Salmonella" "Levofloxacin" "Table 2A" 0.125 2 FALSE +"CLSI 2016" "MIC" "Extraintestinal" "Salmonella" "Levofloxacin" "Table 2A" 0.125 2 FALSE +"CLSI 2016" "DISK" "Stenotrophomonas maltophilia" "Levofloxacin" "Table 2B-4" "75ug" 17 13 FALSE +"CLSI 2016" "MIC" "Stenotrophomonas maltophilia" "Levofloxacin" "Table 2B-4" 2 8 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Levofloxacin" "Table 2C" "10ug" 19 15 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Levofloxacin" "Table 2C" 1 4 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Levofloxacin" "Table 2H-1" "5ug" 17 13 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Levofloxacin" "M45 Table 1" 2 8 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Levofloxacin" "Table 2H-1" 2 8 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Levofloxacin" "Table 2G" "5ug" 17 13 FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Levofloxacin" "Table 2G" 2 8 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" "Levofloxacin" "Table 2H-2" "5ug" 17 13 FALSE +"CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Levofloxacin" "Table 2H-2" 2 8 FALSE +"CLSI 2016" "MIC" "Yersinia pestis" "Levofloxacin" "M45 Table 16" 0.25 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Cefamandole" "Table 2E" "30ug" FALSE +"CLSI 2016" "MIC" "Haemophilus" "Cefamandole" "Table 2E" 4 16 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Cefamandole" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Cefamandole" "Table 2C" 8 32 FALSE +"CLSI 2016" "MIC" "Abiotrophia" "Meropenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2016" "DISK" "Acinetobacter" "Meropenem" "Table 2B-2" "10ug" 18 14 FALSE +"CLSI 2016" "MIC" "Acinetobacter" "Meropenem" "Table 2B-2" 2 8 FALSE +"CLSI 2016" "DISK" "Aeromonas" "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2016" "MIC" "Aeromonas" "Meropenem" "M45 Table 2" 4 16 FALSE +"CLSI 2016" "MIC" "Aggregatibacter" "Meropenem" "M45 Table 7" 4 16 FALSE +"CLSI 2016" "MIC" "Anaerosalibacter" "Meropenem" "Table 2J" 4 16 FALSE +"CLSI 2016" "DISK" "Burkholderia cepacia" "Meropenem" "Table 2B-3" "10ug" 20 15 FALSE +"CLSI 2016" "MIC" "Burkholderia cepacia" "Meropenem" "Table 2B-3" 4 16 FALSE +"CLSI 2016" "MIC" "Cardiobacterium" "Meropenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2016" "MIC" "Eikenella" "Meropenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2016" "MIC" "Erysipelothrix rhusiopathiae" "Meropenem" "M45 Table 6" 0.5 FALSE +"CLSI 2016" "MIC" "Granulicatella" "Meropenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Meropenem" "Table 2E" "10ug" 20 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Meropenem" "Table 2E" 0.5 FALSE +"CLSI 2016" "MIC" "Kingella" "Meropenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2016" "DISK" "Neisseria meningitidis" "Meropenem" "Table 2I" "10ug" 30 FALSE +"CLSI 2016" "MIC" "Neisseria meningitidis" "Meropenem" "Table 2I" 0.25 FALSE +"CLSI 2016" "DISK" "Plesiomonas" "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2016" "MIC" "Plesiomonas" "Meropenem" "M45 Table 2" 4 16 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" "Meropenem" "Table 2B-1" "10ug" 19 15 FALSE +"CLSI 2016" "MIC" "Pseudomonas aeruginosa" "Meropenem" "Table 2B-1" 2 8 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Meropenem" "Table 2C" "10ug" 15 13 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Meropenem" "Table 2C" 4 16 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Meropenem" "Table 2H-1" "10ug" FALSE +"CLSI 2016" "MIC" "Streptococcus" "Meropenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Meropenem" "Table 2H-1" 0.5 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Meropenem" "Table 2G" "10ug" FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Meropenem" "Table 2G" 0.25 1 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" "Meropenem" "Table 2H-2" "10ug" FALSE +"CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Meropenem" "Table 2H-2" 0.5 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Methicillin" "Table 2C" "5ug" 14 9 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Methicillin" "Table 2C" 8 16 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Moxifloxacin" "Table 2E" "5ug" 18 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Moxifloxacin" "Table 2E" 1 FALSE +"CLSI 2016" "DISK" "Pasteurella" "Moxifloxacin" "M45 Table 13" "5ug" 28 FALSE +"CLSI 2016" "MIC" "Pasteurella" "Moxifloxacin" "M45 Table 13" 0.064 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Moxifloxacin" "Table 2C" "5ug" 24 20 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Moxifloxacin" "Table 2C" 0.5 2 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Moxifloxacin" "Table 2H-1" "5ug" FALSE +"CLSI 2016" "MIC" "Streptococcus" "Moxifloxacin" "Table 2H-1" FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Moxifloxacin" "Table 2G" "5ug" 18 14 FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Moxifloxacin" "Table 2G" 1 4 FALSE +"CLSI 2016" "DISK" "Acinetobacter" "Minocycline" "Table 2B-2" "30ug" 16 12 FALSE +"CLSI 2016" "MIC" "Acinetobacter" "Minocycline" "Table 2B-2" 4 16 FALSE +"CLSI 2016" "DISK" "Burkholderia cepacia" "Minocycline" "Table 2B-3" "30ug" 19 14 FALSE +"CLSI 2016" "MIC" "Burkholderia cepacia" "Minocycline" "Table 2B-3" 4 16 FALSE +"CLSI 2016" "DISK" "Enterococcus" "Minocycline" "Table 2D" "30ug" 19 14 FALSE +"CLSI 2016" "MIC" "Enterococcus" "Minocycline" "Table 2D" 4 16 FALSE +"CLSI 2016" "MIC" "Leuconostoc" "Minocycline" "M45 Table 10" 4 16 FALSE +"CLSI 2016" "DISK" "Neisseria meningitidis" "Minocycline" "Table 2I" "30ug" 26 FALSE +"CLSI 2016" "MIC" "Neisseria meningitidis" "Minocycline" "Table 2I" 2 FALSE +"CLSI 2016" "DISK" "Stenotrophomonas maltophilia" "Minocycline" "Table 2B-4" "30ug" 19 14 FALSE +"CLSI 2016" "MIC" "Stenotrophomonas maltophilia" "Minocycline" "Table 2B-4" 4 16 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Minocycline" "Table 2C" "30ug" 19 14 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Minocycline" "Table 2C" 4 16 FALSE +"CLSI 2016" "MIC" "Anaerosalibacter" "Metronidazole" "Table 2J" 8 32 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Nafcillin" "Table 2C" "1ug" 13 10 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Nafcillin" "Table 2C" 2 4 FALSE +"CLSI 2016" "DISK" "Neisseria meningitidis" "Nalidixic acid" "Table 2I" "30ug" 26 25 FALSE +"CLSI 2016" "MIC" "Neisseria meningitidis" "Nalidixic acid" "Table 2I" 4 8 FALSE +"CLSI 2016" "DISK" "Acinetobacter" "Netilmicin" "Table 2B-2" "30ug" FALSE +"CLSI 2016" "MIC" "Acinetobacter" "Netilmicin" "Table 2B-2" 8 32 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" "Netilmicin" "Table 2B-1" "30ug" 15 12 FALSE +"CLSI 2016" "MIC" "Pseudomonas aeruginosa" "Netilmicin" "Table 2B-1" 8 32 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Netilmicin" "Table 2C" "30ug" 15 12 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Netilmicin" "Table 2C" 8 32 FALSE +"CLSI 2016" "DISK" "Enterococcus" "Nitrofurantoin" "Table 2D" "300ug" 17 14 FALSE +"CLSI 2016" "MIC" "Enterococcus" "Nitrofurantoin" "Table 2D" 32 128 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Nitrofurantoin" "Table 2C" "300ug" 17 14 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Nitrofurantoin" "Table 2C" 32 128 FALSE +"CLSI 2016" "DISK" "Enterococcus" "Norfloxacin" "Table 2D" "10ug" 17 12 FALSE +"CLSI 2016" "MIC" "Enterococcus" "Norfloxacin" "Table 2D" 4 16 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" "Norfloxacin" "Table 2B-1" "10ug" 17 12 FALSE +"CLSI 2016" "MIC" "Pseudomonas aeruginosa" "Norfloxacin" "Table 2B-1" 4 16 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Norfloxacin" "Table 2C" "10ug" 17 12 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Norfloxacin" "Table 2C" 4 16 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Norfloxacin" "Table 2G" "5ug" FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Norfloxacin" "Table 2G" FALSE +"CLSI 2016" "DISK" "Haemophilus" "Ofloxacin" "Table 2E" "5ug" 16 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Ofloxacin" "Table 2E" 2 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" "Ofloxacin" "Table 2F" "5ug" 31 24 FALSE +"CLSI 2016" "MIC" "Neisseria gonorrhoeae" "Ofloxacin" "Table 2F" 0.25 2 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" "Ofloxacin" "Table 2B-1" "5ug" 16 12 FALSE +"CLSI 2016" "MIC" "Pseudomonas aeruginosa" "Ofloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2016" "MIC" "Salmonella" "Ofloxacin" "Table 2A" 0.125 2 FALSE +"CLSI 2016" "MIC" "Extraintestinal" "Salmonella" "Ofloxacin" "Table 2A" 0.125 2 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Ofloxacin" "Table 2C" "5ug" 18 14 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Ofloxacin" "Table 2C" 1 4 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Ofloxacin" "Table 2H-1" "5ug" 16 12 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Ofloxacin" "Table 2H-1" 2 8 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Ofloxacin" "Table 2G" "5ug" 16 12 FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Ofloxacin" "Table 2G" 2 8 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" "Ofloxacin" "Table 2H-2" "5ug" 16 12 FALSE +"CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Ofloxacin" "Table 2H-2" 2 8 FALSE +"CLSI 2016" "MIC" "Enterococcus" "Oritavancin" "Table 2D" 0.125 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Oritavancin" "Table 2C" 0.125 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Oritavancin" "Table 2H-1" 0.25 FALSE +"CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Oritavancin" "Table 2H-2" 0.25 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Oxacillin" "Table 2C" "1ug" 13 10 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Oxacillin" "Table 2C" 2 4 FALSE +"CLSI 2016" "DISK" "Staphylococcus aureus" "Oxacillin" "Table 2C" "1ug" 13 10 FALSE +"CLSI 2016" "MIC" "Staphylococcus aureus" "Oxacillin" "Table 2C" 2 4 FALSE +"CLSI 2016" "DISK" "Staphylococcus lugdunensis" "Oxacillin" "Table 2C" "1ug" FALSE +"CLSI 2016" "MIC" "Staphylococcus lugdunensis" "Oxacillin" "Table 2C" 2 4 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Oxacillin" "Table 2G" "1ug" 20 FALSE +"CLSI 2016" "MIC" "Pseudallescheria" "Oxacillin" "Table 2C" 0.25 0.5 FALSE +"CLSI 2016" "MIC" "Abiotrophia" "Penicillin G" "M45 Table 1" 0.125 4 FALSE +"CLSI 2016" "MIC" "Aggregatibacter" "Penicillin G" "M45 Table 7" 1 4 FALSE +"CLSI 2016" "MIC" "Anaerosalibacter" "Penicillin G" "Table 2J" 0.5 2 FALSE +"CLSI 2016" "MIC" "Bacillus" "Penicillin G" "M45 Table 3" 0.125 0.25 FALSE +"CLSI 2016" "MIC" "Bacillus anthracis" "Penicillin G" "M45 Table 16" 0.125 0.25 FALSE +"CLSI 2016" "MIC" "Cardiobacterium" "Penicillin G" "M45 Table 7" 1 4 FALSE +"CLSI 2016" "MIC" "Eikenella" "Penicillin G" "M45 Table 7" 1 4 FALSE +"CLSI 2016" "DISK" "Enterococcus" "Penicillin G" "Table 2D" "10units" 15 14 FALSE +"CLSI 2016" "MIC" "Enterococcus" "Penicillin G" "Table 2D" 8 16 FALSE +"CLSI 2016" "MIC" "Erysipelothrix rhusiopathiae" "Penicillin G" "M45 Table 6" 0.125 FALSE +"CLSI 2016" "MIC" "Granulicatella" "Penicillin G" "M45 Table 1" 0.125 4 FALSE +"CLSI 2016" "MIC" "Kingella" "Penicillin G" "M45 Table 7" 1 4 FALSE +"CLSI 2016" "MIC" "Leuconostoc" "Penicillin G" "M45 Table 10" 8 FALSE +"CLSI 2016" "MIC" "Lactobacillus" "Penicillin G" "M45 Table 9" 8 FALSE +"CLSI 2016" "DISK" "Listeria monocytogenes" "Penicillin G" "M45 Table 11" "10units" FALSE +"CLSI 2016" "MIC" "Listeria monocytogenes" "Penicillin G" "M45 Table 11" 2 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" "Penicillin G" "Table 2F" "10units" 47 26 FALSE +"CLSI 2016" "MIC" "Neisseria gonorrhoeae" "Penicillin G" "Table 2F" 0.064 2 FALSE +"CLSI 2016" "DISK" "Neisseria meningitidis" "Penicillin G" "Table 2I" "10units" FALSE +"CLSI 2016" "MIC" "Neisseria meningitidis" "Penicillin G" "Table 2I" 0.064 0.5 FALSE +"CLSI 2016" "MIC" "Pediococcus" "Penicillin G" "M45 Table 14" 8 FALSE +"CLSI 2016" "DISK" "Pasteurella" "Penicillin G" "M45 Table 13" "10 Units" 25 FALSE +"CLSI 2016" "MIC" "Pasteurella" "Penicillin G" "M45 Table 13" 0.5 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Penicillin G" "Table 2C" "10ug" 29 28 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Penicillin G" "Table 2C" 0.125 0.25 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Penicillin G" "Table 2H-1" "10units" 24 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Penicillin G" "M45 Table 1" 0.125 4 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Penicillin G" "Table 2H-1" 0.125 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" "10units" FALSE +"CLSI 2016" "MIC" "Meningitis" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" 0.064 0.12 FALSE +"CLSI 2016" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" 2 8 FALSE +"CLSI 2016" "MIC" "Oral" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" 0.064 2 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" "Penicillin G" "Table 2H-2" "10units" FALSE +"CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Penicillin G" "Table 2H-2" 0.125 4 FALSE +"CLSI 2016" "DISK" "Acinetobacter" "Piperacillin" "Table 2B-2" "100ug" 21 17 FALSE +"CLSI 2016" "MIC" "Acinetobacter" "Piperacillin" "Table 2B-2" 16 128 FALSE +"CLSI 2016" "MIC" "Anaerosalibacter" "Piperacillin" "Table 2J" 32 128 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" "Piperacillin" "Table 2B-1" "100ug" 21 14 FALSE +"CLSI 2016" "MIC" "Pseudomonas aeruginosa" "Piperacillin" "Table 2B-1" 16 128 FALSE +"CLSI 2016" "DISK" "Acinetobacter" "Polymyxin B" "Table 2B-2" "300ug" FALSE +"CLSI 2016" "MIC" "Acinetobacter" "Polymyxin B" "Table 2B-2" 2 4 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" "Polymyxin B" "Table 2B-1" "300ug" 12 11 FALSE +"CLSI 2016" "MIC" "Pseudomonas aeruginosa" "Polymyxin B" "Table 2B-1" 2 8 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Penicillin V" "Table 2G" "10ug" FALSE +"CLSI 2016" "MIC" "Oral" "Streptococcus pneumoniae" "Penicillin V" "Table 2G" 0.064 2 FALSE +"CLSI 2016" "DISK" "Enterococcus" "Quinupristin/dalfopristin" "Table 2D" "15ug" 19 15 FALSE +"CLSI 2016" "MIC" "Enterococcus" "Quinupristin/dalfopristin" "Table 2D" 1 4 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Quinupristin/dalfopristin" "Table 2C" "15ug" 19 15 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Quinupristin/dalfopristin" "Table 2C" 1 4 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Quinupristin/dalfopristin" "Table 2H-1" "15ug" 19 15 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Quinupristin/dalfopristin" "Table 2H-1" 1 4 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Quinupristin/dalfopristin" "Table 2G" "15ug" 19 15 FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Quinupristin/dalfopristin" "Table 2G" 1 4 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" "Quinupristin/dalfopristin" "Table 2H-2" "15ug" 19 15 FALSE +"CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Quinupristin/dalfopristin" "Table 2H-2" 1 4 FALSE +"CLSI 2016" "MIC" "Aggregatibacter" "Rifampicin" "M45 Table 7" 1 4 FALSE +"CLSI 2016" "MIC" "Bacillus" "Rifampicin" "M45 Table 3" 1 4 FALSE +"CLSI 2016" "MIC" "Bacillus anthracis" "Rifampicin" "M45 Table 16" FALSE +"CLSI 2016" "MIC" "Cardiobacterium" "Rifampicin" "M45 Table 7" 1 4 FALSE +"CLSI 2016" "MIC" "Eikenella" "Rifampicin" "M45 Table 7" 1 4 FALSE +"CLSI 2016" "DISK" "Enterococcus" "Rifampicin" "Table 2D" "5ug" 20 16 FALSE +"CLSI 2016" "MIC" "Enterococcus" "Rifampicin" "Table 2D" 1 4 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Rifampicin" "Table 2E" "5ug" 20 16 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Rifampicin" "Table 2E" 1 4 FALSE +"CLSI 2016" "MIC" "Kingella" "Rifampicin" "M45 Table 7" 1 4 FALSE +"CLSI 2016" "MIC" "Moraxella catarrhalis" "Rifampicin" "M45 Table 12" 1 4 FALSE +"CLSI 2016" "DISK" "Neisseria meningitidis" "Rifampicin" "Table 2I" "5ug" 25 19 FALSE +"CLSI 2016" "MIC" "Neisseria meningitidis" "Rifampicin" "Table 2I" 0.5 2 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Rifampicin" "Table 2C" "5ug" 20 16 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Rifampicin" "Table 2C" 1 4 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Rifampicin" "Table 2H-1" "5ug" FALSE +"CLSI 2016" "MIC" "Streptococcus" "Rifampicin" "Table 2H-1" FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Rifampicin" "Table 2G" "5ug" 19 16 FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Rifampicin" "Table 2G" 1 4 FALSE +"CLSI 2016" "DISK" "Acinetobacter" "Ampicillin/sulbactam" "Table 2B-2" "10ug" 15 11 FALSE +"CLSI 2016" "MIC" "Acinetobacter" "Ampicillin/sulbactam" "Table 2B-2" 8 32 FALSE +"CLSI 2016" "DISK" "Aeromonas" "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE +"CLSI 2016" "MIC" "Aeromonas" "Ampicillin/sulbactam" "M45 Table 2" 8 32 FALSE +"CLSI 2016" "MIC" "Aggregatibacter" "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE +"CLSI 2016" "MIC" "Anaerosalibacter" "Ampicillin/sulbactam" "Table 2J" 8 32 FALSE +"CLSI 2016" "MIC" "Cardiobacterium" "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE +"CLSI 2016" "MIC" "Eikenella" "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Ampicillin/sulbactam" "Table 2E" "10/10ug" 20 19 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Ampicillin/sulbactam" "Table 2E" 2 4 FALSE +"CLSI 2016" "DISK" "Plesiomonas" "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE +"CLSI 2016" "MIC" "Plesiomonas" "Ampicillin/sulbactam" "M45 Table 2" 8 32 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Ampicillin/sulbactam" "Table 2C" "10ug" 15 11 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Ampicillin/sulbactam" "Table 2C" 8 32 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Ampicillin/sulbactam" "Table 2G" "10/10ug" FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Ampicillin/sulbactam" "Table 2G" FALSE +"CLSI 2016" "DISK" "Neisseria meningitidis" "Sulfamethoxazole" "Table 2I" "200-300ug" FALSE +"CLSI 2016" "MIC" "Neisseria meningitidis" "Sulfamethoxazole" "Table 2I" 2 8 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Sulfamethoxazole" "Table 2C" "200ug" 17 12 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Sulfamethoxazole" "Table 2C" 256 512 FALSE +"CLSI 2016" "DISK" "Neisseria meningitidis" "Sulfisoxazole" "Table 2I" "200-300ug" FALSE +"CLSI 2016" "MIC" "Neisseria meningitidis" "Sulfisoxazole" "Table 2I" 2 8 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Sulfisoxazole" "Table 2C" "200ug" 17 12 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Sulfisoxazole" "Table 2C" 256 512 FALSE +"CLSI 2016" "DISK" "Histophilus somni" "Spectinomycin" "Vet Table" "100ug" 14 10 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" "Spectinomycin" "Table 2F" "100ug" 18 14 FALSE +"CLSI 2016" "MIC" "Neisseria gonorrhoeae" "Spectinomycin" "Table 2F" 32 128 FALSE +"CLSI 2016" "DISK" "Providencia heimbachae" "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2016" "DISK" "Pasteurella multocida" "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Sparfloxacin" "Table 2E" "5ug" FALSE +"CLSI 2016" "MIC" "Haemophilus" "Sparfloxacin" "Table 2E" 0.25 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Sparfloxacin" "Table 2C" "5ug" 19 15 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Sparfloxacin" "Table 2C" 0.5 2 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Sparfloxacin" "Table 2H-1" "5ug" FALSE +"CLSI 2016" "MIC" "Streptococcus" "Sparfloxacin" "Table 2H-1" FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Sparfloxacin" "Table 2G" "5ug" 19 15 FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Sparfloxacin" "Table 2G" 0.5 2 FALSE +"CLSI 2016" "DISK" "Neisseria meningitidis" "Sulfonamides" "Table 2I" "200-300ug" FALSE +"CLSI 2016" "MIC" "Neisseria meningitidis" "Sulfonamides" "Table 2I" 2 8 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Sulfonamides" "Table 2C" "200ug" 17 12 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Sulfonamides" "Table 2C" 256 512 FALSE +"CLSI 2016" "DISK" "Enterococcus" "Streptomycin-high" "Table 2D" "300ug" 10 6 FALSE +"CLSI 2016" "MIC" "Enterococcus" "Streptomycin-high" "Table 2D" 1024 1024 FALSE +"CLSI 2016" "MIC" "Brucella" "Streptoduocin" "M45 Table 16" 8 FALSE +"CLSI 2016" "MIC" "Enterococcus" "Streptoduocin" "Table 2D" 1024 1024 FALSE +"CLSI 2016" "MIC" "Francisella tularensis" "Streptoduocin" "M45 Table 16" 8 FALSE +"CLSI 2016" "MIC" "Yersinia pestis" "Streptoduocin" "M45 Table 16" 4 16 FALSE +"CLSI 2016" "DISK" "Acinetobacter" "Trimethoprim/sulfamethoxazole" "Table 2B-2" "1.25/23.75ug" 16 10 FALSE +"CLSI 2016" "MIC" "Acinetobacter" "Trimethoprim/sulfamethoxazole" "Table 2B-2" 2 4 FALSE +"CLSI 2016" "DISK" "Aeromonas" "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25/23.75ug" 16 10 FALSE +"CLSI 2016" "MIC" "Aeromonas" "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE +"CLSI 2016" "MIC" "Aggregatibacter" "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE +"CLSI 2016" "MIC" "Bacillus" "Trimethoprim/sulfamethoxazole" "M45 Table 3" 2 4 FALSE +"CLSI 2016" "MIC" "Bacillus anthracis" "Trimethoprim/sulfamethoxazole" "M45 Table 16" FALSE +"CLSI 2016" "MIC" "Brucella" "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 FALSE +"CLSI 2016" "DISK" "Burkholderia cepacia" "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25/23.75ug" 16 10 FALSE +"CLSI 2016" "MIC" "Burkholderia cepacia" "Trimethoprim/sulfamethoxazole" "Table 2B-3" 2 4 FALSE +"CLSI 2016" "MIC" "Burkholderia pseudomallei" "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 4 FALSE +"CLSI 2016" "MIC" "Cardiobacterium" "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE +"CLSI 2016" "MIC" "Eikenella" "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Trimethoprim/sulfamethoxazole" "Table 2E" "1.25/23.75ug" 15 10 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Trimethoprim/sulfamethoxazole" "Table 2E" 0.5 4 FALSE +"CLSI 2016" "MIC" "Kingella" "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE +"CLSI 2016" "MIC" "Listeria monocytogenes" "Trimethoprim/sulfamethoxazole" "M45 Table 11" 0.5 4 FALSE +"CLSI 2016" "DISK" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" "M45 Table 12" "1.25/23.75ug" 13 10 FALSE +"CLSI 2016" "MIC" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" "M45 Table 12" 0.5 4 FALSE +"CLSI 2016" "DISK" "Neisseria meningitidis" "Trimethoprim/sulfamethoxazole" "Table 2I" "1.25/23.75ug" 30 25 FALSE +"CLSI 2016" "MIC" "Neisseria meningitidis" "Trimethoprim/sulfamethoxazole" "Table 2I" 0.125 0.5 FALSE +"CLSI 2016" "DISK" "Plesiomonas" "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25/23.75ug" 16 10 FALSE +"CLSI 2016" "MIC" "Plesiomonas" "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE +"CLSI 2016" "DISK" "Pasteurella" "Trimethoprim/sulfamethoxazole" "M45 Table 13" "1.25/23.75ug" 24 FALSE +"CLSI 2016" "MIC" "Pasteurella" "Trimethoprim/sulfamethoxazole" "M45 Table 13" 0.5 FALSE +"CLSI 2016" "DISK" "Stenotrophomonas maltophilia" "Trimethoprim/sulfamethoxazole" "Table 2B-4" "30ug" 16 10 FALSE +"CLSI 2016" "MIC" "Stenotrophomonas maltophilia" "Trimethoprim/sulfamethoxazole" "Table 2B-4" 2 4 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Trimethoprim/sulfamethoxazole" "Table 2C" "1.25/23.75ug" 16 10 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Trimethoprim/sulfamethoxazole" "Table 2C" 2 4 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Trimethoprim/sulfamethoxazole" "Table 2H-1" "1.25/23.75ug" FALSE +"CLSI 2016" "MIC" "Streptococcus" "Trimethoprim/sulfamethoxazole" "Table 2H-1" FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" "Table 2G" "1.25/23.75ug" 19 15 FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" "Table 2G" 0.5 4 FALSE +"CLSI 2016" "MIC" "Yersinia pestis" "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 4 FALSE +"CLSI 2016" "DISK" "Acinetobacter" "Ticarcillin/clavulanic acid" "Table 2B-2" "75ug" 20 14 FALSE +"CLSI 2016" "MIC" "Acinetobacter" "Ticarcillin/clavulanic acid" "Table 2B-2" 16 128 FALSE +"CLSI 2016" "MIC" "Anaerosalibacter" "Ticarcillin/clavulanic acid" "Table 2J" 32 128 FALSE +"CLSI 2016" "DISK" "Burkholderia cepacia" "Ticarcillin/clavulanic acid" "Table 2B-3" "75ug" FALSE +"CLSI 2016" "MIC" "Burkholderia cepacia" "Ticarcillin/clavulanic acid" "Table 2B-3" 16 128 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" "Ticarcillin/clavulanic acid" "Table 2B-1" "75ug" 24 15 FALSE +"CLSI 2016" "MIC" "Pseudomonas aeruginosa" "Ticarcillin/clavulanic acid" "Table 2B-1" 16 128 FALSE +"CLSI 2016" "DISK" "Stenotrophomonas maltophilia" "Ticarcillin/clavulanic acid" "Table 2B-4" "30ug" FALSE +"CLSI 2016" "MIC" "Stenotrophomonas maltophilia" "Ticarcillin/clavulanic acid" "Table 2B-4" 16 128 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Ticarcillin/clavulanic acid" "Table 2C" "75/10ug" 23 22 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Ticarcillin/clavulanic acid" "Table 2C" 8 16 FALSE +"CLSI 2016" "DISK" "Acinetobacter" "Tetracycline" "Table 2B-2" "30ug" 15 11 FALSE +"CLSI 2016" "MIC" "Acinetobacter" "Tetracycline" "Table 2B-2" 4 16 FALSE +"CLSI 2016" "DISK" "Aeromonas" "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE +"CLSI 2016" "MIC" "Aeromonas" "Tetracycline" "M45 Table 2" 4 16 FALSE +"CLSI 2016" "MIC" "Aggregatibacter" "Tetracycline" "M45 Table 7" 2 8 FALSE +"CLSI 2016" "MIC" "Anaerosalibacter" "Tetracycline" "Table 2J" 4 16 FALSE +"CLSI 2016" "MIC" "Bacillus" "Tetracycline" "M45 Table 3" 4 16 FALSE +"CLSI 2016" "MIC" "Bacillus anthracis" "Tetracycline" "M45 Table 16" 1 FALSE +"CLSI 2016" "MIC" "Brucella" "Tetracycline" "M45 Table 16" 1 FALSE +"CLSI 2016" "MIC" "Burkholderia mallei" "Tetracycline" "M45 Table 16" 4 16 FALSE +"CLSI 2016" "MIC" "Burkholderia pseudomallei" "Tetracycline" "M45 Table 16" 4 16 FALSE +"CLSI 2016" "MIC" "Campylobacter" "Tetracycline" "M45 Table 3" 4 16 FALSE +"CLSI 2016" "MIC" "Cardiobacterium" "Tetracycline" "M45 Table 7" 2 8 FALSE +"CLSI 2016" "MIC" "Eikenella" "Tetracycline" "M45 Table 7" 2 8 FALSE +"CLSI 2016" "DISK" "Enterococcus" "Tetracycline" "Table 2D" "30ug" 19 14 FALSE +"CLSI 2016" "MIC" "Enterococcus" "Tetracycline" "Table 2D" 4 16 FALSE +"CLSI 2016" "MIC" "Francisella tularensis" "Tetracycline" "M45 Table 16" 4 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Tetracycline" "Table 2E" "30ug" 29 25 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Tetracycline" "Table 2E" 2 8 FALSE +"CLSI 2016" "MIC" "Kingella" "Tetracycline" "M45 Table 7" 2 8 FALSE +"CLSI 2016" "DISK" "Moraxella catarrhalis" "Tetracycline" "M45 Table 12" "30ug" 29 24 FALSE +"CLSI 2016" "MIC" "Moraxella catarrhalis" "Tetracycline" "M45 Table 12" 2 8 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" "Tetracycline" "Table 2F" "30ug" 38 30 FALSE +"CLSI 2016" "MIC" "Neisseria gonorrhoeae" "Tetracycline" "Table 2F" 0.25 2 FALSE +"CLSI 2016" "DISK" "Plesiomonas" "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE +"CLSI 2016" "MIC" "Plesiomonas" "Tetracycline" "M45 Table 2" 4 16 FALSE +"CLSI 2016" "DISK" "Pasteurella" "Tetracycline" "M45 Table 13" "30ug" 23 FALSE +"CLSI 2016" "MIC" "Pasteurella" "Tetracycline" "M45 Table 13" 1 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Tetracycline" "Table 2C" "30ug" 19 14 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Tetracycline" "Table 2C" 4 16 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Tetracycline" "Table 2H-1" "30ug" 23 18 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Tetracycline" "Table 2H-1" 2 8 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Tetracycline" "Table 2G" "30ug" 28 24 FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Tetracycline" "Table 2G" 1 4 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" "Tetracycline" "Table 2H-2" "30ug" 23 18 FALSE +"CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Tetracycline" "Table 2H-2" 2 8 FALSE +"CLSI 2016" "MIC" "Yersinia pestis" "Tetracycline" "M45 Table 16" 4 16 FALSE +"CLSI 2016" "DISK" "Enterococcus" "Teicoplanin" "Table 2D" "30ug" 14 10 FALSE +"CLSI 2016" "MIC" "Enterococcus" "Teicoplanin" "Table 2D" 8 32 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Teicoplanin" "Table 2C" "30ug" 14 10 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Teicoplanin" "Table 2C" 8 32 FALSE +"CLSI 2016" "DISK" "Actinobacillus pleuropneumoniae" "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE +"CLSI 2016" "MIC" "Actinobacillus pleuropneumoniae" "Tilmicosin" "Vet Table" 16 32 FALSE +"CLSI 2016" "DISK" "Pasteurella multocida" "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE +"CLSI 2016" "MIC" "Pasteurella multocida" "Tilmicosin" "Vet Table" 16 32 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Telithromycin" "Table 2E" "15ug" 15 11 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Telithromycin" "Table 2E" 4 16 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Telithromycin" "Table 2C" "15ug" 22 18 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Telithromycin" "Table 2C" 1 4 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Telithromycin" "Table 2H-1" FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Telithromycin" "Table 2G" "15ug" 19 15 FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Telithromycin" "Table 2G" 1 4 FALSE +"CLSI 2016" "MIC" "Enterococcus" "Telavancin" "Table 2D" 0.125 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Telavancin" "Table 2C" 0.125 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Telavancin" "Table 2H-1" 0.125 FALSE +"CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Telavancin" "Table 2H-2" 0.125 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Trimethoprim" "Table 2C" "5ug" 16 10 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Trimethoprim" "Table 2C" 8 16 FALSE +"CLSI 2016" "DISK" "Acinetobacter" "Tobramycin" "Table 2B-2" "10ug" 15 12 FALSE +"CLSI 2016" "MIC" "Acinetobacter" "Tobramycin" "Table 2B-2" 4 16 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" "Tobramycin" "Table 2B-1" "10ug" 15 12 FALSE +"CLSI 2016" "MIC" "Pseudomonas aeruginosa" "Tobramycin" "Table 2B-1" 4 16 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Tobramycin" "Table 2C" "10ug" 15 12 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Tobramycin" "Table 2C" 4 16 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Trovafloxacin" "Table 2E" "10ug" 22 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Trovafloxacin" "Table 2E" 1 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" "Trovafloxacin" "Table 2F" "10ug" 34 FALSE +"CLSI 2016" "MIC" "Neisseria gonorrhoeae" "Trovafloxacin" "Table 2F" 0.25 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Trovafloxacin" "Table 2H-1" "10ug" 19 15 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Trovafloxacin" "Table 2H-1" 1 4 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Trovafloxacin" "Table 2G" "10ug" 19 15 FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Trovafloxacin" "Table 2G" 1 4 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" "Trovafloxacin" "Table 2H-2" "10ug" 19 15 FALSE +"CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Trovafloxacin" "Table 2H-2" 1 4 FALSE +"CLSI 2016" "MIC" "Enterococcus" "Tedizolid" "Table 2D" 0.5 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Tedizolid" "Table 2C" 0.5 2 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Tedizolid" "Table 2H-1" 0.5 FALSE +"CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Tedizolid" "Table 2H-2" 0.25 FALSE +"CLSI 2016" "DISK" "Acinetobacter" "Piperacillin/tazobactam" "Table 2B-2" "100ug" 21 17 FALSE +"CLSI 2016" "MIC" "Acinetobacter" "Piperacillin/tazobactam" "Table 2B-2" 16 128 FALSE +"CLSI 2016" "DISK" "Aeromonas" "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE +"CLSI 2016" "MIC" "Aeromonas" "Piperacillin/tazobactam" "M45 Table 2" 16 128 FALSE +"CLSI 2016" "MIC" "Anaerosalibacter" "Piperacillin/tazobactam" "Table 2J" 32 128 FALSE +"CLSI 2016" "DISK" "Haemophilus" "Piperacillin/tazobactam" "Table 2E" "100ug" 21 FALSE +"CLSI 2016" "MIC" "Haemophilus" "Piperacillin/tazobactam" "Table 2E" 1 2 FALSE +"CLSI 2016" "DISK" "Plesiomonas" "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE +"CLSI 2016" "MIC" "Plesiomonas" "Piperacillin/tazobactam" "M45 Table 2" 16 128 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" "Piperacillin/tazobactam" "Table 2B-1" "100ug" 21 14 FALSE +"CLSI 2016" "MIC" "Pseudomonas aeruginosa" "Piperacillin/tazobactam" "Table 2B-1" 16 128 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Piperacillin/tazobactam" "Table 2C" "100/10ug" 18 17 FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Piperacillin/tazobactam" "Table 2C" 8 16 FALSE +"CLSI 2016" "MIC" "Abiotrophia" "Vancomycin" "M45 Table 1" 1 FALSE +"CLSI 2016" "MIC" "Bacillus" "Vancomycin" "M45 Table 3" 4 FALSE +"CLSI 2016" "MIC" "Bacillus anthracis" "Vancomycin" "M45 Table 16" FALSE +"CLSI 2016" "DISK" "Enterococcus" "Vancomycin" "Table 2D" "30ug" 17 14 FALSE +"CLSI 2016" "MIC" "Enterococcus" "Vancomycin" "Table 2D" 4 32 FALSE +"CLSI 2016" "MIC" "Granulicatella" "Vancomycin" "M45 Table 1" 1 FALSE +"CLSI 2016" "MIC" "Lactobacillus" "Vancomycin" "M45 Table 9" 2 16 FALSE +"CLSI 2016" "MIC" "Propionibacterium" "Vancomycin" "Table 2J-2" 2 4 FALSE +"CLSI 2016" "DISK" "Staphylococcus" "Vancomycin" "Table 2C" "30ug" FALSE +"CLSI 2016" "MIC" "Staphylococcus" "Vancomycin" "Table 2C" 4 32 FALSE +"CLSI 2016" "MIC" "Staphylococcus aureus" "Vancomycin" "Table 2C" 2 16 FALSE +"CLSI 2016" "DISK" "Streptococcus" "Vancomycin" "Table 2H-1" "30ug" 17 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Vancomycin" "M45 Table 1" 1 FALSE +"CLSI 2016" "MIC" "Streptococcus" "Vancomycin" "Table 2H-1" 1 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" "Vancomycin" "Table 2G" "30ug" 17 FALSE +"CLSI 2016" "MIC" "Streptococcus pneumoniae" "Vancomycin" "Table 2G" 1 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" "Vancomycin" "Table 2H-2" "30ug" 17 FALSE +"CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" "Vancomycin" "Table 2H-2" 1 FALSE +"CLSI 2015" "DISK" "Aeromonas" "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE +"CLSI 2015" "MIC" "Aeromonas" "Amoxicillin/clavulanic acid" "M45 Table 2" 8 32 FALSE +"CLSI 2015" "MIC" "Aggregatibacter" "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE +"CLSI 2015" "MIC" "Anaerosalibacter" "Amoxicillin/clavulanic acid" "Table 2J" 4 16 FALSE +"CLSI 2015" "MIC" "Burkholderia pseudomallei" "Amoxicillin/clavulanic acid" "M45 Table 16" 8 32 FALSE +"CLSI 2015" "MIC" "Cardiobacterium" "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE +"CLSI 2015" "MIC" "Eikenella" "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Amoxicillin/clavulanic acid" "Table 2E" "20/10ug" 20 19 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Amoxicillin/clavulanic acid" "Table 2E" 4 8 FALSE +"CLSI 2015" "DISK" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" "M45 Table 12" "20ug" 24 23 FALSE +"CLSI 2015" "MIC" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" "M45 Table 12" 4 8 FALSE +"CLSI 2015" "DISK" "Plesiomonas" "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE +"CLSI 2015" "MIC" "Plesiomonas" "Amoxicillin/clavulanic acid" "M45 Table 2" 8 32 FALSE +"CLSI 2015" "DISK" "Pasteurella" "Amoxicillin/clavulanic acid" "M45 Table 13" "20ug" 27 FALSE +"CLSI 2015" "MIC" "Pasteurella" "Amoxicillin/clavulanic acid" "M45 Table 13" 0.5 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Amoxicillin/clavulanic acid" "Table 2C" "20ug" 20 19 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Amoxicillin/clavulanic acid" "Table 2C" 4 8 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Amoxicillin/clavulanic acid" "Table 2H-1" "20ug" FALSE +"CLSI 2015" "MIC" "Streptococcus" "Amoxicillin/clavulanic acid" "Table 2H-1" FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Amoxicillin/clavulanic acid" "Table 2G" "10/10ug" FALSE +"CLSI 2015" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Amoxicillin/clavulanic acid" "Table 2G" 2 8 FALSE +"CLSI 2015" "DISK" "Acinetobacter" "Amikacin" "Table 2B-2" "30ug" 17 14 FALSE +"CLSI 2015" "MIC" "Acinetobacter" "Amikacin" "Table 2B-2" 16 64 FALSE +"CLSI 2015" "DISK" "Aeromonas" "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE +"CLSI 2015" "MIC" "Aeromonas" "Amikacin" "M45 Table 2" 16 64 FALSE +"CLSI 2015" "MIC" "Bacillus" "Amikacin" "M45 Table 3" 16 64 FALSE +"CLSI 2015" "MIC" "Bacillus anthracis" "Amikacin" "M45 Table 16" FALSE +"CLSI 2015" "DISK" "Plesiomonas" "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE +"CLSI 2015" "MIC" "Plesiomonas" "Amikacin" "M45 Table 2" 16 64 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" "Amikacin" "Table 2B-1" "30ug" 17 14 FALSE +"CLSI 2015" "MIC" "Pseudomonas aeruginosa" "Amikacin" "Table 2B-1" 16 64 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Amikacin" "Table 2C" "30ug" 17 14 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Amikacin" "Table 2C" 16 64 FALSE +"CLSI 2015" "MIC" "Aggregatibacter" "Ampicillin" "M45 Table 7" 1 4 FALSE +"CLSI 2015" "MIC" "Anaerosalibacter" "Ampicillin" "Table 2J" 0.5 2 FALSE +"CLSI 2015" "MIC" "Bacillus" "Ampicillin" "M45 Table 3" 0.25 0.5 FALSE +"CLSI 2015" "MIC" "Bacillus anthracis" "Ampicillin" "M45 Table 16" FALSE +"CLSI 2015" "MIC" "Cardiobacterium" "Ampicillin" "M45 Table 7" 1 4 FALSE +"CLSI 2015" "MIC" "Eikenella" "Ampicillin" "M45 Table 7" 1 4 FALSE +"CLSI 2015" "DISK" "Enterococcus" "Ampicillin" "Table 2D" "10ug" 17 16 FALSE +"CLSI 2015" "MIC" "Enterococcus" "Ampicillin" "Table 2D" 8 16 FALSE +"CLSI 2015" "MIC" "Erysipelothrix rhusiopathiae" "Ampicillin" "M45 Table 6" 0.25 FALSE +"CLSI 2015" "MIC" "Granulicatella" "Ampicillin" "M45 Table 1" 0.25 8 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Ampicillin" "Table 2E" "10ug" 22 18 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Ampicillin" "Table 2E" 1 4 FALSE +"CLSI 2015" "MIC" "Leuconostoc" "Ampicillin" "M45 Table 10" 8 FALSE +"CLSI 2015" "MIC" "Lactobacillus" "Ampicillin" "M45 Table 9" 8 FALSE +"CLSI 2015" "DISK" "Listeria monocytogenes" "Ampicillin" "M45 Table 11" "10ug" FALSE +"CLSI 2015" "MIC" "Listeria monocytogenes" "Ampicillin" "M45 Table 11" 2 FALSE +"CLSI 2015" "DISK" "Neisseria meningitidis" "Ampicillin" "Table 2I" "10ug" FALSE +"CLSI 2015" "MIC" "Neisseria meningitidis" "Ampicillin" "Table 2I" 0.125 2 FALSE +"CLSI 2015" "MIC" "Pediococcus" "Ampicillin" "M45 Table 14" 8 FALSE +"CLSI 2015" "DISK" "Pasteurella" "Ampicillin" "M45 Table 13" "10ug" 27 FALSE +"CLSI 2015" "MIC" "Pasteurella" "Ampicillin" "M45 Table 13" 0.5 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Ampicillin" "Table 2C" "10ug" 29 28 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Ampicillin" "Table 2C" 0.25 0.5 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Ampicillin" "Table 2H-1" "10ug" 24 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Ampicillin" "M45 Table 1" 0.25 8 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Ampicillin" "Table 2H-1" 0.25 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Ampicillin" "Table 2G" "10ug" FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Ampicillin" "Table 2G" FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" "Ampicillin" "Table 2H-2" "10ug" FALSE +"CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Ampicillin" "Table 2H-2" 0.25 8 FALSE +"CLSI 2015" "MIC" "Pasteurella" "Amoxicillin" "M45 Table 13" 0.5 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Amoxicillin" "Table 2H-1" "30ug" FALSE +"CLSI 2015" "MIC" "Streptococcus" "Amoxicillin" "Table 2H-1" FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Amoxicillin" "Table 2G" "30ug" FALSE +"CLSI 2015" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Amoxicillin" "Table 2G" 2 8 FALSE +"CLSI 2015" "DISK" "Aeromonas" "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2015" "MIC" "Aeromonas" "Aztreonam" "M45 Table 2" 4 16 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Aztreonam" "Table 2E" "30ug" 26 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Aztreonam" "Table 2E" 2 FALSE +"CLSI 2015" "DISK" "Plesiomonas" "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2015" "MIC" "Plesiomonas" "Aztreonam" "M45 Table 2" 4 16 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" "Aztreonam" "Table 2B-1" "30ug" 22 15 FALSE +"CLSI 2015" "MIC" "Pseudomonas aeruginosa" "Aztreonam" "Table 2B-1" 8 32 FALSE +"CLSI 2015" "MIC" "Aggregatibacter" "Azithromycin" "M45 Table 7" 4 FALSE +"CLSI 2015" "MIC" "Cardiobacterium" "Azithromycin" "M45 Table 7" 4 FALSE +"CLSI 2015" "MIC" "Eikenella" "Azithromycin" "M45 Table 7" 4 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Azithromycin" "Table 2E" "15ug" 12 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Azithromycin" "Table 2E" 4 FALSE +"CLSI 2015" "MIC" "Kingella" "Azithromycin" "M45 Table 7" 4 FALSE +"CLSI 2015" "DISK" "Moraxella catarrhalis" "Azithromycin" "M45 Table 12" "15ug" 26 FALSE +"CLSI 2015" "MIC" "Moraxella catarrhalis" "Azithromycin" "M45 Table 12" 0.25 FALSE +"CLSI 2015" "DISK" "Neisseria meningitidis" "Azithromycin" "Table 2I" "15ug" 20 FALSE +"CLSI 2015" "MIC" "Neisseria meningitidis" "Azithromycin" "Table 2I" 2 FALSE +"CLSI 2015" "DISK" "Pasteurella" "Azithromycin" "M45 Table 13" "15ug" 20 FALSE +"CLSI 2015" "MIC" "Pasteurella" "Azithromycin" "M45 Table 13" 1 FALSE +"CLSI 2015" "MIC" "Salmonella enterica" "Azithromycin" "Table 2A" 16 32 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Azithromycin" "Table 2C" "15ug" 18 13 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Azithromycin" "Table 2C" 2 8 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Azithromycin" "Table 2H-1" "15ug" 18 13 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Azithromycin" "Table 2H-1" 0.5 2 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Azithromycin" "Table 2G" "15ug" 18 13 FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Azithromycin" "Table 2G" 0.5 2 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" "Azithromycin" "Table 2H-2" "15ug" 18 13 FALSE +"CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Azithromycin" "Table 2H-2" 0.5 2 FALSE +"CLSI 2015" "MIC" "Vibrio cholerae" "Azithromycin" "M45 Table 14" "30ug" 2 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Cefetamet" "Table 2E" "10ug" 18 14 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Cefetamet" "Table 2E" 4 16 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" "Cefetamet" "Table 2F" "10ug" 29 FALSE +"CLSI 2015" "MIC" "Neisseria gonorrhoeae" "Cefetamet" "Table 2F" 0.5 FALSE +"CLSI 2015" "DISK" "Acinetobacter" "Ceftazidime" "Table 2B-2" "30ug" 18 14 FALSE +"CLSI 2015" "MIC" "Acinetobacter" "Ceftazidime" "Table 2B-2" 8 32 FALSE +"CLSI 2015" "DISK" "Aeromonas" "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2015" "MIC" "Aeromonas" "Ceftazidime" "M45 Table 2" 4 16 FALSE +"CLSI 2015" "MIC" "Bacillus" "Ceftazidime" "M45 Table 3" 8 32 FALSE +"CLSI 2015" "MIC" "Bacillus anthracis" "Ceftazidime" "M45 Table 16" FALSE +"CLSI 2015" "DISK" "Burkholderia cepacia" "Ceftazidime" "Table 2B-3" "30ug" 21 17 FALSE +"CLSI 2015" "MIC" "Burkholderia cepacia" "Ceftazidime" "Table 2B-3" 8 32 FALSE +"CLSI 2015" "MIC" "Burkholderia mallei" "Ceftazidime" "M45 Table 16" 8 32 FALSE +"CLSI 2015" "MIC" "Burkholderia pseudomallei" "Ceftazidime" "M45 Table 16" 8 32 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Ceftazidime" "Table 2E" "30ug" 26 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Ceftazidime" "Table 2E" 2 FALSE +"CLSI 2015" "MIC" "Moraxella catarrhalis" "Ceftazidime" "M45 Table 12" 2 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" "Ceftazidime" "Table 2F" "30ug" 31 FALSE +"CLSI 2015" "MIC" "Neisseria gonorrhoeae" "Ceftazidime" "Table 2F" 0.5 FALSE +"CLSI 2015" "DISK" "Plesiomonas" "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2015" "MIC" "Plesiomonas" "Ceftazidime" "M45 Table 2" 4 16 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" "Ceftazidime" "Table 2B-1" "30ug" 18 14 FALSE +"CLSI 2015" "MIC" "Pseudomonas aeruginosa" "Ceftazidime" "Table 2B-1" 8 32 FALSE +"CLSI 2015" "DISK" "Stenotrophomonas maltophilia" "Ceftazidime" "Table 2B-4" "30ug" FALSE +"CLSI 2015" "MIC" "Stenotrophomonas maltophilia" "Ceftazidime" "Table 2B-4" 8 32 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Ceftazidime" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Ceftazidime" "Table 2C" 8 32 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Cefdinir" "Table 2E" "5ug" 20 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Cefdinir" "Table 2E" 1 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Cefdinir" "Table 2C" "5ug" 20 16 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Cefdinir" "Table 2C" 1 4 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Cefdinir" "Table 2G" "5ug" FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Cefdinir" "Table 2G" 0.5 2 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Cefaclor" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Cefaclor" "Table 2E" 8 32 FALSE +"CLSI 2015" "MIC" "Moraxella catarrhalis" "Cefaclor" "M45 Table 12" 8 32 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Cefaclor" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Cefaclor" "Table 2C" 8 32 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Cefaclor" "Table 2G" "30ug" FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Cefaclor" "Table 2G" 1 4 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Cephalothin" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Cephalothin" "Table 2C" 8 32 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Cefixime" "Table 2E" "5ug" 21 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Cefixime" "Table 2E" 1 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" "Cefixime" "Table 2F" "5ug" 31 FALSE +"CLSI 2015" "MIC" "Neisseria gonorrhoeae" "Cefixime" "Table 2F" 0.25 FALSE +"CLSI 2015" "MIC" "Anaerosalibacter" "Cefoperazone" "Table 2J" 16 64 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Cefoperazone" "Table 2C" "75ug" 21 15 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Cefoperazone" "Table 2C" 16 64 FALSE +"CLSI 2015" "DISK" "Aeromonas" "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE +"CLSI 2015" "MIC" "Aeromonas" "Chloramphenicol" "M45 Table 2" 8 32 FALSE +"CLSI 2015" "MIC" "Aggregatibacter" "Chloramphenicol" "M45 Table 7" 4 16 FALSE +"CLSI 2015" "MIC" "Anaerosalibacter" "Chloramphenicol" "Table 2J" 8 32 FALSE +"CLSI 2015" "MIC" "Bacillus" "Chloramphenicol" "M45 Table 3" 8 32 FALSE +"CLSI 2015" "MIC" "Bacillus anthracis" "Chloramphenicol" "M45 Table 16" FALSE +"CLSI 2015" "DISK" "Burkholderia cepacia" "Chloramphenicol" "Table 2B-3" "30ug" FALSE +"CLSI 2015" "MIC" "Burkholderia cepacia" "Chloramphenicol" "Table 2B-3" 8 32 FALSE +"CLSI 2015" "MIC" "Cardiobacterium" "Chloramphenicol" "M45 Table 7" 4 16 FALSE +"CLSI 2015" "MIC" "Eikenella" "Chloramphenicol" "M45 Table 7" 4 16 FALSE +"CLSI 2015" "DISK" "Enterococcus" "Chloramphenicol" "Table 2D" "30ug" 18 12 FALSE +"CLSI 2015" "MIC" "Enterococcus" "Chloramphenicol" "Table 2D" 8 32 FALSE +"CLSI 2015" "MIC" "Francisella tularensis" "Chloramphenicol" "M45 Table 16" 8 FALSE +"CLSI 2015" "MIC" "Granulicatella" "Chloramphenicol" "M45 Table 1" 4 8 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Chloramphenicol" "Table 2E" "30ug" 29 25 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Chloramphenicol" "Table 2E" 2 8 FALSE +"CLSI 2015" "MIC" "Kingella" "Chloramphenicol" "M45 Table 7" 4 16 FALSE +"CLSI 2015" "MIC" "Leuconostoc" "Chloramphenicol" "M45 Table 10" 8 32 FALSE +"CLSI 2015" "MIC" "Moraxella catarrhalis" "Chloramphenicol" "M45 Table 12" 2 8 FALSE +"CLSI 2015" "DISK" "Neisseria meningitidis" "Chloramphenicol" "Table 2I" "30ug" 26 19 FALSE +"CLSI 2015" "MIC" "Neisseria meningitidis" "Chloramphenicol" "Table 2I" 2 8 FALSE +"CLSI 2015" "MIC" "Pediococcus" "Chloramphenicol" "M45 Table 14" 8 32 FALSE +"CLSI 2015" "DISK" "Plesiomonas" "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE +"CLSI 2015" "MIC" "Plesiomonas" "Chloramphenicol" "M45 Table 2" 8 32 FALSE +"CLSI 2015" "DISK" "Pasteurella" "Chloramphenicol" "M45 Table 13" "30ug" 28 FALSE +"CLSI 2015" "MIC" "Pasteurella" "Chloramphenicol" "M45 Table 13" 2 FALSE +"CLSI 2015" "DISK" "Stenotrophomonas maltophilia" "Chloramphenicol" "Table 2B-4" "30ug" FALSE +"CLSI 2015" "MIC" "Stenotrophomonas maltophilia" "Chloramphenicol" "Table 2B-4" 8 32 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Chloramphenicol" "Table 2C" "30ug" 18 12 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Chloramphenicol" "Table 2C" 8 32 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Chloramphenicol" "Table 2H-1" "30ug" 21 17 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Chloramphenicol" "M45 Table 1" 4 8 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Chloramphenicol" "Table 2H-1" 4 16 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Chloramphenicol" "Table 2G" "30ug" 21 20 FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Chloramphenicol" "Table 2G" 4 8 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" "Chloramphenicol" "Table 2H-2" "30ug" 21 17 FALSE +"CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Chloramphenicol" "Table 2H-2" 4 16 FALSE +"CLSI 2015" "MIC" "Yersinia pestis" "Chloramphenicol" "M45 Table 16" 8 32 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Cefonicid" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Cefonicid" "Table 2E" 4 16 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Cefonicid" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Cefonicid" "Table 2C" 8 32 FALSE +"CLSI 2015" "DISK" "Acinetobacter" "Ciprofloxacin" "Table 2B-2" "5ug" 21 15 FALSE +"CLSI 2015" "MIC" "Acinetobacter" "Ciprofloxacin" "Table 2B-2" 1 4 FALSE +"CLSI 2015" "DISK" "Aeromonas" "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE +"CLSI 2015" "MIC" "Aeromonas" "Ciprofloxacin" "M45 Table 2" 1 4 FALSE +"CLSI 2015" "MIC" "Aggregatibacter" "Ciprofloxacin" "M45 Table 7" 1 4 FALSE +"CLSI 2015" "MIC" "Bacillus" "Ciprofloxacin" "M45 Table 3" 1 4 FALSE +"CLSI 2015" "MIC" "Bacillus anthracis" "Ciprofloxacin" "M45 Table 16" 0.25 FALSE +"CLSI 2015" "MIC" "Campylobacter" "Ciprofloxacin" "M45 Table 3" 1 4 FALSE +"CLSI 2015" "MIC" "Cardiobacterium" "Ciprofloxacin" "M45 Table 7" 1 4 FALSE +"CLSI 2015" "MIC" "Eikenella" "Ciprofloxacin" "M45 Table 7" 1 4 FALSE +"CLSI 2015" "DISK" "Enterococcus" "Ciprofloxacin" "Table 2D" "5ug" 21 15 FALSE +"CLSI 2015" "MIC" "Enterococcus" "Ciprofloxacin" "Table 2D" 1 4 FALSE +"CLSI 2015" "MIC" "Erysipelothrix rhusiopathiae" "Ciprofloxacin" "M45 Table 6" 1 FALSE +"CLSI 2015" "MIC" "Francisella tularensis" "Ciprofloxacin" "M45 Table 16" 0.5 FALSE +"CLSI 2015" "MIC" "Granulicatella" "Ciprofloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Ciprofloxacin" "Table 2E" "5ug" 21 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Ciprofloxacin" "Table 2E" 1 FALSE +"CLSI 2015" "MIC" "Kingella" "Ciprofloxacin" "M45 Table 7" 1 4 FALSE +"CLSI 2015" "MIC" "Moraxella catarrhalis" "Ciprofloxacin" "M45 Table 12" 1 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" "Ciprofloxacin" "Table 2F" "5ug" 41 27 FALSE +"CLSI 2015" "MIC" "Neisseria gonorrhoeae" "Ciprofloxacin" "Table 2F" 0.064 1 FALSE +"CLSI 2015" "DISK" "Neisseria meningitidis" "Ciprofloxacin" "Table 2I" "5ug" 35 32 FALSE +"CLSI 2015" "MIC" "Neisseria meningitidis" "Ciprofloxacin" "Table 2I" 0.032 0.12 FALSE +"CLSI 2015" "DISK" "Plesiomonas" "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE +"CLSI 2015" "MIC" "Plesiomonas" "Ciprofloxacin" "M45 Table 2" 1 4 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" "Ciprofloxacin" "Table 2B-1" "5ug" 21 15 FALSE +"CLSI 2015" "MIC" "Pseudomonas aeruginosa" "Ciprofloxacin" "Table 2B-1" 1 4 FALSE +"CLSI 2015" "DISK" "Extraintestinal" "Salmonella" "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE +"CLSI 2015" "DISK" "Salmonella" "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE +"CLSI 2015" "MIC" "Extraintestinal" "Salmonella" "Ciprofloxacin" "Table 2A" 0.064 1 FALSE +"CLSI 2015" "MIC" "Salmonella" "Ciprofloxacin" "Table 2A" 0.064 1 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Ciprofloxacin" "Table 2C" "5ug" 21 15 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Ciprofloxacin" "Table 2C" 1 4 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Ciprofloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Ciprofloxacin" "Table 2G" "5ug" FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Ciprofloxacin" "Table 2G" FALSE +"CLSI 2015" "MIC" "Yersinia pestis" "Ciprofloxacin" "M45 Table 16" 0.25 FALSE +"CLSI 2015" "MIC" "Anaerosalibacter" "Clindamycin" "Table 2J" 2 8 FALSE +"CLSI 2015" "MIC" "Bacillus" "Clindamycin" "M45 Table 3" 0.5 4 FALSE +"CLSI 2015" "MIC" "Bacillus anthracis" "Clindamycin" "M45 Table 16" FALSE +"CLSI 2015" "MIC" "Erysipelothrix rhusiopathiae" "Clindamycin" "M45 Table 6" 0.25 1 FALSE +"CLSI 2015" "MIC" "Granulicatella" "Clindamycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2015" "MIC" "Lactobacillus" "Clindamycin" "M45 Table 9" 0.5 2 FALSE +"CLSI 2015" "MIC" "Moraxella catarrhalis" "Clindamycin" "M45 Table 12" 0.5 4 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Clindamycin" "Table 2C" "2ug" 21 14 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Clindamycin" "Table 2C" 0.5 4 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Clindamycin" "Table 2H-1" "2ug" 19 15 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Clindamycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Clindamycin" "Table 2H-1" 0.25 1 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Clindamycin" "Table 2G" "2ug" 19 15 FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Clindamycin" "Table 2G" 0.25 1 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" "Clindamycin" "Table 2H-2" "2ug" 19 15 FALSE +"CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Clindamycin" "Table 2H-2" 0.25 1 FALSE +"CLSI 2015" "MIC" "Aggregatibacter" "Clarithromycin" "M45 Table 7" 8 32 FALSE +"CLSI 2015" "MIC" "Cardiobacterium" "Clarithromycin" "M45 Table 7" 8 32 FALSE +"CLSI 2015" "MIC" "Eikenella" "Clarithromycin" "M45 Table 7" 8 32 FALSE +"CLSI 2015" "MIC" "Helicobacter pylori" "Clarithromycin" "M45 Table 8" 0.25 1 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Clarithromycin" "Table 2E" "15ug" 13 10 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Clarithromycin" "Table 2E" 8 32 FALSE +"CLSI 2015" "MIC" "Kingella" "Clarithromycin" "M45 Table 7" 8 32 FALSE +"CLSI 2015" "DISK" "Moraxella catarrhalis" "Clarithromycin" "M45 Table 12" "15ug" 24 FALSE +"CLSI 2015" "MIC" "Moraxella catarrhalis" "Clarithromycin" "M45 Table 12" 1 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Clarithromycin" "Table 2C" "15ug" 18 13 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Clarithromycin" "Table 2C" 2 8 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Clarithromycin" "Table 2H-1" "15ug" 21 16 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Clarithromycin" "Table 2H-1" 0.25 1 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Clarithromycin" "Table 2G" "15ug" 21 16 FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Clarithromycin" "Table 2G" 0.25 1 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" "Clarithromycin" "Table 2H-2" "15ug" 21 16 FALSE +"CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Clarithromycin" "Table 2H-2" 0.25 1 FALSE +"CLSI 2015" "MIC" "Anaerosalibacter" "Cefmetazole" "Table 2J" 16 64 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" "Cefmetazole" "Table 2F" "30ug" 33 27 FALSE +"CLSI 2015" "MIC" "Neisseria gonorrhoeae" "Cefmetazole" "Table 2F" 2 8 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Cefmetazole" "Table 2C" "30ug" 16 12 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Cefmetazole" "Table 2C" 16 64 FALSE +"CLSI 2015" "DISK" "Acinetobacter" "Colistin" "Table 2B-2" "10ug" FALSE +"CLSI 2015" "MIC" "Acinetobacter" "Colistin" "Table 2B-2" 2 4 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" "Colistin" "Table 2B-1" "10ug" 11 10 FALSE +"CLSI 2015" "MIC" "Pseudomonas aeruginosa" "Colistin" "Table 2B-1" 2 8 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Cefpodoxime" "Table 2E" "10ug" 21 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Cefpodoxime" "Table 2E" 2 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" "Cefpodoxime" "Table 2F" "10ug" 29 FALSE +"CLSI 2015" "MIC" "Neisseria gonorrhoeae" "Cefpodoxime" "Table 2F" 0.5 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Cefpodoxime" "Table 2C" "10ug" 21 17 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Cefpodoxime" "Table 2C" 2 8 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Cefpodoxime" "Table 2G" "10ug" FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Cefpodoxime" "Table 2G" 0.5 2 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Cefprozil" "Table 2E" "30ug" 18 14 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Cefprozil" "Table 2E" 8 32 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Cefprozil" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Cefprozil" "Table 2C" 8 32 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Cefprozil" "Table 2G" "30ug" FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Cefprozil" "Table 2G" 2 8 FALSE +"CLSI 2015" "DISK" "Haemophilus influenzae" "Ceftaroline" "Table 2E" "30ug" 30 FALSE +"CLSI 2015" "MIC" "Haemophilus influenzae" "Ceftaroline" "Table 2E" 0.5 FALSE +"CLSI 2015" "DISK" "Staphylococcus aureus" "Ceftaroline" "Table 2C" "30ug" 24 20 FALSE +"CLSI 2015" "MIC" "Staphylococcus aureus" "Ceftaroline" "Table 2C" 1 4 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Ceftaroline" "Table 2H-1" "30ug" 26 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Ceftaroline" "Table 2H-1" 0.5 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Ceftaroline" "Table 2G" "30ug" FALSE +"CLSI 2015" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Ceftaroline" "Table 2G" 0.5 FALSE +"CLSI 2015" "DISK" "Acinetobacter" "Ceftriaxone" "Table 2B-2" "30ug" 21 13 FALSE +"CLSI 2015" "MIC" "Acinetobacter" "Ceftriaxone" "Table 2B-2" 8 64 FALSE +"CLSI 2015" "DISK" "Aeromonas" "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE +"CLSI 2015" "MIC" "Aeromonas" "Ceftriaxone" "M45 Table 2" 1 4 FALSE +"CLSI 2015" "MIC" "Aggregatibacter" "Ceftriaxone" "M45 Table 7" 2 FALSE +"CLSI 2015" "MIC" "Anaerosalibacter" "Ceftriaxone" "Table 2J" 16 64 FALSE +"CLSI 2015" "MIC" "Bacillus" "Ceftriaxone" "M45 Table 3" 8 64 FALSE +"CLSI 2015" "MIC" "Bacillus anthracis" "Ceftriaxone" "M45 Table 16" FALSE +"CLSI 2015" "MIC" "Cardiobacterium" "Ceftriaxone" "M45 Table 7" 2 FALSE +"CLSI 2015" "MIC" "Eikenella" "Ceftriaxone" "M45 Table 7" 2 FALSE +"CLSI 2015" "MIC" "Erysipelothrix rhusiopathiae" "Ceftriaxone" "M45 Table 6" 1 FALSE +"CLSI 2015" "MIC" "Granulicatella" "Ceftriaxone" "M45 Table 1" 1 4 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Ceftriaxone" "Table 2E" "30ug" 26 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Ceftriaxone" "Table 2E" 2 FALSE +"CLSI 2015" "MIC" "Kingella" "Ceftriaxone" "M45 Table 7" 2 FALSE +"CLSI 2015" "MIC" "Moraxella catarrhalis" "Ceftriaxone" "M45 Table 12" 2 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" "Ceftriaxone" "Table 2F" "30ug" 35 FALSE +"CLSI 2015" "MIC" "Neisseria gonorrhoeae" "Ceftriaxone" "Table 2F" 0.25 FALSE +"CLSI 2015" "DISK" "Neisseria meningitidis" "Ceftriaxone" "Table 2I" "30ug" 34 FALSE +"CLSI 2015" "MIC" "Neisseria meningitidis" "Ceftriaxone" "Table 2I" 0.125 FALSE +"CLSI 2015" "DISK" "Plesiomonas" "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE +"CLSI 2015" "MIC" "Plesiomonas" "Ceftriaxone" "M45 Table 2" 1 4 FALSE +"CLSI 2015" "DISK" "Pasteurella" "Ceftriaxone" "M45 Table 13" "30ug" 34 FALSE +"CLSI 2015" "MIC" "Pasteurella" "Ceftriaxone" "M45 Table 13" 0.125 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Ceftriaxone" "Table 2C" "30ug" 21 13 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Ceftriaxone" "Table 2C" 8 64 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Ceftriaxone" "Table 2H-1" "30ug" 24 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Ceftriaxone" "M45 Table 1" 1 4 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Ceftriaxone" "Table 2H-1" 0.5 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Ceftriaxone" "Table 2G" "30ug" FALSE +"CLSI 2015" "MIC" "Meningitis" "Streptococcus pneumoniae" "Ceftriaxone" "Table 2G" 0.5 2 FALSE +"CLSI 2015" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Ceftriaxone" "Table 2G" 1 4 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" "Table 2H-2" "30ug" 27 24 FALSE +"CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" "Table 2H-2" 1 4 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Ceftibuten" "Table 2E" "30ug" 28 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Ceftibuten" "Table 2E" 2 FALSE +"CLSI 2015" "MIC" "Anaerosalibacter" "Cefotetan" "Table 2J" 16 64 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" "Cefotetan" "Table 2F" "30ug" 26 19 FALSE +"CLSI 2015" "MIC" "Neisseria gonorrhoeae" "Cefotetan" "Table 2F" 2 8 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Cefotetan" "Table 2C" "30ug" 16 12 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Cefotetan" "Table 2C" 16 64 FALSE +"CLSI 2015" "DISK" "Acinetobacter" "Cefotaxime" "Table 2B-2" "30ug" 23 14 FALSE +"CLSI 2015" "MIC" "Acinetobacter" "Cefotaxime" "Table 2B-2" 8 64 FALSE +"CLSI 2015" "DISK" "Aeromonas" "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE +"CLSI 2015" "MIC" "Aeromonas" "Cefotaxime" "M45 Table 2" 1 4 FALSE +"CLSI 2015" "MIC" "Aggregatibacter" "Cefotaxime" "M45 Table 7" 2 FALSE +"CLSI 2015" "MIC" "Anaerosalibacter" "Cefotaxime" "Table 2J" 16 64 FALSE +"CLSI 2015" "MIC" "Bacillus" "Cefotaxime" "M45 Table 3" 8 64 FALSE +"CLSI 2015" "MIC" "Bacillus anthracis" "Cefotaxime" "M45 Table 16" FALSE +"CLSI 2015" "MIC" "Cardiobacterium" "Cefotaxime" "M45 Table 7" 2 FALSE +"CLSI 2015" "MIC" "Eikenella" "Cefotaxime" "M45 Table 7" 2 FALSE +"CLSI 2015" "MIC" "Erysipelothrix rhusiopathiae" "Cefotaxime" "M45 Table 6" 1 FALSE +"CLSI 2015" "MIC" "Granulicatella" "Cefotaxime" "M45 Table 1" 1 4 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Cefotaxime" "Table 2E" "30ug" 26 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Cefotaxime" "Table 2E" 2 FALSE +"CLSI 2015" "MIC" "Kingella" "Cefotaxime" "M45 Table 7" 2 FALSE +"CLSI 2015" "MIC" "Moraxella catarrhalis" "Cefotaxime" "M45 Table 12" 2 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" "Cefotaxime" "Table 2F" "30ug" 31 FALSE +"CLSI 2015" "MIC" "Neisseria gonorrhoeae" "Cefotaxime" "Table 2F" 0.5 FALSE +"CLSI 2015" "DISK" "Neisseria meningitidis" "Cefotaxime" "Table 2I" "30ug" 34 FALSE +"CLSI 2015" "MIC" "Neisseria meningitidis" "Cefotaxime" "Table 2I" 0.125 FALSE +"CLSI 2015" "DISK" "Plesiomonas" "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE +"CLSI 2015" "MIC" "Plesiomonas" "Cefotaxime" "M45 Table 2" 1 4 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Cefotaxime" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Cefotaxime" "Table 2C" 8 64 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Cefotaxime" "Table 2H-1" "30ug" 24 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Cefotaxime" "M45 Table 1" 1 4 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Cefotaxime" "Table 2H-1" 0.5 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Cefotaxime" "Table 2G" "30ug" FALSE +"CLSI 2015" "MIC" "Meningitis" "Streptococcus pneumoniae" "Cefotaxime" "Table 2G" 0.5 2 FALSE +"CLSI 2015" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Cefotaxime" "Table 2G" 1 4 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" "Cefotaxime" "Table 2H-2" "30ug" 28 25 FALSE +"CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Cefotaxime" "Table 2H-2" 1 4 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Cefuroxime axetil" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Cefuroxime axetil" "Table 2E" 4 16 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Cefuroxime axetil" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Cefuroxime axetil" "Table 2C" 4 32 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Cefuroxime axetil" "Table 2G" "30ug" FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Cefuroxime axetil" "Table 2G" 1 4 FALSE +"CLSI 2015" "DISK" "Aeromonas" "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2015" "MIC" "Aeromonas" "Cefuroxime" "M45 Table 2" 8 32 FALSE +"CLSI 2015" "DISK" "Oral" "Haemophilus" "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2015" "MIC" "Oral" "Haemophilus" "Cefuroxime" "Table 2E" 4 16 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Cefuroxime" "Table 2E" 4 16 FALSE +"CLSI 2015" "MIC" "Moraxella catarrhalis" "Cefuroxime" "M45 Table 12" 4 16 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" "Cefuroxime" "Table 2F" "30ug" 31 25 FALSE +"CLSI 2015" "MIC" "Neisseria gonorrhoeae" "Cefuroxime" "Table 2F" 1 4 FALSE +"CLSI 2015" "DISK" "Plesiomonas" "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2015" "MIC" "Plesiomonas" "Cefuroxime" "M45 Table 2" 8 32 FALSE +"CLSI 2015" "DISK" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2015" "DISK" "Parenteral" "Staphylococcus" "Cefuroxime" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2015" "DISK" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2015" "MIC" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" 4 32 FALSE +"CLSI 2015" "MIC" "Intravenous" "Staphylococcus" "Cefuroxime" "Table 2C" 8 32 FALSE +"CLSI 2015" "MIC" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" 4 32 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Cefuroxime" "Table 2H-1" "30ug" FALSE +"CLSI 2015" "MIC" "Streptococcus" "Cefuroxime" "Table 2H-1" FALSE +"CLSI 2015" "DISK" "Oral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" "30ug" FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" "30ug" FALSE +"CLSI 2015" "MIC" "Oral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" 1 4 FALSE +"CLSI 2015" "MIC" "Parenteral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" 0.5 2 FALSE +"CLSI 2015" "MIC" "Oral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" 1 4 FALSE +"CLSI 2015" "DISK" "Urine" "Enterobacteriaceae" "Cefazolin" "Table 2A" 15 14 FALSE +"CLSI 2015" "MIC" "Urine" "Enterobacteriaceae" "Cefazolin" "Table 2A" 16 32 FALSE +"CLSI 2015" "MIC" "Aeromonas" "Cefazolin" "M45 Table 2" 1 4 FALSE +"CLSI 2015" "MIC" "Bacillus" "Cefazolin" "M45 Table 3" 8 16 FALSE +"CLSI 2015" "MIC" "Bacillus anthracis" "Cefazolin" "M45 Table 16" FALSE +"CLSI 2015" "MIC" "Plesiomonas" "Cefazolin" "M45 Table 2" 1 4 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Cefazolin" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Cefazolin" "Table 2C" 8 32 FALSE +"CLSI 2015" "MIC" "Anaerosalibacter" "Ceftizoxime" "Table 2J" 32 128 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Ceftizoxime" "Table 2E" "30ug" 26 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Ceftizoxime" "Table 2E" 2 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" "Ceftizoxime" "Table 2F" "30ug" 38 FALSE +"CLSI 2015" "MIC" "Neisseria gonorrhoeae" "Ceftizoxime" "Table 2F" 0.5 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Ceftizoxime" "Table 2C" "30ug" 20 14 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Ceftizoxime" "Table 2C" 8 64 FALSE +"CLSI 2015" "DISK" "Enterococcus" "Daptomycin" "Table 2D" "30ug" FALSE +"CLSI 2015" "MIC" "Enterococcus" "Daptomycin" "Table 2D" 4 FALSE +"CLSI 2015" "MIC" "Lactobacillus" "Daptomycin" "M45 Table 9" 4 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Daptomycin" "Table 2C" "30ug" FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Daptomycin" "Table 2C" 1 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Daptomycin" "Table 2H-1" "30ug" 16 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Daptomycin" "Table 2H-1" FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Daptomycin" "Table 2G" "30ug" FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" "Daptomycin" "Table 2H-2" "30ug" FALSE +"CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Daptomycin" "Table 2H-2" 1 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Dirithromycin" "Table 2C" "15ug" 19 15 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Dirithromycin" "Table 2C" 2 8 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Dirithromycin" "Table 2H-1" "15ug" 18 13 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Dirithromycin" "Table 2H-1" 0.5 2 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Dirithromycin" "Table 2G" "15ug" 18 13 FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Dirithromycin" "Table 2G" 0.5 2 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" "Dirithromycin" "Table 2H-2" "15ug" 18 13 FALSE +"CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Dirithromycin" "Table 2H-2" 0.5 2 FALSE +"CLSI 2015" "DISK" "Acinetobacter" "Doripenem" "Table 2B-2" 18 14 FALSE +"CLSI 2015" "MIC" "Acinetobacter" "Doripenem" "Table 2B-2" 2 8 FALSE +"CLSI 2015" "MIC" "Anaerosalibacter" "Doripenem" "Table 2J" 2 8 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Doripenem" "Table 2E" "10ug" 16 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Doripenem" "Table 2E" 1 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" "Doripenem" "Table 2B-1" "10ug" 19 15 FALSE +"CLSI 2015" "MIC" "Pseudomonas aeruginosa" "Doripenem" "Table 2B-1" 2 8 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Doripenem" "Table 2C" "10ug" 30 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Doripenem" "Table 2C" 0.5 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Doripenem" "Table 2H-1" "10ug" FALSE +"CLSI 2015" "MIC" "Streptococcus" "Doripenem" "Table 2H-1" 0.125 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Doripenem" "Table 2G" "10ug" FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Doripenem" "Table 2G" 1 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" "Doripenem" "Table 2H-2" "10ug" FALSE +"CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Doripenem" "Table 2H-2" 1 FALSE +"CLSI 2015" "DISK" "Acinetobacter" "Doxycycline" "Table 2B-2" "30ug" 13 9 FALSE +"CLSI 2015" "MIC" "Acinetobacter" "Doxycycline" "Table 2B-2" 4 16 FALSE +"CLSI 2015" "MIC" "Bacillus anthracis" "Doxycycline" "M45 Table 16" 1 FALSE +"CLSI 2015" "MIC" "Brucella" "Doxycycline" "M45 Table 16" 1 FALSE +"CLSI 2015" "MIC" "Burkholderia mallei" "Doxycycline" "M45 Table 16" 4 16 FALSE +"CLSI 2015" "MIC" "Burkholderia pseudomallei" "Doxycycline" "M45 Table 16" 4 16 FALSE +"CLSI 2015" "MIC" "Campylobacter" "Doxycycline" "M45 Table 3" 2 8 FALSE +"CLSI 2015" "DISK" "Enterococcus" "Doxycycline" "Table 2D" "30ug" 16 12 FALSE +"CLSI 2015" "MIC" "Enterococcus" "Doxycycline" "Table 2D" 4 16 FALSE +"CLSI 2015" "MIC" "Francisella tularensis" "Doxycycline" "M45 Table 16" 4 FALSE +"CLSI 2015" "DISK" "Pasteurella" "Doxycycline" "M45 Table 13" "30ug" 23 FALSE +"CLSI 2015" "MIC" "Pasteurella" "Doxycycline" "M45 Table 13" 0.5 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Doxycycline" "Table 2C" "30ug" 16 12 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Doxycycline" "Table 2C" 4 16 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Doxycycline" "Table 2G" "30ug" 28 24 FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Doxycycline" "Table 2G" 0.25 1 FALSE +"CLSI 2015" "MIC" "Vibrio cholerae" "Doxycycline" "M45 Table 14" "30ug" 4 16 FALSE +"CLSI 2015" "MIC" "Yersinia pestis" "Doxycycline" "M45 Table 16" 4 16 FALSE +"CLSI 2015" "MIC" "Canine, feline" "Alloscardovia" "Enrofloxacin" "Vet Table" 0.5 4 FALSE +"CLSI 2015" "DISK" "Histophilus somni" "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2015" "MIC" "Histophilus somni" "Enrofloxacin" "Vet Table" 0.25 2 FALSE +"CLSI 2015" "DISK" "Providencia heimbachae" "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2015" "DISK" "Pasteurella multocida" "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" "Enoxacin" "Table 2F" "10ug" 36 31 FALSE +"CLSI 2015" "MIC" "Neisseria gonorrhoeae" "Enoxacin" "Table 2F" 0.5 2 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Enoxacin" "Table 2C" "10ug" 18 14 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Enoxacin" "Table 2C" 2 8 FALSE +"CLSI 2015" "MIC" "Bacillus" "Erythromycin" "M45 Table 3" 0.5 8 FALSE +"CLSI 2015" "MIC" "Bacillus anthracis" "Erythromycin" "M45 Table 16" FALSE +"CLSI 2015" "MIC" "Campylobacter" "Erythromycin" "M45 Table 3" 8 32 FALSE +"CLSI 2015" "DISK" "Enterococcus" "Erythromycin" "Table 2D" "15ug" 23 13 FALSE +"CLSI 2015" "MIC" "Enterococcus" "Erythromycin" "Table 2D" 0.5 8 FALSE +"CLSI 2015" "MIC" "Erysipelothrix rhusiopathiae" "Erythromycin" "M45 Table 6" 0.25 1 FALSE +"CLSI 2015" "MIC" "Granulicatella" "Erythromycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2015" "MIC" "Lactobacillus" "Erythromycin" "M45 Table 9" 0.5 8 FALSE +"CLSI 2015" "DISK" "Moraxella catarrhalis" "Erythromycin" "M45 Table 12" "15ug" 21 FALSE +"CLSI 2015" "MIC" "Moraxella catarrhalis" "Erythromycin" "M45 Table 12" 2 FALSE +"CLSI 2015" "DISK" "Pasteurella" "Erythromycin" "M45 Table 13" "15ug" 27 24 FALSE +"CLSI 2015" "MIC" "Pasteurella" "Erythromycin" "M45 Table 13" 0.5 2 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Erythromycin" "Table 2C" "15ug" 23 13 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Erythromycin" "Table 2C" 0.5 8 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Erythromycin" "Table 2H-1" "15ug" 21 15 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Erythromycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Erythromycin" "Table 2H-1" 0.25 1 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Erythromycin" "Table 2G" "15ug" 21 15 FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Erythromycin" "Table 2G" 0.25 1 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" "Erythromycin" "Table 2H-2" "15ug" 21 15 FALSE +"CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Erythromycin" "Table 2H-2" 0.25 1 FALSE +"CLSI 2015" "DISK" "Acinetobacter" "Ertapenem" "Table 2B-2" "10ug" FALSE +"CLSI 2015" "MIC" "Acinetobacter" "Ertapenem" "Table 2B-2" FALSE +"CLSI 2015" "DISK" "Aeromonas" "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE +"CLSI 2015" "MIC" "Aeromonas" "Ertapenem" "M45 Table 2" 2 8 FALSE +"CLSI 2015" "MIC" "Anaerosalibacter" "Ertapenem" "Table 2J" 4 16 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Ertapenem" "Table 2E" "10ug" 19 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Ertapenem" "Table 2E" 0.5 FALSE +"CLSI 2015" "DISK" "Plesiomonas" "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE +"CLSI 2015" "MIC" "Plesiomonas" "Ertapenem" "M45 Table 2" 2 8 FALSE +"CLSI 2015" "DISK" "Pseudomonas" "Ertapenem" "10ug" FALSE +"CLSI 2015" "MIC" "Pseudomonas" "Ertapenem" FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Ertapenem" "Table 2C" "10ug" 19 15 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Ertapenem" "Table 2C" 2 8 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Ertapenem" "Table 2H-1" "10ug" FALSE +"CLSI 2015" "MIC" "Streptococcus" "Ertapenem" "Table 2H-1" 1 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Ertapenem" "Table 2G" "10ug" FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Ertapenem" "Table 2G" 1 4 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" "Ertapenem" "Table 2H-2" "10ug" FALSE +"CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Ertapenem" "Table 2H-2" 1 FALSE +"CLSI 2015" "MIC" "Abiotrophia" "Cefepime" "M45 Table 1" 1 4 FALSE +"CLSI 2015" "DISK" "Acinetobacter" "Cefepime" "Table 2B-2" "30ug" 18 14 FALSE +"CLSI 2015" "MIC" "Acinetobacter" "Cefepime" "Table 2B-2" 8 32 FALSE +"CLSI 2015" "DISK" "Aeromonas" "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2015" "MIC" "Aeromonas" "Cefepime" "M45 Table 2" 8 32 FALSE +"CLSI 2015" "MIC" "Erysipelothrix rhusiopathiae" "Cefepime" "M45 Table 6" 1 FALSE +"CLSI 2015" "MIC" "Granulicatella" "Cefepime" "M45 Table 1" 1 4 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Cefepime" "Table 2E" "30ug" 26 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Cefepime" "Table 2E" 2 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" "Cefepime" "Table 2F" "30ug" 31 FALSE +"CLSI 2015" "MIC" "Neisseria gonorrhoeae" "Cefepime" "Table 2F" 0.5 FALSE +"CLSI 2015" "DISK" "Plesiomonas" "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2015" "MIC" "Plesiomonas" "Cefepime" "M45 Table 2" 8 32 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" "Cefepime" "Table 2B-1" "30ug" 18 14 FALSE +"CLSI 2015" "MIC" "Pseudomonas aeruginosa" "Cefepime" "Table 2B-1" 8 32 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Cefepime" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Cefepime" "Table 2C" 8 32 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Cefepime" "Table 2H-1" "30ug" 24 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Cefepime" "M45 Table 1" 1 4 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Cefepime" "Table 2H-1" 0.5 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Cefepime" "Table 2G" "30ug" FALSE +"CLSI 2015" "MIC" "Meningitis" "Streptococcus pneumoniae" "Cefepime" "Table 2G" 0.5 2 FALSE +"CLSI 2015" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Cefepime" "Table 2G" 1 4 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" "Cefepime" "Table 2H-2" "30ug" 24 21 FALSE +"CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Cefepime" "Table 2H-2" 1 4 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Fleroxacin" "Table 2E" "5ug" 19 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Fleroxacin" "Table 2E" 2 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" "Fleroxacin" "Table 2F" "5ug" 35 28 FALSE +"CLSI 2015" "MIC" "Neisseria gonorrhoeae" "Fleroxacin" "Table 2F" 0.25 1 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Fleroxacin" "Table 2C" "5ug" 19 15 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Fleroxacin" "Table 2C" 2 8 FALSE +"CLSI 2015" "DISK" "Enterococcus" "Fosfomycin" "Table 2D" "200ug" 16 12 FALSE +"CLSI 2015" "MIC" "Enterococcus" "Fosfomycin" "Table 2D" 64 256 FALSE +"CLSI 2015" "DISK" "Aeromonas" "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2015" "MIC" "Aeromonas" "Cefoxitin" "M45 Table 2" 8 32 FALSE +"CLSI 2015" "MIC" "Anaerosalibacter" "Cefoxitin" "Table 2J" 16 64 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" "Cefoxitin" "Table 2F" "30ug" 28 23 FALSE +"CLSI 2015" "MIC" "Neisseria gonorrhoeae" "Cefoxitin" "Table 2F" 2 8 FALSE +"CLSI 2015" "DISK" "Plesiomonas" "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2015" "MIC" "Plesiomonas" "Cefoxitin" "M45 Table 2" 8 32 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Cefoxitin" "Table 2C" "30ug" 25 24 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Cefoxitin" "Table 2C" 4 8 FALSE +"CLSI 2015" "DISK" "Staphylococcus aureus" "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE +"CLSI 2015" "MIC" "Staphylococcus aureus" "Cefoxitin" "Table 2C" 4 8 FALSE +"CLSI 2015" "DISK" "Staphylococcus lugdunensis" "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE +"CLSI 2015" "MIC" "Staphylococcus lugdunensis" "Cefoxitin" "Table 2C" 4 8 FALSE +"CLSI 2015" "MIC" "Abiotrophia" "Gatifloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2015" "DISK" "Acinetobacter" "Gatifloxacin" "Table 2B-2" "5ug" 18 14 FALSE +"CLSI 2015" "MIC" "Acinetobacter" "Gatifloxacin" "Table 2B-2" 2 8 FALSE +"CLSI 2015" "DISK" "Enterococcus" "Gatifloxacin" "Table 2D" "5ug" 18 14 FALSE +"CLSI 2015" "MIC" "Enterococcus" "Gatifloxacin" "Table 2D" 2 8 FALSE +"CLSI 2015" "MIC" "Granulicatella" "Gatifloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Gatifloxacin" "Table 2E" "5ug" 18 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Gatifloxacin" "Table 2E" 1 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" "Gatifloxacin" "Table 2F" "5ug" 38 33 FALSE +"CLSI 2015" "MIC" "Neisseria gonorrhoeae" "Gatifloxacin" "Table 2F" 0.125 0.5 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" "Gatifloxacin" "Table 2B-1" "5ug" 18 14 FALSE +"CLSI 2015" "MIC" "Pseudomonas aeruginosa" "Gatifloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Gatifloxacin" "Table 2C" "10ug" 23 19 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Gatifloxacin" "Table 2C" 0.5 2 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Gatifloxacin" "Table 2H-1" "5ug" 21 17 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Gatifloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Gatifloxacin" "Table 2H-1" 1 4 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Gatifloxacin" "Table 2G" "5ug" 21 17 FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Gatifloxacin" "Table 2G" 1 4 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" "Gatifloxacin" "Table 2H-2" "5ug" 21 17 FALSE +"CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Gatifloxacin" "Table 2H-2" 1 4 FALSE +"CLSI 2015" "DISK" "Enterococcus" "Gentamicin-high" "Table 2D" "120ug" 10 6 FALSE +"CLSI 2015" "MIC" "Enterococcus" "Gentamicin-high" "Table 2D" 512 512 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Gemifloxacin" "Table 2E" "5ug" 18 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Gemifloxacin" "Table 2E" 0.125 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Gemifloxacin" "Table 2H-1" "5ug" FALSE +"CLSI 2015" "MIC" "Streptococcus" "Gemifloxacin" "Table 2H-1" FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Gemifloxacin" "Table 2G" "5ug" 23 19 FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Gemifloxacin" "Table 2G" 0.125 0.5 FALSE +"CLSI 2015" "DISK" "Acinetobacter" "Gentamicin" "Table 2B-2" "10ug" 15 12 FALSE +"CLSI 2015" "MIC" "Acinetobacter" "Gentamicin" "Table 2B-2" 4 16 FALSE +"CLSI 2015" "DISK" "Aeromonas" "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE +"CLSI 2015" "MIC" "Aeromonas" "Gentamicin" "M45 Table 2" 4 16 FALSE +"CLSI 2015" "MIC" "Bacillus" "Gentamicin" "M45 Table 3" 4 16 FALSE +"CLSI 2015" "MIC" "Bacillus anthracis" "Gentamicin" "M45 Table 16" FALSE +"CLSI 2015" "MIC" "Brucella" "Gentamicin" "M45 Table 16" 4 FALSE +"CLSI 2015" "MIC" "Enterococcus" "Gentamicin" "Table 2D" 512 512 FALSE +"CLSI 2015" "MIC" "Francisella tularensis" "Gentamicin" "M45 Table 16" 4 FALSE +"CLSI 2015" "MIC" "Leuconostoc" "Gentamicin" "M45 Table 10" 4 16 FALSE +"CLSI 2015" "MIC" "Lactobacillus" "Gentamicin" "M45 Table 9" 4 16 FALSE +"CLSI 2015" "MIC" "Pediococcus" "Gentamicin" "M45 Table 14" 4 16 FALSE +"CLSI 2015" "DISK" "Plesiomonas" "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE +"CLSI 2015" "MIC" "Plesiomonas" "Gentamicin" "M45 Table 2" 4 16 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" "Gentamicin" "Table 2B-1" "10ug" 15 12 FALSE +"CLSI 2015" "MIC" "Pseudomonas aeruginosa" "Gentamicin" "Table 2B-1" 4 16 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Gentamicin" "Table 2C" "10ug" 15 12 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Gentamicin" "Table 2C" 4 16 FALSE +"CLSI 2015" "MIC" "Yersinia pestis" "Gentamicin" "M45 Table 16" 4 16 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Grepafloxacin" "Table 2E" "5ug" 24 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Grepafloxacin" "Table 2E" 0.5 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" "Grepafloxacin" "Table 2F" "5ug" 37 27 FALSE +"CLSI 2015" "MIC" "Neisseria gonorrhoeae" "Grepafloxacin" "Table 2F" 0.064 1 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Grepafloxacin" "Table 2C" "5ug" 18 14 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Grepafloxacin" "Table 2C" 1 4 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Grepafloxacin" "Table 2H-1" "5ug" 19 15 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Grepafloxacin" "Table 2H-1" 0.5 2 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Grepafloxacin" "Table 2G" "5ug" 19 15 FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Grepafloxacin" "Table 2G" 0.5 2 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" "Grepafloxacin" "Table 2H-2" "5ug" 19 15 FALSE +"CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Grepafloxacin" "Table 2H-2" 0.5 2 FALSE +"CLSI 2015" "MIC" "Abiotrophia" "Imipenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2015" "DISK" "Acinetobacter" "Imipenem" "Table 2B-2" "10ug" 22 18 FALSE +"CLSI 2015" "MIC" "Acinetobacter" "Imipenem" "Table 2B-2" 2 8 FALSE +"CLSI 2015" "DISK" "Aeromonas" "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2015" "MIC" "Aeromonas" "Imipenem" "M45 Table 2" 4 16 FALSE +"CLSI 2015" "MIC" "Aggregatibacter" "Imipenem" "M45 Table 7" 4 16 FALSE +"CLSI 2015" "MIC" "Anaerosalibacter" "Imipenem" "Table 2J" 4 16 FALSE +"CLSI 2015" "MIC" "Bacillus" "Imipenem" "M45 Table 3" 4 16 FALSE +"CLSI 2015" "MIC" "Bacillus anthracis" "Imipenem" "M45 Table 16" FALSE +"CLSI 2015" "MIC" "Burkholderia mallei" "Imipenem" "M45 Table 16" 4 16 FALSE +"CLSI 2015" "MIC" "Burkholderia pseudomallei" "Imipenem" "M45 Table 16" 4 16 FALSE +"CLSI 2015" "MIC" "Cardiobacterium" "Imipenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2015" "MIC" "Eikenella" "Imipenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2015" "MIC" "Erysipelothrix rhusiopathiae" "Imipenem" "M45 Table 6" 0.5 FALSE +"CLSI 2015" "MIC" "Granulicatella" "Imipenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Imipenem" "Table 2E" "10ug" 16 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Imipenem" "Table 2E" 4 FALSE +"CLSI 2015" "MIC" "Kingella" "Imipenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2015" "MIC" "Lactobacillus" "Imipenem" "M45 Table 9" 0.5 2 FALSE +"CLSI 2015" "MIC" "Pediococcus" "Imipenem" "M45 Table 14" 0.5 FALSE +"CLSI 2015" "DISK" "Plesiomonas" "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2015" "MIC" "Plesiomonas" "Imipenem" "M45 Table 2" 4 16 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" "Imipenem" "Table 2B-1" "10ug" 19 15 FALSE +"CLSI 2015" "MIC" "Pseudomonas aeruginosa" "Imipenem" "Table 2B-1" 2 8 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Imipenem" "Table 2C" "10ug" 16 13 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Imipenem" "Table 2C" 4 16 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Imipenem" "Table 2H-1" "10ug" FALSE +"CLSI 2015" "MIC" "Streptococcus" "Imipenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Imipenem" "Table 2H-1" FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Imipenem" "Table 2G" "10ug" FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Imipenem" "Table 2G" 0.125 1 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Kanamycin" "Table 2C" "30ug" 18 13 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Kanamycin" "Table 2C" 16 64 FALSE +"CLSI 2015" "DISK" "Enterococcus" "Linezolid" "Table 2D" "30ug" 23 20 FALSE +"CLSI 2015" "MIC" "Enterococcus" "Linezolid" "Table 2D" 2 8 FALSE +"CLSI 2015" "MIC" "Lactobacillus" "Linezolid" "M45 Table 9" 4 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Linezolid" "Table 2C" "30ug" 21 20 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Linezolid" "Table 2C" 4 8 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Linezolid" "Table 2H-1" "30ug" 21 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Linezolid" "Table 2H-1" 2 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Linezolid" "Table 2G" "30ug" 21 FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Linezolid" "Table 2G" 2 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" "Linezolid" "Table 2H-2" "30ug" 21 FALSE +"CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Linezolid" "Table 2H-2" 2 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Lomefloxacin" "Table 2E" "10ug" 22 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Lomefloxacin" "Table 2E" 2 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" "Lomefloxacin" "Table 2F" "10ug" 38 26 FALSE +"CLSI 2015" "MIC" "Neisseria gonorrhoeae" "Lomefloxacin" "Table 2F" 0.125 2 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" "Lomefloxacin" "Table 2B-1" "10ug" 22 18 FALSE +"CLSI 2015" "MIC" "Pseudomonas aeruginosa" "Lomefloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Lomefloxacin" "Table 2C" "10ug" 22 18 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Lomefloxacin" "Table 2C" 2 8 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Loracarbef" "Table 2E" "30ug" 19 15 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Loracarbef" "Table 2E" 8 32 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Loracarbef" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Loracarbef" "Table 2C" 8 32 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Loracarbef" "Table 2G" "30ug" FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Loracarbef" "Table 2G" 2 8 FALSE +"CLSI 2015" "MIC" "Anaerosalibacter" "Latamoxef" "Table 2J" 2 8 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Latamoxef" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Latamoxef" "Table 2C" 8 64 FALSE +"CLSI 2015" "MIC" "Abiotrophia" "Levofloxacin" "M45 Table 1" 2 8 FALSE +"CLSI 2015" "DISK" "Acinetobacter" "Levofloxacin" "Table 2B-2" "5ug" 17 13 FALSE +"CLSI 2015" "MIC" "Acinetobacter" "Levofloxacin" "Table 2B-2" 2 8 FALSE +"CLSI 2015" "DISK" "Aeromonas" "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE +"CLSI 2015" "MIC" "Aeromonas" "Levofloxacin" "M45 Table 2" 2 8 FALSE +"CLSI 2015" "MIC" "Aggregatibacter" "Levofloxacin" "M45 Table 7" 2 8 FALSE +"CLSI 2015" "MIC" "Bacillus" "Levofloxacin" "M45 Table 3" 2 8 FALSE +"CLSI 2015" "MIC" "Bacillus anthracis" "Levofloxacin" "M45 Table 16" 0.25 FALSE +"CLSI 2015" "DISK" "Burkholderia cepacia" "Levofloxacin" "Table 2B-3" "5ug" FALSE +"CLSI 2015" "MIC" "Burkholderia cepacia" "Levofloxacin" "Table 2B-3" 2 8 FALSE +"CLSI 2015" "MIC" "Cardiobacterium" "Levofloxacin" "M45 Table 7" 2 8 FALSE +"CLSI 2015" "MIC" "Eikenella" "Levofloxacin" "M45 Table 7" 2 8 FALSE +"CLSI 2015" "DISK" "Enterococcus" "Levofloxacin" "Table 2D" "5ug" 17 13 FALSE +"CLSI 2015" "MIC" "Enterococcus" "Levofloxacin" "Table 2D" 2 8 FALSE +"CLSI 2015" "MIC" "Erysipelothrix rhusiopathiae" "Levofloxacin" "M45 Table 6" 2 FALSE +"CLSI 2015" "MIC" "Francisella tularensis" "Levofloxacin" "M45 Table 16" 0.5 FALSE +"CLSI 2015" "MIC" "Granulicatella" "Levofloxacin" "M45 Table 1" 2 8 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Levofloxacin" "Table 2E" "5ug" 17 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Levofloxacin" "Table 2E" 2 FALSE +"CLSI 2015" "MIC" "Kingella" "Levofloxacin" "M45 Table 7" 2 8 FALSE +"CLSI 2015" "MIC" "Moraxella catarrhalis" "Levofloxacin" "M45 Table 12" 2 FALSE +"CLSI 2015" "DISK" "Neisseria meningitidis" "Levofloxacin" "Table 2I" "5ug" FALSE +"CLSI 2015" "MIC" "Neisseria meningitidis" "Levofloxacin" "Table 2I" 0.032 0.12 FALSE +"CLSI 2015" "DISK" "Plesiomonas" "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE +"CLSI 2015" "MIC" "Plesiomonas" "Levofloxacin" "M45 Table 2" 2 8 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" "Levofloxacin" "Table 2B-1" "5ug" 17 13 FALSE +"CLSI 2015" "MIC" "Pseudomonas aeruginosa" "Levofloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2015" "DISK" "Pasteurella" "Levofloxacin" "M45 Table 13" "5ug" 28 FALSE +"CLSI 2015" "MIC" "Pasteurella" "Levofloxacin" "M45 Table 13" 0.064 FALSE +"CLSI 2015" "MIC" "Salmonella" "Levofloxacin" "Table 2A" 0.125 2 FALSE +"CLSI 2015" "MIC" "Extraintestinal" "Salmonella" "Levofloxacin" "Table 2A" 0.125 2 FALSE +"CLSI 2015" "DISK" "Stenotrophomonas maltophilia" "Levofloxacin" "Table 2B-4" "75ug" 17 13 FALSE +"CLSI 2015" "MIC" "Stenotrophomonas maltophilia" "Levofloxacin" "Table 2B-4" 2 8 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Levofloxacin" "Table 2C" "10ug" 19 15 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Levofloxacin" "Table 2C" 1 4 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Levofloxacin" "Table 2H-1" "5ug" 17 13 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Levofloxacin" "M45 Table 1" 2 8 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Levofloxacin" "Table 2H-1" 2 8 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Levofloxacin" "Table 2G" "5ug" 17 13 FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Levofloxacin" "Table 2G" 2 8 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" "Levofloxacin" "Table 2H-2" "5ug" 17 13 FALSE +"CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Levofloxacin" "Table 2H-2" 2 8 FALSE +"CLSI 2015" "MIC" "Yersinia pestis" "Levofloxacin" "M45 Table 16" 0.25 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Cefamandole" "Table 2E" "30ug" FALSE +"CLSI 2015" "MIC" "Haemophilus" "Cefamandole" "Table 2E" 4 16 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Cefamandole" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Cefamandole" "Table 2C" 8 32 FALSE +"CLSI 2015" "MIC" "Abiotrophia" "Meropenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2015" "DISK" "Acinetobacter" "Meropenem" "Table 2B-2" "10ug" 18 14 FALSE +"CLSI 2015" "MIC" "Acinetobacter" "Meropenem" "Table 2B-2" 2 8 FALSE +"CLSI 2015" "DISK" "Aeromonas" "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2015" "MIC" "Aeromonas" "Meropenem" "M45 Table 2" 4 16 FALSE +"CLSI 2015" "MIC" "Aggregatibacter" "Meropenem" "M45 Table 7" 4 16 FALSE +"CLSI 2015" "MIC" "Anaerosalibacter" "Meropenem" "Table 2J" 4 16 FALSE +"CLSI 2015" "DISK" "Burkholderia cepacia" "Meropenem" "Table 2B-3" "10ug" 20 15 FALSE +"CLSI 2015" "MIC" "Burkholderia cepacia" "Meropenem" "Table 2B-3" 4 16 FALSE +"CLSI 2015" "MIC" "Cardiobacterium" "Meropenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2015" "MIC" "Eikenella" "Meropenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2015" "MIC" "Erysipelothrix rhusiopathiae" "Meropenem" "M45 Table 6" 0.5 FALSE +"CLSI 2015" "MIC" "Granulicatella" "Meropenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Meropenem" "Table 2E" "10ug" 20 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Meropenem" "Table 2E" 0.5 FALSE +"CLSI 2015" "MIC" "Kingella" "Meropenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2015" "DISK" "Neisseria meningitidis" "Meropenem" "Table 2I" "10ug" 30 FALSE +"CLSI 2015" "MIC" "Neisseria meningitidis" "Meropenem" "Table 2I" 0.25 FALSE +"CLSI 2015" "DISK" "Plesiomonas" "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2015" "MIC" "Plesiomonas" "Meropenem" "M45 Table 2" 4 16 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" "Meropenem" "Table 2B-1" "10ug" 19 15 FALSE +"CLSI 2015" "MIC" "Pseudomonas aeruginosa" "Meropenem" "Table 2B-1" 2 8 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Meropenem" "Table 2C" "10ug" 15 13 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Meropenem" "Table 2C" 4 16 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Meropenem" "Table 2H-1" "10ug" FALSE +"CLSI 2015" "MIC" "Streptococcus" "Meropenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Meropenem" "Table 2H-1" 0.5 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Meropenem" "Table 2G" "10ug" FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Meropenem" "Table 2G" 0.25 1 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" "Meropenem" "Table 2H-2" "10ug" FALSE +"CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Meropenem" "Table 2H-2" 0.5 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Methicillin" "Table 2C" "5ug" 14 9 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Methicillin" "Table 2C" 8 16 FALSE +"CLSI 2015" "DISK" "Acinetobacter" "Mezlocillin" "Table 2B-2" "75ug" 21 17 FALSE +"CLSI 2015" "MIC" "Acinetobacter" "Mezlocillin" "Table 2B-2" 16 128 FALSE +"CLSI 2015" "MIC" "Anaerosalibacter" "Mezlocillin" "Table 2J" 32 128 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Moxifloxacin" "Table 2E" "5ug" 18 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Moxifloxacin" "Table 2E" 1 FALSE +"CLSI 2015" "DISK" "Pasteurella" "Moxifloxacin" "M45 Table 13" "5ug" 28 FALSE +"CLSI 2015" "MIC" "Pasteurella" "Moxifloxacin" "M45 Table 13" 0.064 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Moxifloxacin" "Table 2C" "5ug" 24 20 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Moxifloxacin" "Table 2C" 0.5 2 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Moxifloxacin" "Table 2H-1" "5ug" FALSE +"CLSI 2015" "MIC" "Streptococcus" "Moxifloxacin" "Table 2H-1" FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Moxifloxacin" "Table 2G" "5ug" 18 14 FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Moxifloxacin" "Table 2G" 1 4 FALSE +"CLSI 2015" "DISK" "Acinetobacter" "Minocycline" "Table 2B-2" "30ug" 16 12 FALSE +"CLSI 2015" "MIC" "Acinetobacter" "Minocycline" "Table 2B-2" 4 16 FALSE +"CLSI 2015" "DISK" "Burkholderia cepacia" "Minocycline" "Table 2B-3" "30ug" 19 14 FALSE +"CLSI 2015" "MIC" "Burkholderia cepacia" "Minocycline" "Table 2B-3" 4 16 FALSE +"CLSI 2015" "DISK" "Enterococcus" "Minocycline" "Table 2D" "30ug" 19 14 FALSE +"CLSI 2015" "MIC" "Enterococcus" "Minocycline" "Table 2D" 4 16 FALSE +"CLSI 2015" "MIC" "Leuconostoc" "Minocycline" "M45 Table 10" 4 16 FALSE +"CLSI 2015" "DISK" "Neisseria meningitidis" "Minocycline" "Table 2I" "30ug" 26 FALSE +"CLSI 2015" "MIC" "Neisseria meningitidis" "Minocycline" "Table 2I" 2 FALSE +"CLSI 2015" "DISK" "Stenotrophomonas maltophilia" "Minocycline" "Table 2B-4" "30ug" 19 14 FALSE +"CLSI 2015" "MIC" "Stenotrophomonas maltophilia" "Minocycline" "Table 2B-4" 4 16 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Minocycline" "Table 2C" "30ug" 19 14 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Minocycline" "Table 2C" 4 16 FALSE +"CLSI 2015" "MIC" "Anaerosalibacter" "Metronidazole" "Table 2J" 8 32 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Nafcillin" "Table 2C" "1ug" 13 10 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Nafcillin" "Table 2C" 2 4 FALSE +"CLSI 2015" "DISK" "Neisseria meningitidis" "Nalidixic acid" "Table 2I" "30ug" 26 25 FALSE +"CLSI 2015" "MIC" "Neisseria meningitidis" "Nalidixic acid" "Table 2I" 4 8 FALSE +"CLSI 2015" "DISK" "Acinetobacter" "Netilmicin" "Table 2B-2" "30ug" FALSE +"CLSI 2015" "MIC" "Acinetobacter" "Netilmicin" "Table 2B-2" 8 32 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" "Netilmicin" "Table 2B-1" "30ug" 15 12 FALSE +"CLSI 2015" "MIC" "Pseudomonas aeruginosa" "Netilmicin" "Table 2B-1" 8 32 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Netilmicin" "Table 2C" "30ug" 15 12 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Netilmicin" "Table 2C" 8 32 FALSE +"CLSI 2015" "DISK" "Enterococcus" "Nitrofurantoin" "Table 2D" "300ug" 17 14 FALSE +"CLSI 2015" "MIC" "Enterococcus" "Nitrofurantoin" "Table 2D" 32 128 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Nitrofurantoin" "Table 2C" "300ug" 17 14 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Nitrofurantoin" "Table 2C" 32 128 FALSE +"CLSI 2015" "DISK" "Enterococcus" "Norfloxacin" "Table 2D" "10ug" 17 12 FALSE +"CLSI 2015" "MIC" "Enterococcus" "Norfloxacin" "Table 2D" 4 16 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" "Norfloxacin" "Table 2B-1" "10ug" 17 12 FALSE +"CLSI 2015" "MIC" "Pseudomonas aeruginosa" "Norfloxacin" "Table 2B-1" 4 16 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Norfloxacin" "Table 2C" "10ug" 17 12 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Norfloxacin" "Table 2C" 4 16 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Norfloxacin" "Table 2G" "5ug" FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Norfloxacin" "Table 2G" FALSE +"CLSI 2015" "DISK" "Haemophilus" "Ofloxacin" "Table 2E" "5ug" 16 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Ofloxacin" "Table 2E" 2 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" "Ofloxacin" "Table 2F" "5ug" 31 24 FALSE +"CLSI 2015" "MIC" "Neisseria gonorrhoeae" "Ofloxacin" "Table 2F" 0.25 2 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" "Ofloxacin" "Table 2B-1" "5ug" 16 12 FALSE +"CLSI 2015" "MIC" "Pseudomonas aeruginosa" "Ofloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2015" "MIC" "Salmonella" "Ofloxacin" "Table 2A" 0.125 2 FALSE +"CLSI 2015" "MIC" "Extraintestinal" "Salmonella" "Ofloxacin" "Table 2A" 0.125 2 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Ofloxacin" "Table 2C" "5ug" 18 14 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Ofloxacin" "Table 2C" 1 4 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Ofloxacin" "Table 2H-1" "5ug" 16 12 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Ofloxacin" "Table 2H-1" 2 8 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Ofloxacin" "Table 2G" "5ug" 16 12 FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Ofloxacin" "Table 2G" 2 8 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" "Ofloxacin" "Table 2H-2" "5ug" 16 12 FALSE +"CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Ofloxacin" "Table 2H-2" 2 8 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Oxacillin" "Table 2C" "1ug" 13 10 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Oxacillin" "Table 2C" 2 4 FALSE +"CLSI 2015" "DISK" "Staphylococcus aureus" "Oxacillin" "Table 2C" "1ug" 13 10 FALSE +"CLSI 2015" "MIC" "Staphylococcus aureus" "Oxacillin" "Table 2C" 2 4 FALSE +"CLSI 2015" "DISK" "Staphylococcus lugdunensis" "Oxacillin" "Table 2C" "1ug" FALSE +"CLSI 2015" "MIC" "Staphylococcus lugdunensis" "Oxacillin" "Table 2C" 2 4 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Oxacillin" "Table 2G" "1ug" 20 FALSE +"CLSI 2015" "MIC" "Abiotrophia" "Penicillin G" "M45 Table 1" 0.125 4 FALSE +"CLSI 2015" "MIC" "Aggregatibacter" "Penicillin G" "M45 Table 7" 1 4 FALSE +"CLSI 2015" "MIC" "Anaerosalibacter" "Penicillin G" "Table 2J" 0.5 2 FALSE +"CLSI 2015" "MIC" "Bacillus" "Penicillin G" "M45 Table 3" 0.125 0.25 FALSE +"CLSI 2015" "MIC" "Bacillus anthracis" "Penicillin G" "M45 Table 16" 0.125 0.25 FALSE +"CLSI 2015" "MIC" "Cardiobacterium" "Penicillin G" "M45 Table 7" 1 4 FALSE +"CLSI 2015" "MIC" "Eikenella" "Penicillin G" "M45 Table 7" 1 4 FALSE +"CLSI 2015" "DISK" "Enterococcus" "Penicillin G" "Table 2D" "10units" 15 14 FALSE +"CLSI 2015" "MIC" "Enterococcus" "Penicillin G" "Table 2D" 8 16 FALSE +"CLSI 2015" "MIC" "Erysipelothrix rhusiopathiae" "Penicillin G" "M45 Table 6" 0.125 FALSE +"CLSI 2015" "MIC" "Granulicatella" "Penicillin G" "M45 Table 1" 0.125 4 FALSE +"CLSI 2015" "MIC" "Kingella" "Penicillin G" "M45 Table 7" 1 4 FALSE +"CLSI 2015" "MIC" "Leuconostoc" "Penicillin G" "M45 Table 10" 8 FALSE +"CLSI 2015" "MIC" "Lactobacillus" "Penicillin G" "M45 Table 9" 8 FALSE +"CLSI 2015" "DISK" "Listeria monocytogenes" "Penicillin G" "M45 Table 11" "10units" FALSE +"CLSI 2015" "MIC" "Listeria monocytogenes" "Penicillin G" "M45 Table 11" 2 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" "Penicillin G" "Table 2F" "10units" 47 26 FALSE +"CLSI 2015" "MIC" "Neisseria gonorrhoeae" "Penicillin G" "Table 2F" 0.064 2 FALSE +"CLSI 2015" "DISK" "Neisseria meningitidis" "Penicillin G" "Table 2I" "10units" FALSE +"CLSI 2015" "MIC" "Neisseria meningitidis" "Penicillin G" "Table 2I" 0.064 0.5 FALSE +"CLSI 2015" "MIC" "Pediococcus" "Penicillin G" "M45 Table 14" 8 FALSE +"CLSI 2015" "DISK" "Pasteurella" "Penicillin G" "M45 Table 13" "10 Units" 25 FALSE +"CLSI 2015" "MIC" "Pasteurella" "Penicillin G" "M45 Table 13" 0.5 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Penicillin G" "Table 2C" "10ug" 29 28 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Penicillin G" "Table 2C" 0.125 0.25 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Penicillin G" "Table 2H-1" "10units" 24 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Penicillin G" "M45 Table 1" 0.125 4 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Penicillin G" "Table 2H-1" 0.125 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" "10units" FALSE +"CLSI 2015" "MIC" "Meningitis" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" 0.064 0.12 FALSE +"CLSI 2015" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" 2 8 FALSE +"CLSI 2015" "MIC" "Oral" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" 0.064 2 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" "Penicillin G" "Table 2H-2" "10units" FALSE +"CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Penicillin G" "Table 2H-2" 0.125 4 FALSE +"CLSI 2015" "DISK" "Acinetobacter" "Piperacillin" "Table 2B-2" "100ug" 21 17 FALSE +"CLSI 2015" "MIC" "Acinetobacter" "Piperacillin" "Table 2B-2" 16 128 FALSE +"CLSI 2015" "MIC" "Anaerosalibacter" "Piperacillin" "Table 2J" 32 128 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" "Piperacillin" "Table 2B-1" "100ug" 21 14 FALSE +"CLSI 2015" "MIC" "Pseudomonas aeruginosa" "Piperacillin" "Table 2B-1" 16 128 FALSE +"CLSI 2015" "DISK" "Acinetobacter" "Polymyxin B" "Table 2B-2" "300ug" FALSE +"CLSI 2015" "MIC" "Acinetobacter" "Polymyxin B" "Table 2B-2" 2 4 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" "Polymyxin B" "Table 2B-1" "300ug" 12 11 FALSE +"CLSI 2015" "MIC" "Pseudomonas aeruginosa" "Polymyxin B" "Table 2B-1" 2 8 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Penicillin V" "Table 2G" "10ug" FALSE +"CLSI 2015" "MIC" "Oral" "Streptococcus pneumoniae" "Penicillin V" "Table 2G" 0.064 2 FALSE +"CLSI 2015" "DISK" "Enterococcus" "Quinupristin/dalfopristin" "Table 2D" "15ug" 19 15 FALSE +"CLSI 2015" "MIC" "Enterococcus" "Quinupristin/dalfopristin" "Table 2D" 1 4 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Quinupristin/dalfopristin" "Table 2C" "15ug" 19 15 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Quinupristin/dalfopristin" "Table 2C" 1 4 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Quinupristin/dalfopristin" "Table 2H-1" "15ug" 19 15 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Quinupristin/dalfopristin" "Table 2H-1" 1 4 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Quinupristin/dalfopristin" "Table 2G" "15ug" 19 15 FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Quinupristin/dalfopristin" "Table 2G" 1 4 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" "Quinupristin/dalfopristin" "Table 2H-2" "15ug" 19 15 FALSE +"CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Quinupristin/dalfopristin" "Table 2H-2" 1 4 FALSE +"CLSI 2015" "MIC" "Aggregatibacter" "Rifampicin" "M45 Table 7" 1 4 FALSE +"CLSI 2015" "MIC" "Bacillus" "Rifampicin" "M45 Table 3" 1 4 FALSE +"CLSI 2015" "MIC" "Bacillus anthracis" "Rifampicin" "M45 Table 16" FALSE +"CLSI 2015" "MIC" "Cardiobacterium" "Rifampicin" "M45 Table 7" 1 4 FALSE +"CLSI 2015" "MIC" "Eikenella" "Rifampicin" "M45 Table 7" 1 4 FALSE +"CLSI 2015" "DISK" "Enterococcus" "Rifampicin" "Table 2D" "5ug" 20 16 FALSE +"CLSI 2015" "MIC" "Enterococcus" "Rifampicin" "Table 2D" 1 4 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Rifampicin" "Table 2E" "5ug" 20 16 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Rifampicin" "Table 2E" 1 4 FALSE +"CLSI 2015" "MIC" "Kingella" "Rifampicin" "M45 Table 7" 1 4 FALSE +"CLSI 2015" "MIC" "Moraxella catarrhalis" "Rifampicin" "M45 Table 12" 1 4 FALSE +"CLSI 2015" "DISK" "Neisseria meningitidis" "Rifampicin" "Table 2I" "5ug" 25 19 FALSE +"CLSI 2015" "MIC" "Neisseria meningitidis" "Rifampicin" "Table 2I" 0.5 2 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Rifampicin" "Table 2C" "5ug" 20 16 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Rifampicin" "Table 2C" 1 4 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Rifampicin" "Table 2H-1" "5ug" FALSE +"CLSI 2015" "MIC" "Streptococcus" "Rifampicin" "Table 2H-1" FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Rifampicin" "Table 2G" "5ug" 19 16 FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Rifampicin" "Table 2G" 1 4 FALSE +"CLSI 2015" "DISK" "Acinetobacter" "Ampicillin/sulbactam" "Table 2B-2" "10ug" 15 11 FALSE +"CLSI 2015" "MIC" "Acinetobacter" "Ampicillin/sulbactam" "Table 2B-2" 8 32 FALSE +"CLSI 2015" "DISK" "Aeromonas" "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE +"CLSI 2015" "MIC" "Aeromonas" "Ampicillin/sulbactam" "M45 Table 2" 8 32 FALSE +"CLSI 2015" "MIC" "Aggregatibacter" "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE +"CLSI 2015" "MIC" "Anaerosalibacter" "Ampicillin/sulbactam" "Table 2J" 8 32 FALSE +"CLSI 2015" "MIC" "Cardiobacterium" "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE +"CLSI 2015" "MIC" "Eikenella" "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Ampicillin/sulbactam" "Table 2E" "10/10ug" 20 19 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Ampicillin/sulbactam" "Table 2E" 2 4 FALSE +"CLSI 2015" "DISK" "Plesiomonas" "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE +"CLSI 2015" "MIC" "Plesiomonas" "Ampicillin/sulbactam" "M45 Table 2" 8 32 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Ampicillin/sulbactam" "Table 2C" "10ug" 15 11 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Ampicillin/sulbactam" "Table 2C" 8 32 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Ampicillin/sulbactam" "Table 2G" "10/10ug" FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Ampicillin/sulbactam" "Table 2G" FALSE +"CLSI 2015" "DISK" "Neisseria meningitidis" "Sulfamethoxazole" "Table 2I" "200-300ug" FALSE +"CLSI 2015" "MIC" "Neisseria meningitidis" "Sulfamethoxazole" "Table 2I" 2 8 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Sulfamethoxazole" "Table 2C" "200ug" 17 12 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Sulfamethoxazole" "Table 2C" 256 512 FALSE +"CLSI 2015" "DISK" "Neisseria meningitidis" "Sulfisoxazole" "Table 2I" "200-300ug" FALSE +"CLSI 2015" "MIC" "Neisseria meningitidis" "Sulfisoxazole" "Table 2I" 2 8 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Sulfisoxazole" "Table 2C" "200ug" 17 12 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Sulfisoxazole" "Table 2C" 256 512 FALSE +"CLSI 2015" "DISK" "Histophilus somni" "Spectinomycin" "Vet Table" "100ug" 14 10 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" "Spectinomycin" "Table 2F" "100ug" 18 14 FALSE +"CLSI 2015" "MIC" "Neisseria gonorrhoeae" "Spectinomycin" "Table 2F" 32 128 FALSE +"CLSI 2015" "DISK" "Providencia heimbachae" "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2015" "DISK" "Pasteurella multocida" "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Sparfloxacin" "Table 2E" "5ug" FALSE +"CLSI 2015" "MIC" "Haemophilus" "Sparfloxacin" "Table 2E" 0.25 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Sparfloxacin" "Table 2C" "5ug" 19 15 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Sparfloxacin" "Table 2C" 0.5 2 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Sparfloxacin" "Table 2H-1" "5ug" FALSE +"CLSI 2015" "MIC" "Streptococcus" "Sparfloxacin" "Table 2H-1" FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Sparfloxacin" "Table 2G" "5ug" 19 15 FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Sparfloxacin" "Table 2G" 0.5 2 FALSE +"CLSI 2015" "DISK" "Neisseria meningitidis" "Sulfonamides" "Table 2I" "200-300ug" FALSE +"CLSI 2015" "MIC" "Neisseria meningitidis" "Sulfonamides" "Table 2I" 2 8 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Sulfonamides" "Table 2C" "200ug" 17 12 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Sulfonamides" "Table 2C" 256 512 FALSE +"CLSI 2015" "DISK" "Enterococcus" "Streptomycin-high" "Table 2D" "300ug" 10 6 FALSE +"CLSI 2015" "MIC" "Enterococcus" "Streptomycin-high" "Table 2D" 1024 1024 FALSE +"CLSI 2015" "MIC" "Brucella" "Streptoduocin" "M45 Table 16" 8 FALSE +"CLSI 2015" "MIC" "Enterococcus" "Streptoduocin" "Table 2D" 1024 1024 FALSE +"CLSI 2015" "MIC" "Francisella tularensis" "Streptoduocin" "M45 Table 16" 8 FALSE +"CLSI 2015" "MIC" "Yersinia pestis" "Streptoduocin" "M45 Table 16" 4 16 FALSE +"CLSI 2015" "DISK" "Acinetobacter" "Trimethoprim/sulfamethoxazole" "Table 2B-2" "1.25/23.75ug" 16 10 FALSE +"CLSI 2015" "MIC" "Acinetobacter" "Trimethoprim/sulfamethoxazole" "Table 2B-2" 2 4 FALSE +"CLSI 2015" "DISK" "Aeromonas" "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25/23.75ug" 16 10 FALSE +"CLSI 2015" "MIC" "Aeromonas" "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE +"CLSI 2015" "MIC" "Aggregatibacter" "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE +"CLSI 2015" "MIC" "Bacillus" "Trimethoprim/sulfamethoxazole" "M45 Table 3" 2 4 FALSE +"CLSI 2015" "MIC" "Bacillus anthracis" "Trimethoprim/sulfamethoxazole" "M45 Table 16" FALSE +"CLSI 2015" "MIC" "Brucella" "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 FALSE +"CLSI 2015" "DISK" "Burkholderia cepacia" "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25/23.75ug" 16 10 FALSE +"CLSI 2015" "MIC" "Burkholderia cepacia" "Trimethoprim/sulfamethoxazole" "Table 2B-3" 2 4 FALSE +"CLSI 2015" "MIC" "Burkholderia pseudomallei" "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 4 FALSE +"CLSI 2015" "MIC" "Cardiobacterium" "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE +"CLSI 2015" "MIC" "Eikenella" "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Trimethoprim/sulfamethoxazole" "Table 2E" "1.25/23.75ug" 15 10 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Trimethoprim/sulfamethoxazole" "Table 2E" 0.5 4 FALSE +"CLSI 2015" "MIC" "Kingella" "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE +"CLSI 2015" "MIC" "Listeria monocytogenes" "Trimethoprim/sulfamethoxazole" "M45 Table 11" 0.5 4 FALSE +"CLSI 2015" "DISK" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" "M45 Table 12" "1.25/23.75ug" 13 10 FALSE +"CLSI 2015" "MIC" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" "M45 Table 12" 0.5 4 FALSE +"CLSI 2015" "DISK" "Neisseria meningitidis" "Trimethoprim/sulfamethoxazole" "Table 2I" "1.25/23.75ug" 30 25 FALSE +"CLSI 2015" "MIC" "Neisseria meningitidis" "Trimethoprim/sulfamethoxazole" "Table 2I" 0.125 0.5 FALSE +"CLSI 2015" "DISK" "Plesiomonas" "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25/23.75ug" 16 10 FALSE +"CLSI 2015" "MIC" "Plesiomonas" "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE +"CLSI 2015" "DISK" "Pasteurella" "Trimethoprim/sulfamethoxazole" "M45 Table 13" "1.25/23.75ug" 24 FALSE +"CLSI 2015" "MIC" "Pasteurella" "Trimethoprim/sulfamethoxazole" "M45 Table 13" 0.5 FALSE +"CLSI 2015" "DISK" "Stenotrophomonas maltophilia" "Trimethoprim/sulfamethoxazole" "Table 2B-4" "30ug" 16 10 FALSE +"CLSI 2015" "MIC" "Stenotrophomonas maltophilia" "Trimethoprim/sulfamethoxazole" "Table 2B-4" 2 4 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Trimethoprim/sulfamethoxazole" "Table 2C" "1.25/23.75ug" 16 10 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Trimethoprim/sulfamethoxazole" "Table 2C" 2 4 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Trimethoprim/sulfamethoxazole" "Table 2H-1" "1.25/23.75ug" FALSE +"CLSI 2015" "MIC" "Streptococcus" "Trimethoprim/sulfamethoxazole" "Table 2H-1" FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" "Table 2G" "1.25/23.75ug" 19 15 FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" "Table 2G" 0.5 4 FALSE +"CLSI 2015" "MIC" "Yersinia pestis" "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 4 FALSE +"CLSI 2015" "DISK" "Acinetobacter" "Ticarcillin/clavulanic acid" "Table 2B-2" "75ug" 20 14 FALSE +"CLSI 2015" "MIC" "Acinetobacter" "Ticarcillin/clavulanic acid" "Table 2B-2" 16 128 FALSE +"CLSI 2015" "MIC" "Anaerosalibacter" "Ticarcillin/clavulanic acid" "Table 2J" 32 128 FALSE +"CLSI 2015" "DISK" "Burkholderia cepacia" "Ticarcillin/clavulanic acid" "Table 2B-3" "75ug" FALSE +"CLSI 2015" "MIC" "Burkholderia cepacia" "Ticarcillin/clavulanic acid" "Table 2B-3" 16 128 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" "Ticarcillin/clavulanic acid" "Table 2B-1" "75ug" 24 15 FALSE +"CLSI 2015" "MIC" "Pseudomonas aeruginosa" "Ticarcillin/clavulanic acid" "Table 2B-1" 16 128 FALSE +"CLSI 2015" "DISK" "Stenotrophomonas maltophilia" "Ticarcillin/clavulanic acid" "Table 2B-4" "30ug" FALSE +"CLSI 2015" "MIC" "Stenotrophomonas maltophilia" "Ticarcillin/clavulanic acid" "Table 2B-4" 16 128 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Ticarcillin/clavulanic acid" "Table 2C" "75/10ug" 23 22 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Ticarcillin/clavulanic acid" "Table 2C" 8 16 FALSE +"CLSI 2015" "DISK" "Acinetobacter" "Tetracycline" "Table 2B-2" "30ug" 15 11 FALSE +"CLSI 2015" "MIC" "Acinetobacter" "Tetracycline" "Table 2B-2" 4 16 FALSE +"CLSI 2015" "DISK" "Aeromonas" "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE +"CLSI 2015" "MIC" "Aeromonas" "Tetracycline" "M45 Table 2" 4 16 FALSE +"CLSI 2015" "MIC" "Aggregatibacter" "Tetracycline" "M45 Table 7" 2 8 FALSE +"CLSI 2015" "MIC" "Anaerosalibacter" "Tetracycline" "Table 2J" 4 16 FALSE +"CLSI 2015" "MIC" "Bacillus" "Tetracycline" "M45 Table 3" 4 16 FALSE +"CLSI 2015" "MIC" "Bacillus anthracis" "Tetracycline" "M45 Table 16" 1 FALSE +"CLSI 2015" "MIC" "Brucella" "Tetracycline" "M45 Table 16" 1 FALSE +"CLSI 2015" "MIC" "Burkholderia mallei" "Tetracycline" "M45 Table 16" 4 16 FALSE +"CLSI 2015" "MIC" "Burkholderia pseudomallei" "Tetracycline" "M45 Table 16" 4 16 FALSE +"CLSI 2015" "MIC" "Campylobacter" "Tetracycline" "M45 Table 3" 4 16 FALSE +"CLSI 2015" "MIC" "Cardiobacterium" "Tetracycline" "M45 Table 7" 2 8 FALSE +"CLSI 2015" "MIC" "Eikenella" "Tetracycline" "M45 Table 7" 2 8 FALSE +"CLSI 2015" "DISK" "Enterococcus" "Tetracycline" "Table 2D" "30ug" 19 14 FALSE +"CLSI 2015" "MIC" "Enterococcus" "Tetracycline" "Table 2D" 4 16 FALSE +"CLSI 2015" "MIC" "Francisella tularensis" "Tetracycline" "M45 Table 16" 4 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Tetracycline" "Table 2E" "30ug" 29 25 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Tetracycline" "Table 2E" 2 8 FALSE +"CLSI 2015" "MIC" "Kingella" "Tetracycline" "M45 Table 7" 2 8 FALSE +"CLSI 2015" "DISK" "Moraxella catarrhalis" "Tetracycline" "M45 Table 12" "30ug" 29 24 FALSE +"CLSI 2015" "MIC" "Moraxella catarrhalis" "Tetracycline" "M45 Table 12" 2 8 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" "Tetracycline" "Table 2F" "30ug" 38 30 FALSE +"CLSI 2015" "MIC" "Neisseria gonorrhoeae" "Tetracycline" "Table 2F" 0.25 2 FALSE +"CLSI 2015" "DISK" "Plesiomonas" "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE +"CLSI 2015" "MIC" "Plesiomonas" "Tetracycline" "M45 Table 2" 4 16 FALSE +"CLSI 2015" "DISK" "Pasteurella" "Tetracycline" "M45 Table 13" "30ug" 23 FALSE +"CLSI 2015" "MIC" "Pasteurella" "Tetracycline" "M45 Table 13" 1 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Tetracycline" "Table 2C" "30ug" 19 14 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Tetracycline" "Table 2C" 4 16 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Tetracycline" "Table 2H-1" "30ug" 23 18 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Tetracycline" "Table 2H-1" 2 8 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Tetracycline" "Table 2G" "30ug" 28 24 FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Tetracycline" "Table 2G" 1 4 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" "Tetracycline" "Table 2H-2" "30ug" 23 18 FALSE +"CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Tetracycline" "Table 2H-2" 2 8 FALSE +"CLSI 2015" "MIC" "Yersinia pestis" "Tetracycline" "M45 Table 16" 4 16 FALSE +"CLSI 2015" "DISK" "Enterococcus" "Teicoplanin" "Table 2D" "30ug" 14 10 FALSE +"CLSI 2015" "MIC" "Enterococcus" "Teicoplanin" "Table 2D" 8 32 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Teicoplanin" "Table 2C" "30ug" 14 10 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Teicoplanin" "Table 2C" 8 32 FALSE +"CLSI 2015" "DISK" "Acinetobacter" "Ticarcillin" "Table 2B-2" "75ug" 20 14 FALSE +"CLSI 2015" "MIC" "Acinetobacter" "Ticarcillin" "Table 2B-2" 16 128 FALSE +"CLSI 2015" "MIC" "Anaerosalibacter" "Ticarcillin" "Table 2J" 32 128 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" "Ticarcillin" "Table 2B-1" "75ug" 24 15 FALSE +"CLSI 2015" "MIC" "Pseudomonas aeruginosa" "Ticarcillin" "Table 2B-1" 16 128 FALSE +"CLSI 2015" "DISK" "Actinobacillus pleuropneumoniae" "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE +"CLSI 2015" "MIC" "Actinobacillus pleuropneumoniae" "Tilmicosin" "Vet Table" 16 32 FALSE +"CLSI 2015" "DISK" "Pasteurella multocida" "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE +"CLSI 2015" "MIC" "Pasteurella multocida" "Tilmicosin" "Vet Table" 16 32 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Telithromycin" "Table 2E" "15ug" 15 11 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Telithromycin" "Table 2E" 4 16 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Telithromycin" "Table 2C" "15ug" 22 18 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Telithromycin" "Table 2C" 1 4 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Telithromycin" "Table 2H-1" FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Telithromycin" "Table 2G" "15ug" 19 15 FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Telithromycin" "Table 2G" 1 4 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Trimethoprim" "Table 2C" "5ug" 16 10 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Trimethoprim" "Table 2C" 8 16 FALSE +"CLSI 2015" "DISK" "Acinetobacter" "Tobramycin" "Table 2B-2" "10ug" 15 12 FALSE +"CLSI 2015" "MIC" "Acinetobacter" "Tobramycin" "Table 2B-2" 4 16 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" "Tobramycin" "Table 2B-1" "10ug" 15 12 FALSE +"CLSI 2015" "MIC" "Pseudomonas aeruginosa" "Tobramycin" "Table 2B-1" 4 16 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Tobramycin" "Table 2C" "10ug" 15 12 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Tobramycin" "Table 2C" 4 16 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Trovafloxacin" "Table 2E" "10ug" 22 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Trovafloxacin" "Table 2E" 1 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" "Trovafloxacin" "Table 2F" "10ug" 34 FALSE +"CLSI 2015" "MIC" "Neisseria gonorrhoeae" "Trovafloxacin" "Table 2F" 0.25 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Trovafloxacin" "Table 2H-1" "10ug" 19 15 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Trovafloxacin" "Table 2H-1" 1 4 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Trovafloxacin" "Table 2G" "10ug" 19 15 FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Trovafloxacin" "Table 2G" 1 4 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" "Trovafloxacin" "Table 2H-2" "10ug" 19 15 FALSE +"CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Trovafloxacin" "Table 2H-2" 1 4 FALSE +"CLSI 2015" "DISK" "Acinetobacter" "Piperacillin/tazobactam" "Table 2B-2" "100ug" 21 17 FALSE +"CLSI 2015" "MIC" "Acinetobacter" "Piperacillin/tazobactam" "Table 2B-2" 16 128 FALSE +"CLSI 2015" "DISK" "Aeromonas" "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE +"CLSI 2015" "MIC" "Aeromonas" "Piperacillin/tazobactam" "M45 Table 2" 16 128 FALSE +"CLSI 2015" "MIC" "Anaerosalibacter" "Piperacillin/tazobactam" "Table 2J" 32 128 FALSE +"CLSI 2015" "DISK" "Haemophilus" "Piperacillin/tazobactam" "Table 2E" "100ug" 21 FALSE +"CLSI 2015" "MIC" "Haemophilus" "Piperacillin/tazobactam" "Table 2E" 1 2 FALSE +"CLSI 2015" "DISK" "Plesiomonas" "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE +"CLSI 2015" "MIC" "Plesiomonas" "Piperacillin/tazobactam" "M45 Table 2" 16 128 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" "Piperacillin/tazobactam" "Table 2B-1" "100ug" 21 14 FALSE +"CLSI 2015" "MIC" "Pseudomonas aeruginosa" "Piperacillin/tazobactam" "Table 2B-1" 16 128 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Piperacillin/tazobactam" "Table 2C" "100/10ug" 18 17 FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Piperacillin/tazobactam" "Table 2C" 8 16 FALSE +"CLSI 2015" "MIC" "Abiotrophia" "Vancomycin" "M45 Table 1" 1 FALSE +"CLSI 2015" "MIC" "Bacillus" "Vancomycin" "M45 Table 3" 4 FALSE +"CLSI 2015" "MIC" "Bacillus anthracis" "Vancomycin" "M45 Table 16" FALSE +"CLSI 2015" "DISK" "Enterococcus" "Vancomycin" "Table 2D" "30ug" 17 14 FALSE +"CLSI 2015" "MIC" "Enterococcus" "Vancomycin" "Table 2D" 4 32 FALSE +"CLSI 2015" "MIC" "Granulicatella" "Vancomycin" "M45 Table 1" 1 FALSE +"CLSI 2015" "MIC" "Lactobacillus" "Vancomycin" "M45 Table 9" 2 16 FALSE +"CLSI 2015" "MIC" "Propionibacterium" "Vancomycin" "Table 2J-2" 2 4 FALSE +"CLSI 2015" "DISK" "Staphylococcus" "Vancomycin" "Table 2C" "30ug" FALSE +"CLSI 2015" "MIC" "Staphylococcus" "Vancomycin" "Table 2C" 4 32 FALSE +"CLSI 2015" "MIC" "Staphylococcus aureus" "Vancomycin" "Table 2C" 2 16 FALSE +"CLSI 2015" "DISK" "Streptococcus" "Vancomycin" "Table 2H-1" "30ug" 17 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Vancomycin" "M45 Table 1" 1 FALSE +"CLSI 2015" "MIC" "Streptococcus" "Vancomycin" "Table 2H-1" 1 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" "Vancomycin" "Table 2G" "30ug" 17 FALSE +"CLSI 2015" "MIC" "Streptococcus pneumoniae" "Vancomycin" "Table 2G" 1 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" "Vancomycin" "Table 2H-2" "30ug" 17 FALSE +"CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" "Vancomycin" "Table 2H-2" 1 FALSE +"CLSI 2014" "DISK" "Aeromonas" "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE +"CLSI 2014" "MIC" "Aeromonas" "Amoxicillin/clavulanic acid" "M45 Table 2" 8 32 FALSE +"CLSI 2014" "MIC" "Aggregatibacter" "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE +"CLSI 2014" "MIC" "Anaerosalibacter" "Amoxicillin/clavulanic acid" "Table 2J" 4 16 FALSE +"CLSI 2014" "MIC" "Burkholderia pseudomallei" "Amoxicillin/clavulanic acid" "M45 Table 16" 8 32 FALSE +"CLSI 2014" "MIC" "Cardiobacterium" "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE +"CLSI 2014" "MIC" "Eikenella" "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Amoxicillin/clavulanic acid" "Table 2E" "20/10ug" 20 19 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Amoxicillin/clavulanic acid" "Table 2E" 4 8 FALSE +"CLSI 2014" "DISK" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" "M45 Table 12" "20ug" 24 23 FALSE +"CLSI 2014" "MIC" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" "M45 Table 12" 4 8 FALSE +"CLSI 2014" "DISK" "Plesiomonas" "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE +"CLSI 2014" "MIC" "Plesiomonas" "Amoxicillin/clavulanic acid" "M45 Table 2" 8 32 FALSE +"CLSI 2014" "DISK" "Pasteurella" "Amoxicillin/clavulanic acid" "M45 Table 13" "20ug" 27 FALSE +"CLSI 2014" "MIC" "Pasteurella" "Amoxicillin/clavulanic acid" "M45 Table 13" 0.5 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Amoxicillin/clavulanic acid" "Table 2C" "20ug" 20 19 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Amoxicillin/clavulanic acid" "Table 2C" 4 8 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Amoxicillin/clavulanic acid" "Table 2H-1" "20ug" FALSE +"CLSI 2014" "MIC" "Streptococcus" "Amoxicillin/clavulanic acid" "Table 2H-1" FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Amoxicillin/clavulanic acid" "Table 2G" "10/10ug" FALSE +"CLSI 2014" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Amoxicillin/clavulanic acid" "Table 2G" 2 8 FALSE +"CLSI 2014" "DISK" "Acinetobacter" "Amikacin" "Table 2B-2" "30ug" 17 14 FALSE +"CLSI 2014" "MIC" "Acinetobacter" "Amikacin" "Table 2B-2" 16 64 FALSE +"CLSI 2014" "DISK" "Aeromonas" "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE +"CLSI 2014" "MIC" "Aeromonas" "Amikacin" "M45 Table 2" 16 64 FALSE +"CLSI 2014" "MIC" "Bacillus" "Amikacin" "M45 Table 3" 16 64 FALSE +"CLSI 2014" "MIC" "Bacillus anthracis" "Amikacin" "M45 Table 16" FALSE +"CLSI 2014" "DISK" "Plesiomonas" "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE +"CLSI 2014" "MIC" "Plesiomonas" "Amikacin" "M45 Table 2" 16 64 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" "Amikacin" "Table 2B-1" "30ug" 17 14 FALSE +"CLSI 2014" "MIC" "Pseudomonas aeruginosa" "Amikacin" "Table 2B-1" 16 64 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Amikacin" "Table 2C" "30ug" 17 14 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Amikacin" "Table 2C" 16 64 FALSE +"CLSI 2014" "MIC" "Aggregatibacter" "Ampicillin" "M45 Table 7" 1 4 FALSE +"CLSI 2014" "MIC" "Anaerosalibacter" "Ampicillin" "Table 2J" 0.5 2 FALSE +"CLSI 2014" "MIC" "Bacillus" "Ampicillin" "M45 Table 3" 0.25 0.5 FALSE +"CLSI 2014" "MIC" "Bacillus anthracis" "Ampicillin" "M45 Table 16" FALSE +"CLSI 2014" "MIC" "Cardiobacterium" "Ampicillin" "M45 Table 7" 1 4 FALSE +"CLSI 2014" "MIC" "Eikenella" "Ampicillin" "M45 Table 7" 1 4 FALSE +"CLSI 2014" "DISK" "Enterococcus" "Ampicillin" "Table 2D" "10ug" 17 16 FALSE +"CLSI 2014" "MIC" "Enterococcus" "Ampicillin" "Table 2D" 8 16 FALSE +"CLSI 2014" "MIC" "Erysipelothrix rhusiopathiae" "Ampicillin" "M45 Table 6" 0.25 FALSE +"CLSI 2014" "MIC" "Granulicatella" "Ampicillin" "M45 Table 1" 0.25 8 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Ampicillin" "Table 2E" "10ug" 22 18 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Ampicillin" "Table 2E" 1 4 FALSE +"CLSI 2014" "MIC" "Leuconostoc" "Ampicillin" "M45 Table 10" 8 FALSE +"CLSI 2014" "MIC" "Lactobacillus" "Ampicillin" "M45 Table 9" 8 FALSE +"CLSI 2014" "DISK" "Listeria monocytogenes" "Ampicillin" "M45 Table 11" "10ug" FALSE +"CLSI 2014" "MIC" "Listeria monocytogenes" "Ampicillin" "M45 Table 11" 2 FALSE +"CLSI 2014" "DISK" "Neisseria meningitidis" "Ampicillin" "Table 2I" "10ug" FALSE +"CLSI 2014" "MIC" "Neisseria meningitidis" "Ampicillin" "Table 2I" 0.125 2 FALSE +"CLSI 2014" "MIC" "Pediococcus" "Ampicillin" "M45 Table 14" 8 FALSE +"CLSI 2014" "DISK" "Pasteurella" "Ampicillin" "M45 Table 13" "10ug" 27 FALSE +"CLSI 2014" "MIC" "Pasteurella" "Ampicillin" "M45 Table 13" 0.5 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Ampicillin" "Table 2C" "10ug" 29 28 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Ampicillin" "Table 2C" 0.25 0.5 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Ampicillin" "Table 2H-1" "10ug" 24 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Ampicillin" "M45 Table 1" 0.25 8 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Ampicillin" "Table 2H-1" 0.25 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Ampicillin" "Table 2G" "10ug" FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Ampicillin" "Table 2G" FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" "Ampicillin" "Table 2H-2" "10ug" FALSE +"CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Ampicillin" "Table 2H-2" 0.25 8 FALSE +"CLSI 2014" "MIC" "Pasteurella" "Amoxicillin" "M45 Table 13" 0.5 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Amoxicillin" "Table 2H-1" "30ug" FALSE +"CLSI 2014" "MIC" "Streptococcus" "Amoxicillin" "Table 2H-1" FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Amoxicillin" "Table 2G" "30ug" FALSE +"CLSI 2014" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Amoxicillin" "Table 2G" 2 8 FALSE +"CLSI 2014" "DISK" "Aeromonas" "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2014" "MIC" "Aeromonas" "Aztreonam" "M45 Table 2" 4 16 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Aztreonam" "Table 2E" "30ug" 26 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Aztreonam" "Table 2E" 2 FALSE +"CLSI 2014" "DISK" "Plesiomonas" "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2014" "MIC" "Plesiomonas" "Aztreonam" "M45 Table 2" 4 16 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" "Aztreonam" "Table 2B-1" "30ug" 22 15 FALSE +"CLSI 2014" "MIC" "Pseudomonas aeruginosa" "Aztreonam" "Table 2B-1" 8 32 FALSE +"CLSI 2014" "MIC" "Aggregatibacter" "Azithromycin" "M45 Table 7" 4 FALSE +"CLSI 2014" "MIC" "Cardiobacterium" "Azithromycin" "M45 Table 7" 4 FALSE +"CLSI 2014" "MIC" "Eikenella" "Azithromycin" "M45 Table 7" 4 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Azithromycin" "Table 2E" "15ug" 12 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Azithromycin" "Table 2E" 4 FALSE +"CLSI 2014" "MIC" "Kingella" "Azithromycin" "M45 Table 7" 4 FALSE +"CLSI 2014" "DISK" "Moraxella catarrhalis" "Azithromycin" "M45 Table 12" "15ug" 26 FALSE +"CLSI 2014" "MIC" "Moraxella catarrhalis" "Azithromycin" "M45 Table 12" 0.25 FALSE +"CLSI 2014" "DISK" "Neisseria meningitidis" "Azithromycin" "Table 2I" "15ug" 20 FALSE +"CLSI 2014" "MIC" "Neisseria meningitidis" "Azithromycin" "Table 2I" 2 FALSE +"CLSI 2014" "DISK" "Pasteurella" "Azithromycin" "M45 Table 13" "15ug" 20 FALSE +"CLSI 2014" "MIC" "Pasteurella" "Azithromycin" "M45 Table 13" 1 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Azithromycin" "Table 2C" "15ug" 18 13 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Azithromycin" "Table 2C" 2 8 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Azithromycin" "Table 2H-1" "15ug" 18 13 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Azithromycin" "Table 2H-1" 0.5 2 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Azithromycin" "Table 2G" "15ug" 18 13 FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Azithromycin" "Table 2G" 0.5 2 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" "Azithromycin" "Table 2H-2" "15ug" 18 13 FALSE +"CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Azithromycin" "Table 2H-2" 0.5 2 FALSE +"CLSI 2014" "MIC" "Vibrio cholerae" "Azithromycin" "M45 Table 14" "30ug" 2 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Cefetamet" "Table 2E" "10ug" 18 14 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Cefetamet" "Table 2E" 4 16 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" "Cefetamet" "Table 2F" "10ug" 29 FALSE +"CLSI 2014" "MIC" "Neisseria gonorrhoeae" "Cefetamet" "Table 2F" 0.5 FALSE +"CLSI 2014" "DISK" "Acinetobacter" "Ceftazidime" "Table 2B-2" "30ug" 18 14 FALSE +"CLSI 2014" "MIC" "Acinetobacter" "Ceftazidime" "Table 2B-2" 8 32 FALSE +"CLSI 2014" "DISK" "Aeromonas" "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2014" "MIC" "Aeromonas" "Ceftazidime" "M45 Table 2" 4 16 FALSE +"CLSI 2014" "MIC" "Bacillus" "Ceftazidime" "M45 Table 3" 8 32 FALSE +"CLSI 2014" "MIC" "Bacillus anthracis" "Ceftazidime" "M45 Table 16" FALSE +"CLSI 2014" "DISK" "Burkholderia cepacia" "Ceftazidime" "Table 2B-3" "30ug" 21 17 FALSE +"CLSI 2014" "MIC" "Burkholderia cepacia" "Ceftazidime" "Table 2B-3" 8 32 FALSE +"CLSI 2014" "MIC" "Burkholderia mallei" "Ceftazidime" "M45 Table 16" 8 32 FALSE +"CLSI 2014" "MIC" "Burkholderia pseudomallei" "Ceftazidime" "M45 Table 16" 8 32 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Ceftazidime" "Table 2E" "30ug" 26 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Ceftazidime" "Table 2E" 2 FALSE +"CLSI 2014" "MIC" "Moraxella catarrhalis" "Ceftazidime" "M45 Table 12" 2 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" "Ceftazidime" "Table 2F" "30ug" 31 FALSE +"CLSI 2014" "MIC" "Neisseria gonorrhoeae" "Ceftazidime" "Table 2F" 0.5 FALSE +"CLSI 2014" "DISK" "Plesiomonas" "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2014" "MIC" "Plesiomonas" "Ceftazidime" "M45 Table 2" 4 16 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" "Ceftazidime" "Table 2B-1" "30ug" 18 14 FALSE +"CLSI 2014" "MIC" "Pseudomonas aeruginosa" "Ceftazidime" "Table 2B-1" 8 32 FALSE +"CLSI 2014" "DISK" "Stenotrophomonas maltophilia" "Ceftazidime" "Table 2B-4" "30ug" FALSE +"CLSI 2014" "MIC" "Stenotrophomonas maltophilia" "Ceftazidime" "Table 2B-4" 8 32 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Ceftazidime" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Ceftazidime" "Table 2C" 8 32 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Cefdinir" "Table 2E" "5ug" 20 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Cefdinir" "Table 2E" 1 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Cefdinir" "Table 2C" "5ug" 20 16 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Cefdinir" "Table 2C" 1 4 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Cefdinir" "Table 2G" "5ug" FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Cefdinir" "Table 2G" 0.5 2 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Cefaclor" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Cefaclor" "Table 2E" 8 32 FALSE +"CLSI 2014" "MIC" "Moraxella catarrhalis" "Cefaclor" "M45 Table 12" 8 32 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Cefaclor" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Cefaclor" "Table 2C" 8 32 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Cefaclor" "Table 2G" "30ug" FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Cefaclor" "Table 2G" 1 4 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Cephalothin" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Cephalothin" "Table 2C" 8 32 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Cefixime" "Table 2E" "5ug" 21 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Cefixime" "Table 2E" 1 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" "Cefixime" "Table 2F" "5ug" 31 FALSE +"CLSI 2014" "MIC" "Neisseria gonorrhoeae" "Cefixime" "Table 2F" 0.25 FALSE +"CLSI 2014" "MIC" "Anaerosalibacter" "Cefoperazone" "Table 2J" 16 64 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Cefoperazone" "Table 2C" "75ug" 21 15 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Cefoperazone" "Table 2C" 16 64 FALSE +"CLSI 2014" "DISK" "Aeromonas" "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE +"CLSI 2014" "MIC" "Aeromonas" "Chloramphenicol" "M45 Table 2" 8 32 FALSE +"CLSI 2014" "MIC" "Aggregatibacter" "Chloramphenicol" "M45 Table 7" 4 16 FALSE +"CLSI 2014" "MIC" "Anaerosalibacter" "Chloramphenicol" "Table 2J" 8 32 FALSE +"CLSI 2014" "MIC" "Bacillus" "Chloramphenicol" "M45 Table 3" 8 32 FALSE +"CLSI 2014" "MIC" "Bacillus anthracis" "Chloramphenicol" "M45 Table 16" FALSE +"CLSI 2014" "DISK" "Burkholderia cepacia" "Chloramphenicol" "Table 2B-3" "30ug" FALSE +"CLSI 2014" "MIC" "Burkholderia cepacia" "Chloramphenicol" "Table 2B-3" 8 32 FALSE +"CLSI 2014" "MIC" "Cardiobacterium" "Chloramphenicol" "M45 Table 7" 4 16 FALSE +"CLSI 2014" "MIC" "Eikenella" "Chloramphenicol" "M45 Table 7" 4 16 FALSE +"CLSI 2014" "DISK" "Enterococcus" "Chloramphenicol" "Table 2D" "30ug" 18 12 FALSE +"CLSI 2014" "MIC" "Enterococcus" "Chloramphenicol" "Table 2D" 8 32 FALSE +"CLSI 2014" "MIC" "Francisella tularensis" "Chloramphenicol" "M45 Table 16" 8 FALSE +"CLSI 2014" "MIC" "Granulicatella" "Chloramphenicol" "M45 Table 1" 4 8 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Chloramphenicol" "Table 2E" "30ug" 29 25 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Chloramphenicol" "Table 2E" 2 8 FALSE +"CLSI 2014" "MIC" "Kingella" "Chloramphenicol" "M45 Table 7" 4 16 FALSE +"CLSI 2014" "MIC" "Leuconostoc" "Chloramphenicol" "M45 Table 10" 8 32 FALSE +"CLSI 2014" "MIC" "Moraxella catarrhalis" "Chloramphenicol" "M45 Table 12" 2 8 FALSE +"CLSI 2014" "DISK" "Neisseria meningitidis" "Chloramphenicol" "Table 2I" "30ug" 26 19 FALSE +"CLSI 2014" "MIC" "Neisseria meningitidis" "Chloramphenicol" "Table 2I" 2 8 FALSE +"CLSI 2014" "MIC" "Pediococcus" "Chloramphenicol" "M45 Table 14" 8 32 FALSE +"CLSI 2014" "DISK" "Plesiomonas" "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE +"CLSI 2014" "MIC" "Plesiomonas" "Chloramphenicol" "M45 Table 2" 8 32 FALSE +"CLSI 2014" "DISK" "Pasteurella" "Chloramphenicol" "M45 Table 13" "30ug" 28 FALSE +"CLSI 2014" "MIC" "Pasteurella" "Chloramphenicol" "M45 Table 13" 2 FALSE +"CLSI 2014" "DISK" "Stenotrophomonas maltophilia" "Chloramphenicol" "Table 2B-4" "30ug" FALSE +"CLSI 2014" "MIC" "Stenotrophomonas maltophilia" "Chloramphenicol" "Table 2B-4" 8 32 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Chloramphenicol" "Table 2C" "30ug" 18 12 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Chloramphenicol" "Table 2C" 8 32 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Chloramphenicol" "Table 2H-1" "30ug" 21 17 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Chloramphenicol" "M45 Table 1" 4 8 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Chloramphenicol" "Table 2H-1" 4 16 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Chloramphenicol" "Table 2G" "30ug" 21 20 FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Chloramphenicol" "Table 2G" 4 8 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" "Chloramphenicol" "Table 2H-2" "30ug" 21 17 FALSE +"CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Chloramphenicol" "Table 2H-2" 4 16 FALSE +"CLSI 2014" "MIC" "Yersinia pestis" "Chloramphenicol" "M45 Table 16" 8 32 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Cefonicid" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Cefonicid" "Table 2E" 4 16 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Cefonicid" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Cefonicid" "Table 2C" 8 32 FALSE +"CLSI 2014" "DISK" "Acinetobacter" "Ciprofloxacin" "Table 2B-2" "5ug" 21 15 FALSE +"CLSI 2014" "MIC" "Acinetobacter" "Ciprofloxacin" "Table 2B-2" 1 4 FALSE +"CLSI 2014" "DISK" "Aeromonas" "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE +"CLSI 2014" "MIC" "Aeromonas" "Ciprofloxacin" "M45 Table 2" 1 4 FALSE +"CLSI 2014" "MIC" "Aggregatibacter" "Ciprofloxacin" "M45 Table 7" 1 4 FALSE +"CLSI 2014" "MIC" "Bacillus" "Ciprofloxacin" "M45 Table 3" 1 4 FALSE +"CLSI 2014" "MIC" "Bacillus anthracis" "Ciprofloxacin" "M45 Table 16" 0.25 FALSE +"CLSI 2014" "MIC" "Campylobacter" "Ciprofloxacin" "M45 Table 3" 1 4 FALSE +"CLSI 2014" "MIC" "Cardiobacterium" "Ciprofloxacin" "M45 Table 7" 1 4 FALSE +"CLSI 2014" "MIC" "Eikenella" "Ciprofloxacin" "M45 Table 7" 1 4 FALSE +"CLSI 2014" "DISK" "Enterococcus" "Ciprofloxacin" "Table 2D" "5ug" 21 15 FALSE +"CLSI 2014" "MIC" "Enterococcus" "Ciprofloxacin" "Table 2D" 1 4 FALSE +"CLSI 2014" "MIC" "Erysipelothrix rhusiopathiae" "Ciprofloxacin" "M45 Table 6" 1 FALSE +"CLSI 2014" "MIC" "Francisella tularensis" "Ciprofloxacin" "M45 Table 16" 0.5 FALSE +"CLSI 2014" "MIC" "Granulicatella" "Ciprofloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Ciprofloxacin" "Table 2E" "5ug" 21 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Ciprofloxacin" "Table 2E" 1 FALSE +"CLSI 2014" "MIC" "Kingella" "Ciprofloxacin" "M45 Table 7" 1 4 FALSE +"CLSI 2014" "MIC" "Moraxella catarrhalis" "Ciprofloxacin" "M45 Table 12" 1 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" "Ciprofloxacin" "Table 2F" "5ug" 41 27 FALSE +"CLSI 2014" "MIC" "Neisseria gonorrhoeae" "Ciprofloxacin" "Table 2F" 0.064 1 FALSE +"CLSI 2014" "DISK" "Neisseria meningitidis" "Ciprofloxacin" "Table 2I" "5ug" 35 32 FALSE +"CLSI 2014" "MIC" "Neisseria meningitidis" "Ciprofloxacin" "Table 2I" 0.032 0.12 FALSE +"CLSI 2014" "DISK" "Plesiomonas" "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE +"CLSI 2014" "MIC" "Plesiomonas" "Ciprofloxacin" "M45 Table 2" 1 4 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" "Ciprofloxacin" "Table 2B-1" "5ug" 21 15 FALSE +"CLSI 2014" "MIC" "Pseudomonas aeruginosa" "Ciprofloxacin" "Table 2B-1" 1 4 FALSE +"CLSI 2014" "DISK" "Extraintestinal" "Salmonella" "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE +"CLSI 2014" "DISK" "Salmonella" "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE +"CLSI 2014" "MIC" "Extraintestinal" "Salmonella" "Ciprofloxacin" "Table 2A" 0.064 1 FALSE +"CLSI 2014" "MIC" "Salmonella" "Ciprofloxacin" "Table 2A" 0.064 1 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Ciprofloxacin" "Table 2C" "5ug" 21 15 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Ciprofloxacin" "Table 2C" 1 4 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Ciprofloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Ciprofloxacin" "Table 2G" "5ug" FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Ciprofloxacin" "Table 2G" FALSE +"CLSI 2014" "MIC" "Yersinia pestis" "Ciprofloxacin" "M45 Table 16" 0.25 FALSE +"CLSI 2014" "MIC" "Anaerosalibacter" "Clindamycin" "Table 2J" 2 8 FALSE +"CLSI 2014" "MIC" "Bacillus" "Clindamycin" "M45 Table 3" 0.5 4 FALSE +"CLSI 2014" "MIC" "Bacillus anthracis" "Clindamycin" "M45 Table 16" FALSE +"CLSI 2014" "MIC" "Erysipelothrix rhusiopathiae" "Clindamycin" "M45 Table 6" 0.25 1 FALSE +"CLSI 2014" "MIC" "Granulicatella" "Clindamycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2014" "MIC" "Lactobacillus" "Clindamycin" "M45 Table 9" 0.5 2 FALSE +"CLSI 2014" "MIC" "Moraxella catarrhalis" "Clindamycin" "M45 Table 12" 0.5 4 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Clindamycin" "Table 2C" "2ug" 21 14 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Clindamycin" "Table 2C" 0.5 4 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Clindamycin" "Table 2H-1" "2ug" 19 15 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Clindamycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Clindamycin" "Table 2H-1" 0.25 1 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Clindamycin" "Table 2G" "2ug" 19 15 FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Clindamycin" "Table 2G" 0.25 1 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" "Clindamycin" "Table 2H-2" "2ug" 19 15 FALSE +"CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Clindamycin" "Table 2H-2" 0.25 1 FALSE +"CLSI 2014" "MIC" "Aggregatibacter" "Clarithromycin" "M45 Table 7" 8 32 FALSE +"CLSI 2014" "MIC" "Cardiobacterium" "Clarithromycin" "M45 Table 7" 8 32 FALSE +"CLSI 2014" "MIC" "Eikenella" "Clarithromycin" "M45 Table 7" 8 32 FALSE +"CLSI 2014" "MIC" "Helicobacter pylori" "Clarithromycin" "M45 Table 8" 0.25 1 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Clarithromycin" "Table 2E" "15ug" 13 10 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Clarithromycin" "Table 2E" 8 32 FALSE +"CLSI 2014" "MIC" "Kingella" "Clarithromycin" "M45 Table 7" 8 32 FALSE +"CLSI 2014" "DISK" "Moraxella catarrhalis" "Clarithromycin" "M45 Table 12" "15ug" 24 FALSE +"CLSI 2014" "MIC" "Moraxella catarrhalis" "Clarithromycin" "M45 Table 12" 1 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Clarithromycin" "Table 2C" "15ug" 18 13 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Clarithromycin" "Table 2C" 2 8 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Clarithromycin" "Table 2H-1" "15ug" 21 16 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Clarithromycin" "Table 2H-1" 0.25 1 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Clarithromycin" "Table 2G" "15ug" 21 16 FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Clarithromycin" "Table 2G" 0.25 1 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" "Clarithromycin" "Table 2H-2" "15ug" 21 16 FALSE +"CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Clarithromycin" "Table 2H-2" 0.25 1 FALSE +"CLSI 2014" "MIC" "Anaerosalibacter" "Cefmetazole" "Table 2J" 16 64 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" "Cefmetazole" "Table 2F" "30ug" 33 27 FALSE +"CLSI 2014" "MIC" "Neisseria gonorrhoeae" "Cefmetazole" "Table 2F" 2 8 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Cefmetazole" "Table 2C" "30ug" 16 12 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Cefmetazole" "Table 2C" 16 64 FALSE +"CLSI 2014" "DISK" "Acinetobacter" "Colistin" "Table 2B-2" "10ug" FALSE +"CLSI 2014" "MIC" "Acinetobacter" "Colistin" "Table 2B-2" 2 4 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" "Colistin" "Table 2B-1" "10ug" 11 10 FALSE +"CLSI 2014" "MIC" "Pseudomonas aeruginosa" "Colistin" "Table 2B-1" 2 8 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Cefpodoxime" "Table 2E" "10ug" 21 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Cefpodoxime" "Table 2E" 2 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" "Cefpodoxime" "Table 2F" "10ug" 29 FALSE +"CLSI 2014" "MIC" "Neisseria gonorrhoeae" "Cefpodoxime" "Table 2F" 0.5 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Cefpodoxime" "Table 2C" "10ug" 21 17 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Cefpodoxime" "Table 2C" 2 8 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Cefpodoxime" "Table 2G" "10ug" FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Cefpodoxime" "Table 2G" 0.5 2 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Cefprozil" "Table 2E" "30ug" 18 14 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Cefprozil" "Table 2E" 8 32 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Cefprozil" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Cefprozil" "Table 2C" 8 32 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Cefprozil" "Table 2G" "30ug" FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Cefprozil" "Table 2G" 2 8 FALSE +"CLSI 2014" "DISK" "Haemophilus influenzae" "Ceftaroline" "Table 2E" "30ug" 30 FALSE +"CLSI 2014" "MIC" "Haemophilus influenzae" "Ceftaroline" "Table 2E" 0.5 FALSE +"CLSI 2014" "DISK" "Staphylococcus aureus" "Ceftaroline" "Table 2C" "30ug" 24 20 FALSE +"CLSI 2014" "MIC" "Staphylococcus aureus" "Ceftaroline" "Table 2C" 1 4 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Ceftaroline" "Table 2H-1" "30ug" 26 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Ceftaroline" "Table 2H-1" 0.5 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Ceftaroline" "Table 2G" "30ug" FALSE +"CLSI 2014" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Ceftaroline" "Table 2G" 0.5 FALSE +"CLSI 2014" "DISK" "Acinetobacter" "Ceftriaxone" "Table 2B-2" "30ug" 21 13 FALSE +"CLSI 2014" "MIC" "Acinetobacter" "Ceftriaxone" "Table 2B-2" 8 64 FALSE +"CLSI 2014" "DISK" "Aeromonas" "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE +"CLSI 2014" "MIC" "Aeromonas" "Ceftriaxone" "M45 Table 2" 1 4 FALSE +"CLSI 2014" "MIC" "Aggregatibacter" "Ceftriaxone" "M45 Table 7" 2 FALSE +"CLSI 2014" "MIC" "Anaerosalibacter" "Ceftriaxone" "Table 2J" 16 64 FALSE +"CLSI 2014" "MIC" "Bacillus" "Ceftriaxone" "M45 Table 3" 8 64 FALSE +"CLSI 2014" "MIC" "Bacillus anthracis" "Ceftriaxone" "M45 Table 16" FALSE +"CLSI 2014" "MIC" "Cardiobacterium" "Ceftriaxone" "M45 Table 7" 2 FALSE +"CLSI 2014" "MIC" "Eikenella" "Ceftriaxone" "M45 Table 7" 2 FALSE +"CLSI 2014" "MIC" "Erysipelothrix rhusiopathiae" "Ceftriaxone" "M45 Table 6" 1 FALSE +"CLSI 2014" "MIC" "Granulicatella" "Ceftriaxone" "M45 Table 1" 1 4 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Ceftriaxone" "Table 2E" "30ug" 26 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Ceftriaxone" "Table 2E" 2 FALSE +"CLSI 2014" "MIC" "Kingella" "Ceftriaxone" "M45 Table 7" 2 FALSE +"CLSI 2014" "MIC" "Moraxella catarrhalis" "Ceftriaxone" "M45 Table 12" 2 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" "Ceftriaxone" "Table 2F" "30ug" 35 FALSE +"CLSI 2014" "MIC" "Neisseria gonorrhoeae" "Ceftriaxone" "Table 2F" 0.25 FALSE +"CLSI 2014" "DISK" "Neisseria meningitidis" "Ceftriaxone" "Table 2I" "30ug" 34 FALSE +"CLSI 2014" "MIC" "Neisseria meningitidis" "Ceftriaxone" "Table 2I" 0.125 FALSE +"CLSI 2014" "DISK" "Plesiomonas" "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE +"CLSI 2014" "MIC" "Plesiomonas" "Ceftriaxone" "M45 Table 2" 1 4 FALSE +"CLSI 2014" "DISK" "Pasteurella" "Ceftriaxone" "M45 Table 13" "30ug" 34 FALSE +"CLSI 2014" "MIC" "Pasteurella" "Ceftriaxone" "M45 Table 13" 0.125 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Ceftriaxone" "Table 2C" "30ug" 21 13 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Ceftriaxone" "Table 2C" 8 64 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Ceftriaxone" "Table 2H-1" "30ug" 24 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Ceftriaxone" "M45 Table 1" 1 4 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Ceftriaxone" "Table 2H-1" 0.5 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Ceftriaxone" "Table 2G" "30ug" FALSE +"CLSI 2014" "MIC" "Meningitis" "Streptococcus pneumoniae" "Ceftriaxone" "Table 2G" 0.5 2 FALSE +"CLSI 2014" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Ceftriaxone" "Table 2G" 1 4 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" "Table 2H-2" "30ug" 27 24 FALSE +"CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" "Table 2H-2" 1 4 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Ceftibuten" "Table 2E" "30ug" 28 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Ceftibuten" "Table 2E" 2 FALSE +"CLSI 2014" "MIC" "Anaerosalibacter" "Cefotetan" "Table 2J" 16 64 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" "Cefotetan" "Table 2F" "30ug" 26 19 FALSE +"CLSI 2014" "MIC" "Neisseria gonorrhoeae" "Cefotetan" "Table 2F" 2 8 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Cefotetan" "Table 2C" "30ug" 16 12 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Cefotetan" "Table 2C" 16 64 FALSE +"CLSI 2014" "DISK" "Acinetobacter" "Cefotaxime" "Table 2B-2" "30ug" 23 14 FALSE +"CLSI 2014" "MIC" "Acinetobacter" "Cefotaxime" "Table 2B-2" 8 64 FALSE +"CLSI 2014" "DISK" "Aeromonas" "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE +"CLSI 2014" "MIC" "Aeromonas" "Cefotaxime" "M45 Table 2" 1 4 FALSE +"CLSI 2014" "MIC" "Aggregatibacter" "Cefotaxime" "M45 Table 7" 2 FALSE +"CLSI 2014" "MIC" "Anaerosalibacter" "Cefotaxime" "Table 2J" 16 64 FALSE +"CLSI 2014" "MIC" "Bacillus" "Cefotaxime" "M45 Table 3" 8 64 FALSE +"CLSI 2014" "MIC" "Bacillus anthracis" "Cefotaxime" "M45 Table 16" FALSE +"CLSI 2014" "MIC" "Cardiobacterium" "Cefotaxime" "M45 Table 7" 2 FALSE +"CLSI 2014" "MIC" "Eikenella" "Cefotaxime" "M45 Table 7" 2 FALSE +"CLSI 2014" "MIC" "Erysipelothrix rhusiopathiae" "Cefotaxime" "M45 Table 6" 1 FALSE +"CLSI 2014" "MIC" "Granulicatella" "Cefotaxime" "M45 Table 1" 1 4 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Cefotaxime" "Table 2E" "30ug" 26 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Cefotaxime" "Table 2E" 2 FALSE +"CLSI 2014" "MIC" "Kingella" "Cefotaxime" "M45 Table 7" 2 FALSE +"CLSI 2014" "MIC" "Moraxella catarrhalis" "Cefotaxime" "M45 Table 12" 2 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" "Cefotaxime" "Table 2F" "30ug" 31 FALSE +"CLSI 2014" "MIC" "Neisseria gonorrhoeae" "Cefotaxime" "Table 2F" 0.5 FALSE +"CLSI 2014" "DISK" "Neisseria meningitidis" "Cefotaxime" "Table 2I" "30ug" 34 FALSE +"CLSI 2014" "MIC" "Neisseria meningitidis" "Cefotaxime" "Table 2I" 0.125 FALSE +"CLSI 2014" "DISK" "Plesiomonas" "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE +"CLSI 2014" "MIC" "Plesiomonas" "Cefotaxime" "M45 Table 2" 1 4 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Cefotaxime" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Cefotaxime" "Table 2C" 8 64 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Cefotaxime" "Table 2H-1" "30ug" 24 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Cefotaxime" "M45 Table 1" 1 4 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Cefotaxime" "Table 2H-1" 0.5 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Cefotaxime" "Table 2G" "30ug" FALSE +"CLSI 2014" "MIC" "Meningitis" "Streptococcus pneumoniae" "Cefotaxime" "Table 2G" 0.5 2 FALSE +"CLSI 2014" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Cefotaxime" "Table 2G" 1 4 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" "Cefotaxime" "Table 2H-2" "30ug" 28 25 FALSE +"CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Cefotaxime" "Table 2H-2" 1 4 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Cefuroxime axetil" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Cefuroxime axetil" "Table 2E" 4 16 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Cefuroxime axetil" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Cefuroxime axetil" "Table 2C" 4 32 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Cefuroxime axetil" "Table 2G" "30ug" FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Cefuroxime axetil" "Table 2G" 1 4 FALSE +"CLSI 2014" "DISK" "Aeromonas" "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2014" "MIC" "Aeromonas" "Cefuroxime" "M45 Table 2" 8 32 FALSE +"CLSI 2014" "DISK" "Oral" "Haemophilus" "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2014" "MIC" "Oral" "Haemophilus" "Cefuroxime" "Table 2E" 4 16 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Cefuroxime" "Table 2E" 4 16 FALSE +"CLSI 2014" "MIC" "Moraxella catarrhalis" "Cefuroxime" "M45 Table 12" 4 16 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" "Cefuroxime" "Table 2F" "30ug" 31 25 FALSE +"CLSI 2014" "MIC" "Neisseria gonorrhoeae" "Cefuroxime" "Table 2F" 1 4 FALSE +"CLSI 2014" "DISK" "Plesiomonas" "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2014" "MIC" "Plesiomonas" "Cefuroxime" "M45 Table 2" 8 32 FALSE +"CLSI 2014" "DISK" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2014" "DISK" "Parenteral" "Staphylococcus" "Cefuroxime" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2014" "DISK" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2014" "MIC" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" 4 32 FALSE +"CLSI 2014" "MIC" "Intravenous" "Staphylococcus" "Cefuroxime" "Table 2C" 8 32 FALSE +"CLSI 2014" "MIC" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" 4 32 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Cefuroxime" "Table 2H-1" "30ug" FALSE +"CLSI 2014" "MIC" "Streptococcus" "Cefuroxime" "Table 2H-1" FALSE +"CLSI 2014" "DISK" "Oral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" "30ug" FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" "30ug" FALSE +"CLSI 2014" "MIC" "Oral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" 1 4 FALSE +"CLSI 2014" "MIC" "Parenteral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" 0.5 2 FALSE +"CLSI 2014" "MIC" "Oral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" 1 4 FALSE +"CLSI 2014" "DISK" "Urine" "Enterobacteriaceae" "Cefazolin" "Table 2A" 15 14 FALSE +"CLSI 2014" "MIC" "Urine" "Enterobacteriaceae" "Cefazolin" "Table 2A" 16 32 FALSE +"CLSI 2014" "MIC" "Aeromonas" "Cefazolin" "M45 Table 2" 1 4 FALSE +"CLSI 2014" "MIC" "Bacillus" "Cefazolin" "M45 Table 3" 8 16 FALSE +"CLSI 2014" "MIC" "Bacillus anthracis" "Cefazolin" "M45 Table 16" FALSE +"CLSI 2014" "MIC" "Plesiomonas" "Cefazolin" "M45 Table 2" 1 4 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Cefazolin" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Cefazolin" "Table 2C" 8 32 FALSE +"CLSI 2014" "MIC" "Anaerosalibacter" "Ceftizoxime" "Table 2J" 32 128 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Ceftizoxime" "Table 2E" "30ug" 26 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Ceftizoxime" "Table 2E" 2 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" "Ceftizoxime" "Table 2F" "30ug" 38 FALSE +"CLSI 2014" "MIC" "Neisseria gonorrhoeae" "Ceftizoxime" "Table 2F" 0.5 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Ceftizoxime" "Table 2C" "30ug" 20 14 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Ceftizoxime" "Table 2C" 8 64 FALSE +"CLSI 2014" "DISK" "Enterococcus" "Daptomycin" "Table 2D" "30ug" FALSE +"CLSI 2014" "MIC" "Enterococcus" "Daptomycin" "Table 2D" 4 FALSE +"CLSI 2014" "MIC" "Lactobacillus" "Daptomycin" "M45 Table 9" 4 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Daptomycin" "Table 2C" "30ug" FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Daptomycin" "Table 2C" 1 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Daptomycin" "Table 2H-1" "30ug" 16 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Daptomycin" "Table 2H-1" FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Daptomycin" "Table 2G" "30ug" FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" "Daptomycin" "Table 2H-2" "30ug" FALSE +"CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Daptomycin" "Table 2H-2" 1 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Dirithromycin" "Table 2C" "15ug" 19 15 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Dirithromycin" "Table 2C" 2 8 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Dirithromycin" "Table 2H-1" "15ug" 18 13 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Dirithromycin" "Table 2H-1" 0.5 2 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Dirithromycin" "Table 2G" "15ug" 18 13 FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Dirithromycin" "Table 2G" 0.5 2 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" "Dirithromycin" "Table 2H-2" "15ug" 18 13 FALSE +"CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Dirithromycin" "Table 2H-2" 0.5 2 FALSE +"CLSI 2014" "DISK" "Acinetobacter" "Doripenem" "Table 2B-2" 18 14 FALSE +"CLSI 2014" "MIC" "Acinetobacter" "Doripenem" "Table 2B-2" 2 8 FALSE +"CLSI 2014" "MIC" "Anaerosalibacter" "Doripenem" "Table 2J" 2 8 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Doripenem" "Table 2E" "10ug" 16 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Doripenem" "Table 2E" 1 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" "Doripenem" "Table 2B-1" "10ug" 19 15 FALSE +"CLSI 2014" "MIC" "Pseudomonas aeruginosa" "Doripenem" "Table 2B-1" 2 8 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Doripenem" "Table 2C" "10ug" 30 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Doripenem" "Table 2C" 0.5 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Doripenem" "Table 2H-1" "10ug" FALSE +"CLSI 2014" "MIC" "Streptococcus" "Doripenem" "Table 2H-1" 0.125 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Doripenem" "Table 2G" "10ug" FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Doripenem" "Table 2G" 1 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" "Doripenem" "Table 2H-2" "10ug" FALSE +"CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Doripenem" "Table 2H-2" 1 FALSE +"CLSI 2014" "DISK" "Acinetobacter" "Doxycycline" "Table 2B-2" "30ug" 13 9 FALSE +"CLSI 2014" "MIC" "Acinetobacter" "Doxycycline" "Table 2B-2" 4 16 FALSE +"CLSI 2014" "MIC" "Bacillus anthracis" "Doxycycline" "M45 Table 16" 1 FALSE +"CLSI 2014" "MIC" "Brucella" "Doxycycline" "M45 Table 16" 1 FALSE +"CLSI 2014" "MIC" "Burkholderia mallei" "Doxycycline" "M45 Table 16" 4 16 FALSE +"CLSI 2014" "MIC" "Burkholderia pseudomallei" "Doxycycline" "M45 Table 16" 4 16 FALSE +"CLSI 2014" "MIC" "Campylobacter" "Doxycycline" "M45 Table 3" 2 8 FALSE +"CLSI 2014" "DISK" "Enterococcus" "Doxycycline" "Table 2D" "30ug" 16 12 FALSE +"CLSI 2014" "MIC" "Enterococcus" "Doxycycline" "Table 2D" 4 16 FALSE +"CLSI 2014" "MIC" "Francisella tularensis" "Doxycycline" "M45 Table 16" 4 FALSE +"CLSI 2014" "DISK" "Pasteurella" "Doxycycline" "M45 Table 13" "30ug" 23 FALSE +"CLSI 2014" "MIC" "Pasteurella" "Doxycycline" "M45 Table 13" 0.5 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Doxycycline" "Table 2C" "30ug" 16 12 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Doxycycline" "Table 2C" 4 16 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Doxycycline" "Table 2G" "30ug" 28 24 FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Doxycycline" "Table 2G" 0.25 1 FALSE +"CLSI 2014" "MIC" "Vibrio cholerae" "Doxycycline" "M45 Table 14" "30ug" 4 16 FALSE +"CLSI 2014" "MIC" "Yersinia pestis" "Doxycycline" "M45 Table 16" 4 16 FALSE +"CLSI 2014" "MIC" "Canine, feline" "Alloscardovia" "Enrofloxacin" "Vet Table" 0.5 4 FALSE +"CLSI 2014" "DISK" "Histophilus somni" "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2014" "MIC" "Histophilus somni" "Enrofloxacin" "Vet Table" 0.25 2 FALSE +"CLSI 2014" "DISK" "Providencia heimbachae" "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2014" "DISK" "Pasteurella multocida" "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" "Enoxacin" "Table 2F" "10ug" 36 31 FALSE +"CLSI 2014" "MIC" "Neisseria gonorrhoeae" "Enoxacin" "Table 2F" 0.5 2 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Enoxacin" "Table 2C" "10ug" 18 14 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Enoxacin" "Table 2C" 2 8 FALSE +"CLSI 2014" "MIC" "Bacillus" "Erythromycin" "M45 Table 3" 0.5 8 FALSE +"CLSI 2014" "MIC" "Bacillus anthracis" "Erythromycin" "M45 Table 16" FALSE +"CLSI 2014" "MIC" "Campylobacter" "Erythromycin" "M45 Table 3" 8 32 FALSE +"CLSI 2014" "DISK" "Enterococcus" "Erythromycin" "Table 2D" "15ug" 23 13 FALSE +"CLSI 2014" "MIC" "Enterococcus" "Erythromycin" "Table 2D" 0.5 8 FALSE +"CLSI 2014" "MIC" "Erysipelothrix rhusiopathiae" "Erythromycin" "M45 Table 6" 0.25 1 FALSE +"CLSI 2014" "MIC" "Granulicatella" "Erythromycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2014" "MIC" "Lactobacillus" "Erythromycin" "M45 Table 9" 0.5 8 FALSE +"CLSI 2014" "DISK" "Moraxella catarrhalis" "Erythromycin" "M45 Table 12" "15ug" 21 FALSE +"CLSI 2014" "MIC" "Moraxella catarrhalis" "Erythromycin" "M45 Table 12" 2 FALSE +"CLSI 2014" "DISK" "Pasteurella" "Erythromycin" "M45 Table 13" "15ug" 27 24 FALSE +"CLSI 2014" "MIC" "Pasteurella" "Erythromycin" "M45 Table 13" 0.5 2 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Erythromycin" "Table 2C" "15ug" 23 13 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Erythromycin" "Table 2C" 0.5 8 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Erythromycin" "Table 2H-1" "15ug" 21 15 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Erythromycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Erythromycin" "Table 2H-1" 0.25 1 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Erythromycin" "Table 2G" "15ug" 21 15 FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Erythromycin" "Table 2G" 0.25 1 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" "Erythromycin" "Table 2H-2" "15ug" 21 15 FALSE +"CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Erythromycin" "Table 2H-2" 0.25 1 FALSE +"CLSI 2014" "DISK" "Acinetobacter" "Ertapenem" "Table 2B-2" "10ug" FALSE +"CLSI 2014" "MIC" "Acinetobacter" "Ertapenem" "Table 2B-2" FALSE +"CLSI 2014" "DISK" "Aeromonas" "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE +"CLSI 2014" "MIC" "Aeromonas" "Ertapenem" "M45 Table 2" 2 8 FALSE +"CLSI 2014" "MIC" "Anaerosalibacter" "Ertapenem" "Table 2J" 4 16 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Ertapenem" "Table 2E" "10ug" 19 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Ertapenem" "Table 2E" 0.5 FALSE +"CLSI 2014" "DISK" "Plesiomonas" "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE +"CLSI 2014" "MIC" "Plesiomonas" "Ertapenem" "M45 Table 2" 2 8 FALSE +"CLSI 2014" "DISK" "Pseudomonas" "Ertapenem" "10ug" FALSE +"CLSI 2014" "MIC" "Pseudomonas" "Ertapenem" FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Ertapenem" "Table 2C" "10ug" 19 15 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Ertapenem" "Table 2C" 2 8 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Ertapenem" "Table 2H-1" "10ug" FALSE +"CLSI 2014" "MIC" "Streptococcus" "Ertapenem" "Table 2H-1" 1 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Ertapenem" "Table 2G" "10ug" FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Ertapenem" "Table 2G" 1 4 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" "Ertapenem" "Table 2H-2" "10ug" FALSE +"CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Ertapenem" "Table 2H-2" 1 FALSE +"CLSI 2014" "MIC" "Abiotrophia" "Cefepime" "M45 Table 1" 1 4 FALSE +"CLSI 2014" "DISK" "Acinetobacter" "Cefepime" "Table 2B-2" "30ug" 18 14 FALSE +"CLSI 2014" "MIC" "Acinetobacter" "Cefepime" "Table 2B-2" 8 32 FALSE +"CLSI 2014" "DISK" "Aeromonas" "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2014" "MIC" "Aeromonas" "Cefepime" "M45 Table 2" 8 32 FALSE +"CLSI 2014" "MIC" "Erysipelothrix rhusiopathiae" "Cefepime" "M45 Table 6" 1 FALSE +"CLSI 2014" "MIC" "Granulicatella" "Cefepime" "M45 Table 1" 1 4 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Cefepime" "Table 2E" "30ug" 26 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Cefepime" "Table 2E" 2 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" "Cefepime" "Table 2F" "30ug" 31 FALSE +"CLSI 2014" "MIC" "Neisseria gonorrhoeae" "Cefepime" "Table 2F" 0.5 FALSE +"CLSI 2014" "DISK" "Plesiomonas" "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2014" "MIC" "Plesiomonas" "Cefepime" "M45 Table 2" 8 32 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" "Cefepime" "Table 2B-1" "30ug" 18 14 FALSE +"CLSI 2014" "MIC" "Pseudomonas aeruginosa" "Cefepime" "Table 2B-1" 8 32 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Cefepime" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Cefepime" "Table 2C" 8 32 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Cefepime" "Table 2H-1" "30ug" 24 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Cefepime" "M45 Table 1" 1 4 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Cefepime" "Table 2H-1" 0.5 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Cefepime" "Table 2G" "30ug" FALSE +"CLSI 2014" "MIC" "Meningitis" "Streptococcus pneumoniae" "Cefepime" "Table 2G" 0.5 2 FALSE +"CLSI 2014" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Cefepime" "Table 2G" 1 4 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" "Cefepime" "Table 2H-2" "30ug" 24 21 FALSE +"CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Cefepime" "Table 2H-2" 1 4 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Fleroxacin" "Table 2E" "5ug" 19 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Fleroxacin" "Table 2E" 2 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" "Fleroxacin" "Table 2F" "5ug" 35 28 FALSE +"CLSI 2014" "MIC" "Neisseria gonorrhoeae" "Fleroxacin" "Table 2F" 0.25 1 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Fleroxacin" "Table 2C" "5ug" 19 15 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Fleroxacin" "Table 2C" 2 8 FALSE +"CLSI 2014" "DISK" "Enterococcus" "Fosfomycin" "Table 2D" "200ug" 16 12 FALSE +"CLSI 2014" "MIC" "Enterococcus" "Fosfomycin" "Table 2D" 64 256 FALSE +"CLSI 2014" "DISK" "Aeromonas" "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2014" "MIC" "Aeromonas" "Cefoxitin" "M45 Table 2" 8 32 FALSE +"CLSI 2014" "MIC" "Anaerosalibacter" "Cefoxitin" "Table 2J" 16 64 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" "Cefoxitin" "Table 2F" "30ug" 28 23 FALSE +"CLSI 2014" "MIC" "Neisseria gonorrhoeae" "Cefoxitin" "Table 2F" 2 8 FALSE +"CLSI 2014" "DISK" "Plesiomonas" "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2014" "MIC" "Plesiomonas" "Cefoxitin" "M45 Table 2" 8 32 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Cefoxitin" "Table 2C" "30ug" 25 24 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Cefoxitin" "Table 2C" 4 8 FALSE +"CLSI 2014" "DISK" "Staphylococcus aureus" "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE +"CLSI 2014" "MIC" "Staphylococcus aureus" "Cefoxitin" "Table 2C" 4 8 FALSE +"CLSI 2014" "DISK" "Staphylococcus lugdunensis" "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE +"CLSI 2014" "MIC" "Staphylococcus lugdunensis" "Cefoxitin" "Table 2C" 4 8 FALSE +"CLSI 2014" "MIC" "Abiotrophia" "Gatifloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2014" "DISK" "Acinetobacter" "Gatifloxacin" "Table 2B-2" "5ug" 18 14 FALSE +"CLSI 2014" "MIC" "Acinetobacter" "Gatifloxacin" "Table 2B-2" 2 8 FALSE +"CLSI 2014" "DISK" "Enterococcus" "Gatifloxacin" "Table 2D" "5ug" 18 14 FALSE +"CLSI 2014" "MIC" "Enterococcus" "Gatifloxacin" "Table 2D" 2 8 FALSE +"CLSI 2014" "MIC" "Granulicatella" "Gatifloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Gatifloxacin" "Table 2E" "5ug" 18 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Gatifloxacin" "Table 2E" 1 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" "Gatifloxacin" "Table 2F" "5ug" 38 33 FALSE +"CLSI 2014" "MIC" "Neisseria gonorrhoeae" "Gatifloxacin" "Table 2F" 0.125 0.5 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" "Gatifloxacin" "Table 2B-1" "5ug" 18 14 FALSE +"CLSI 2014" "MIC" "Pseudomonas aeruginosa" "Gatifloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Gatifloxacin" "Table 2C" "10ug" 23 19 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Gatifloxacin" "Table 2C" 0.5 2 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Gatifloxacin" "Table 2H-1" "5ug" 21 17 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Gatifloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Gatifloxacin" "Table 2H-1" 1 4 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Gatifloxacin" "Table 2G" "5ug" 21 17 FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Gatifloxacin" "Table 2G" 1 4 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" "Gatifloxacin" "Table 2H-2" "5ug" 21 17 FALSE +"CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Gatifloxacin" "Table 2H-2" 1 4 FALSE +"CLSI 2014" "DISK" "Enterococcus" "Gentamicin-high" "Table 2D" "120ug" 10 6 FALSE +"CLSI 2014" "MIC" "Enterococcus" "Gentamicin-high" "Table 2D" 512 512 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Gemifloxacin" "Table 2E" "5ug" 18 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Gemifloxacin" "Table 2E" 0.125 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Gemifloxacin" "Table 2H-1" "5ug" FALSE +"CLSI 2014" "MIC" "Streptococcus" "Gemifloxacin" "Table 2H-1" FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Gemifloxacin" "Table 2G" "5ug" 23 19 FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Gemifloxacin" "Table 2G" 0.125 0.5 FALSE +"CLSI 2014" "DISK" "Acinetobacter" "Gentamicin" "Table 2B-2" "10ug" 15 12 FALSE +"CLSI 2014" "MIC" "Acinetobacter" "Gentamicin" "Table 2B-2" 4 16 FALSE +"CLSI 2014" "DISK" "Aeromonas" "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE +"CLSI 2014" "MIC" "Aeromonas" "Gentamicin" "M45 Table 2" 4 16 FALSE +"CLSI 2014" "MIC" "Bacillus" "Gentamicin" "M45 Table 3" 4 16 FALSE +"CLSI 2014" "MIC" "Bacillus anthracis" "Gentamicin" "M45 Table 16" FALSE +"CLSI 2014" "MIC" "Brucella" "Gentamicin" "M45 Table 16" 4 FALSE +"CLSI 2014" "MIC" "Enterococcus" "Gentamicin" "Table 2D" 512 512 FALSE +"CLSI 2014" "MIC" "Francisella tularensis" "Gentamicin" "M45 Table 16" 4 FALSE +"CLSI 2014" "MIC" "Leuconostoc" "Gentamicin" "M45 Table 10" 4 16 FALSE +"CLSI 2014" "MIC" "Lactobacillus" "Gentamicin" "M45 Table 9" 4 16 FALSE +"CLSI 2014" "MIC" "Pediococcus" "Gentamicin" "M45 Table 14" 4 16 FALSE +"CLSI 2014" "DISK" "Plesiomonas" "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE +"CLSI 2014" "MIC" "Plesiomonas" "Gentamicin" "M45 Table 2" 4 16 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" "Gentamicin" "Table 2B-1" "10ug" 15 12 FALSE +"CLSI 2014" "MIC" "Pseudomonas aeruginosa" "Gentamicin" "Table 2B-1" 4 16 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Gentamicin" "Table 2C" "10ug" 15 12 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Gentamicin" "Table 2C" 4 16 FALSE +"CLSI 2014" "MIC" "Yersinia pestis" "Gentamicin" "M45 Table 16" 4 16 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Grepafloxacin" "Table 2E" "5ug" 24 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Grepafloxacin" "Table 2E" 0.5 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" "Grepafloxacin" "Table 2F" "5ug" 37 27 FALSE +"CLSI 2014" "MIC" "Neisseria gonorrhoeae" "Grepafloxacin" "Table 2F" 0.064 1 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Grepafloxacin" "Table 2C" "5ug" 18 14 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Grepafloxacin" "Table 2C" 1 4 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Grepafloxacin" "Table 2H-1" "5ug" 19 15 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Grepafloxacin" "Table 2H-1" 0.5 2 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Grepafloxacin" "Table 2G" "5ug" 19 15 FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Grepafloxacin" "Table 2G" 0.5 2 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" "Grepafloxacin" "Table 2H-2" "5ug" 19 15 FALSE +"CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Grepafloxacin" "Table 2H-2" 0.5 2 FALSE +"CLSI 2014" "MIC" "Abiotrophia" "Imipenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2014" "DISK" "Acinetobacter" "Imipenem" "Table 2B-2" "10ug" 22 18 FALSE +"CLSI 2014" "MIC" "Acinetobacter" "Imipenem" "Table 2B-2" 2 8 FALSE +"CLSI 2014" "DISK" "Aeromonas" "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2014" "MIC" "Aeromonas" "Imipenem" "M45 Table 2" 4 16 FALSE +"CLSI 2014" "MIC" "Aggregatibacter" "Imipenem" "M45 Table 7" 4 16 FALSE +"CLSI 2014" "MIC" "Anaerosalibacter" "Imipenem" "Table 2J" 4 16 FALSE +"CLSI 2014" "MIC" "Bacillus" "Imipenem" "M45 Table 3" 4 16 FALSE +"CLSI 2014" "MIC" "Bacillus anthracis" "Imipenem" "M45 Table 16" FALSE +"CLSI 2014" "MIC" "Burkholderia mallei" "Imipenem" "M45 Table 16" 4 16 FALSE +"CLSI 2014" "MIC" "Burkholderia pseudomallei" "Imipenem" "M45 Table 16" 4 16 FALSE +"CLSI 2014" "MIC" "Cardiobacterium" "Imipenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2014" "MIC" "Eikenella" "Imipenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2014" "MIC" "Erysipelothrix rhusiopathiae" "Imipenem" "M45 Table 6" 0.5 FALSE +"CLSI 2014" "MIC" "Granulicatella" "Imipenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Imipenem" "Table 2E" "10ug" 16 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Imipenem" "Table 2E" 4 FALSE +"CLSI 2014" "MIC" "Kingella" "Imipenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2014" "MIC" "Lactobacillus" "Imipenem" "M45 Table 9" 0.5 2 FALSE +"CLSI 2014" "MIC" "Pediococcus" "Imipenem" "M45 Table 14" 0.5 FALSE +"CLSI 2014" "DISK" "Plesiomonas" "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2014" "MIC" "Plesiomonas" "Imipenem" "M45 Table 2" 4 16 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" "Imipenem" "Table 2B-1" "10ug" 19 15 FALSE +"CLSI 2014" "MIC" "Pseudomonas aeruginosa" "Imipenem" "Table 2B-1" 2 8 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Imipenem" "Table 2C" "10ug" 16 13 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Imipenem" "Table 2C" 4 16 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Imipenem" "Table 2H-1" "10ug" FALSE +"CLSI 2014" "MIC" "Streptococcus" "Imipenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Imipenem" "Table 2H-1" FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Imipenem" "Table 2G" "10ug" FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Imipenem" "Table 2G" 0.125 1 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Kanamycin" "Table 2C" "30ug" 18 13 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Kanamycin" "Table 2C" 16 64 FALSE +"CLSI 2014" "DISK" "Enterococcus" "Linezolid" "Table 2D" "30ug" 23 20 FALSE +"CLSI 2014" "MIC" "Enterococcus" "Linezolid" "Table 2D" 2 8 FALSE +"CLSI 2014" "MIC" "Lactobacillus" "Linezolid" "M45 Table 9" 4 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Linezolid" "Table 2C" "30ug" 21 20 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Linezolid" "Table 2C" 4 8 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Linezolid" "Table 2H-1" "30ug" 21 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Linezolid" "Table 2H-1" 2 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Linezolid" "Table 2G" "30ug" 21 FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Linezolid" "Table 2G" 2 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" "Linezolid" "Table 2H-2" "30ug" 21 FALSE +"CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Linezolid" "Table 2H-2" 2 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Lomefloxacin" "Table 2E" "10ug" 22 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Lomefloxacin" "Table 2E" 2 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" "Lomefloxacin" "Table 2F" "10ug" 38 26 FALSE +"CLSI 2014" "MIC" "Neisseria gonorrhoeae" "Lomefloxacin" "Table 2F" 0.125 2 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" "Lomefloxacin" "Table 2B-1" "10ug" 22 18 FALSE +"CLSI 2014" "MIC" "Pseudomonas aeruginosa" "Lomefloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Lomefloxacin" "Table 2C" "10ug" 22 18 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Lomefloxacin" "Table 2C" 2 8 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Loracarbef" "Table 2E" "30ug" 19 15 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Loracarbef" "Table 2E" 8 32 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Loracarbef" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Loracarbef" "Table 2C" 8 32 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Loracarbef" "Table 2G" "30ug" FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Loracarbef" "Table 2G" 2 8 FALSE +"CLSI 2014" "MIC" "Anaerosalibacter" "Latamoxef" "Table 2J" 2 8 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Latamoxef" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Latamoxef" "Table 2C" 8 64 FALSE +"CLSI 2014" "MIC" "Abiotrophia" "Levofloxacin" "M45 Table 1" 2 8 FALSE +"CLSI 2014" "DISK" "Acinetobacter" "Levofloxacin" "Table 2B-2" "5ug" 17 13 FALSE +"CLSI 2014" "MIC" "Acinetobacter" "Levofloxacin" "Table 2B-2" 2 8 FALSE +"CLSI 2014" "DISK" "Aeromonas" "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE +"CLSI 2014" "MIC" "Aeromonas" "Levofloxacin" "M45 Table 2" 2 8 FALSE +"CLSI 2014" "MIC" "Aggregatibacter" "Levofloxacin" "M45 Table 7" 2 8 FALSE +"CLSI 2014" "MIC" "Bacillus" "Levofloxacin" "M45 Table 3" 2 8 FALSE +"CLSI 2014" "MIC" "Bacillus anthracis" "Levofloxacin" "M45 Table 16" 0.25 FALSE +"CLSI 2014" "DISK" "Burkholderia cepacia" "Levofloxacin" "Table 2B-3" "5ug" FALSE +"CLSI 2014" "MIC" "Burkholderia cepacia" "Levofloxacin" "Table 2B-3" 2 8 FALSE +"CLSI 2014" "MIC" "Cardiobacterium" "Levofloxacin" "M45 Table 7" 2 8 FALSE +"CLSI 2014" "MIC" "Eikenella" "Levofloxacin" "M45 Table 7" 2 8 FALSE +"CLSI 2014" "DISK" "Enterococcus" "Levofloxacin" "Table 2D" "5ug" 17 13 FALSE +"CLSI 2014" "MIC" "Enterococcus" "Levofloxacin" "Table 2D" 2 8 FALSE +"CLSI 2014" "MIC" "Erysipelothrix rhusiopathiae" "Levofloxacin" "M45 Table 6" 2 FALSE +"CLSI 2014" "MIC" "Francisella tularensis" "Levofloxacin" "M45 Table 16" 0.5 FALSE +"CLSI 2014" "MIC" "Granulicatella" "Levofloxacin" "M45 Table 1" 2 8 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Levofloxacin" "Table 2E" "5ug" 17 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Levofloxacin" "Table 2E" 2 FALSE +"CLSI 2014" "MIC" "Kingella" "Levofloxacin" "M45 Table 7" 2 8 FALSE +"CLSI 2014" "MIC" "Moraxella catarrhalis" "Levofloxacin" "M45 Table 12" 2 FALSE +"CLSI 2014" "DISK" "Neisseria meningitidis" "Levofloxacin" "Table 2I" "5ug" FALSE +"CLSI 2014" "MIC" "Neisseria meningitidis" "Levofloxacin" "Table 2I" 0.032 0.12 FALSE +"CLSI 2014" "DISK" "Plesiomonas" "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE +"CLSI 2014" "MIC" "Plesiomonas" "Levofloxacin" "M45 Table 2" 2 8 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" "Levofloxacin" "Table 2B-1" "5ug" 17 13 FALSE +"CLSI 2014" "MIC" "Pseudomonas aeruginosa" "Levofloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2014" "DISK" "Pasteurella" "Levofloxacin" "M45 Table 13" "5ug" 28 FALSE +"CLSI 2014" "MIC" "Pasteurella" "Levofloxacin" "M45 Table 13" 0.064 FALSE +"CLSI 2014" "MIC" "Salmonella" "Levofloxacin" "Table 2A" 0.125 2 FALSE +"CLSI 2014" "MIC" "Extraintestinal" "Salmonella" "Levofloxacin" "Table 2A" 0.125 2 FALSE +"CLSI 2014" "DISK" "Stenotrophomonas maltophilia" "Levofloxacin" "Table 2B-4" "75ug" 17 13 FALSE +"CLSI 2014" "MIC" "Stenotrophomonas maltophilia" "Levofloxacin" "Table 2B-4" 2 8 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Levofloxacin" "Table 2C" "10ug" 19 15 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Levofloxacin" "Table 2C" 1 4 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Levofloxacin" "Table 2H-1" "5ug" 17 13 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Levofloxacin" "M45 Table 1" 2 8 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Levofloxacin" "Table 2H-1" 2 8 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Levofloxacin" "Table 2G" "5ug" 17 13 FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Levofloxacin" "Table 2G" 2 8 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" "Levofloxacin" "Table 2H-2" "5ug" 17 13 FALSE +"CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Levofloxacin" "Table 2H-2" 2 8 FALSE +"CLSI 2014" "MIC" "Yersinia pestis" "Levofloxacin" "M45 Table 16" 0.25 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Cefamandole" "Table 2E" "30ug" FALSE +"CLSI 2014" "MIC" "Haemophilus" "Cefamandole" "Table 2E" 4 16 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Cefamandole" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Cefamandole" "Table 2C" 8 32 FALSE +"CLSI 2014" "MIC" "Abiotrophia" "Meropenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2014" "DISK" "Acinetobacter" "Meropenem" "Table 2B-2" "10ug" 18 14 FALSE +"CLSI 2014" "MIC" "Acinetobacter" "Meropenem" "Table 2B-2" 2 8 FALSE +"CLSI 2014" "DISK" "Aeromonas" "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2014" "MIC" "Aeromonas" "Meropenem" "M45 Table 2" 4 16 FALSE +"CLSI 2014" "MIC" "Aggregatibacter" "Meropenem" "M45 Table 7" 4 16 FALSE +"CLSI 2014" "MIC" "Anaerosalibacter" "Meropenem" "Table 2J" 4 16 FALSE +"CLSI 2014" "DISK" "Burkholderia cepacia" "Meropenem" "Table 2B-3" "10ug" 20 15 FALSE +"CLSI 2014" "MIC" "Burkholderia cepacia" "Meropenem" "Table 2B-3" 4 16 FALSE +"CLSI 2014" "MIC" "Cardiobacterium" "Meropenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2014" "MIC" "Eikenella" "Meropenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2014" "MIC" "Erysipelothrix rhusiopathiae" "Meropenem" "M45 Table 6" 0.5 FALSE +"CLSI 2014" "MIC" "Granulicatella" "Meropenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Meropenem" "Table 2E" "10ug" 20 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Meropenem" "Table 2E" 0.5 FALSE +"CLSI 2014" "MIC" "Kingella" "Meropenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2014" "DISK" "Neisseria meningitidis" "Meropenem" "Table 2I" "10ug" 30 FALSE +"CLSI 2014" "MIC" "Neisseria meningitidis" "Meropenem" "Table 2I" 0.25 FALSE +"CLSI 2014" "DISK" "Plesiomonas" "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2014" "MIC" "Plesiomonas" "Meropenem" "M45 Table 2" 4 16 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" "Meropenem" "Table 2B-1" "10ug" 19 15 FALSE +"CLSI 2014" "MIC" "Pseudomonas aeruginosa" "Meropenem" "Table 2B-1" 2 8 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Meropenem" "Table 2C" "10ug" 15 13 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Meropenem" "Table 2C" 4 16 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Meropenem" "Table 2H-1" "10ug" FALSE +"CLSI 2014" "MIC" "Streptococcus" "Meropenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Meropenem" "Table 2H-1" 0.5 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Meropenem" "Table 2G" "10ug" FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Meropenem" "Table 2G" 0.25 1 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" "Meropenem" "Table 2H-2" "10ug" FALSE +"CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Meropenem" "Table 2H-2" 0.5 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Methicillin" "Table 2C" "5ug" 14 9 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Methicillin" "Table 2C" 8 16 FALSE +"CLSI 2014" "DISK" "Acinetobacter" "Mezlocillin" "Table 2B-2" "75ug" 21 17 FALSE +"CLSI 2014" "MIC" "Acinetobacter" "Mezlocillin" "Table 2B-2" 16 128 FALSE +"CLSI 2014" "MIC" "Anaerosalibacter" "Mezlocillin" "Table 2J" 32 128 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Moxifloxacin" "Table 2E" "5ug" 18 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Moxifloxacin" "Table 2E" 1 FALSE +"CLSI 2014" "DISK" "Pasteurella" "Moxifloxacin" "M45 Table 13" "5ug" 28 FALSE +"CLSI 2014" "MIC" "Pasteurella" "Moxifloxacin" "M45 Table 13" 0.064 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Moxifloxacin" "Table 2C" "5ug" 24 20 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Moxifloxacin" "Table 2C" 0.5 2 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Moxifloxacin" "Table 2H-1" "5ug" FALSE +"CLSI 2014" "MIC" "Streptococcus" "Moxifloxacin" "Table 2H-1" FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Moxifloxacin" "Table 2G" "5ug" 18 14 FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Moxifloxacin" "Table 2G" 1 4 FALSE +"CLSI 2014" "DISK" "Acinetobacter" "Minocycline" "Table 2B-2" "30ug" 16 12 FALSE +"CLSI 2014" "MIC" "Acinetobacter" "Minocycline" "Table 2B-2" 4 16 FALSE +"CLSI 2014" "DISK" "Burkholderia cepacia" "Minocycline" "Table 2B-3" "30ug" 19 14 FALSE +"CLSI 2014" "MIC" "Burkholderia cepacia" "Minocycline" "Table 2B-3" 4 16 FALSE +"CLSI 2014" "DISK" "Enterococcus" "Minocycline" "Table 2D" "30ug" 19 14 FALSE +"CLSI 2014" "MIC" "Enterococcus" "Minocycline" "Table 2D" 4 16 FALSE +"CLSI 2014" "MIC" "Leuconostoc" "Minocycline" "M45 Table 10" 4 16 FALSE +"CLSI 2014" "DISK" "Neisseria meningitidis" "Minocycline" "Table 2I" "30ug" 26 FALSE +"CLSI 2014" "MIC" "Neisseria meningitidis" "Minocycline" "Table 2I" 2 FALSE +"CLSI 2014" "DISK" "Stenotrophomonas maltophilia" "Minocycline" "Table 2B-4" "30ug" 19 14 FALSE +"CLSI 2014" "MIC" "Stenotrophomonas maltophilia" "Minocycline" "Table 2B-4" 4 16 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Minocycline" "Table 2C" "30ug" 19 14 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Minocycline" "Table 2C" 4 16 FALSE +"CLSI 2014" "MIC" "Anaerosalibacter" "Metronidazole" "Table 2J" 8 32 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Nafcillin" "Table 2C" "1ug" 13 10 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Nafcillin" "Table 2C" 2 4 FALSE +"CLSI 2014" "DISK" "Neisseria meningitidis" "Nalidixic acid" "Table 2I" "30ug" 26 25 FALSE +"CLSI 2014" "MIC" "Neisseria meningitidis" "Nalidixic acid" "Table 2I" 4 8 FALSE +"CLSI 2014" "DISK" "Acinetobacter" "Netilmicin" "Table 2B-2" "30ug" FALSE +"CLSI 2014" "MIC" "Acinetobacter" "Netilmicin" "Table 2B-2" 8 32 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" "Netilmicin" "Table 2B-1" "30ug" 15 12 FALSE +"CLSI 2014" "MIC" "Pseudomonas aeruginosa" "Netilmicin" "Table 2B-1" 8 32 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Netilmicin" "Table 2C" "30ug" 15 12 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Netilmicin" "Table 2C" 8 32 FALSE +"CLSI 2014" "DISK" "Enterococcus" "Nitrofurantoin" "Table 2D" "300ug" 17 14 FALSE +"CLSI 2014" "MIC" "Enterococcus" "Nitrofurantoin" "Table 2D" 32 128 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Nitrofurantoin" "Table 2C" "300ug" 17 14 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Nitrofurantoin" "Table 2C" 32 128 FALSE +"CLSI 2014" "DISK" "Enterococcus" "Norfloxacin" "Table 2D" "10ug" 17 12 FALSE +"CLSI 2014" "MIC" "Enterococcus" "Norfloxacin" "Table 2D" 4 16 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" "Norfloxacin" "Table 2B-1" "10ug" 17 12 FALSE +"CLSI 2014" "MIC" "Pseudomonas aeruginosa" "Norfloxacin" "Table 2B-1" 4 16 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Norfloxacin" "Table 2C" "10ug" 17 12 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Norfloxacin" "Table 2C" 4 16 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Norfloxacin" "Table 2G" "5ug" FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Norfloxacin" "Table 2G" FALSE +"CLSI 2014" "DISK" "Haemophilus" "Ofloxacin" "Table 2E" "5ug" 16 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Ofloxacin" "Table 2E" 2 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" "Ofloxacin" "Table 2F" "5ug" 31 24 FALSE +"CLSI 2014" "MIC" "Neisseria gonorrhoeae" "Ofloxacin" "Table 2F" 0.25 2 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" "Ofloxacin" "Table 2B-1" "5ug" 16 12 FALSE +"CLSI 2014" "MIC" "Pseudomonas aeruginosa" "Ofloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2014" "MIC" "Salmonella" "Ofloxacin" "Table 2A" 0.125 2 FALSE +"CLSI 2014" "MIC" "Extraintestinal" "Salmonella" "Ofloxacin" "Table 2A" 0.125 2 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Ofloxacin" "Table 2C" "5ug" 18 14 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Ofloxacin" "Table 2C" 1 4 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Ofloxacin" "Table 2H-1" "5ug" 16 12 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Ofloxacin" "Table 2H-1" 2 8 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Ofloxacin" "Table 2G" "5ug" 16 12 FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Ofloxacin" "Table 2G" 2 8 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" "Ofloxacin" "Table 2H-2" "5ug" 16 12 FALSE +"CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Ofloxacin" "Table 2H-2" 2 8 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Oxacillin" "Table 2C" "1ug" 13 10 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Oxacillin" "Table 2C" 2 4 FALSE +"CLSI 2014" "DISK" "Staphylococcus aureus" "Oxacillin" "Table 2C" "1ug" 13 10 FALSE +"CLSI 2014" "MIC" "Staphylococcus aureus" "Oxacillin" "Table 2C" 2 4 FALSE +"CLSI 2014" "DISK" "Staphylococcus lugdunensis" "Oxacillin" "Table 2C" "1ug" FALSE +"CLSI 2014" "MIC" "Staphylococcus lugdunensis" "Oxacillin" "Table 2C" 2 4 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Oxacillin" "Table 2G" "1ug" 20 FALSE +"CLSI 2014" "MIC" "Abiotrophia" "Penicillin G" "M45 Table 1" 0.125 4 FALSE +"CLSI 2014" "MIC" "Aggregatibacter" "Penicillin G" "M45 Table 7" 1 4 FALSE +"CLSI 2014" "MIC" "Anaerosalibacter" "Penicillin G" "Table 2J" 0.5 2 FALSE +"CLSI 2014" "MIC" "Bacillus" "Penicillin G" "M45 Table 3" 0.125 0.25 FALSE +"CLSI 2014" "MIC" "Bacillus anthracis" "Penicillin G" "M45 Table 16" 0.125 0.25 FALSE +"CLSI 2014" "MIC" "Cardiobacterium" "Penicillin G" "M45 Table 7" 1 4 FALSE +"CLSI 2014" "MIC" "Eikenella" "Penicillin G" "M45 Table 7" 1 4 FALSE +"CLSI 2014" "DISK" "Enterococcus" "Penicillin G" "Table 2D" "10units" 15 14 FALSE +"CLSI 2014" "MIC" "Enterococcus" "Penicillin G" "Table 2D" 8 16 FALSE +"CLSI 2014" "MIC" "Erysipelothrix rhusiopathiae" "Penicillin G" "M45 Table 6" 0.125 FALSE +"CLSI 2014" "MIC" "Granulicatella" "Penicillin G" "M45 Table 1" 0.125 4 FALSE +"CLSI 2014" "MIC" "Kingella" "Penicillin G" "M45 Table 7" 1 4 FALSE +"CLSI 2014" "MIC" "Leuconostoc" "Penicillin G" "M45 Table 10" 8 FALSE +"CLSI 2014" "MIC" "Lactobacillus" "Penicillin G" "M45 Table 9" 8 FALSE +"CLSI 2014" "DISK" "Listeria monocytogenes" "Penicillin G" "M45 Table 11" "10units" FALSE +"CLSI 2014" "MIC" "Listeria monocytogenes" "Penicillin G" "M45 Table 11" 2 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" "Penicillin G" "Table 2F" "10units" 47 26 FALSE +"CLSI 2014" "MIC" "Neisseria gonorrhoeae" "Penicillin G" "Table 2F" 0.064 2 FALSE +"CLSI 2014" "DISK" "Neisseria meningitidis" "Penicillin G" "Table 2I" "10units" FALSE +"CLSI 2014" "MIC" "Neisseria meningitidis" "Penicillin G" "Table 2I" 0.064 0.5 FALSE +"CLSI 2014" "MIC" "Pediococcus" "Penicillin G" "M45 Table 14" 8 FALSE +"CLSI 2014" "DISK" "Pasteurella" "Penicillin G" "M45 Table 13" "10 Units" 25 FALSE +"CLSI 2014" "MIC" "Pasteurella" "Penicillin G" "M45 Table 13" 0.5 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Penicillin G" "Table 2C" "10ug" 29 28 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Penicillin G" "Table 2C" 0.125 0.25 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Penicillin G" "Table 2H-1" "10units" 24 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Penicillin G" "M45 Table 1" 0.125 4 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Penicillin G" "Table 2H-1" 0.125 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" "10units" FALSE +"CLSI 2014" "MIC" "Meningitis" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" 0.064 0.12 FALSE +"CLSI 2014" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" 2 8 FALSE +"CLSI 2014" "MIC" "Oral" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" 0.064 2 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" "Penicillin G" "Table 2H-2" "10units" FALSE +"CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Penicillin G" "Table 2H-2" 0.125 4 FALSE +"CLSI 2014" "DISK" "Acinetobacter" "Piperacillin" "Table 2B-2" "100ug" 21 17 FALSE +"CLSI 2014" "MIC" "Acinetobacter" "Piperacillin" "Table 2B-2" 16 128 FALSE +"CLSI 2014" "MIC" "Anaerosalibacter" "Piperacillin" "Table 2J" 32 128 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" "Piperacillin" "Table 2B-1" "100ug" 21 14 FALSE +"CLSI 2014" "MIC" "Pseudomonas aeruginosa" "Piperacillin" "Table 2B-1" 16 128 FALSE +"CLSI 2014" "DISK" "Acinetobacter" "Polymyxin B" "Table 2B-2" "300ug" FALSE +"CLSI 2014" "MIC" "Acinetobacter" "Polymyxin B" "Table 2B-2" 2 4 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" "Polymyxin B" "Table 2B-1" "300ug" 12 11 FALSE +"CLSI 2014" "MIC" "Pseudomonas aeruginosa" "Polymyxin B" "Table 2B-1" 2 8 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Penicillin V" "Table 2G" "10ug" FALSE +"CLSI 2014" "MIC" "Oral" "Streptococcus pneumoniae" "Penicillin V" "Table 2G" 0.064 2 FALSE +"CLSI 2014" "DISK" "Enterococcus" "Quinupristin/dalfopristin" "Table 2D" "15ug" 19 15 FALSE +"CLSI 2014" "MIC" "Enterococcus" "Quinupristin/dalfopristin" "Table 2D" 1 4 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Quinupristin/dalfopristin" "Table 2C" "15ug" 19 15 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Quinupristin/dalfopristin" "Table 2C" 1 4 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Quinupristin/dalfopristin" "Table 2H-1" "15ug" 19 15 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Quinupristin/dalfopristin" "Table 2H-1" 1 4 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Quinupristin/dalfopristin" "Table 2G" "15ug" 19 15 FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Quinupristin/dalfopristin" "Table 2G" 1 4 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" "Quinupristin/dalfopristin" "Table 2H-2" "15ug" 19 15 FALSE +"CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Quinupristin/dalfopristin" "Table 2H-2" 1 4 FALSE +"CLSI 2014" "MIC" "Aggregatibacter" "Rifampicin" "M45 Table 7" 1 4 FALSE +"CLSI 2014" "MIC" "Bacillus" "Rifampicin" "M45 Table 3" 1 4 FALSE +"CLSI 2014" "MIC" "Bacillus anthracis" "Rifampicin" "M45 Table 16" FALSE +"CLSI 2014" "MIC" "Cardiobacterium" "Rifampicin" "M45 Table 7" 1 4 FALSE +"CLSI 2014" "MIC" "Eikenella" "Rifampicin" "M45 Table 7" 1 4 FALSE +"CLSI 2014" "DISK" "Enterococcus" "Rifampicin" "Table 2D" "5ug" 20 16 FALSE +"CLSI 2014" "MIC" "Enterococcus" "Rifampicin" "Table 2D" 1 4 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Rifampicin" "Table 2E" "5ug" 20 16 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Rifampicin" "Table 2E" 1 4 FALSE +"CLSI 2014" "MIC" "Kingella" "Rifampicin" "M45 Table 7" 1 4 FALSE +"CLSI 2014" "MIC" "Moraxella catarrhalis" "Rifampicin" "M45 Table 12" 1 4 FALSE +"CLSI 2014" "DISK" "Neisseria meningitidis" "Rifampicin" "Table 2I" "5ug" 25 19 FALSE +"CLSI 2014" "MIC" "Neisseria meningitidis" "Rifampicin" "Table 2I" 0.5 2 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Rifampicin" "Table 2C" "5ug" 20 16 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Rifampicin" "Table 2C" 1 4 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Rifampicin" "Table 2H-1" "5ug" FALSE +"CLSI 2014" "MIC" "Streptococcus" "Rifampicin" "Table 2H-1" FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Rifampicin" "Table 2G" "5ug" 19 16 FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Rifampicin" "Table 2G" 1 4 FALSE +"CLSI 2014" "DISK" "Acinetobacter" "Ampicillin/sulbactam" "Table 2B-2" "10ug" 15 11 FALSE +"CLSI 2014" "MIC" "Acinetobacter" "Ampicillin/sulbactam" "Table 2B-2" 8 32 FALSE +"CLSI 2014" "DISK" "Aeromonas" "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE +"CLSI 2014" "MIC" "Aeromonas" "Ampicillin/sulbactam" "M45 Table 2" 8 32 FALSE +"CLSI 2014" "MIC" "Aggregatibacter" "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE +"CLSI 2014" "MIC" "Anaerosalibacter" "Ampicillin/sulbactam" "Table 2J" 8 32 FALSE +"CLSI 2014" "MIC" "Cardiobacterium" "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE +"CLSI 2014" "MIC" "Eikenella" "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Ampicillin/sulbactam" "Table 2E" "10/10ug" 20 19 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Ampicillin/sulbactam" "Table 2E" 2 4 FALSE +"CLSI 2014" "DISK" "Plesiomonas" "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE +"CLSI 2014" "MIC" "Plesiomonas" "Ampicillin/sulbactam" "M45 Table 2" 8 32 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Ampicillin/sulbactam" "Table 2C" "10ug" 15 11 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Ampicillin/sulbactam" "Table 2C" 8 32 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Ampicillin/sulbactam" "Table 2G" "10/10ug" FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Ampicillin/sulbactam" "Table 2G" FALSE +"CLSI 2014" "DISK" "Neisseria meningitidis" "Sulfamethoxazole" "Table 2I" "200-300ug" FALSE +"CLSI 2014" "MIC" "Neisseria meningitidis" "Sulfamethoxazole" "Table 2I" 2 8 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Sulfamethoxazole" "Table 2C" "200ug" 17 12 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Sulfamethoxazole" "Table 2C" 256 512 FALSE +"CLSI 2014" "DISK" "Neisseria meningitidis" "Sulfisoxazole" "Table 2I" "200-300ug" FALSE +"CLSI 2014" "MIC" "Neisseria meningitidis" "Sulfisoxazole" "Table 2I" 2 8 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Sulfisoxazole" "Table 2C" "200ug" 17 12 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Sulfisoxazole" "Table 2C" 256 512 FALSE +"CLSI 2014" "DISK" "Histophilus somni" "Spectinomycin" "Vet Table" "100ug" 14 10 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" "Spectinomycin" "Table 2F" "100ug" 18 14 FALSE +"CLSI 2014" "MIC" "Neisseria gonorrhoeae" "Spectinomycin" "Table 2F" 32 128 FALSE +"CLSI 2014" "DISK" "Providencia heimbachae" "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2014" "DISK" "Pasteurella multocida" "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Sparfloxacin" "Table 2E" "5ug" FALSE +"CLSI 2014" "MIC" "Haemophilus" "Sparfloxacin" "Table 2E" 0.25 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Sparfloxacin" "Table 2C" "5ug" 19 15 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Sparfloxacin" "Table 2C" 0.5 2 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Sparfloxacin" "Table 2H-1" "5ug" FALSE +"CLSI 2014" "MIC" "Streptococcus" "Sparfloxacin" "Table 2H-1" FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Sparfloxacin" "Table 2G" "5ug" 19 15 FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Sparfloxacin" "Table 2G" 0.5 2 FALSE +"CLSI 2014" "DISK" "Neisseria meningitidis" "Sulfonamides" "Table 2I" "200-300ug" FALSE +"CLSI 2014" "MIC" "Neisseria meningitidis" "Sulfonamides" "Table 2I" 2 8 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Sulfonamides" "Table 2C" "200ug" 17 12 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Sulfonamides" "Table 2C" 256 512 FALSE +"CLSI 2014" "DISK" "Enterococcus" "Streptomycin-high" "Table 2D" "300ug" 10 6 FALSE +"CLSI 2014" "MIC" "Enterococcus" "Streptomycin-high" "Table 2D" 1024 1024 FALSE +"CLSI 2014" "MIC" "Brucella" "Streptoduocin" "M45 Table 16" 8 FALSE +"CLSI 2014" "MIC" "Enterococcus" "Streptoduocin" "Table 2D" 1024 1024 FALSE +"CLSI 2014" "MIC" "Francisella tularensis" "Streptoduocin" "M45 Table 16" 8 FALSE +"CLSI 2014" "MIC" "Yersinia pestis" "Streptoduocin" "M45 Table 16" 4 16 FALSE +"CLSI 2014" "DISK" "Acinetobacter" "Trimethoprim/sulfamethoxazole" "Table 2B-2" "1.25/23.75ug" 16 10 FALSE +"CLSI 2014" "MIC" "Acinetobacter" "Trimethoprim/sulfamethoxazole" "Table 2B-2" 2 4 FALSE +"CLSI 2014" "DISK" "Aeromonas" "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25/23.75ug" 16 10 FALSE +"CLSI 2014" "MIC" "Aeromonas" "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE +"CLSI 2014" "MIC" "Aggregatibacter" "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE +"CLSI 2014" "MIC" "Bacillus" "Trimethoprim/sulfamethoxazole" "M45 Table 3" 2 4 FALSE +"CLSI 2014" "MIC" "Bacillus anthracis" "Trimethoprim/sulfamethoxazole" "M45 Table 16" FALSE +"CLSI 2014" "MIC" "Brucella" "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 FALSE +"CLSI 2014" "DISK" "Burkholderia cepacia" "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25/23.75ug" 16 10 FALSE +"CLSI 2014" "MIC" "Burkholderia cepacia" "Trimethoprim/sulfamethoxazole" "Table 2B-3" 2 4 FALSE +"CLSI 2014" "MIC" "Burkholderia pseudomallei" "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 4 FALSE +"CLSI 2014" "MIC" "Cardiobacterium" "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE +"CLSI 2014" "MIC" "Eikenella" "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Trimethoprim/sulfamethoxazole" "Table 2E" "1.25/23.75ug" 15 10 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Trimethoprim/sulfamethoxazole" "Table 2E" 0.5 4 FALSE +"CLSI 2014" "MIC" "Kingella" "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE +"CLSI 2014" "MIC" "Listeria monocytogenes" "Trimethoprim/sulfamethoxazole" "M45 Table 11" 0.5 4 FALSE +"CLSI 2014" "DISK" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" "M45 Table 12" "1.25/23.75ug" 13 10 FALSE +"CLSI 2014" "MIC" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" "M45 Table 12" 0.5 4 FALSE +"CLSI 2014" "DISK" "Neisseria meningitidis" "Trimethoprim/sulfamethoxazole" "Table 2I" "1.25/23.75ug" 30 25 FALSE +"CLSI 2014" "MIC" "Neisseria meningitidis" "Trimethoprim/sulfamethoxazole" "Table 2I" 0.125 0.5 FALSE +"CLSI 2014" "DISK" "Plesiomonas" "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25/23.75ug" 16 10 FALSE +"CLSI 2014" "MIC" "Plesiomonas" "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE +"CLSI 2014" "DISK" "Pasteurella" "Trimethoprim/sulfamethoxazole" "M45 Table 13" "1.25/23.75ug" 24 FALSE +"CLSI 2014" "MIC" "Pasteurella" "Trimethoprim/sulfamethoxazole" "M45 Table 13" 0.5 FALSE +"CLSI 2014" "DISK" "Stenotrophomonas maltophilia" "Trimethoprim/sulfamethoxazole" "Table 2B-4" "30ug" 16 10 FALSE +"CLSI 2014" "MIC" "Stenotrophomonas maltophilia" "Trimethoprim/sulfamethoxazole" "Table 2B-4" 2 4 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Trimethoprim/sulfamethoxazole" "Table 2C" "1.25/23.75ug" 16 10 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Trimethoprim/sulfamethoxazole" "Table 2C" 2 4 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Trimethoprim/sulfamethoxazole" "Table 2H-1" "1.25/23.75ug" FALSE +"CLSI 2014" "MIC" "Streptococcus" "Trimethoprim/sulfamethoxazole" "Table 2H-1" FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" "Table 2G" "1.25/23.75ug" 19 15 FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" "Table 2G" 0.5 4 FALSE +"CLSI 2014" "MIC" "Yersinia pestis" "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 4 FALSE +"CLSI 2014" "DISK" "Acinetobacter" "Ticarcillin/clavulanic acid" "Table 2B-2" "75ug" 20 14 FALSE +"CLSI 2014" "MIC" "Acinetobacter" "Ticarcillin/clavulanic acid" "Table 2B-2" 16 128 FALSE +"CLSI 2014" "MIC" "Anaerosalibacter" "Ticarcillin/clavulanic acid" "Table 2J" 32 128 FALSE +"CLSI 2014" "DISK" "Burkholderia cepacia" "Ticarcillin/clavulanic acid" "Table 2B-3" "75ug" FALSE +"CLSI 2014" "MIC" "Burkholderia cepacia" "Ticarcillin/clavulanic acid" "Table 2B-3" 16 128 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" "Ticarcillin/clavulanic acid" "Table 2B-1" "75ug" 24 15 FALSE +"CLSI 2014" "MIC" "Pseudomonas aeruginosa" "Ticarcillin/clavulanic acid" "Table 2B-1" 16 128 FALSE +"CLSI 2014" "DISK" "Stenotrophomonas maltophilia" "Ticarcillin/clavulanic acid" "Table 2B-4" "30ug" FALSE +"CLSI 2014" "MIC" "Stenotrophomonas maltophilia" "Ticarcillin/clavulanic acid" "Table 2B-4" 16 128 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Ticarcillin/clavulanic acid" "Table 2C" "75/10ug" 23 22 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Ticarcillin/clavulanic acid" "Table 2C" 8 16 FALSE +"CLSI 2014" "DISK" "Acinetobacter" "Tetracycline" "Table 2B-2" "30ug" 15 11 FALSE +"CLSI 2014" "MIC" "Acinetobacter" "Tetracycline" "Table 2B-2" 4 16 FALSE +"CLSI 2014" "DISK" "Aeromonas" "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE +"CLSI 2014" "MIC" "Aeromonas" "Tetracycline" "M45 Table 2" 4 16 FALSE +"CLSI 2014" "MIC" "Aggregatibacter" "Tetracycline" "M45 Table 7" 2 8 FALSE +"CLSI 2014" "MIC" "Anaerosalibacter" "Tetracycline" "Table 2J" 4 16 FALSE +"CLSI 2014" "MIC" "Bacillus" "Tetracycline" "M45 Table 3" 4 16 FALSE +"CLSI 2014" "MIC" "Bacillus anthracis" "Tetracycline" "M45 Table 16" 1 FALSE +"CLSI 2014" "MIC" "Brucella" "Tetracycline" "M45 Table 16" 1 FALSE +"CLSI 2014" "MIC" "Burkholderia mallei" "Tetracycline" "M45 Table 16" 4 16 FALSE +"CLSI 2014" "MIC" "Burkholderia pseudomallei" "Tetracycline" "M45 Table 16" 4 16 FALSE +"CLSI 2014" "MIC" "Campylobacter" "Tetracycline" "M45 Table 3" 4 16 FALSE +"CLSI 2014" "MIC" "Cardiobacterium" "Tetracycline" "M45 Table 7" 2 8 FALSE +"CLSI 2014" "MIC" "Eikenella" "Tetracycline" "M45 Table 7" 2 8 FALSE +"CLSI 2014" "DISK" "Enterococcus" "Tetracycline" "Table 2D" "30ug" 19 14 FALSE +"CLSI 2014" "MIC" "Enterococcus" "Tetracycline" "Table 2D" 4 16 FALSE +"CLSI 2014" "MIC" "Francisella tularensis" "Tetracycline" "M45 Table 16" 4 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Tetracycline" "Table 2E" "30ug" 29 25 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Tetracycline" "Table 2E" 2 8 FALSE +"CLSI 2014" "MIC" "Kingella" "Tetracycline" "M45 Table 7" 2 8 FALSE +"CLSI 2014" "DISK" "Moraxella catarrhalis" "Tetracycline" "M45 Table 12" "30ug" 29 24 FALSE +"CLSI 2014" "MIC" "Moraxella catarrhalis" "Tetracycline" "M45 Table 12" 2 8 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" "Tetracycline" "Table 2F" "30ug" 38 30 FALSE +"CLSI 2014" "MIC" "Neisseria gonorrhoeae" "Tetracycline" "Table 2F" 0.25 2 FALSE +"CLSI 2014" "DISK" "Plesiomonas" "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE +"CLSI 2014" "MIC" "Plesiomonas" "Tetracycline" "M45 Table 2" 4 16 FALSE +"CLSI 2014" "DISK" "Pasteurella" "Tetracycline" "M45 Table 13" "30ug" 23 FALSE +"CLSI 2014" "MIC" "Pasteurella" "Tetracycline" "M45 Table 13" 1 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Tetracycline" "Table 2C" "30ug" 19 14 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Tetracycline" "Table 2C" 4 16 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Tetracycline" "Table 2H-1" "30ug" 23 18 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Tetracycline" "Table 2H-1" 2 8 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Tetracycline" "Table 2G" "30ug" 28 24 FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Tetracycline" "Table 2G" 1 4 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" "Tetracycline" "Table 2H-2" "30ug" 23 18 FALSE +"CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Tetracycline" "Table 2H-2" 2 8 FALSE +"CLSI 2014" "MIC" "Yersinia pestis" "Tetracycline" "M45 Table 16" 4 16 FALSE +"CLSI 2014" "DISK" "Enterococcus" "Teicoplanin" "Table 2D" "30ug" 14 10 FALSE +"CLSI 2014" "MIC" "Enterococcus" "Teicoplanin" "Table 2D" 8 32 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Teicoplanin" "Table 2C" "30ug" 14 10 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Teicoplanin" "Table 2C" 8 32 FALSE +"CLSI 2014" "DISK" "Acinetobacter" "Ticarcillin" "Table 2B-2" "75ug" 20 14 FALSE +"CLSI 2014" "MIC" "Acinetobacter" "Ticarcillin" "Table 2B-2" 16 128 FALSE +"CLSI 2014" "MIC" "Anaerosalibacter" "Ticarcillin" "Table 2J" 32 128 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" "Ticarcillin" "Table 2B-1" "75ug" 24 15 FALSE +"CLSI 2014" "MIC" "Pseudomonas aeruginosa" "Ticarcillin" "Table 2B-1" 16 128 FALSE +"CLSI 2014" "DISK" "Actinobacillus pleuropneumoniae" "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE +"CLSI 2014" "MIC" "Actinobacillus pleuropneumoniae" "Tilmicosin" "Vet Table" 16 32 FALSE +"CLSI 2014" "DISK" "Pasteurella multocida" "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE +"CLSI 2014" "MIC" "Pasteurella multocida" "Tilmicosin" "Vet Table" 16 32 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Telithromycin" "Table 2E" "15ug" 15 11 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Telithromycin" "Table 2E" 4 16 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Telithromycin" "Table 2C" "15ug" 22 18 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Telithromycin" "Table 2C" 1 4 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Telithromycin" "Table 2H-1" FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Telithromycin" "Table 2G" "15ug" 19 15 FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Telithromycin" "Table 2G" 1 4 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Trimethoprim" "Table 2C" "5ug" 16 10 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Trimethoprim" "Table 2C" 8 16 FALSE +"CLSI 2014" "DISK" "Acinetobacter" "Tobramycin" "Table 2B-2" "10ug" 15 12 FALSE +"CLSI 2014" "MIC" "Acinetobacter" "Tobramycin" "Table 2B-2" 4 16 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" "Tobramycin" "Table 2B-1" "10ug" 15 12 FALSE +"CLSI 2014" "MIC" "Pseudomonas aeruginosa" "Tobramycin" "Table 2B-1" 4 16 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Tobramycin" "Table 2C" "10ug" 15 12 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Tobramycin" "Table 2C" 4 16 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Trovafloxacin" "Table 2E" "10ug" 22 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Trovafloxacin" "Table 2E" 1 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" "Trovafloxacin" "Table 2F" "10ug" 34 FALSE +"CLSI 2014" "MIC" "Neisseria gonorrhoeae" "Trovafloxacin" "Table 2F" 0.25 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Trovafloxacin" "Table 2H-1" "10ug" 19 15 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Trovafloxacin" "Table 2H-1" 1 4 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Trovafloxacin" "Table 2G" "10ug" 19 15 FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Trovafloxacin" "Table 2G" 1 4 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" "Trovafloxacin" "Table 2H-2" "10ug" 19 15 FALSE +"CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Trovafloxacin" "Table 2H-2" 1 4 FALSE +"CLSI 2014" "DISK" "Acinetobacter" "Piperacillin/tazobactam" "Table 2B-2" "100ug" 21 17 FALSE +"CLSI 2014" "MIC" "Acinetobacter" "Piperacillin/tazobactam" "Table 2B-2" 16 128 FALSE +"CLSI 2014" "DISK" "Aeromonas" "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE +"CLSI 2014" "MIC" "Aeromonas" "Piperacillin/tazobactam" "M45 Table 2" 16 128 FALSE +"CLSI 2014" "MIC" "Anaerosalibacter" "Piperacillin/tazobactam" "Table 2J" 32 128 FALSE +"CLSI 2014" "DISK" "Haemophilus" "Piperacillin/tazobactam" "Table 2E" "100ug" 21 FALSE +"CLSI 2014" "MIC" "Haemophilus" "Piperacillin/tazobactam" "Table 2E" 1 2 FALSE +"CLSI 2014" "DISK" "Plesiomonas" "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE +"CLSI 2014" "MIC" "Plesiomonas" "Piperacillin/tazobactam" "M45 Table 2" 16 128 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" "Piperacillin/tazobactam" "Table 2B-1" "100ug" 21 14 FALSE +"CLSI 2014" "MIC" "Pseudomonas aeruginosa" "Piperacillin/tazobactam" "Table 2B-1" 16 128 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Piperacillin/tazobactam" "Table 2C" "100/10ug" 18 17 FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Piperacillin/tazobactam" "Table 2C" 8 16 FALSE +"CLSI 2014" "MIC" "Abiotrophia" "Vancomycin" "M45 Table 1" 1 FALSE +"CLSI 2014" "MIC" "Bacillus" "Vancomycin" "M45 Table 3" 4 FALSE +"CLSI 2014" "MIC" "Bacillus anthracis" "Vancomycin" "M45 Table 16" FALSE +"CLSI 2014" "DISK" "Enterococcus" "Vancomycin" "Table 2D" "30ug" 17 14 FALSE +"CLSI 2014" "MIC" "Enterococcus" "Vancomycin" "Table 2D" 4 32 FALSE +"CLSI 2014" "MIC" "Granulicatella" "Vancomycin" "M45 Table 1" 1 FALSE +"CLSI 2014" "MIC" "Lactobacillus" "Vancomycin" "M45 Table 9" 2 16 FALSE +"CLSI 2014" "DISK" "Staphylococcus" "Vancomycin" "Table 2C" "30ug" FALSE +"CLSI 2014" "MIC" "Staphylococcus" "Vancomycin" "Table 2C" 4 32 FALSE +"CLSI 2014" "MIC" "Staphylococcus aureus" "Vancomycin" "Table 2C" 2 16 FALSE +"CLSI 2014" "DISK" "Streptococcus" "Vancomycin" "Table 2H-1" "30ug" 17 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Vancomycin" "M45 Table 1" 1 FALSE +"CLSI 2014" "MIC" "Streptococcus" "Vancomycin" "Table 2H-1" 1 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" "Vancomycin" "Table 2G" "30ug" 17 FALSE +"CLSI 2014" "MIC" "Streptococcus pneumoniae" "Vancomycin" "Table 2G" 1 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" "Vancomycin" "Table 2H-2" "30ug" 17 FALSE +"CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" "Vancomycin" "Table 2H-2" 1 FALSE +"CLSI 2013" "DISK" "Aeromonas" "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE +"CLSI 2013" "MIC" "Aeromonas" "Amoxicillin/clavulanic acid" "M45 Table 2" 8 32 FALSE +"CLSI 2013" "MIC" "Aggregatibacter" "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE +"CLSI 2013" "MIC" "Anaerosalibacter" "Amoxicillin/clavulanic acid" "Table 2J" 4 16 FALSE +"CLSI 2013" "MIC" "Burkholderia pseudomallei" "Amoxicillin/clavulanic acid" "M45 Table 16" 8 32 FALSE +"CLSI 2013" "MIC" "Cardiobacterium" "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE +"CLSI 2013" "MIC" "Eikenella" "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Amoxicillin/clavulanic acid" "Table 2E" "20/10ug" 20 19 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Amoxicillin/clavulanic acid" "Table 2E" 4 8 FALSE +"CLSI 2013" "DISK" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" "M45 Table 12" "20ug" 24 23 FALSE +"CLSI 2013" "MIC" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" "M45 Table 12" 4 8 FALSE +"CLSI 2013" "DISK" "Plesiomonas" "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE +"CLSI 2013" "MIC" "Plesiomonas" "Amoxicillin/clavulanic acid" "M45 Table 2" 8 32 FALSE +"CLSI 2013" "DISK" "Pasteurella" "Amoxicillin/clavulanic acid" "M45 Table 13" "20ug" 27 FALSE +"CLSI 2013" "MIC" "Pasteurella" "Amoxicillin/clavulanic acid" "M45 Table 13" 0.5 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Amoxicillin/clavulanic acid" "Table 2C" "20ug" 20 19 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Amoxicillin/clavulanic acid" "Table 2C" 4 8 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Amoxicillin/clavulanic acid" "Table 2H-1" "20ug" FALSE +"CLSI 2013" "MIC" "Streptococcus" "Amoxicillin/clavulanic acid" "Table 2H-1" FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Amoxicillin/clavulanic acid" "Table 2G" "10/10ug" FALSE +"CLSI 2013" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Amoxicillin/clavulanic acid" "Table 2G" 2 8 FALSE +"CLSI 2013" "DISK" "Acinetobacter" "Amikacin" "Table 2B-2" "30ug" 17 14 FALSE +"CLSI 2013" "MIC" "Acinetobacter" "Amikacin" "Table 2B-2" 16 64 FALSE +"CLSI 2013" "DISK" "Aeromonas" "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE +"CLSI 2013" "MIC" "Aeromonas" "Amikacin" "M45 Table 2" 16 64 FALSE +"CLSI 2013" "MIC" "Bacillus" "Amikacin" "M45 Table 3" 16 64 FALSE +"CLSI 2013" "MIC" "Bacillus anthracis" "Amikacin" "M45 Table 16" FALSE +"CLSI 2013" "DISK" "Plesiomonas" "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE +"CLSI 2013" "MIC" "Plesiomonas" "Amikacin" "M45 Table 2" 16 64 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" "Amikacin" "Table 2B-1" "30ug" 17 14 FALSE +"CLSI 2013" "MIC" "Pseudomonas aeruginosa" "Amikacin" "Table 2B-1" 16 64 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Amikacin" "Table 2C" "30ug" 17 14 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Amikacin" "Table 2C" 16 64 FALSE +"CLSI 2013" "MIC" "Aggregatibacter" "Ampicillin" "M45 Table 7" 1 4 FALSE +"CLSI 2013" "MIC" "Anaerosalibacter" "Ampicillin" "Table 2J" 0.5 2 FALSE +"CLSI 2013" "MIC" "Bacillus" "Ampicillin" "M45 Table 3" 0.25 0.5 FALSE +"CLSI 2013" "MIC" "Bacillus anthracis" "Ampicillin" "M45 Table 16" FALSE +"CLSI 2013" "MIC" "Cardiobacterium" "Ampicillin" "M45 Table 7" 1 4 FALSE +"CLSI 2013" "MIC" "Eikenella" "Ampicillin" "M45 Table 7" 1 4 FALSE +"CLSI 2013" "DISK" "Enterococcus" "Ampicillin" "Table 2D" "10ug" 17 16 FALSE +"CLSI 2013" "MIC" "Enterococcus" "Ampicillin" "Table 2D" 8 16 FALSE +"CLSI 2013" "MIC" "Erysipelothrix rhusiopathiae" "Ampicillin" "M45 Table 6" 0.25 FALSE +"CLSI 2013" "MIC" "Granulicatella" "Ampicillin" "M45 Table 1" 0.25 8 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Ampicillin" "Table 2E" "10ug" 22 18 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Ampicillin" "Table 2E" 1 4 FALSE +"CLSI 2013" "MIC" "Leuconostoc" "Ampicillin" "M45 Table 10" 8 FALSE +"CLSI 2013" "MIC" "Lactobacillus" "Ampicillin" "M45 Table 9" 8 FALSE +"CLSI 2013" "DISK" "Listeria monocytogenes" "Ampicillin" "M45 Table 11" "10ug" FALSE +"CLSI 2013" "MIC" "Listeria monocytogenes" "Ampicillin" "M45 Table 11" 2 FALSE +"CLSI 2013" "DISK" "Neisseria meningitidis" "Ampicillin" "Table 2I" "10ug" FALSE +"CLSI 2013" "MIC" "Neisseria meningitidis" "Ampicillin" "Table 2I" 0.125 2 FALSE +"CLSI 2013" "MIC" "Pediococcus" "Ampicillin" "M45 Table 14" 8 FALSE +"CLSI 2013" "DISK" "Pasteurella" "Ampicillin" "M45 Table 13" "10ug" 27 FALSE +"CLSI 2013" "MIC" "Pasteurella" "Ampicillin" "M45 Table 13" 0.5 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Ampicillin" "Table 2C" "10ug" 29 28 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Ampicillin" "Table 2C" 0.25 0.5 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Ampicillin" "Table 2H-1" "10ug" 24 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Ampicillin" "M45 Table 1" 0.25 8 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Ampicillin" "Table 2H-1" 0.25 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Ampicillin" "Table 2G" "10ug" FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Ampicillin" "Table 2G" FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Ampicillin" "Table 2H-2" "10ug" FALSE +"CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Ampicillin" "Table 2H-2" 0.25 8 FALSE +"CLSI 2013" "MIC" "Pasteurella" "Amoxicillin" "M45 Table 13" 0.5 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Amoxicillin" "Table 2H-1" "30ug" FALSE +"CLSI 2013" "MIC" "Streptococcus" "Amoxicillin" "Table 2H-1" FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Amoxicillin" "Table 2G" "30ug" FALSE +"CLSI 2013" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Amoxicillin" "Table 2G" 2 8 FALSE +"CLSI 2013" "DISK" "Aeromonas" "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2013" "MIC" "Aeromonas" "Aztreonam" "M45 Table 2" 4 16 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Aztreonam" "Table 2E" "30ug" 26 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Aztreonam" "Table 2E" 2 FALSE +"CLSI 2013" "DISK" "Plesiomonas" "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2013" "MIC" "Plesiomonas" "Aztreonam" "M45 Table 2" 4 16 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" "Aztreonam" "Table 2B-1" "30ug" 22 15 FALSE +"CLSI 2013" "MIC" "Pseudomonas aeruginosa" "Aztreonam" "Table 2B-1" 8 32 FALSE +"CLSI 2013" "MIC" "Aggregatibacter" "Azithromycin" "M45 Table 7" 4 FALSE +"CLSI 2013" "MIC" "Cardiobacterium" "Azithromycin" "M45 Table 7" 4 FALSE +"CLSI 2013" "MIC" "Eikenella" "Azithromycin" "M45 Table 7" 4 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Azithromycin" "Table 2E" "15ug" 12 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Azithromycin" "Table 2E" 4 FALSE +"CLSI 2013" "MIC" "Kingella" "Azithromycin" "M45 Table 7" 4 FALSE +"CLSI 2013" "DISK" "Moraxella catarrhalis" "Azithromycin" "M45 Table 12" "15ug" 26 FALSE +"CLSI 2013" "MIC" "Moraxella catarrhalis" "Azithromycin" "M45 Table 12" 0.25 FALSE +"CLSI 2013" "DISK" "Neisseria meningitidis" "Azithromycin" "Table 2I" "15ug" 20 FALSE +"CLSI 2013" "MIC" "Neisseria meningitidis" "Azithromycin" "Table 2I" 2 FALSE +"CLSI 2013" "DISK" "Pasteurella" "Azithromycin" "M45 Table 13" "15ug" 20 FALSE +"CLSI 2013" "MIC" "Pasteurella" "Azithromycin" "M45 Table 13" 1 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Azithromycin" "Table 2C" "15ug" 18 13 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Azithromycin" "Table 2C" 2 8 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Azithromycin" "Table 2H-1" "15ug" 18 13 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Azithromycin" "Table 2H-1" 0.5 2 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Azithromycin" "Table 2G" "15ug" 18 13 FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Azithromycin" "Table 2G" 0.5 2 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Azithromycin" "Table 2H-2" "15ug" 18 13 FALSE +"CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Azithromycin" "Table 2H-2" 0.5 2 FALSE +"CLSI 2013" "MIC" "Vibrio cholerae" "Azithromycin" "M45 Table 14" "30ug" 2 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Cefetamet" "Table 2E" "10ug" 18 14 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Cefetamet" "Table 2E" 4 16 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" "Cefetamet" "Table 2F" "10ug" 29 FALSE +"CLSI 2013" "MIC" "Neisseria gonorrhoeae" "Cefetamet" "Table 2F" 0.5 FALSE +"CLSI 2013" "DISK" "Acinetobacter" "Ceftazidime" "Table 2B-2" "30ug" 18 14 FALSE +"CLSI 2013" "MIC" "Acinetobacter" "Ceftazidime" "Table 2B-2" 8 32 FALSE +"CLSI 2013" "DISK" "Aeromonas" "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2013" "MIC" "Aeromonas" "Ceftazidime" "M45 Table 2" 4 16 FALSE +"CLSI 2013" "MIC" "Bacillus" "Ceftazidime" "M45 Table 3" 8 32 FALSE +"CLSI 2013" "MIC" "Bacillus anthracis" "Ceftazidime" "M45 Table 16" FALSE +"CLSI 2013" "DISK" "Burkholderia cepacia" "Ceftazidime" "Table 2B-3" "30ug" 21 17 FALSE +"CLSI 2013" "MIC" "Burkholderia cepacia" "Ceftazidime" "Table 2B-3" 8 32 FALSE +"CLSI 2013" "MIC" "Burkholderia mallei" "Ceftazidime" "M45 Table 16" 8 32 FALSE +"CLSI 2013" "MIC" "Burkholderia pseudomallei" "Ceftazidime" "M45 Table 16" 8 32 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Ceftazidime" "Table 2E" "30ug" 26 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Ceftazidime" "Table 2E" 2 FALSE +"CLSI 2013" "MIC" "Moraxella catarrhalis" "Ceftazidime" "M45 Table 12" 2 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" "Ceftazidime" "Table 2F" "30ug" 31 FALSE +"CLSI 2013" "MIC" "Neisseria gonorrhoeae" "Ceftazidime" "Table 2F" 0.5 FALSE +"CLSI 2013" "DISK" "Plesiomonas" "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2013" "MIC" "Plesiomonas" "Ceftazidime" "M45 Table 2" 4 16 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" "Ceftazidime" "Table 2B-1" "30ug" 18 14 FALSE +"CLSI 2013" "MIC" "Pseudomonas aeruginosa" "Ceftazidime" "Table 2B-1" 8 32 FALSE +"CLSI 2013" "DISK" "Stenotrophomonas maltophilia" "Ceftazidime" "Table 2B-4" "30ug" FALSE +"CLSI 2013" "MIC" "Stenotrophomonas maltophilia" "Ceftazidime" "Table 2B-4" 8 32 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Ceftazidime" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Ceftazidime" "Table 2C" 8 32 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Cefdinir" "Table 2E" "5ug" 20 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Cefdinir" "Table 2E" 1 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Cefdinir" "Table 2C" "5ug" 20 16 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Cefdinir" "Table 2C" 1 4 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Cefdinir" "Table 2G" "5ug" FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Cefdinir" "Table 2G" 0.5 2 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Cefaclor" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Cefaclor" "Table 2E" 8 32 FALSE +"CLSI 2013" "MIC" "Moraxella catarrhalis" "Cefaclor" "M45 Table 12" 8 32 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Cefaclor" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Cefaclor" "Table 2C" 8 32 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Cefaclor" "Table 2G" "30ug" FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Cefaclor" "Table 2G" 1 4 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Cephalothin" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Cephalothin" "Table 2C" 8 32 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Cefixime" "Table 2E" "5ug" 21 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Cefixime" "Table 2E" 1 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" "Cefixime" "Table 2F" "5ug" 31 FALSE +"CLSI 2013" "MIC" "Neisseria gonorrhoeae" "Cefixime" "Table 2F" 0.25 FALSE +"CLSI 2013" "MIC" "Anaerosalibacter" "Cefoperazone" "Table 2J" 16 64 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Cefoperazone" "Table 2C" "75ug" 21 15 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Cefoperazone" "Table 2C" 16 64 FALSE +"CLSI 2013" "DISK" "Aeromonas" "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE +"CLSI 2013" "MIC" "Aeromonas" "Chloramphenicol" "M45 Table 2" 8 32 FALSE +"CLSI 2013" "MIC" "Aggregatibacter" "Chloramphenicol" "M45 Table 7" 4 16 FALSE +"CLSI 2013" "MIC" "Anaerosalibacter" "Chloramphenicol" "Table 2J" 8 32 FALSE +"CLSI 2013" "MIC" "Bacillus" "Chloramphenicol" "M45 Table 3" 8 32 FALSE +"CLSI 2013" "MIC" "Bacillus anthracis" "Chloramphenicol" "M45 Table 16" FALSE +"CLSI 2013" "DISK" "Burkholderia cepacia" "Chloramphenicol" "Table 2B-3" "30ug" FALSE +"CLSI 2013" "MIC" "Burkholderia cepacia" "Chloramphenicol" "Table 2B-3" 8 32 FALSE +"CLSI 2013" "MIC" "Cardiobacterium" "Chloramphenicol" "M45 Table 7" 4 16 FALSE +"CLSI 2013" "MIC" "Eikenella" "Chloramphenicol" "M45 Table 7" 4 16 FALSE +"CLSI 2013" "DISK" "Enterococcus" "Chloramphenicol" "Table 2D" "30ug" 18 12 FALSE +"CLSI 2013" "MIC" "Enterococcus" "Chloramphenicol" "Table 2D" 8 32 FALSE +"CLSI 2013" "MIC" "Francisella tularensis" "Chloramphenicol" "M45 Table 16" 8 FALSE +"CLSI 2013" "MIC" "Granulicatella" "Chloramphenicol" "M45 Table 1" 4 8 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Chloramphenicol" "Table 2E" "30ug" 29 25 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Chloramphenicol" "Table 2E" 2 8 FALSE +"CLSI 2013" "MIC" "Kingella" "Chloramphenicol" "M45 Table 7" 4 16 FALSE +"CLSI 2013" "MIC" "Leuconostoc" "Chloramphenicol" "M45 Table 10" 8 32 FALSE +"CLSI 2013" "MIC" "Moraxella catarrhalis" "Chloramphenicol" "M45 Table 12" 2 8 FALSE +"CLSI 2013" "DISK" "Neisseria meningitidis" "Chloramphenicol" "Table 2I" "30ug" 26 19 FALSE +"CLSI 2013" "MIC" "Neisseria meningitidis" "Chloramphenicol" "Table 2I" 2 8 FALSE +"CLSI 2013" "MIC" "Pediococcus" "Chloramphenicol" "M45 Table 14" 8 32 FALSE +"CLSI 2013" "DISK" "Plesiomonas" "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE +"CLSI 2013" "MIC" "Plesiomonas" "Chloramphenicol" "M45 Table 2" 8 32 FALSE +"CLSI 2013" "DISK" "Pasteurella" "Chloramphenicol" "M45 Table 13" "30ug" 28 FALSE +"CLSI 2013" "MIC" "Pasteurella" "Chloramphenicol" "M45 Table 13" 2 FALSE +"CLSI 2013" "DISK" "Stenotrophomonas maltophilia" "Chloramphenicol" "Table 2B-4" "30ug" FALSE +"CLSI 2013" "MIC" "Stenotrophomonas maltophilia" "Chloramphenicol" "Table 2B-4" 8 32 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Chloramphenicol" "Table 2C" "30ug" 18 12 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Chloramphenicol" "Table 2C" 8 32 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Chloramphenicol" "Table 2H-1" "30ug" 21 17 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Chloramphenicol" "M45 Table 1" 4 8 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Chloramphenicol" "Table 2H-1" 4 16 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Chloramphenicol" "Table 2G" "30ug" 21 20 FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Chloramphenicol" "Table 2G" 4 8 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Chloramphenicol" "Table 2H-2" "30ug" 21 17 FALSE +"CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Chloramphenicol" "Table 2H-2" 4 16 FALSE +"CLSI 2013" "MIC" "Yersinia pestis" "Chloramphenicol" "M45 Table 16" 8 32 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Cefonicid" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Cefonicid" "Table 2E" 4 16 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Cefonicid" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Cefonicid" "Table 2C" 8 32 FALSE +"CLSI 2013" "DISK" "Acinetobacter" "Ciprofloxacin" "Table 2B-2" "5ug" 21 15 FALSE +"CLSI 2013" "MIC" "Acinetobacter" "Ciprofloxacin" "Table 2B-2" 1 4 FALSE +"CLSI 2013" "DISK" "Aeromonas" "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE +"CLSI 2013" "MIC" "Aeromonas" "Ciprofloxacin" "M45 Table 2" 1 4 FALSE +"CLSI 2013" "MIC" "Aggregatibacter" "Ciprofloxacin" "M45 Table 7" 1 4 FALSE +"CLSI 2013" "MIC" "Bacillus" "Ciprofloxacin" "M45 Table 3" 1 4 FALSE +"CLSI 2013" "MIC" "Bacillus anthracis" "Ciprofloxacin" "M45 Table 16" 0.25 FALSE +"CLSI 2013" "MIC" "Campylobacter" "Ciprofloxacin" "M45 Table 3" 1 4 FALSE +"CLSI 2013" "MIC" "Cardiobacterium" "Ciprofloxacin" "M45 Table 7" 1 4 FALSE +"CLSI 2013" "MIC" "Eikenella" "Ciprofloxacin" "M45 Table 7" 1 4 FALSE +"CLSI 2013" "DISK" "Enterococcus" "Ciprofloxacin" "Table 2D" "5ug" 21 15 FALSE +"CLSI 2013" "MIC" "Enterococcus" "Ciprofloxacin" "Table 2D" 1 4 FALSE +"CLSI 2013" "MIC" "Erysipelothrix rhusiopathiae" "Ciprofloxacin" "M45 Table 6" 1 FALSE +"CLSI 2013" "MIC" "Francisella tularensis" "Ciprofloxacin" "M45 Table 16" 0.5 FALSE +"CLSI 2013" "MIC" "Granulicatella" "Ciprofloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Ciprofloxacin" "Table 2E" "5ug" 21 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Ciprofloxacin" "Table 2E" 1 FALSE +"CLSI 2013" "MIC" "Kingella" "Ciprofloxacin" "M45 Table 7" 1 4 FALSE +"CLSI 2013" "MIC" "Moraxella catarrhalis" "Ciprofloxacin" "M45 Table 12" 1 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" "Ciprofloxacin" "Table 2F" "5ug" 41 27 FALSE +"CLSI 2013" "MIC" "Neisseria gonorrhoeae" "Ciprofloxacin" "Table 2F" 0.064 1 FALSE +"CLSI 2013" "DISK" "Neisseria meningitidis" "Ciprofloxacin" "Table 2I" "5ug" 35 32 FALSE +"CLSI 2013" "MIC" "Neisseria meningitidis" "Ciprofloxacin" "Table 2I" 0.032 0.12 FALSE +"CLSI 2013" "DISK" "Plesiomonas" "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE +"CLSI 2013" "MIC" "Plesiomonas" "Ciprofloxacin" "M45 Table 2" 1 4 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" "Ciprofloxacin" "Table 2B-1" "5ug" 21 15 FALSE +"CLSI 2013" "MIC" "Pseudomonas aeruginosa" "Ciprofloxacin" "Table 2B-1" 1 4 FALSE +"CLSI 2013" "DISK" "Intestinal" "Salmonella" "Ciprofloxacin" "Table 2A" "5ug" 21 15 FALSE +"CLSI 2013" "DISK" "Extraintestinal" "Salmonella" "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE +"CLSI 2013" "DISK" "Salmonella" "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE +"CLSI 2013" "MIC" "Intestinal" "Salmonella" "Ciprofloxacin" "Table 2A" 1 4 FALSE +"CLSI 2013" "MIC" "Extraintestinal" "Salmonella" "Ciprofloxacin" "Table 2A" 0.064 1 FALSE +"CLSI 2013" "MIC" "Salmonella" "Ciprofloxacin" "Table 2A" 0.064 1 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Ciprofloxacin" "Table 2C" "5ug" 21 15 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Ciprofloxacin" "Table 2C" 1 4 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Ciprofloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Ciprofloxacin" "Table 2G" "5ug" FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Ciprofloxacin" "Table 2G" FALSE +"CLSI 2013" "MIC" "Yersinia pestis" "Ciprofloxacin" "M45 Table 16" 0.25 FALSE +"CLSI 2013" "MIC" "Anaerosalibacter" "Clindamycin" "Table 2J" 2 8 FALSE +"CLSI 2013" "MIC" "Bacillus" "Clindamycin" "M45 Table 3" 0.5 4 FALSE +"CLSI 2013" "MIC" "Bacillus anthracis" "Clindamycin" "M45 Table 16" FALSE +"CLSI 2013" "MIC" "Erysipelothrix rhusiopathiae" "Clindamycin" "M45 Table 6" 0.25 1 FALSE +"CLSI 2013" "MIC" "Granulicatella" "Clindamycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2013" "MIC" "Lactobacillus" "Clindamycin" "M45 Table 9" 0.5 2 FALSE +"CLSI 2013" "MIC" "Moraxella catarrhalis" "Clindamycin" "M45 Table 12" 0.5 4 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Clindamycin" "Table 2C" "2ug" 21 14 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Clindamycin" "Table 2C" 0.5 4 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Clindamycin" "Table 2H-1" "2ug" 19 15 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Clindamycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Clindamycin" "Table 2H-1" 0.25 1 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Clindamycin" "Table 2G" "2ug" 19 15 FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Clindamycin" "Table 2G" 0.25 1 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Clindamycin" "Table 2H-2" "2ug" 19 15 FALSE +"CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Clindamycin" "Table 2H-2" 0.25 1 FALSE +"CLSI 2013" "MIC" "Aggregatibacter" "Clarithromycin" "M45 Table 7" 8 32 FALSE +"CLSI 2013" "MIC" "Cardiobacterium" "Clarithromycin" "M45 Table 7" 8 32 FALSE +"CLSI 2013" "MIC" "Eikenella" "Clarithromycin" "M45 Table 7" 8 32 FALSE +"CLSI 2013" "MIC" "Helicobacter pylori" "Clarithromycin" "M45 Table 8" 0.25 1 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Clarithromycin" "Table 2E" "15ug" 13 10 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Clarithromycin" "Table 2E" 8 32 FALSE +"CLSI 2013" "MIC" "Kingella" "Clarithromycin" "M45 Table 7" 8 32 FALSE +"CLSI 2013" "DISK" "Moraxella catarrhalis" "Clarithromycin" "M45 Table 12" "15ug" 24 FALSE +"CLSI 2013" "MIC" "Moraxella catarrhalis" "Clarithromycin" "M45 Table 12" 1 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Clarithromycin" "Table 2C" "15ug" 18 13 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Clarithromycin" "Table 2C" 2 8 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Clarithromycin" "Table 2H-1" "15ug" 21 16 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Clarithromycin" "Table 2H-1" 0.25 1 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Clarithromycin" "Table 2G" "15ug" 21 16 FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Clarithromycin" "Table 2G" 0.25 1 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Clarithromycin" "Table 2H-2" "15ug" 21 16 FALSE +"CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Clarithromycin" "Table 2H-2" 0.25 1 FALSE +"CLSI 2013" "MIC" "Anaerosalibacter" "Cefmetazole" "Table 2J" 16 64 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" "Cefmetazole" "Table 2F" "30ug" 33 27 FALSE +"CLSI 2013" "MIC" "Neisseria gonorrhoeae" "Cefmetazole" "Table 2F" 2 8 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Cefmetazole" "Table 2C" "30ug" 16 12 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Cefmetazole" "Table 2C" 16 64 FALSE +"CLSI 2013" "DISK" "Acinetobacter" "Colistin" "Table 2B-2" "10ug" FALSE +"CLSI 2013" "MIC" "Acinetobacter" "Colistin" "Table 2B-2" 2 4 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" "Colistin" "Table 2B-1" "10ug" 11 10 FALSE +"CLSI 2013" "MIC" "Pseudomonas aeruginosa" "Colistin" "Table 2B-1" 2 8 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Cefpodoxime" "Table 2E" "10ug" 21 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Cefpodoxime" "Table 2E" 2 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" "Cefpodoxime" "Table 2F" "10ug" 29 FALSE +"CLSI 2013" "MIC" "Neisseria gonorrhoeae" "Cefpodoxime" "Table 2F" 0.5 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Cefpodoxime" "Table 2C" "10ug" 21 17 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Cefpodoxime" "Table 2C" 2 8 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Cefpodoxime" "Table 2G" "10ug" FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Cefpodoxime" "Table 2G" 0.5 2 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Cefprozil" "Table 2E" "30ug" 18 14 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Cefprozil" "Table 2E" 8 32 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Cefprozil" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Cefprozil" "Table 2C" 8 32 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Cefprozil" "Table 2G" "30ug" FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Cefprozil" "Table 2G" 2 8 FALSE +"CLSI 2013" "DISK" "Haemophilus influenzae" "Ceftaroline" "Table 2E" "30ug" 30 FALSE +"CLSI 2013" "MIC" "Haemophilus influenzae" "Ceftaroline" "Table 2E" 0.5 FALSE +"CLSI 2013" "DISK" "Staphylococcus aureus" "Ceftaroline" "Table 2C" "30ug" 24 20 FALSE +"CLSI 2013" "MIC" "Staphylococcus aureus" "Ceftaroline" "Table 2C" 1 4 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Ceftaroline" "Table 2H-1" "30ug" 26 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Ceftaroline" "Table 2H-1" 0.5 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Ceftaroline" "Table 2G" "30ug" FALSE +"CLSI 2013" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Ceftaroline" "Table 2G" 0.5 FALSE +"CLSI 2013" "DISK" "Acinetobacter" "Ceftriaxone" "Table 2B-2" "30ug" 21 13 FALSE +"CLSI 2013" "MIC" "Acinetobacter" "Ceftriaxone" "Table 2B-2" 8 64 FALSE +"CLSI 2013" "DISK" "Aeromonas" "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE +"CLSI 2013" "MIC" "Aeromonas" "Ceftriaxone" "M45 Table 2" 1 4 FALSE +"CLSI 2013" "MIC" "Aggregatibacter" "Ceftriaxone" "M45 Table 7" 2 FALSE +"CLSI 2013" "MIC" "Anaerosalibacter" "Ceftriaxone" "Table 2J" 16 64 FALSE +"CLSI 2013" "MIC" "Bacillus" "Ceftriaxone" "M45 Table 3" 8 64 FALSE +"CLSI 2013" "MIC" "Bacillus anthracis" "Ceftriaxone" "M45 Table 16" FALSE +"CLSI 2013" "MIC" "Cardiobacterium" "Ceftriaxone" "M45 Table 7" 2 FALSE +"CLSI 2013" "MIC" "Eikenella" "Ceftriaxone" "M45 Table 7" 2 FALSE +"CLSI 2013" "MIC" "Erysipelothrix rhusiopathiae" "Ceftriaxone" "M45 Table 6" 1 FALSE +"CLSI 2013" "MIC" "Granulicatella" "Ceftriaxone" "M45 Table 1" 1 4 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Ceftriaxone" "Table 2E" "30ug" 26 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Ceftriaxone" "Table 2E" 2 FALSE +"CLSI 2013" "MIC" "Kingella" "Ceftriaxone" "M45 Table 7" 2 FALSE +"CLSI 2013" "MIC" "Moraxella catarrhalis" "Ceftriaxone" "M45 Table 12" 2 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" "Ceftriaxone" "Table 2F" "30ug" 35 FALSE +"CLSI 2013" "MIC" "Neisseria gonorrhoeae" "Ceftriaxone" "Table 2F" 0.25 FALSE +"CLSI 2013" "DISK" "Neisseria meningitidis" "Ceftriaxone" "Table 2I" "30ug" 34 FALSE +"CLSI 2013" "MIC" "Neisseria meningitidis" "Ceftriaxone" "Table 2I" 0.125 FALSE +"CLSI 2013" "DISK" "Plesiomonas" "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE +"CLSI 2013" "MIC" "Plesiomonas" "Ceftriaxone" "M45 Table 2" 1 4 FALSE +"CLSI 2013" "DISK" "Pasteurella" "Ceftriaxone" "M45 Table 13" "30ug" 34 FALSE +"CLSI 2013" "MIC" "Pasteurella" "Ceftriaxone" "M45 Table 13" 0.125 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Ceftriaxone" "Table 2C" "30ug" 21 13 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Ceftriaxone" "Table 2C" 8 64 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Ceftriaxone" "Table 2H-1" "30ug" 24 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Ceftriaxone" "M45 Table 1" 1 4 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Ceftriaxone" "Table 2H-1" 0.5 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Ceftriaxone" "Table 2G" "30ug" FALSE +"CLSI 2013" "MIC" "Meningitis" "Streptococcus pneumoniae" "Ceftriaxone" "Table 2G" 0.5 2 FALSE +"CLSI 2013" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Ceftriaxone" "Table 2G" 1 4 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" "Table 2H-2" "30ug" 27 24 FALSE +"CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" "Table 2H-2" 1 4 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Ceftibuten" "Table 2E" "30ug" 28 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Ceftibuten" "Table 2E" 2 FALSE +"CLSI 2013" "MIC" "Anaerosalibacter" "Cefotetan" "Table 2J" 16 64 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" "Cefotetan" "Table 2F" "30ug" 26 19 FALSE +"CLSI 2013" "MIC" "Neisseria gonorrhoeae" "Cefotetan" "Table 2F" 2 8 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Cefotetan" "Table 2C" "30ug" 16 12 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Cefotetan" "Table 2C" 16 64 FALSE +"CLSI 2013" "DISK" "Acinetobacter" "Cefotaxime" "Table 2B-2" "30ug" 23 14 FALSE +"CLSI 2013" "MIC" "Acinetobacter" "Cefotaxime" "Table 2B-2" 8 64 FALSE +"CLSI 2013" "DISK" "Aeromonas" "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE +"CLSI 2013" "MIC" "Aeromonas" "Cefotaxime" "M45 Table 2" 1 4 FALSE +"CLSI 2013" "MIC" "Aggregatibacter" "Cefotaxime" "M45 Table 7" 2 FALSE +"CLSI 2013" "MIC" "Anaerosalibacter" "Cefotaxime" "Table 2J" 16 64 FALSE +"CLSI 2013" "MIC" "Bacillus" "Cefotaxime" "M45 Table 3" 8 64 FALSE +"CLSI 2013" "MIC" "Bacillus anthracis" "Cefotaxime" "M45 Table 16" FALSE +"CLSI 2013" "MIC" "Cardiobacterium" "Cefotaxime" "M45 Table 7" 2 FALSE +"CLSI 2013" "MIC" "Eikenella" "Cefotaxime" "M45 Table 7" 2 FALSE +"CLSI 2013" "MIC" "Erysipelothrix rhusiopathiae" "Cefotaxime" "M45 Table 6" 1 FALSE +"CLSI 2013" "MIC" "Granulicatella" "Cefotaxime" "M45 Table 1" 1 4 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Cefotaxime" "Table 2E" "30ug" 26 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Cefotaxime" "Table 2E" 2 FALSE +"CLSI 2013" "MIC" "Kingella" "Cefotaxime" "M45 Table 7" 2 FALSE +"CLSI 2013" "MIC" "Moraxella catarrhalis" "Cefotaxime" "M45 Table 12" 2 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" "Cefotaxime" "Table 2F" "30ug" 31 FALSE +"CLSI 2013" "MIC" "Neisseria gonorrhoeae" "Cefotaxime" "Table 2F" 0.5 FALSE +"CLSI 2013" "DISK" "Neisseria meningitidis" "Cefotaxime" "Table 2I" "30ug" 34 FALSE +"CLSI 2013" "MIC" "Neisseria meningitidis" "Cefotaxime" "Table 2I" 0.125 FALSE +"CLSI 2013" "DISK" "Plesiomonas" "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE +"CLSI 2013" "MIC" "Plesiomonas" "Cefotaxime" "M45 Table 2" 1 4 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Cefotaxime" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Cefotaxime" "Table 2C" 8 64 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Cefotaxime" "Table 2H-1" "30ug" 24 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Cefotaxime" "M45 Table 1" 1 4 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Cefotaxime" "Table 2H-1" 0.5 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Cefotaxime" "Table 2G" "30ug" FALSE +"CLSI 2013" "MIC" "Meningitis" "Streptococcus pneumoniae" "Cefotaxime" "Table 2G" 0.5 2 FALSE +"CLSI 2013" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Cefotaxime" "Table 2G" 1 4 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Cefotaxime" "Table 2H-2" "30ug" 28 25 FALSE +"CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Cefotaxime" "Table 2H-2" 1 4 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Cefuroxime axetil" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Cefuroxime axetil" "Table 2E" 4 16 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Cefuroxime axetil" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Cefuroxime axetil" "Table 2C" 4 32 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Cefuroxime axetil" "Table 2G" "30ug" FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Cefuroxime axetil" "Table 2G" 1 4 FALSE +"CLSI 2013" "DISK" "Aeromonas" "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2013" "MIC" "Aeromonas" "Cefuroxime" "M45 Table 2" 8 32 FALSE +"CLSI 2013" "DISK" "Oral" "Haemophilus" "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2013" "MIC" "Oral" "Haemophilus" "Cefuroxime" "Table 2E" 4 16 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Cefuroxime" "Table 2E" 4 16 FALSE +"CLSI 2013" "MIC" "Moraxella catarrhalis" "Cefuroxime" "M45 Table 12" 4 16 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" "Cefuroxime" "Table 2F" "30ug" 31 25 FALSE +"CLSI 2013" "MIC" "Neisseria gonorrhoeae" "Cefuroxime" "Table 2F" 1 4 FALSE +"CLSI 2013" "DISK" "Plesiomonas" "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2013" "MIC" "Plesiomonas" "Cefuroxime" "M45 Table 2" 8 32 FALSE +"CLSI 2013" "DISK" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2013" "DISK" "Parenteral" "Staphylococcus" "Cefuroxime" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2013" "DISK" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2013" "MIC" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" 4 32 FALSE +"CLSI 2013" "MIC" "Intravenous" "Staphylococcus" "Cefuroxime" "Table 2C" 8 32 FALSE +"CLSI 2013" "MIC" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" 4 32 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Cefuroxime" "Table 2H-1" "30ug" FALSE +"CLSI 2013" "MIC" "Streptococcus" "Cefuroxime" "Table 2H-1" FALSE +"CLSI 2013" "DISK" "Oral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" "30ug" FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" "30ug" FALSE +"CLSI 2013" "MIC" "Oral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" 1 4 FALSE +"CLSI 2013" "MIC" "Parenteral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" 0.5 2 FALSE +"CLSI 2013" "MIC" "Oral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" 1 4 FALSE +"CLSI 2013" "MIC" "Aeromonas" "Cefazolin" "M45 Table 2" 1 4 FALSE +"CLSI 2013" "MIC" "Bacillus" "Cefazolin" "M45 Table 3" 8 16 FALSE +"CLSI 2013" "MIC" "Bacillus anthracis" "Cefazolin" "M45 Table 16" FALSE +"CLSI 2013" "MIC" "Plesiomonas" "Cefazolin" "M45 Table 2" 1 4 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Cefazolin" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Cefazolin" "Table 2C" 8 32 FALSE +"CLSI 2013" "MIC" "Anaerosalibacter" "Ceftizoxime" "Table 2J" 32 128 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Ceftizoxime" "Table 2E" "30ug" 26 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Ceftizoxime" "Table 2E" 2 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" "Ceftizoxime" "Table 2F" "30ug" 38 FALSE +"CLSI 2013" "MIC" "Neisseria gonorrhoeae" "Ceftizoxime" "Table 2F" 0.5 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Ceftizoxime" "Table 2C" "30ug" 20 14 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Ceftizoxime" "Table 2C" 8 64 FALSE +"CLSI 2013" "DISK" "Enterococcus" "Daptomycin" "Table 2D" "30ug" FALSE +"CLSI 2013" "MIC" "Enterococcus" "Daptomycin" "Table 2D" 4 FALSE +"CLSI 2013" "MIC" "Lactobacillus" "Daptomycin" "M45 Table 9" 4 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Daptomycin" "Table 2C" "30ug" FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Daptomycin" "Table 2C" 1 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Daptomycin" "Table 2H-1" "30ug" 16 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Daptomycin" "Table 2H-1" FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Daptomycin" "Table 2G" "30ug" FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Daptomycin" "Table 2H-2" "30ug" FALSE +"CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Daptomycin" "Table 2H-2" 1 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Dirithromycin" "Table 2C" "15ug" 19 15 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Dirithromycin" "Table 2C" 2 8 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Dirithromycin" "Table 2H-1" "15ug" 18 13 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Dirithromycin" "Table 2H-1" 0.5 2 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Dirithromycin" "Table 2G" "15ug" 18 13 FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Dirithromycin" "Table 2G" 0.5 2 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Dirithromycin" "Table 2H-2" "15ug" 18 13 FALSE +"CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Dirithromycin" "Table 2H-2" 0.5 2 FALSE +"CLSI 2013" "MIC" "Anaerosalibacter" "Doripenem" "Table 2J" 2 8 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Doripenem" "Table 2E" "10ug" 16 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Doripenem" "Table 2E" 1 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" "Doripenem" "Table 2B-1" "10ug" 19 15 FALSE +"CLSI 2013" "MIC" "Pseudomonas aeruginosa" "Doripenem" "Table 2B-1" 2 8 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Doripenem" "Table 2C" "10ug" 30 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Doripenem" "Table 2C" 0.5 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Doripenem" "Table 2H-1" "10ug" FALSE +"CLSI 2013" "MIC" "Streptococcus" "Doripenem" "Table 2H-1" 0.125 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Doripenem" "Table 2G" "10ug" FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Doripenem" "Table 2G" 1 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Doripenem" "Table 2H-2" "10ug" FALSE +"CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Doripenem" "Table 2H-2" 1 FALSE +"CLSI 2013" "DISK" "Acinetobacter" "Doxycycline" "Table 2B-2" "30ug" 13 9 FALSE +"CLSI 2013" "MIC" "Acinetobacter" "Doxycycline" "Table 2B-2" 4 16 FALSE +"CLSI 2013" "MIC" "Bacillus anthracis" "Doxycycline" "M45 Table 16" 1 FALSE +"CLSI 2013" "MIC" "Brucella" "Doxycycline" "M45 Table 16" 1 FALSE +"CLSI 2013" "MIC" "Burkholderia mallei" "Doxycycline" "M45 Table 16" 4 16 FALSE +"CLSI 2013" "MIC" "Burkholderia pseudomallei" "Doxycycline" "M45 Table 16" 4 16 FALSE +"CLSI 2013" "MIC" "Campylobacter" "Doxycycline" "M45 Table 3" 2 8 FALSE +"CLSI 2013" "DISK" "Enterococcus" "Doxycycline" "Table 2D" "30ug" 16 12 FALSE +"CLSI 2013" "MIC" "Enterococcus" "Doxycycline" "Table 2D" 4 16 FALSE +"CLSI 2013" "MIC" "Francisella tularensis" "Doxycycline" "M45 Table 16" 4 FALSE +"CLSI 2013" "DISK" "Pasteurella" "Doxycycline" "M45 Table 13" "30ug" 23 FALSE +"CLSI 2013" "MIC" "Pasteurella" "Doxycycline" "M45 Table 13" 0.5 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Doxycycline" "Table 2C" "30ug" 16 12 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Doxycycline" "Table 2C" 4 16 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Doxycycline" "Table 2G" "30ug" 28 24 FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Doxycycline" "Table 2G" 0.25 1 FALSE +"CLSI 2013" "MIC" "Vibrio cholerae" "Doxycycline" "M45 Table 14" "30ug" 4 16 FALSE +"CLSI 2013" "MIC" "Yersinia pestis" "Doxycycline" "M45 Table 16" 4 16 FALSE +"CLSI 2013" "MIC" "Canine, feline" "Alloscardovia" "Enrofloxacin" "Vet Table" 0.5 4 FALSE +"CLSI 2013" "DISK" "Histophilus somni" "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2013" "MIC" "Histophilus somni" "Enrofloxacin" "Vet Table" 0.25 2 FALSE +"CLSI 2013" "DISK" "Providencia heimbachae" "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2013" "DISK" "Pasteurella multocida" "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" "Enoxacin" "Table 2F" "10ug" 36 31 FALSE +"CLSI 2013" "MIC" "Neisseria gonorrhoeae" "Enoxacin" "Table 2F" 0.5 2 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Enoxacin" "Table 2C" "10ug" 18 14 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Enoxacin" "Table 2C" 2 8 FALSE +"CLSI 2013" "MIC" "Bacillus" "Erythromycin" "M45 Table 3" 0.5 8 FALSE +"CLSI 2013" "MIC" "Bacillus anthracis" "Erythromycin" "M45 Table 16" FALSE +"CLSI 2013" "MIC" "Campylobacter" "Erythromycin" "M45 Table 3" 8 32 FALSE +"CLSI 2013" "DISK" "Enterococcus" "Erythromycin" "Table 2D" "15ug" 23 13 FALSE +"CLSI 2013" "MIC" "Enterococcus" "Erythromycin" "Table 2D" 0.5 8 FALSE +"CLSI 2013" "MIC" "Erysipelothrix rhusiopathiae" "Erythromycin" "M45 Table 6" 0.25 1 FALSE +"CLSI 2013" "MIC" "Granulicatella" "Erythromycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2013" "MIC" "Lactobacillus" "Erythromycin" "M45 Table 9" 0.5 8 FALSE +"CLSI 2013" "DISK" "Moraxella catarrhalis" "Erythromycin" "M45 Table 12" "15ug" 21 FALSE +"CLSI 2013" "MIC" "Moraxella catarrhalis" "Erythromycin" "M45 Table 12" 2 FALSE +"CLSI 2013" "DISK" "Pasteurella" "Erythromycin" "M45 Table 13" "15ug" 27 24 FALSE +"CLSI 2013" "MIC" "Pasteurella" "Erythromycin" "M45 Table 13" 0.5 2 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Erythromycin" "Table 2C" "15ug" 23 13 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Erythromycin" "Table 2C" 0.5 8 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Erythromycin" "Table 2H-1" "15ug" 21 15 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Erythromycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Erythromycin" "Table 2H-1" 0.25 1 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Erythromycin" "Table 2G" "15ug" 21 15 FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Erythromycin" "Table 2G" 0.25 1 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Erythromycin" "Table 2H-2" "15ug" 21 15 FALSE +"CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Erythromycin" "Table 2H-2" 0.25 1 FALSE +"CLSI 2013" "DISK" "Acinetobacter" "Ertapenem" "Table 2B-2" "10ug" FALSE +"CLSI 2013" "MIC" "Acinetobacter" "Ertapenem" "Table 2B-2" FALSE +"CLSI 2013" "DISK" "Aeromonas" "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE +"CLSI 2013" "MIC" "Aeromonas" "Ertapenem" "M45 Table 2" 2 8 FALSE +"CLSI 2013" "MIC" "Anaerosalibacter" "Ertapenem" "Table 2J" 4 16 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Ertapenem" "Table 2E" "10ug" 19 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Ertapenem" "Table 2E" 0.5 FALSE +"CLSI 2013" "DISK" "Plesiomonas" "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE +"CLSI 2013" "MIC" "Plesiomonas" "Ertapenem" "M45 Table 2" 2 8 FALSE +"CLSI 2013" "DISK" "Pseudomonas" "Ertapenem" "10ug" FALSE +"CLSI 2013" "MIC" "Pseudomonas" "Ertapenem" FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Ertapenem" "Table 2C" "10ug" 19 15 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Ertapenem" "Table 2C" 2 8 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Ertapenem" "Table 2H-1" "10ug" FALSE +"CLSI 2013" "MIC" "Streptococcus" "Ertapenem" "Table 2H-1" 1 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Ertapenem" "Table 2G" "10ug" FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Ertapenem" "Table 2G" 1 4 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Ertapenem" "Table 2H-2" "10ug" FALSE +"CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Ertapenem" "Table 2H-2" 1 FALSE +"CLSI 2013" "DISK" "Acinetobacter" "Cefepime" "Table 2B-2" "30ug" 18 14 FALSE +"CLSI 2013" "MIC" "Acinetobacter" "Cefepime" "Table 2B-2" 8 32 FALSE +"CLSI 2013" "DISK" "Aeromonas" "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2013" "MIC" "Aeromonas" "Cefepime" "M45 Table 2" 8 32 FALSE +"CLSI 2013" "MIC" "Erysipelothrix rhusiopathiae" "Cefepime" "M45 Table 6" 1 FALSE +"CLSI 2013" "MIC" "Granulicatella" "Cefepime" "M45 Table 1" 1 4 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Cefepime" "Table 2E" "30ug" 26 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Cefepime" "Table 2E" 2 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" "Cefepime" "Table 2F" "30ug" 31 FALSE +"CLSI 2013" "MIC" "Neisseria gonorrhoeae" "Cefepime" "Table 2F" 0.5 FALSE +"CLSI 2013" "DISK" "Plesiomonas" "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2013" "MIC" "Plesiomonas" "Cefepime" "M45 Table 2" 8 32 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" "Cefepime" "Table 2B-1" "30ug" 18 14 FALSE +"CLSI 2013" "MIC" "Pseudomonas aeruginosa" "Cefepime" "Table 2B-1" 8 32 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Cefepime" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Cefepime" "Table 2C" 8 32 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Cefepime" "Table 2H-1" "30ug" 24 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Cefepime" "M45 Table 1" 1 4 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Cefepime" "Table 2H-1" 0.5 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Cefepime" "Table 2G" "30ug" FALSE +"CLSI 2013" "MIC" "Meningitis" "Streptococcus pneumoniae" "Cefepime" "Table 2G" 0.5 2 FALSE +"CLSI 2013" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Cefepime" "Table 2G" 1 4 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Cefepime" "Table 2H-2" "30ug" 24 21 FALSE +"CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Cefepime" "Table 2H-2" 1 4 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Fleroxacin" "Table 2E" "5ug" 19 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Fleroxacin" "Table 2E" 2 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" "Fleroxacin" "Table 2F" "5ug" 35 28 FALSE +"CLSI 2013" "MIC" "Neisseria gonorrhoeae" "Fleroxacin" "Table 2F" 0.25 1 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Fleroxacin" "Table 2C" "5ug" 19 15 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Fleroxacin" "Table 2C" 2 8 FALSE +"CLSI 2013" "DISK" "Enterococcus" "Fosfomycin" "Table 2D" "200ug" 16 12 FALSE +"CLSI 2013" "MIC" "Enterococcus" "Fosfomycin" "Table 2D" 64 256 FALSE +"CLSI 2013" "DISK" "Aeromonas" "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2013" "MIC" "Aeromonas" "Cefoxitin" "M45 Table 2" 8 32 FALSE +"CLSI 2013" "MIC" "Anaerosalibacter" "Cefoxitin" "Table 2J" 16 64 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" "Cefoxitin" "Table 2F" "30ug" 28 23 FALSE +"CLSI 2013" "MIC" "Neisseria gonorrhoeae" "Cefoxitin" "Table 2F" 2 8 FALSE +"CLSI 2013" "DISK" "Plesiomonas" "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2013" "MIC" "Plesiomonas" "Cefoxitin" "M45 Table 2" 8 32 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Cefoxitin" "Table 2C" "30ug" 25 24 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Cefoxitin" "Table 2C" 4 8 FALSE +"CLSI 2013" "DISK" "Staphylococcus aureus" "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE +"CLSI 2013" "MIC" "Staphylococcus aureus" "Cefoxitin" "Table 2C" 4 8 FALSE +"CLSI 2013" "DISK" "Staphylococcus lugdunensis" "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE +"CLSI 2013" "MIC" "Staphylococcus lugdunensis" "Cefoxitin" "Table 2C" 4 8 FALSE +"CLSI 2013" "MIC" "Abiotrophia" "Gatifloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2013" "DISK" "Acinetobacter" "Gatifloxacin" "Table 2B-2" "5ug" 18 14 FALSE +"CLSI 2013" "MIC" "Acinetobacter" "Gatifloxacin" "Table 2B-2" 2 8 FALSE +"CLSI 2013" "DISK" "Enterococcus" "Gatifloxacin" "Table 2D" "5ug" 18 14 FALSE +"CLSI 2013" "MIC" "Enterococcus" "Gatifloxacin" "Table 2D" 2 8 FALSE +"CLSI 2013" "MIC" "Granulicatella" "Gatifloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Gatifloxacin" "Table 2E" "5ug" 18 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Gatifloxacin" "Table 2E" 1 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" "Gatifloxacin" "Table 2F" "5ug" 38 33 FALSE +"CLSI 2013" "MIC" "Neisseria gonorrhoeae" "Gatifloxacin" "Table 2F" 0.125 0.5 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" "Gatifloxacin" "Table 2B-1" "5ug" 18 14 FALSE +"CLSI 2013" "MIC" "Pseudomonas aeruginosa" "Gatifloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Gatifloxacin" "Table 2C" "10ug" 23 19 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Gatifloxacin" "Table 2C" 0.5 2 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Gatifloxacin" "Table 2H-1" "5ug" 21 17 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Gatifloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Gatifloxacin" "Table 2H-1" 1 4 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Gatifloxacin" "Table 2G" "5ug" 21 17 FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Gatifloxacin" "Table 2G" 1 4 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Gatifloxacin" "Table 2H-2" "5ug" 21 17 FALSE +"CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Gatifloxacin" "Table 2H-2" 1 4 FALSE +"CLSI 2013" "DISK" "Enterococcus" "Gentamicin-high" "Table 2D" "120ug" 10 6 FALSE +"CLSI 2013" "MIC" "Enterococcus" "Gentamicin-high" "Table 2D" 512 512 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Gemifloxacin" "Table 2E" "5ug" 18 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Gemifloxacin" "Table 2E" 0.125 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Gemifloxacin" "Table 2H-1" "5ug" FALSE +"CLSI 2013" "MIC" "Streptococcus" "Gemifloxacin" "Table 2H-1" FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Gemifloxacin" "Table 2G" "5ug" 23 19 FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Gemifloxacin" "Table 2G" 0.125 0.5 FALSE +"CLSI 2013" "DISK" "Acinetobacter" "Gentamicin" "Table 2B-2" "10ug" 15 12 FALSE +"CLSI 2013" "MIC" "Acinetobacter" "Gentamicin" "Table 2B-2" 4 16 FALSE +"CLSI 2013" "DISK" "Aeromonas" "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE +"CLSI 2013" "MIC" "Aeromonas" "Gentamicin" "M45 Table 2" 4 16 FALSE +"CLSI 2013" "MIC" "Bacillus" "Gentamicin" "M45 Table 3" 4 16 FALSE +"CLSI 2013" "MIC" "Bacillus anthracis" "Gentamicin" "M45 Table 16" FALSE +"CLSI 2013" "MIC" "Brucella" "Gentamicin" "M45 Table 16" 4 FALSE +"CLSI 2013" "MIC" "Enterococcus" "Gentamicin" "Table 2D" 512 512 FALSE +"CLSI 2013" "MIC" "Francisella tularensis" "Gentamicin" "M45 Table 16" 4 FALSE +"CLSI 2013" "MIC" "Leuconostoc" "Gentamicin" "M45 Table 10" 4 16 FALSE +"CLSI 2013" "MIC" "Lactobacillus" "Gentamicin" "M45 Table 9" 4 16 FALSE +"CLSI 2013" "MIC" "Pediococcus" "Gentamicin" "M45 Table 14" 4 16 FALSE +"CLSI 2013" "DISK" "Plesiomonas" "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE +"CLSI 2013" "MIC" "Plesiomonas" "Gentamicin" "M45 Table 2" 4 16 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" "Gentamicin" "Table 2B-1" "10ug" 15 12 FALSE +"CLSI 2013" "MIC" "Pseudomonas aeruginosa" "Gentamicin" "Table 2B-1" 4 16 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Gentamicin" "Table 2C" "10ug" 15 12 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Gentamicin" "Table 2C" 4 16 FALSE +"CLSI 2013" "MIC" "Yersinia pestis" "Gentamicin" "M45 Table 16" 4 16 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Grepafloxacin" "Table 2E" "5ug" 24 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Grepafloxacin" "Table 2E" 0.5 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" "Grepafloxacin" "Table 2F" "5ug" 37 27 FALSE +"CLSI 2013" "MIC" "Neisseria gonorrhoeae" "Grepafloxacin" "Table 2F" 0.064 1 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Grepafloxacin" "Table 2C" "5ug" 18 14 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Grepafloxacin" "Table 2C" 1 4 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Grepafloxacin" "Table 2H-1" "5ug" 19 15 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Grepafloxacin" "Table 2H-1" 0.5 2 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Grepafloxacin" "Table 2G" "5ug" 19 15 FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Grepafloxacin" "Table 2G" 0.5 2 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Grepafloxacin" "Table 2H-2" "5ug" 19 15 FALSE +"CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Grepafloxacin" "Table 2H-2" 0.5 2 FALSE +"CLSI 2013" "MIC" "Abiotrophia" "Imipenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2013" "DISK" "Acinetobacter" "Imipenem" "Table 2B-2" "10ug" 16 13 FALSE +"CLSI 2013" "MIC" "Acinetobacter" "Imipenem" "Table 2B-2" 4 16 FALSE +"CLSI 2013" "DISK" "Aeromonas" "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2013" "MIC" "Aeromonas" "Imipenem" "M45 Table 2" 4 16 FALSE +"CLSI 2013" "MIC" "Aggregatibacter" "Imipenem" "M45 Table 7" 4 16 FALSE +"CLSI 2013" "MIC" "Anaerosalibacter" "Imipenem" "Table 2J" 4 16 FALSE +"CLSI 2013" "MIC" "Bacillus" "Imipenem" "M45 Table 3" 4 16 FALSE +"CLSI 2013" "MIC" "Bacillus anthracis" "Imipenem" "M45 Table 16" FALSE +"CLSI 2013" "MIC" "Burkholderia mallei" "Imipenem" "M45 Table 16" 4 16 FALSE +"CLSI 2013" "MIC" "Burkholderia pseudomallei" "Imipenem" "M45 Table 16" 4 16 FALSE +"CLSI 2013" "MIC" "Cardiobacterium" "Imipenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2013" "MIC" "Eikenella" "Imipenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2013" "MIC" "Erysipelothrix rhusiopathiae" "Imipenem" "M45 Table 6" 0.5 FALSE +"CLSI 2013" "MIC" "Granulicatella" "Imipenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Imipenem" "Table 2E" "10ug" 16 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Imipenem" "Table 2E" 4 FALSE +"CLSI 2013" "MIC" "Kingella" "Imipenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2013" "MIC" "Lactobacillus" "Imipenem" "M45 Table 9" 0.5 2 FALSE +"CLSI 2013" "MIC" "Pediococcus" "Imipenem" "M45 Table 14" 0.5 FALSE +"CLSI 2013" "DISK" "Plesiomonas" "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2013" "MIC" "Plesiomonas" "Imipenem" "M45 Table 2" 4 16 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" "Imipenem" "Table 2B-1" "10ug" 19 15 FALSE +"CLSI 2013" "MIC" "Pseudomonas aeruginosa" "Imipenem" "Table 2B-1" 2 8 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Imipenem" "Table 2C" "10ug" 16 13 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Imipenem" "Table 2C" 4 16 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Imipenem" "Table 2H-1" "10ug" FALSE +"CLSI 2013" "MIC" "Streptococcus" "Imipenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Imipenem" "Table 2H-1" FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Imipenem" "Table 2G" "10ug" FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Imipenem" "Table 2G" 0.125 1 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Kanamycin" "Table 2C" "30ug" 18 13 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Kanamycin" "Table 2C" 16 64 FALSE +"CLSI 2013" "DISK" "Enterococcus" "Linezolid" "Table 2D" "30ug" 23 20 FALSE +"CLSI 2013" "MIC" "Enterococcus" "Linezolid" "Table 2D" 2 8 FALSE +"CLSI 2013" "MIC" "Lactobacillus" "Linezolid" "M45 Table 9" 4 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Linezolid" "Table 2C" "30ug" 21 20 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Linezolid" "Table 2C" 4 8 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Linezolid" "Table 2H-1" "30ug" 21 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Linezolid" "Table 2H-1" 2 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Linezolid" "Table 2G" "30ug" 21 FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Linezolid" "Table 2G" 2 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Linezolid" "Table 2H-2" "30ug" 21 FALSE +"CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Linezolid" "Table 2H-2" 2 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Lomefloxacin" "Table 2E" "10ug" 22 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Lomefloxacin" "Table 2E" 2 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" "Lomefloxacin" "Table 2F" "10ug" 38 26 FALSE +"CLSI 2013" "MIC" "Neisseria gonorrhoeae" "Lomefloxacin" "Table 2F" 0.125 2 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" "Lomefloxacin" "Table 2B-1" "10ug" 22 18 FALSE +"CLSI 2013" "MIC" "Pseudomonas aeruginosa" "Lomefloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Lomefloxacin" "Table 2C" "10ug" 22 18 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Lomefloxacin" "Table 2C" 2 8 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Loracarbef" "Table 2E" "30ug" 19 15 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Loracarbef" "Table 2E" 8 32 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Loracarbef" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Loracarbef" "Table 2C" 8 32 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Loracarbef" "Table 2G" "30ug" FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Loracarbef" "Table 2G" 2 8 FALSE +"CLSI 2013" "MIC" "Anaerosalibacter" "Latamoxef" "Table 2J" 2 8 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Latamoxef" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Latamoxef" "Table 2C" 8 64 FALSE +"CLSI 2013" "MIC" "Abiotrophia" "Levofloxacin" "M45 Table 1" 2 8 FALSE +"CLSI 2013" "DISK" "Acinetobacter" "Levofloxacin" "Table 2B-2" "5ug" 17 13 FALSE +"CLSI 2013" "MIC" "Acinetobacter" "Levofloxacin" "Table 2B-2" 2 8 FALSE +"CLSI 2013" "DISK" "Aeromonas" "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE +"CLSI 2013" "MIC" "Aeromonas" "Levofloxacin" "M45 Table 2" 2 8 FALSE +"CLSI 2013" "MIC" "Aggregatibacter" "Levofloxacin" "M45 Table 7" 2 8 FALSE +"CLSI 2013" "MIC" "Bacillus" "Levofloxacin" "M45 Table 3" 2 8 FALSE +"CLSI 2013" "MIC" "Bacillus anthracis" "Levofloxacin" "M45 Table 16" 0.25 FALSE +"CLSI 2013" "DISK" "Burkholderia cepacia" "Levofloxacin" "Table 2B-3" "5ug" FALSE +"CLSI 2013" "MIC" "Burkholderia cepacia" "Levofloxacin" "Table 2B-3" 2 8 FALSE +"CLSI 2013" "MIC" "Cardiobacterium" "Levofloxacin" "M45 Table 7" 2 8 FALSE +"CLSI 2013" "MIC" "Eikenella" "Levofloxacin" "M45 Table 7" 2 8 FALSE +"CLSI 2013" "DISK" "Enterococcus" "Levofloxacin" "Table 2D" "5ug" 17 13 FALSE +"CLSI 2013" "MIC" "Enterococcus" "Levofloxacin" "Table 2D" 2 8 FALSE +"CLSI 2013" "MIC" "Erysipelothrix rhusiopathiae" "Levofloxacin" "M45 Table 6" 2 FALSE +"CLSI 2013" "MIC" "Francisella tularensis" "Levofloxacin" "M45 Table 16" 0.5 FALSE +"CLSI 2013" "MIC" "Granulicatella" "Levofloxacin" "M45 Table 1" 2 8 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Levofloxacin" "Table 2E" "5ug" 17 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Levofloxacin" "Table 2E" 2 FALSE +"CLSI 2013" "MIC" "Kingella" "Levofloxacin" "M45 Table 7" 2 8 FALSE +"CLSI 2013" "MIC" "Moraxella catarrhalis" "Levofloxacin" "M45 Table 12" 2 FALSE +"CLSI 2013" "DISK" "Neisseria meningitidis" "Levofloxacin" "Table 2I" "5ug" FALSE +"CLSI 2013" "MIC" "Neisseria meningitidis" "Levofloxacin" "Table 2I" 0.032 0.12 FALSE +"CLSI 2013" "DISK" "Plesiomonas" "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE +"CLSI 2013" "MIC" "Plesiomonas" "Levofloxacin" "M45 Table 2" 2 8 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" "Levofloxacin" "Table 2B-1" "5ug" 17 13 FALSE +"CLSI 2013" "MIC" "Pseudomonas aeruginosa" "Levofloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2013" "DISK" "Pasteurella" "Levofloxacin" "M45 Table 13" "5ug" 28 FALSE +"CLSI 2013" "MIC" "Pasteurella" "Levofloxacin" "M45 Table 13" 0.064 FALSE +"CLSI 2013" "MIC" "Salmonella" "Levofloxacin" "Table 2A" 0.125 2 FALSE +"CLSI 2013" "DISK" "Stenotrophomonas maltophilia" "Levofloxacin" "Table 2B-4" "75ug" 17 13 FALSE +"CLSI 2013" "MIC" "Stenotrophomonas maltophilia" "Levofloxacin" "Table 2B-4" 2 8 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Levofloxacin" "Table 2C" "10ug" 19 15 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Levofloxacin" "Table 2C" 1 4 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Levofloxacin" "Table 2H-1" "5ug" 17 13 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Levofloxacin" "M45 Table 1" 2 8 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Levofloxacin" "Table 2H-1" 2 8 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Levofloxacin" "Table 2G" "5ug" 17 13 FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Levofloxacin" "Table 2G" 2 8 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Levofloxacin" "Table 2H-2" "5ug" 17 13 FALSE +"CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Levofloxacin" "Table 2H-2" 2 8 FALSE +"CLSI 2013" "MIC" "Yersinia pestis" "Levofloxacin" "M45 Table 16" 0.25 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Cefamandole" "Table 2E" "30ug" FALSE +"CLSI 2013" "MIC" "Haemophilus" "Cefamandole" "Table 2E" 4 16 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Cefamandole" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Cefamandole" "Table 2C" 8 32 FALSE +"CLSI 2013" "MIC" "Abiotrophia" "Meropenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2013" "DISK" "Acinetobacter" "Meropenem" "Table 2B-2" "10ug" 16 13 FALSE +"CLSI 2013" "MIC" "Acinetobacter" "Meropenem" "Table 2B-2" 4 16 FALSE +"CLSI 2013" "DISK" "Aeromonas" "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2013" "MIC" "Aeromonas" "Meropenem" "M45 Table 2" 4 16 FALSE +"CLSI 2013" "MIC" "Aggregatibacter" "Meropenem" "M45 Table 7" 4 16 FALSE +"CLSI 2013" "MIC" "Anaerosalibacter" "Meropenem" "Table 2J" 4 16 FALSE +"CLSI 2013" "DISK" "Burkholderia cepacia" "Meropenem" "Table 2B-3" "10ug" 20 15 FALSE +"CLSI 2013" "MIC" "Burkholderia cepacia" "Meropenem" "Table 2B-3" 4 16 FALSE +"CLSI 2013" "MIC" "Cardiobacterium" "Meropenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2013" "MIC" "Eikenella" "Meropenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2013" "MIC" "Erysipelothrix rhusiopathiae" "Meropenem" "M45 Table 6" 0.5 FALSE +"CLSI 2013" "MIC" "Granulicatella" "Meropenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Meropenem" "Table 2E" "10ug" 20 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Meropenem" "Table 2E" 0.5 FALSE +"CLSI 2013" "MIC" "Kingella" "Meropenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2013" "DISK" "Neisseria meningitidis" "Meropenem" "Table 2I" "10ug" 30 FALSE +"CLSI 2013" "MIC" "Neisseria meningitidis" "Meropenem" "Table 2I" 0.25 FALSE +"CLSI 2013" "DISK" "Plesiomonas" "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2013" "MIC" "Plesiomonas" "Meropenem" "M45 Table 2" 4 16 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" "Meropenem" "Table 2B-1" "10ug" 19 15 FALSE +"CLSI 2013" "MIC" "Pseudomonas aeruginosa" "Meropenem" "Table 2B-1" 2 8 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Meropenem" "Table 2C" "10ug" 15 13 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Meropenem" "Table 2C" 4 16 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Meropenem" "Table 2H-1" "10ug" FALSE +"CLSI 2013" "MIC" "Streptococcus" "Meropenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Meropenem" "Table 2H-1" 0.5 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Meropenem" "Table 2G" "10ug" FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Meropenem" "Table 2G" 0.25 1 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Meropenem" "Table 2H-2" "10ug" FALSE +"CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Meropenem" "Table 2H-2" 0.5 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Methicillin" "Table 2C" "5ug" 14 9 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Methicillin" "Table 2C" 8 16 FALSE +"CLSI 2013" "DISK" "Acinetobacter" "Mezlocillin" "Table 2B-2" "75ug" 21 17 FALSE +"CLSI 2013" "MIC" "Acinetobacter" "Mezlocillin" "Table 2B-2" 16 128 FALSE +"CLSI 2013" "MIC" "Anaerosalibacter" "Mezlocillin" "Table 2J" 32 128 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Moxifloxacin" "Table 2E" "5ug" 18 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Moxifloxacin" "Table 2E" 1 FALSE +"CLSI 2013" "DISK" "Pasteurella" "Moxifloxacin" "M45 Table 13" "5ug" 28 FALSE +"CLSI 2013" "MIC" "Pasteurella" "Moxifloxacin" "M45 Table 13" 0.064 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Moxifloxacin" "Table 2C" "5ug" 24 20 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Moxifloxacin" "Table 2C" 0.5 2 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Moxifloxacin" "Table 2H-1" "5ug" FALSE +"CLSI 2013" "MIC" "Streptococcus" "Moxifloxacin" "Table 2H-1" FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Moxifloxacin" "Table 2G" "5ug" 18 14 FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Moxifloxacin" "Table 2G" 1 4 FALSE +"CLSI 2013" "DISK" "Acinetobacter" "Minocycline" "Table 2B-2" "30ug" 16 12 FALSE +"CLSI 2013" "MIC" "Acinetobacter" "Minocycline" "Table 2B-2" 4 16 FALSE +"CLSI 2013" "DISK" "Burkholderia cepacia" "Minocycline" "Table 2B-3" "30ug" 19 14 FALSE +"CLSI 2013" "MIC" "Burkholderia cepacia" "Minocycline" "Table 2B-3" 4 16 FALSE +"CLSI 2013" "DISK" "Enterococcus" "Minocycline" "Table 2D" "30ug" 19 14 FALSE +"CLSI 2013" "MIC" "Enterococcus" "Minocycline" "Table 2D" 4 16 FALSE +"CLSI 2013" "MIC" "Leuconostoc" "Minocycline" "M45 Table 10" 4 16 FALSE +"CLSI 2013" "DISK" "Neisseria meningitidis" "Minocycline" "Table 2I" "30ug" 26 FALSE +"CLSI 2013" "MIC" "Neisseria meningitidis" "Minocycline" "Table 2I" 2 FALSE +"CLSI 2013" "DISK" "Stenotrophomonas maltophilia" "Minocycline" "Table 2B-4" "30ug" 19 14 FALSE +"CLSI 2013" "MIC" "Stenotrophomonas maltophilia" "Minocycline" "Table 2B-4" 4 16 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Minocycline" "Table 2C" "30ug" 19 14 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Minocycline" "Table 2C" 4 16 FALSE +"CLSI 2013" "MIC" "Anaerosalibacter" "Metronidazole" "Table 2J" 8 32 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Nafcillin" "Table 2C" "1ug" 13 10 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Nafcillin" "Table 2C" 2 4 FALSE +"CLSI 2013" "DISK" "Neisseria meningitidis" "Nalidixic acid" "Table 2I" "30ug" 26 25 FALSE +"CLSI 2013" "MIC" "Neisseria meningitidis" "Nalidixic acid" "Table 2I" 4 8 FALSE +"CLSI 2013" "DISK" "Acinetobacter" "Netilmicin" "Table 2B-2" "30ug" FALSE +"CLSI 2013" "MIC" "Acinetobacter" "Netilmicin" "Table 2B-2" 8 32 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" "Netilmicin" "Table 2B-1" "30ug" 15 12 FALSE +"CLSI 2013" "MIC" "Pseudomonas aeruginosa" "Netilmicin" "Table 2B-1" 8 32 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Netilmicin" "Table 2C" "30ug" 15 12 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Netilmicin" "Table 2C" 8 32 FALSE +"CLSI 2013" "DISK" "Enterococcus" "Nitrofurantoin" "Table 2D" "300ug" 17 14 FALSE +"CLSI 2013" "MIC" "Enterococcus" "Nitrofurantoin" "Table 2D" 32 128 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Nitrofurantoin" "Table 2C" "300ug" 17 14 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Nitrofurantoin" "Table 2C" 32 128 FALSE +"CLSI 2013" "DISK" "Enterococcus" "Norfloxacin" "Table 2D" "10ug" 17 12 FALSE +"CLSI 2013" "MIC" "Enterococcus" "Norfloxacin" "Table 2D" 4 16 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" "Norfloxacin" "Table 2B-1" "10ug" 17 12 FALSE +"CLSI 2013" "MIC" "Pseudomonas aeruginosa" "Norfloxacin" "Table 2B-1" 4 16 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Norfloxacin" "Table 2C" "10ug" 17 12 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Norfloxacin" "Table 2C" 4 16 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Norfloxacin" "Table 2G" "5ug" FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Norfloxacin" "Table 2G" FALSE +"CLSI 2013" "DISK" "Haemophilus" "Ofloxacin" "Table 2E" "5ug" 16 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Ofloxacin" "Table 2E" 2 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" "Ofloxacin" "Table 2F" "5ug" 31 24 FALSE +"CLSI 2013" "MIC" "Neisseria gonorrhoeae" "Ofloxacin" "Table 2F" 0.25 2 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" "Ofloxacin" "Table 2B-1" "5ug" 16 12 FALSE +"CLSI 2013" "MIC" "Pseudomonas aeruginosa" "Ofloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2013" "MIC" "Salmonella" "Ofloxacin" "Table 2A" 0.125 2 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Ofloxacin" "Table 2C" "5ug" 18 14 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Ofloxacin" "Table 2C" 1 4 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Ofloxacin" "Table 2H-1" "5ug" 16 12 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Ofloxacin" "Table 2H-1" 2 8 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Ofloxacin" "Table 2G" "5ug" 16 12 FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Ofloxacin" "Table 2G" 2 8 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Ofloxacin" "Table 2H-2" "5ug" 16 12 FALSE +"CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Ofloxacin" "Table 2H-2" 2 8 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Oxacillin" "Table 2C" "1ug" 13 10 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Oxacillin" "Table 2C" 2 4 FALSE +"CLSI 2013" "DISK" "Staphylococcus aureus" "Oxacillin" "Table 2C" "1ug" 13 10 FALSE +"CLSI 2013" "MIC" "Staphylococcus aureus" "Oxacillin" "Table 2C" 2 4 FALSE +"CLSI 2013" "DISK" "Staphylococcus lugdunensis" "Oxacillin" "Table 2C" "1ug" FALSE +"CLSI 2013" "MIC" "Staphylococcus lugdunensis" "Oxacillin" "Table 2C" 2 4 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Oxacillin" "Table 2G" "1ug" 20 FALSE +"CLSI 2013" "MIC" "Abiotrophia" "Penicillin G" "M45 Table 1" 0.125 4 FALSE +"CLSI 2013" "MIC" "Aggregatibacter" "Penicillin G" "M45 Table 7" 1 4 FALSE +"CLSI 2013" "MIC" "Anaerosalibacter" "Penicillin G" "Table 2J" 0.5 2 FALSE +"CLSI 2013" "MIC" "Bacillus" "Penicillin G" "M45 Table 3" 0.125 0.25 FALSE +"CLSI 2013" "MIC" "Bacillus anthracis" "Penicillin G" "M45 Table 16" 0.125 0.25 FALSE +"CLSI 2013" "MIC" "Cardiobacterium" "Penicillin G" "M45 Table 7" 1 4 FALSE +"CLSI 2013" "MIC" "Eikenella" "Penicillin G" "M45 Table 7" 1 4 FALSE +"CLSI 2013" "DISK" "Enterococcus" "Penicillin G" "Table 2D" "10units" 15 14 FALSE +"CLSI 2013" "MIC" "Enterococcus" "Penicillin G" "Table 2D" 8 16 FALSE +"CLSI 2013" "MIC" "Erysipelothrix rhusiopathiae" "Penicillin G" "M45 Table 6" 0.125 FALSE +"CLSI 2013" "MIC" "Granulicatella" "Penicillin G" "M45 Table 1" 0.125 4 FALSE +"CLSI 2013" "MIC" "Kingella" "Penicillin G" "M45 Table 7" 1 4 FALSE +"CLSI 2013" "MIC" "Leuconostoc" "Penicillin G" "M45 Table 10" 8 FALSE +"CLSI 2013" "MIC" "Lactobacillus" "Penicillin G" "M45 Table 9" 8 FALSE +"CLSI 2013" "DISK" "Listeria monocytogenes" "Penicillin G" "M45 Table 11" "10units" FALSE +"CLSI 2013" "MIC" "Listeria monocytogenes" "Penicillin G" "M45 Table 11" 2 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" "Penicillin G" "Table 2F" "10units" 47 26 FALSE +"CLSI 2013" "MIC" "Neisseria gonorrhoeae" "Penicillin G" "Table 2F" 0.064 2 FALSE +"CLSI 2013" "DISK" "Neisseria meningitidis" "Penicillin G" "Table 2I" "10units" FALSE +"CLSI 2013" "MIC" "Neisseria meningitidis" "Penicillin G" "Table 2I" 0.064 0.5 FALSE +"CLSI 2013" "MIC" "Pediococcus" "Penicillin G" "M45 Table 14" 8 FALSE +"CLSI 2013" "DISK" "Pasteurella" "Penicillin G" "M45 Table 13" "10 Units" 25 FALSE +"CLSI 2013" "MIC" "Pasteurella" "Penicillin G" "M45 Table 13" 0.5 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Penicillin G" "Table 2C" "10ug" 29 28 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Penicillin G" "Table 2C" 0.125 0.25 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Penicillin G" "Table 2H-1" "10units" 24 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Penicillin G" "M45 Table 1" 0.125 4 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Penicillin G" "Table 2H-1" 0.125 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" "10units" FALSE +"CLSI 2013" "MIC" "Meningitis" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" 0.064 0.12 FALSE +"CLSI 2013" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" 2 8 FALSE +"CLSI 2013" "MIC" "Oral" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" 0.064 2 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Penicillin G" "Table 2H-2" "10units" FALSE +"CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Penicillin G" "Table 2H-2" 0.125 4 FALSE +"CLSI 2013" "DISK" "Acinetobacter" "Piperacillin" "Table 2B-2" "100ug" 21 17 FALSE +"CLSI 2013" "MIC" "Acinetobacter" "Piperacillin" "Table 2B-2" 16 128 FALSE +"CLSI 2013" "MIC" "Anaerosalibacter" "Piperacillin" "Table 2J" 32 128 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" "Piperacillin" "Table 2B-1" "100ug" 21 14 FALSE +"CLSI 2013" "MIC" "Pseudomonas aeruginosa" "Piperacillin" "Table 2B-1" 16 128 FALSE +"CLSI 2013" "DISK" "Acinetobacter" "Polymyxin B" "Table 2B-2" "300ug" FALSE +"CLSI 2013" "MIC" "Acinetobacter" "Polymyxin B" "Table 2B-2" 2 4 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" "Polymyxin B" "Table 2B-1" "300ug" 12 11 FALSE +"CLSI 2013" "MIC" "Pseudomonas aeruginosa" "Polymyxin B" "Table 2B-1" 2 8 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Penicillin V" "Table 2G" "10ug" FALSE +"CLSI 2013" "MIC" "Oral" "Streptococcus pneumoniae" "Penicillin V" "Table 2G" 0.064 2 FALSE +"CLSI 2013" "DISK" "Enterococcus" "Quinupristin/dalfopristin" "Table 2D" "15ug" 19 15 FALSE +"CLSI 2013" "MIC" "Enterococcus" "Quinupristin/dalfopristin" "Table 2D" 1 4 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Quinupristin/dalfopristin" "Table 2C" "15ug" 19 15 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Quinupristin/dalfopristin" "Table 2C" 1 4 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Quinupristin/dalfopristin" "Table 2H-1" "15ug" 19 15 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Quinupristin/dalfopristin" "Table 2H-1" 1 4 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Quinupristin/dalfopristin" "Table 2G" "15ug" 19 15 FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Quinupristin/dalfopristin" "Table 2G" 1 4 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Quinupristin/dalfopristin" "Table 2H-2" "15ug" 19 15 FALSE +"CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Quinupristin/dalfopristin" "Table 2H-2" 1 4 FALSE +"CLSI 2013" "MIC" "Aggregatibacter" "Rifampicin" "M45 Table 7" 1 4 FALSE +"CLSI 2013" "MIC" "Bacillus" "Rifampicin" "M45 Table 3" 1 4 FALSE +"CLSI 2013" "MIC" "Bacillus anthracis" "Rifampicin" "M45 Table 16" FALSE +"CLSI 2013" "MIC" "Cardiobacterium" "Rifampicin" "M45 Table 7" 1 4 FALSE +"CLSI 2013" "MIC" "Eikenella" "Rifampicin" "M45 Table 7" 1 4 FALSE +"CLSI 2013" "DISK" "Enterococcus" "Rifampicin" "Table 2D" "5ug" 20 16 FALSE +"CLSI 2013" "MIC" "Enterococcus" "Rifampicin" "Table 2D" 1 4 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Rifampicin" "Table 2E" "5ug" 20 16 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Rifampicin" "Table 2E" 1 4 FALSE +"CLSI 2013" "MIC" "Kingella" "Rifampicin" "M45 Table 7" 1 4 FALSE +"CLSI 2013" "MIC" "Moraxella catarrhalis" "Rifampicin" "M45 Table 12" 1 4 FALSE +"CLSI 2013" "DISK" "Neisseria meningitidis" "Rifampicin" "Table 2I" "5ug" 25 19 FALSE +"CLSI 2013" "MIC" "Neisseria meningitidis" "Rifampicin" "Table 2I" 0.5 2 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Rifampicin" "Table 2C" "5ug" 20 16 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Rifampicin" "Table 2C" 1 4 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Rifampicin" "Table 2H-1" "5ug" FALSE +"CLSI 2013" "MIC" "Streptococcus" "Rifampicin" "Table 2H-1" FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Rifampicin" "Table 2G" "5ug" 19 16 FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Rifampicin" "Table 2G" 1 4 FALSE +"CLSI 2013" "DISK" "Acinetobacter" "Ampicillin/sulbactam" "Table 2B-2" "10ug" 15 11 FALSE +"CLSI 2013" "MIC" "Acinetobacter" "Ampicillin/sulbactam" "Table 2B-2" 8 32 FALSE +"CLSI 2013" "DISK" "Aeromonas" "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE +"CLSI 2013" "MIC" "Aeromonas" "Ampicillin/sulbactam" "M45 Table 2" 8 32 FALSE +"CLSI 2013" "MIC" "Aggregatibacter" "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE +"CLSI 2013" "MIC" "Anaerosalibacter" "Ampicillin/sulbactam" "Table 2J" 8 32 FALSE +"CLSI 2013" "MIC" "Cardiobacterium" "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE +"CLSI 2013" "MIC" "Eikenella" "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Ampicillin/sulbactam" "Table 2E" "10/10ug" 20 19 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Ampicillin/sulbactam" "Table 2E" 2 4 FALSE +"CLSI 2013" "DISK" "Plesiomonas" "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE +"CLSI 2013" "MIC" "Plesiomonas" "Ampicillin/sulbactam" "M45 Table 2" 8 32 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Ampicillin/sulbactam" "Table 2C" "10ug" 15 11 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Ampicillin/sulbactam" "Table 2C" 8 32 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Ampicillin/sulbactam" "Table 2G" "10/10ug" FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Ampicillin/sulbactam" "Table 2G" FALSE +"CLSI 2013" "DISK" "Neisseria meningitidis" "Sulfamethoxazole" "Table 2I" "200-300ug" FALSE +"CLSI 2013" "MIC" "Neisseria meningitidis" "Sulfamethoxazole" "Table 2I" 2 8 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Sulfamethoxazole" "Table 2C" "200ug" 17 12 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Sulfamethoxazole" "Table 2C" 256 512 FALSE +"CLSI 2013" "DISK" "Neisseria meningitidis" "Sulfisoxazole" "Table 2I" "200-300ug" FALSE +"CLSI 2013" "MIC" "Neisseria meningitidis" "Sulfisoxazole" "Table 2I" 2 8 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Sulfisoxazole" "Table 2C" "200ug" 17 12 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Sulfisoxazole" "Table 2C" 256 512 FALSE +"CLSI 2013" "DISK" "Histophilus somni" "Spectinomycin" "Vet Table" "100ug" 14 10 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" "Spectinomycin" "Table 2F" "100ug" 18 14 FALSE +"CLSI 2013" "MIC" "Neisseria gonorrhoeae" "Spectinomycin" "Table 2F" 32 128 FALSE +"CLSI 2013" "DISK" "Providencia heimbachae" "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2013" "DISK" "Pasteurella multocida" "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Sparfloxacin" "Table 2E" "5ug" FALSE +"CLSI 2013" "MIC" "Haemophilus" "Sparfloxacin" "Table 2E" 0.25 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Sparfloxacin" "Table 2C" "5ug" 19 15 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Sparfloxacin" "Table 2C" 0.5 2 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Sparfloxacin" "Table 2H-1" "5ug" FALSE +"CLSI 2013" "MIC" "Streptococcus" "Sparfloxacin" "Table 2H-1" FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Sparfloxacin" "Table 2G" "5ug" 19 15 FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Sparfloxacin" "Table 2G" 0.5 2 FALSE +"CLSI 2013" "DISK" "Neisseria meningitidis" "Sulfonamides" "Table 2I" "200-300ug" FALSE +"CLSI 2013" "MIC" "Neisseria meningitidis" "Sulfonamides" "Table 2I" 2 8 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Sulfonamides" "Table 2C" "200ug" 17 12 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Sulfonamides" "Table 2C" 256 512 FALSE +"CLSI 2013" "DISK" "Enterococcus" "Streptomycin-high" "Table 2D" "300ug" 10 6 FALSE +"CLSI 2013" "MIC" "Enterococcus" "Streptomycin-high" "Table 2D" 1024 1024 FALSE +"CLSI 2013" "MIC" "Brucella" "Streptoduocin" "M45 Table 16" 8 FALSE +"CLSI 2013" "MIC" "Enterococcus" "Streptoduocin" "Table 2D" 1024 1024 FALSE +"CLSI 2013" "MIC" "Francisella tularensis" "Streptoduocin" "M45 Table 16" 8 FALSE +"CLSI 2013" "MIC" "Yersinia pestis" "Streptoduocin" "M45 Table 16" 4 16 FALSE +"CLSI 2013" "DISK" "Acinetobacter" "Trimethoprim/sulfamethoxazole" "Table 2B-2" "1.25/23.75ug" 16 10 FALSE +"CLSI 2013" "MIC" "Acinetobacter" "Trimethoprim/sulfamethoxazole" "Table 2B-2" 2 4 FALSE +"CLSI 2013" "DISK" "Aeromonas" "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25/23.75ug" 16 10 FALSE +"CLSI 2013" "MIC" "Aeromonas" "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE +"CLSI 2013" "MIC" "Aggregatibacter" "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE +"CLSI 2013" "MIC" "Bacillus" "Trimethoprim/sulfamethoxazole" "M45 Table 3" 2 4 FALSE +"CLSI 2013" "MIC" "Bacillus anthracis" "Trimethoprim/sulfamethoxazole" "M45 Table 16" FALSE +"CLSI 2013" "MIC" "Brucella" "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 FALSE +"CLSI 2013" "DISK" "Burkholderia cepacia" "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25/23.75ug" 16 10 FALSE +"CLSI 2013" "MIC" "Burkholderia cepacia" "Trimethoprim/sulfamethoxazole" "Table 2B-3" 2 4 FALSE +"CLSI 2013" "MIC" "Burkholderia pseudomallei" "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 4 FALSE +"CLSI 2013" "MIC" "Cardiobacterium" "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE +"CLSI 2013" "MIC" "Eikenella" "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Trimethoprim/sulfamethoxazole" "Table 2E" "1.25/23.75ug" 15 10 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Trimethoprim/sulfamethoxazole" "Table 2E" 0.5 4 FALSE +"CLSI 2013" "MIC" "Kingella" "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE +"CLSI 2013" "MIC" "Listeria monocytogenes" "Trimethoprim/sulfamethoxazole" "M45 Table 11" 0.5 4 FALSE +"CLSI 2013" "DISK" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" "M45 Table 12" "1.25/23.75ug" 13 10 FALSE +"CLSI 2013" "MIC" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" "M45 Table 12" 0.5 4 FALSE +"CLSI 2013" "DISK" "Neisseria meningitidis" "Trimethoprim/sulfamethoxazole" "Table 2I" "1.25/23.75ug" 30 25 FALSE +"CLSI 2013" "MIC" "Neisseria meningitidis" "Trimethoprim/sulfamethoxazole" "Table 2I" 0.125 0.5 FALSE +"CLSI 2013" "DISK" "Plesiomonas" "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25/23.75ug" 16 10 FALSE +"CLSI 2013" "MIC" "Plesiomonas" "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE +"CLSI 2013" "DISK" "Pasteurella" "Trimethoprim/sulfamethoxazole" "M45 Table 13" "1.25/23.75ug" 24 FALSE +"CLSI 2013" "MIC" "Pasteurella" "Trimethoprim/sulfamethoxazole" "M45 Table 13" 0.5 FALSE +"CLSI 2013" "DISK" "Stenotrophomonas maltophilia" "Trimethoprim/sulfamethoxazole" "Table 2B-4" "30ug" 16 10 FALSE +"CLSI 2013" "MIC" "Stenotrophomonas maltophilia" "Trimethoprim/sulfamethoxazole" "Table 2B-4" 2 4 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Trimethoprim/sulfamethoxazole" "Table 2C" "1.25/23.75ug" 16 10 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Trimethoprim/sulfamethoxazole" "Table 2C" 2 4 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Trimethoprim/sulfamethoxazole" "Table 2H-1" "1.25/23.75ug" FALSE +"CLSI 2013" "MIC" "Streptococcus" "Trimethoprim/sulfamethoxazole" "Table 2H-1" FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" "Table 2G" "1.25/23.75ug" 19 15 FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" "Table 2G" 0.5 4 FALSE +"CLSI 2013" "MIC" "Yersinia pestis" "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 4 FALSE +"CLSI 2013" "DISK" "Acinetobacter" "Ticarcillin/clavulanic acid" "Table 2B-2" "75ug" 20 14 FALSE +"CLSI 2013" "MIC" "Acinetobacter" "Ticarcillin/clavulanic acid" "Table 2B-2" 16 128 FALSE +"CLSI 2013" "MIC" "Anaerosalibacter" "Ticarcillin/clavulanic acid" "Table 2J" 32 128 FALSE +"CLSI 2013" "DISK" "Burkholderia cepacia" "Ticarcillin/clavulanic acid" "Table 2B-3" "75ug" FALSE +"CLSI 2013" "MIC" "Burkholderia cepacia" "Ticarcillin/clavulanic acid" "Table 2B-3" 16 128 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" "Ticarcillin/clavulanic acid" "Table 2B-1" "75ug" 24 15 FALSE +"CLSI 2013" "MIC" "Pseudomonas aeruginosa" "Ticarcillin/clavulanic acid" "Table 2B-1" 16 128 FALSE +"CLSI 2013" "DISK" "Stenotrophomonas maltophilia" "Ticarcillin/clavulanic acid" "Table 2B-4" "30ug" FALSE +"CLSI 2013" "MIC" "Stenotrophomonas maltophilia" "Ticarcillin/clavulanic acid" "Table 2B-4" 16 128 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Ticarcillin/clavulanic acid" "Table 2C" "75/10ug" 23 22 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Ticarcillin/clavulanic acid" "Table 2C" 8 16 FALSE +"CLSI 2013" "DISK" "Acinetobacter" "Tetracycline" "Table 2B-2" "30ug" 15 11 FALSE +"CLSI 2013" "MIC" "Acinetobacter" "Tetracycline" "Table 2B-2" 4 16 FALSE +"CLSI 2013" "DISK" "Aeromonas" "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE +"CLSI 2013" "MIC" "Aeromonas" "Tetracycline" "M45 Table 2" 4 16 FALSE +"CLSI 2013" "MIC" "Aggregatibacter" "Tetracycline" "M45 Table 7" 2 8 FALSE +"CLSI 2013" "MIC" "Anaerosalibacter" "Tetracycline" "Table 2J" 4 16 FALSE +"CLSI 2013" "MIC" "Bacillus" "Tetracycline" "M45 Table 3" 4 16 FALSE +"CLSI 2013" "MIC" "Bacillus anthracis" "Tetracycline" "M45 Table 16" 1 FALSE +"CLSI 2013" "MIC" "Brucella" "Tetracycline" "M45 Table 16" 1 FALSE +"CLSI 2013" "MIC" "Burkholderia mallei" "Tetracycline" "M45 Table 16" 4 16 FALSE +"CLSI 2013" "MIC" "Burkholderia pseudomallei" "Tetracycline" "M45 Table 16" 4 16 FALSE +"CLSI 2013" "MIC" "Campylobacter" "Tetracycline" "M45 Table 3" 4 16 FALSE +"CLSI 2013" "MIC" "Cardiobacterium" "Tetracycline" "M45 Table 7" 2 8 FALSE +"CLSI 2013" "MIC" "Eikenella" "Tetracycline" "M45 Table 7" 2 8 FALSE +"CLSI 2013" "DISK" "Enterococcus" "Tetracycline" "Table 2D" "30ug" 19 14 FALSE +"CLSI 2013" "MIC" "Enterococcus" "Tetracycline" "Table 2D" 4 16 FALSE +"CLSI 2013" "MIC" "Francisella tularensis" "Tetracycline" "M45 Table 16" 4 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Tetracycline" "Table 2E" "30ug" 29 25 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Tetracycline" "Table 2E" 2 8 FALSE +"CLSI 2013" "MIC" "Kingella" "Tetracycline" "M45 Table 7" 2 8 FALSE +"CLSI 2013" "DISK" "Moraxella catarrhalis" "Tetracycline" "M45 Table 12" "30ug" 29 24 FALSE +"CLSI 2013" "MIC" "Moraxella catarrhalis" "Tetracycline" "M45 Table 12" 2 8 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" "Tetracycline" "Table 2F" "30ug" 38 30 FALSE +"CLSI 2013" "MIC" "Neisseria gonorrhoeae" "Tetracycline" "Table 2F" 0.25 2 FALSE +"CLSI 2013" "DISK" "Plesiomonas" "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE +"CLSI 2013" "MIC" "Plesiomonas" "Tetracycline" "M45 Table 2" 4 16 FALSE +"CLSI 2013" "DISK" "Pasteurella" "Tetracycline" "M45 Table 13" "30ug" 23 FALSE +"CLSI 2013" "MIC" "Pasteurella" "Tetracycline" "M45 Table 13" 1 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Tetracycline" "Table 2C" "30ug" 19 14 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Tetracycline" "Table 2C" 4 16 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Tetracycline" "Table 2H-1" "30ug" 23 18 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Tetracycline" "Table 2H-1" 2 8 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Tetracycline" "Table 2G" "30ug" 28 24 FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Tetracycline" "Table 2G" 1 4 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Tetracycline" "Table 2H-2" "30ug" 23 18 FALSE +"CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Tetracycline" "Table 2H-2" 2 8 FALSE +"CLSI 2013" "MIC" "Yersinia pestis" "Tetracycline" "M45 Table 16" 4 16 FALSE +"CLSI 2013" "DISK" "Enterococcus" "Teicoplanin" "Table 2D" "30ug" 14 10 FALSE +"CLSI 2013" "MIC" "Enterococcus" "Teicoplanin" "Table 2D" 8 32 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Teicoplanin" "Table 2C" "30ug" 14 10 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Teicoplanin" "Table 2C" 8 32 FALSE +"CLSI 2013" "DISK" "Acinetobacter" "Ticarcillin" "Table 2B-2" "75ug" 20 14 FALSE +"CLSI 2013" "MIC" "Acinetobacter" "Ticarcillin" "Table 2B-2" 16 128 FALSE +"CLSI 2013" "MIC" "Anaerosalibacter" "Ticarcillin" "Table 2J" 32 128 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" "Ticarcillin" "Table 2B-1" "75ug" 24 15 FALSE +"CLSI 2013" "MIC" "Pseudomonas aeruginosa" "Ticarcillin" "Table 2B-1" 16 128 FALSE +"CLSI 2013" "DISK" "Actinobacillus pleuropneumoniae" "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE +"CLSI 2013" "MIC" "Actinobacillus pleuropneumoniae" "Tilmicosin" "Vet Table" 16 32 FALSE +"CLSI 2013" "DISK" "Pasteurella multocida" "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE +"CLSI 2013" "MIC" "Pasteurella multocida" "Tilmicosin" "Vet Table" 16 32 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Telithromycin" "Table 2E" "15ug" 15 11 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Telithromycin" "Table 2E" 4 16 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Telithromycin" "Table 2C" "15ug" 22 18 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Telithromycin" "Table 2C" 1 4 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Telithromycin" "Table 2H-1" FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Telithromycin" "Table 2G" "15ug" 19 15 FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Telithromycin" "Table 2G" 1 4 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Trimethoprim" "Table 2C" "5ug" 16 10 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Trimethoprim" "Table 2C" 8 16 FALSE +"CLSI 2013" "DISK" "Acinetobacter" "Tobramycin" "Table 2B-2" "10ug" 15 12 FALSE +"CLSI 2013" "MIC" "Acinetobacter" "Tobramycin" "Table 2B-2" 4 16 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" "Tobramycin" "Table 2B-1" "10ug" 15 12 FALSE +"CLSI 2013" "MIC" "Pseudomonas aeruginosa" "Tobramycin" "Table 2B-1" 4 16 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Tobramycin" "Table 2C" "10ug" 15 12 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Tobramycin" "Table 2C" 4 16 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Trovafloxacin" "Table 2E" "10ug" 22 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Trovafloxacin" "Table 2E" 1 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" "Trovafloxacin" "Table 2F" "10ug" 34 FALSE +"CLSI 2013" "MIC" "Neisseria gonorrhoeae" "Trovafloxacin" "Table 2F" 0.25 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Trovafloxacin" "Table 2H-1" "10ug" 19 15 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Trovafloxacin" "Table 2H-1" 1 4 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Trovafloxacin" "Table 2G" "10ug" 19 15 FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Trovafloxacin" "Table 2G" 1 4 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Trovafloxacin" "Table 2H-2" "10ug" 19 15 FALSE +"CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Trovafloxacin" "Table 2H-2" 1 4 FALSE +"CLSI 2013" "DISK" "Acinetobacter" "Piperacillin/tazobactam" "Table 2B-2" "100ug" 21 17 FALSE +"CLSI 2013" "MIC" "Acinetobacter" "Piperacillin/tazobactam" "Table 2B-2" 16 128 FALSE +"CLSI 2013" "DISK" "Aeromonas" "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE +"CLSI 2013" "MIC" "Aeromonas" "Piperacillin/tazobactam" "M45 Table 2" 16 128 FALSE +"CLSI 2013" "MIC" "Anaerosalibacter" "Piperacillin/tazobactam" "Table 2J" 32 128 FALSE +"CLSI 2013" "DISK" "Haemophilus" "Piperacillin/tazobactam" "Table 2E" "100ug" 21 FALSE +"CLSI 2013" "MIC" "Haemophilus" "Piperacillin/tazobactam" "Table 2E" 1 2 FALSE +"CLSI 2013" "DISK" "Plesiomonas" "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE +"CLSI 2013" "MIC" "Plesiomonas" "Piperacillin/tazobactam" "M45 Table 2" 16 128 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" "Piperacillin/tazobactam" "Table 2B-1" "100ug" 21 14 FALSE +"CLSI 2013" "MIC" "Pseudomonas aeruginosa" "Piperacillin/tazobactam" "Table 2B-1" 16 128 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Piperacillin/tazobactam" "Table 2C" "100/10ug" 18 17 FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Piperacillin/tazobactam" "Table 2C" 8 16 FALSE +"CLSI 2013" "MIC" "Abiotrophia" "Vancomycin" "M45 Table 1" 1 FALSE +"CLSI 2013" "MIC" "Bacillus" "Vancomycin" "M45 Table 3" 4 FALSE +"CLSI 2013" "MIC" "Bacillus anthracis" "Vancomycin" "M45 Table 16" FALSE +"CLSI 2013" "DISK" "Enterococcus" "Vancomycin" "Table 2D" "30ug" 17 14 FALSE +"CLSI 2013" "MIC" "Enterococcus" "Vancomycin" "Table 2D" 4 32 FALSE +"CLSI 2013" "MIC" "Granulicatella" "Vancomycin" "M45 Table 1" 1 FALSE +"CLSI 2013" "MIC" "Lactobacillus" "Vancomycin" "M45 Table 9" 2 16 FALSE +"CLSI 2013" "DISK" "Staphylococcus" "Vancomycin" "Table 2C" "30ug" FALSE +"CLSI 2013" "MIC" "Staphylococcus" "Vancomycin" "Table 2C" 4 32 FALSE +"CLSI 2013" "MIC" "Staphylococcus aureus" "Vancomycin" "Table 2C" 2 16 FALSE +"CLSI 2013" "DISK" "Streptococcus" "Vancomycin" "Table 2H-1" "30ug" 17 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Vancomycin" "M45 Table 1" 1 FALSE +"CLSI 2013" "MIC" "Streptococcus" "Vancomycin" "Table 2H-1" 1 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" "Vancomycin" "Table 2G" "30ug" 17 FALSE +"CLSI 2013" "MIC" "Streptococcus pneumoniae" "Vancomycin" "Table 2G" 1 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" "Vancomycin" "Table 2H-2" "30ug" 17 FALSE +"CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" "Vancomycin" "Table 2H-2" 1 FALSE +"CLSI 2012" "DISK" "Aeromonas" "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE +"CLSI 2012" "MIC" "Aeromonas" "Amoxicillin/clavulanic acid" "M45 Table 2" 8 32 FALSE +"CLSI 2012" "MIC" "Aggregatibacter" "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE +"CLSI 2012" "MIC" "Anaerosalibacter" "Amoxicillin/clavulanic acid" "Table 2J" 4 16 FALSE +"CLSI 2012" "MIC" "Burkholderia pseudomallei" "Amoxicillin/clavulanic acid" "M45 Table 16" 8 32 FALSE +"CLSI 2012" "MIC" "Cardiobacterium" "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE +"CLSI 2012" "MIC" "Eikenella" "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Amoxicillin/clavulanic acid" "Table 2E" "20/10ug" 20 19 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Amoxicillin/clavulanic acid" "Table 2E" 4 8 FALSE +"CLSI 2012" "DISK" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" "M45 Table 12" "20ug" 24 23 FALSE +"CLSI 2012" "MIC" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" "M45 Table 12" 4 8 FALSE +"CLSI 2012" "DISK" "Plesiomonas" "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE +"CLSI 2012" "MIC" "Plesiomonas" "Amoxicillin/clavulanic acid" "M45 Table 2" 8 32 FALSE +"CLSI 2012" "DISK" "Pasteurella" "Amoxicillin/clavulanic acid" "M45 Table 13" "20ug" 27 FALSE +"CLSI 2012" "MIC" "Pasteurella" "Amoxicillin/clavulanic acid" "M45 Table 13" 0.5 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Amoxicillin/clavulanic acid" "Table 2C" "20ug" 20 19 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Amoxicillin/clavulanic acid" "Table 2C" 4 8 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Amoxicillin/clavulanic acid" "Table 2H-1" "20ug" FALSE +"CLSI 2012" "MIC" "Streptococcus" "Amoxicillin/clavulanic acid" "Table 2H-1" FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Amoxicillin/clavulanic acid" "Table 2G" "10/10ug" FALSE +"CLSI 2012" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Amoxicillin/clavulanic acid" "Table 2G" 2 8 FALSE +"CLSI 2012" "DISK" "Acinetobacter" "Amikacin" "Table 2B-2" "30ug" 17 14 FALSE +"CLSI 2012" "MIC" "Acinetobacter" "Amikacin" "Table 2B-2" 16 64 FALSE +"CLSI 2012" "DISK" "Aeromonas" "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE +"CLSI 2012" "MIC" "Aeromonas" "Amikacin" "M45 Table 2" 16 64 FALSE +"CLSI 2012" "MIC" "Bacillus" "Amikacin" "M45 Table 3" 16 64 FALSE +"CLSI 2012" "MIC" "Bacillus anthracis" "Amikacin" "M45 Table 16" FALSE +"CLSI 2012" "DISK" "Plesiomonas" "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE +"CLSI 2012" "MIC" "Plesiomonas" "Amikacin" "M45 Table 2" 16 64 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" "Amikacin" "Table 2B-1" "30ug" 17 14 FALSE +"CLSI 2012" "MIC" "Pseudomonas aeruginosa" "Amikacin" "Table 2B-1" 16 64 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Amikacin" "Table 2C" "30ug" 17 14 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Amikacin" "Table 2C" 16 64 FALSE +"CLSI 2012" "MIC" "Aggregatibacter" "Ampicillin" "M45 Table 7" 1 4 FALSE +"CLSI 2012" "MIC" "Anaerosalibacter" "Ampicillin" "Table 2J" 0.5 2 FALSE +"CLSI 2012" "MIC" "Bacillus" "Ampicillin" "M45 Table 3" 0.25 0.5 FALSE +"CLSI 2012" "MIC" "Bacillus anthracis" "Ampicillin" "M45 Table 16" FALSE +"CLSI 2012" "MIC" "Cardiobacterium" "Ampicillin" "M45 Table 7" 1 4 FALSE +"CLSI 2012" "MIC" "Eikenella" "Ampicillin" "M45 Table 7" 1 4 FALSE +"CLSI 2012" "DISK" "Enterococcus" "Ampicillin" "Table 2D" "10ug" 17 16 FALSE +"CLSI 2012" "MIC" "Enterococcus" "Ampicillin" "Table 2D" 8 16 FALSE +"CLSI 2012" "MIC" "Erysipelothrix rhusiopathiae" "Ampicillin" "M45 Table 6" 0.25 FALSE +"CLSI 2012" "MIC" "Granulicatella" "Ampicillin" "M45 Table 1" 0.25 8 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Ampicillin" "Table 2E" "10ug" 22 18 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Ampicillin" "Table 2E" 1 4 FALSE +"CLSI 2012" "MIC" "Leuconostoc" "Ampicillin" "M45 Table 10" 8 FALSE +"CLSI 2012" "MIC" "Lactobacillus" "Ampicillin" "M45 Table 9" 8 FALSE +"CLSI 2012" "DISK" "Listeria monocytogenes" "Ampicillin" "M45 Table 11" "10ug" FALSE +"CLSI 2012" "MIC" "Listeria monocytogenes" "Ampicillin" "M45 Table 11" 2 FALSE +"CLSI 2012" "DISK" "Neisseria meningitidis" "Ampicillin" "Table 2I" "10ug" FALSE +"CLSI 2012" "MIC" "Neisseria meningitidis" "Ampicillin" "Table 2I" 0.125 2 FALSE +"CLSI 2012" "MIC" "Pediococcus" "Ampicillin" "M45 Table 14" 8 FALSE +"CLSI 2012" "DISK" "Pasteurella" "Ampicillin" "M45 Table 13" "10ug" 27 FALSE +"CLSI 2012" "MIC" "Pasteurella" "Ampicillin" "M45 Table 13" 0.5 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Ampicillin" "Table 2C" "10ug" 29 28 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Ampicillin" "Table 2C" 0.25 0.5 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Ampicillin" "Table 2H-1" "10ug" 24 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Ampicillin" "M45 Table 1" 0.25 8 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Ampicillin" "Table 2H-1" 0.25 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Ampicillin" "Table 2G" "10ug" FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Ampicillin" "Table 2G" FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Ampicillin" "Table 2H-2" "10ug" FALSE +"CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Ampicillin" "Table 2H-2" 0.25 8 FALSE +"CLSI 2012" "MIC" "Pasteurella" "Amoxicillin" "M45 Table 13" 0.5 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Amoxicillin" "Table 2H-1" "30ug" FALSE +"CLSI 2012" "MIC" "Streptococcus" "Amoxicillin" "Table 2H-1" FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Amoxicillin" "Table 2G" "30ug" FALSE +"CLSI 2012" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Amoxicillin" "Table 2G" 2 8 FALSE +"CLSI 2012" "DISK" "Aeromonas" "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2012" "MIC" "Aeromonas" "Aztreonam" "M45 Table 2" 4 16 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Aztreonam" "Table 2E" "30ug" 26 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Aztreonam" "Table 2E" 2 FALSE +"CLSI 2012" "DISK" "Plesiomonas" "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2012" "MIC" "Plesiomonas" "Aztreonam" "M45 Table 2" 4 16 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" "Aztreonam" "Table 2B-1" "30ug" 22 15 FALSE +"CLSI 2012" "MIC" "Pseudomonas aeruginosa" "Aztreonam" "Table 2B-1" 8 32 FALSE +"CLSI 2012" "MIC" "Aggregatibacter" "Azithromycin" "M45 Table 7" 4 FALSE +"CLSI 2012" "MIC" "Cardiobacterium" "Azithromycin" "M45 Table 7" 4 FALSE +"CLSI 2012" "MIC" "Eikenella" "Azithromycin" "M45 Table 7" 4 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Azithromycin" "Table 2E" "15ug" 12 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Azithromycin" "Table 2E" 4 FALSE +"CLSI 2012" "MIC" "Kingella" "Azithromycin" "M45 Table 7" 4 FALSE +"CLSI 2012" "DISK" "Moraxella catarrhalis" "Azithromycin" "M45 Table 12" "15ug" 26 FALSE +"CLSI 2012" "MIC" "Moraxella catarrhalis" "Azithromycin" "M45 Table 12" 0.25 FALSE +"CLSI 2012" "DISK" "Neisseria meningitidis" "Azithromycin" "Table 2I" "15ug" 20 FALSE +"CLSI 2012" "MIC" "Neisseria meningitidis" "Azithromycin" "Table 2I" 2 FALSE +"CLSI 2012" "DISK" "Pasteurella" "Azithromycin" "M45 Table 13" "15ug" 20 FALSE +"CLSI 2012" "MIC" "Pasteurella" "Azithromycin" "M45 Table 13" 1 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Azithromycin" "Table 2C" "15ug" 18 13 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Azithromycin" "Table 2C" 2 8 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Azithromycin" "Table 2H-1" "15ug" 18 13 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Azithromycin" "Table 2H-1" 0.5 2 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Azithromycin" "Table 2G" "15ug" 18 13 FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Azithromycin" "Table 2G" 0.5 2 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Azithromycin" "Table 2H-2" "15ug" 18 13 FALSE +"CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Azithromycin" "Table 2H-2" 0.5 2 FALSE +"CLSI 2012" "MIC" "Vibrio cholerae" "Azithromycin" "M45 Table 14" "30ug" 2 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Cefetamet" "Table 2E" "10ug" 18 14 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Cefetamet" "Table 2E" 4 16 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" "Cefetamet" "Table 2F" "10ug" 29 FALSE +"CLSI 2012" "MIC" "Neisseria gonorrhoeae" "Cefetamet" "Table 2F" 0.5 FALSE +"CLSI 2012" "DISK" "Acinetobacter" "Ceftazidime" "Table 2B-2" "30ug" 18 14 FALSE +"CLSI 2012" "MIC" "Acinetobacter" "Ceftazidime" "Table 2B-2" 8 32 FALSE +"CLSI 2012" "DISK" "Aeromonas" "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2012" "MIC" "Aeromonas" "Ceftazidime" "M45 Table 2" 4 16 FALSE +"CLSI 2012" "MIC" "Bacillus" "Ceftazidime" "M45 Table 3" 8 32 FALSE +"CLSI 2012" "MIC" "Bacillus anthracis" "Ceftazidime" "M45 Table 16" FALSE +"CLSI 2012" "DISK" "Burkholderia cepacia" "Ceftazidime" "Table 2B-3" "30ug" 21 17 FALSE +"CLSI 2012" "MIC" "Burkholderia cepacia" "Ceftazidime" "Table 2B-3" 8 32 FALSE +"CLSI 2012" "MIC" "Burkholderia mallei" "Ceftazidime" "M45 Table 16" 8 32 FALSE +"CLSI 2012" "MIC" "Burkholderia pseudomallei" "Ceftazidime" "M45 Table 16" 8 32 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Ceftazidime" "Table 2E" "30ug" 26 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Ceftazidime" "Table 2E" 2 FALSE +"CLSI 2012" "MIC" "Moraxella catarrhalis" "Ceftazidime" "M45 Table 12" 2 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" "Ceftazidime" "Table 2F" "30ug" 31 FALSE +"CLSI 2012" "MIC" "Neisseria gonorrhoeae" "Ceftazidime" "Table 2F" 0.5 FALSE +"CLSI 2012" "DISK" "Plesiomonas" "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE +"CLSI 2012" "MIC" "Plesiomonas" "Ceftazidime" "M45 Table 2" 4 16 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" "Ceftazidime" "Table 2B-1" "30ug" 18 14 FALSE +"CLSI 2012" "MIC" "Pseudomonas aeruginosa" "Ceftazidime" "Table 2B-1" 8 32 FALSE +"CLSI 2012" "DISK" "Stenotrophomonas maltophilia" "Ceftazidime" "Table 2B-4" "30ug" FALSE +"CLSI 2012" "MIC" "Stenotrophomonas maltophilia" "Ceftazidime" "Table 2B-4" 8 32 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Ceftazidime" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Ceftazidime" "Table 2C" 8 32 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Cefdinir" "Table 2E" "5ug" 20 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Cefdinir" "Table 2E" 1 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Cefdinir" "Table 2C" "5ug" 20 16 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Cefdinir" "Table 2C" 1 4 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Cefdinir" "Table 2G" "5ug" FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Cefdinir" "Table 2G" 0.5 2 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Cefaclor" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Cefaclor" "Table 2E" 8 32 FALSE +"CLSI 2012" "MIC" "Moraxella catarrhalis" "Cefaclor" "M45 Table 12" 8 32 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Cefaclor" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Cefaclor" "Table 2C" 8 32 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Cefaclor" "Table 2G" "30ug" FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Cefaclor" "Table 2G" 1 4 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Cephalothin" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Cephalothin" "Table 2C" 8 32 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Cefixime" "Table 2E" "5ug" 21 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Cefixime" "Table 2E" 1 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" "Cefixime" "Table 2F" "5ug" 31 FALSE +"CLSI 2012" "MIC" "Neisseria gonorrhoeae" "Cefixime" "Table 2F" 0.25 FALSE +"CLSI 2012" "MIC" "Anaerosalibacter" "Cefoperazone" "Table 2J" 16 64 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Cefoperazone" "Table 2C" "75ug" 21 15 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Cefoperazone" "Table 2C" 16 64 FALSE +"CLSI 2012" "DISK" "Aeromonas" "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE +"CLSI 2012" "MIC" "Aeromonas" "Chloramphenicol" "M45 Table 2" 8 32 FALSE +"CLSI 2012" "MIC" "Aggregatibacter" "Chloramphenicol" "M45 Table 7" 4 16 FALSE +"CLSI 2012" "MIC" "Anaerosalibacter" "Chloramphenicol" "Table 2J" 8 32 FALSE +"CLSI 2012" "MIC" "Bacillus" "Chloramphenicol" "M45 Table 3" 8 32 FALSE +"CLSI 2012" "MIC" "Bacillus anthracis" "Chloramphenicol" "M45 Table 16" FALSE +"CLSI 2012" "DISK" "Burkholderia cepacia" "Chloramphenicol" "Table 2B-3" "30ug" FALSE +"CLSI 2012" "MIC" "Burkholderia cepacia" "Chloramphenicol" "Table 2B-3" 8 32 FALSE +"CLSI 2012" "MIC" "Cardiobacterium" "Chloramphenicol" "M45 Table 7" 4 16 FALSE +"CLSI 2012" "MIC" "Eikenella" "Chloramphenicol" "M45 Table 7" 4 16 FALSE +"CLSI 2012" "DISK" "Enterococcus" "Chloramphenicol" "Table 2D" "30ug" 18 12 FALSE +"CLSI 2012" "MIC" "Enterococcus" "Chloramphenicol" "Table 2D" 8 32 FALSE +"CLSI 2012" "MIC" "Francisella tularensis" "Chloramphenicol" "M45 Table 16" 8 FALSE +"CLSI 2012" "MIC" "Granulicatella" "Chloramphenicol" "M45 Table 1" 4 8 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Chloramphenicol" "Table 2E" "30ug" 29 25 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Chloramphenicol" "Table 2E" 2 8 FALSE +"CLSI 2012" "MIC" "Kingella" "Chloramphenicol" "M45 Table 7" 4 16 FALSE +"CLSI 2012" "MIC" "Leuconostoc" "Chloramphenicol" "M45 Table 10" 8 32 FALSE +"CLSI 2012" "MIC" "Moraxella catarrhalis" "Chloramphenicol" "M45 Table 12" 2 8 FALSE +"CLSI 2012" "DISK" "Neisseria meningitidis" "Chloramphenicol" "Table 2I" "30ug" 26 19 FALSE +"CLSI 2012" "MIC" "Neisseria meningitidis" "Chloramphenicol" "Table 2I" 2 8 FALSE +"CLSI 2012" "MIC" "Pediococcus" "Chloramphenicol" "M45 Table 14" 8 32 FALSE +"CLSI 2012" "DISK" "Plesiomonas" "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE +"CLSI 2012" "MIC" "Plesiomonas" "Chloramphenicol" "M45 Table 2" 8 32 FALSE +"CLSI 2012" "DISK" "Pasteurella" "Chloramphenicol" "M45 Table 13" "30ug" 28 FALSE +"CLSI 2012" "MIC" "Pasteurella" "Chloramphenicol" "M45 Table 13" 2 FALSE +"CLSI 2012" "DISK" "Stenotrophomonas maltophilia" "Chloramphenicol" "Table 2B-4" "30ug" FALSE +"CLSI 2012" "MIC" "Stenotrophomonas maltophilia" "Chloramphenicol" "Table 2B-4" 8 32 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Chloramphenicol" "Table 2C" "30ug" 18 12 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Chloramphenicol" "Table 2C" 8 32 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Chloramphenicol" "Table 2H-1" "30ug" 21 17 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Chloramphenicol" "M45 Table 1" 4 8 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Chloramphenicol" "Table 2H-1" 4 16 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Chloramphenicol" "Table 2G" "30ug" 21 20 FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Chloramphenicol" "Table 2G" 4 8 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Chloramphenicol" "Table 2H-2" "30ug" 21 17 FALSE +"CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Chloramphenicol" "Table 2H-2" 4 16 FALSE +"CLSI 2012" "MIC" "Yersinia pestis" "Chloramphenicol" "M45 Table 16" 8 32 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Cefonicid" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Cefonicid" "Table 2E" 4 16 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Cefonicid" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Cefonicid" "Table 2C" 8 32 FALSE +"CLSI 2012" "DISK" "Acinetobacter" "Ciprofloxacin" "Table 2B-2" "5ug" 21 15 FALSE +"CLSI 2012" "MIC" "Acinetobacter" "Ciprofloxacin" "Table 2B-2" 1 4 FALSE +"CLSI 2012" "DISK" "Aeromonas" "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE +"CLSI 2012" "MIC" "Aeromonas" "Ciprofloxacin" "M45 Table 2" 1 4 FALSE +"CLSI 2012" "MIC" "Aggregatibacter" "Ciprofloxacin" "M45 Table 7" 1 4 FALSE +"CLSI 2012" "MIC" "Bacillus" "Ciprofloxacin" "M45 Table 3" 1 4 FALSE +"CLSI 2012" "MIC" "Bacillus anthracis" "Ciprofloxacin" "M45 Table 16" 0.25 FALSE +"CLSI 2012" "MIC" "Campylobacter" "Ciprofloxacin" "M45 Table 3" 1 4 FALSE +"CLSI 2012" "MIC" "Cardiobacterium" "Ciprofloxacin" "M45 Table 7" 1 4 FALSE +"CLSI 2012" "MIC" "Eikenella" "Ciprofloxacin" "M45 Table 7" 1 4 FALSE +"CLSI 2012" "DISK" "Enterococcus" "Ciprofloxacin" "Table 2D" "5ug" 21 15 FALSE +"CLSI 2012" "MIC" "Enterococcus" "Ciprofloxacin" "Table 2D" 1 4 FALSE +"CLSI 2012" "MIC" "Erysipelothrix rhusiopathiae" "Ciprofloxacin" "M45 Table 6" 1 FALSE +"CLSI 2012" "MIC" "Francisella tularensis" "Ciprofloxacin" "M45 Table 16" 0.5 FALSE +"CLSI 2012" "MIC" "Granulicatella" "Ciprofloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Ciprofloxacin" "Table 2E" "5ug" 21 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Ciprofloxacin" "Table 2E" 1 FALSE +"CLSI 2012" "MIC" "Kingella" "Ciprofloxacin" "M45 Table 7" 1 4 FALSE +"CLSI 2012" "MIC" "Moraxella catarrhalis" "Ciprofloxacin" "M45 Table 12" 1 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" "Ciprofloxacin" "Table 2F" "5ug" 41 27 FALSE +"CLSI 2012" "MIC" "Neisseria gonorrhoeae" "Ciprofloxacin" "Table 2F" 0.064 1 FALSE +"CLSI 2012" "DISK" "Neisseria meningitidis" "Ciprofloxacin" "Table 2I" "5ug" 35 32 FALSE +"CLSI 2012" "MIC" "Neisseria meningitidis" "Ciprofloxacin" "Table 2I" 0.032 0.12 FALSE +"CLSI 2012" "DISK" "Plesiomonas" "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE +"CLSI 2012" "MIC" "Plesiomonas" "Ciprofloxacin" "M45 Table 2" 1 4 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" "Ciprofloxacin" "Table 2B-1" "5ug" 21 15 FALSE +"CLSI 2012" "MIC" "Pseudomonas aeruginosa" "Ciprofloxacin" "Table 2B-1" 1 4 FALSE +"CLSI 2012" "DISK" "Intestinal" "Salmonella" "Ciprofloxacin" "Table 2A" "5ug" 21 15 FALSE +"CLSI 2012" "DISK" "Extraintestinal" "Salmonella" "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE +"CLSI 2012" "MIC" "Intestinal" "Salmonella" "Ciprofloxacin" "Table 2A" 1 4 FALSE +"CLSI 2012" "MIC" "Extraintestinal" "Salmonella" "Ciprofloxacin" "Table 2A" 0.064 1 FALSE +"CLSI 2012" "DISK" "Salmonella enterica" "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE +"CLSI 2012" "MIC" "Salmonella enterica" "Ciprofloxacin" "Table 2A" 0.064 1 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Ciprofloxacin" "Table 2C" "5ug" 21 15 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Ciprofloxacin" "Table 2C" 1 4 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Ciprofloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Ciprofloxacin" "Table 2G" "5ug" FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Ciprofloxacin" "Table 2G" FALSE +"CLSI 2012" "MIC" "Yersinia pestis" "Ciprofloxacin" "M45 Table 16" 0.25 FALSE +"CLSI 2012" "MIC" "Anaerosalibacter" "Clindamycin" "Table 2J" 2 8 FALSE +"CLSI 2012" "MIC" "Bacillus" "Clindamycin" "M45 Table 3" 0.5 4 FALSE +"CLSI 2012" "MIC" "Bacillus anthracis" "Clindamycin" "M45 Table 16" FALSE +"CLSI 2012" "MIC" "Erysipelothrix rhusiopathiae" "Clindamycin" "M45 Table 6" 0.25 1 FALSE +"CLSI 2012" "MIC" "Granulicatella" "Clindamycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2012" "MIC" "Lactobacillus" "Clindamycin" "M45 Table 9" 0.5 2 FALSE +"CLSI 2012" "MIC" "Moraxella catarrhalis" "Clindamycin" "M45 Table 12" 0.5 4 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Clindamycin" "Table 2C" "2ug" 21 14 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Clindamycin" "Table 2C" 0.5 4 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Clindamycin" "Table 2H-1" "2ug" 19 15 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Clindamycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Clindamycin" "Table 2H-1" 0.25 1 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Clindamycin" "Table 2G" "2ug" 19 15 FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Clindamycin" "Table 2G" 0.25 1 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Clindamycin" "Table 2H-2" "2ug" 19 15 FALSE +"CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Clindamycin" "Table 2H-2" 0.25 1 FALSE +"CLSI 2012" "MIC" "Aggregatibacter" "Clarithromycin" "M45 Table 7" 8 32 FALSE +"CLSI 2012" "MIC" "Cardiobacterium" "Clarithromycin" "M45 Table 7" 8 32 FALSE +"CLSI 2012" "MIC" "Eikenella" "Clarithromycin" "M45 Table 7" 8 32 FALSE +"CLSI 2012" "MIC" "Helicobacter pylori" "Clarithromycin" "M45 Table 8" 0.25 1 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Clarithromycin" "Table 2E" "15ug" 13 10 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Clarithromycin" "Table 2E" 8 32 FALSE +"CLSI 2012" "MIC" "Kingella" "Clarithromycin" "M45 Table 7" 8 32 FALSE +"CLSI 2012" "DISK" "Moraxella catarrhalis" "Clarithromycin" "M45 Table 12" "15ug" 24 FALSE +"CLSI 2012" "MIC" "Moraxella catarrhalis" "Clarithromycin" "M45 Table 12" 1 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Clarithromycin" "Table 2C" "15ug" 18 13 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Clarithromycin" "Table 2C" 2 8 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Clarithromycin" "Table 2H-1" "15ug" 21 16 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Clarithromycin" "Table 2H-1" 0.25 1 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Clarithromycin" "Table 2G" "15ug" 21 16 FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Clarithromycin" "Table 2G" 0.25 1 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Clarithromycin" "Table 2H-2" "15ug" 21 16 FALSE +"CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Clarithromycin" "Table 2H-2" 0.25 1 FALSE +"CLSI 2012" "MIC" "Anaerosalibacter" "Cefmetazole" "Table 2J" 16 64 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" "Cefmetazole" "Table 2F" "30ug" 33 27 FALSE +"CLSI 2012" "MIC" "Neisseria gonorrhoeae" "Cefmetazole" "Table 2F" 2 8 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Cefmetazole" "Table 2C" "30ug" 16 12 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Cefmetazole" "Table 2C" 16 64 FALSE +"CLSI 2012" "DISK" "Acinetobacter" "Colistin" "Table 2B-2" "10ug" FALSE +"CLSI 2012" "MIC" "Acinetobacter" "Colistin" "Table 2B-2" 2 4 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" "Colistin" "Table 2B-1" "10ug" 11 10 FALSE +"CLSI 2012" "MIC" "Pseudomonas aeruginosa" "Colistin" "Table 2B-1" 2 8 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Cefpodoxime" "Table 2E" "10ug" 21 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Cefpodoxime" "Table 2E" 2 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" "Cefpodoxime" "Table 2F" "10ug" 29 FALSE +"CLSI 2012" "MIC" "Neisseria gonorrhoeae" "Cefpodoxime" "Table 2F" 0.5 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Cefpodoxime" "Table 2C" "10ug" 21 17 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Cefpodoxime" "Table 2C" 2 8 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Cefpodoxime" "Table 2G" "10ug" FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Cefpodoxime" "Table 2G" 0.5 2 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Cefprozil" "Table 2E" "30ug" 18 14 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Cefprozil" "Table 2E" 8 32 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Cefprozil" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Cefprozil" "Table 2C" 8 32 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Cefprozil" "Table 2G" "30ug" FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Cefprozil" "Table 2G" 2 8 FALSE +"CLSI 2012" "DISK" "Acinetobacter" "Ceftriaxone" "Table 2B-2" "30ug" 21 13 FALSE +"CLSI 2012" "MIC" "Acinetobacter" "Ceftriaxone" "Table 2B-2" 8 64 FALSE +"CLSI 2012" "DISK" "Aeromonas" "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE +"CLSI 2012" "MIC" "Aeromonas" "Ceftriaxone" "M45 Table 2" 1 4 FALSE +"CLSI 2012" "MIC" "Aggregatibacter" "Ceftriaxone" "M45 Table 7" 2 FALSE +"CLSI 2012" "MIC" "Anaerosalibacter" "Ceftriaxone" "Table 2J" 16 64 FALSE +"CLSI 2012" "MIC" "Bacillus" "Ceftriaxone" "M45 Table 3" 8 64 FALSE +"CLSI 2012" "MIC" "Bacillus anthracis" "Ceftriaxone" "M45 Table 16" FALSE +"CLSI 2012" "MIC" "Cardiobacterium" "Ceftriaxone" "M45 Table 7" 2 FALSE +"CLSI 2012" "MIC" "Eikenella" "Ceftriaxone" "M45 Table 7" 2 FALSE +"CLSI 2012" "MIC" "Erysipelothrix rhusiopathiae" "Ceftriaxone" "M45 Table 6" 1 FALSE +"CLSI 2012" "MIC" "Granulicatella" "Ceftriaxone" "M45 Table 1" 1 4 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Ceftriaxone" "Table 2E" "30ug" 26 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Ceftriaxone" "Table 2E" 2 FALSE +"CLSI 2012" "MIC" "Kingella" "Ceftriaxone" "M45 Table 7" 2 FALSE +"CLSI 2012" "MIC" "Moraxella catarrhalis" "Ceftriaxone" "M45 Table 12" 2 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" "Ceftriaxone" "Table 2F" "30ug" 35 FALSE +"CLSI 2012" "MIC" "Neisseria gonorrhoeae" "Ceftriaxone" "Table 2F" 0.25 FALSE +"CLSI 2012" "DISK" "Neisseria meningitidis" "Ceftriaxone" "Table 2I" "30ug" 34 FALSE +"CLSI 2012" "MIC" "Neisseria meningitidis" "Ceftriaxone" "Table 2I" 0.125 FALSE +"CLSI 2012" "DISK" "Plesiomonas" "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE +"CLSI 2012" "MIC" "Plesiomonas" "Ceftriaxone" "M45 Table 2" 1 4 FALSE +"CLSI 2012" "DISK" "Pasteurella" "Ceftriaxone" "M45 Table 13" "30ug" 34 FALSE +"CLSI 2012" "MIC" "Pasteurella" "Ceftriaxone" "M45 Table 13" 0.125 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Ceftriaxone" "Table 2C" "30ug" 21 13 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Ceftriaxone" "Table 2C" 8 64 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Ceftriaxone" "Table 2H-1" "30ug" 24 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Ceftriaxone" "M45 Table 1" 1 4 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Ceftriaxone" "Table 2H-1" 0.5 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Ceftriaxone" "Table 2G" "30ug" FALSE +"CLSI 2012" "MIC" "Meningitis" "Streptococcus pneumoniae" "Ceftriaxone" "Table 2G" 0.5 2 FALSE +"CLSI 2012" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Ceftriaxone" "Table 2G" 1 4 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" "Table 2H-2" "30ug" 27 24 FALSE +"CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" "Table 2H-2" 1 4 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Ceftibuten" "Table 2E" "30ug" 28 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Ceftibuten" "Table 2E" 2 FALSE +"CLSI 2012" "MIC" "Anaerosalibacter" "Cefotetan" "Table 2J" 16 64 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" "Cefotetan" "Table 2F" "30ug" 26 19 FALSE +"CLSI 2012" "MIC" "Neisseria gonorrhoeae" "Cefotetan" "Table 2F" 2 8 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Cefotetan" "Table 2C" "30ug" 16 12 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Cefotetan" "Table 2C" 16 64 FALSE +"CLSI 2012" "DISK" "Acinetobacter" "Cefotaxime" "Table 2B-2" "30ug" 23 14 FALSE +"CLSI 2012" "MIC" "Acinetobacter" "Cefotaxime" "Table 2B-2" 8 64 FALSE +"CLSI 2012" "DISK" "Aeromonas" "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE +"CLSI 2012" "MIC" "Aeromonas" "Cefotaxime" "M45 Table 2" 1 4 FALSE +"CLSI 2012" "MIC" "Aggregatibacter" "Cefotaxime" "M45 Table 7" 2 FALSE +"CLSI 2012" "MIC" "Anaerosalibacter" "Cefotaxime" "Table 2J" 16 64 FALSE +"CLSI 2012" "MIC" "Bacillus" "Cefotaxime" "M45 Table 3" 8 64 FALSE +"CLSI 2012" "MIC" "Bacillus anthracis" "Cefotaxime" "M45 Table 16" FALSE +"CLSI 2012" "MIC" "Cardiobacterium" "Cefotaxime" "M45 Table 7" 2 FALSE +"CLSI 2012" "MIC" "Eikenella" "Cefotaxime" "M45 Table 7" 2 FALSE +"CLSI 2012" "MIC" "Erysipelothrix rhusiopathiae" "Cefotaxime" "M45 Table 6" 1 FALSE +"CLSI 2012" "MIC" "Granulicatella" "Cefotaxime" "M45 Table 1" 1 4 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Cefotaxime" "Table 2E" "30ug" 26 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Cefotaxime" "Table 2E" 2 FALSE +"CLSI 2012" "MIC" "Kingella" "Cefotaxime" "M45 Table 7" 2 FALSE +"CLSI 2012" "MIC" "Moraxella catarrhalis" "Cefotaxime" "M45 Table 12" 2 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" "Cefotaxime" "Table 2F" "30ug" 31 FALSE +"CLSI 2012" "MIC" "Neisseria gonorrhoeae" "Cefotaxime" "Table 2F" 0.5 FALSE +"CLSI 2012" "DISK" "Neisseria meningitidis" "Cefotaxime" "Table 2I" "30ug" 34 FALSE +"CLSI 2012" "MIC" "Neisseria meningitidis" "Cefotaxime" "Table 2I" 0.125 FALSE +"CLSI 2012" "DISK" "Plesiomonas" "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE +"CLSI 2012" "MIC" "Plesiomonas" "Cefotaxime" "M45 Table 2" 1 4 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Cefotaxime" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Cefotaxime" "Table 2C" 8 64 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Cefotaxime" "Table 2H-1" "30ug" 24 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Cefotaxime" "M45 Table 1" 1 4 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Cefotaxime" "Table 2H-1" 0.5 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Cefotaxime" "Table 2G" "30ug" FALSE +"CLSI 2012" "MIC" "Meningitis" "Streptococcus pneumoniae" "Cefotaxime" "Table 2G" 0.5 2 FALSE +"CLSI 2012" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Cefotaxime" "Table 2G" 1 4 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Cefotaxime" "Table 2H-2" "30ug" 28 25 FALSE +"CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Cefotaxime" "Table 2H-2" 1 4 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Cefuroxime axetil" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Cefuroxime axetil" "Table 2E" 4 16 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Cefuroxime axetil" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Cefuroxime axetil" "Table 2C" 4 32 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Cefuroxime axetil" "Table 2G" "30ug" FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Cefuroxime axetil" "Table 2G" 1 4 FALSE +"CLSI 2012" "DISK" "Aeromonas" "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2012" "MIC" "Aeromonas" "Cefuroxime" "M45 Table 2" 8 32 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Cefuroxime" "Table 2E" 4 16 FALSE +"CLSI 2012" "MIC" "Moraxella catarrhalis" "Cefuroxime" "M45 Table 12" 4 16 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" "Cefuroxime" "Table 2F" "30ug" 31 25 FALSE +"CLSI 2012" "MIC" "Neisseria gonorrhoeae" "Cefuroxime" "Table 2F" 1 4 FALSE +"CLSI 2012" "DISK" "Plesiomonas" "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2012" "MIC" "Plesiomonas" "Cefuroxime" "M45 Table 2" 8 32 FALSE +"CLSI 2012" "DISK" "Parenteral" "Staphylococcus" "Cefuroxime" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2012" "DISK" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2012" "MIC" "Intravenous" "Staphylococcus" "Cefuroxime" "Table 2C" 8 32 FALSE +"CLSI 2012" "MIC" "Oral" "Staphylococcus" "Cefuroxime" "Table 2C" 4 32 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Cefuroxime" "Table 2H-1" "30ug" FALSE +"CLSI 2012" "MIC" "Streptococcus" "Cefuroxime" "Table 2H-1" FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" "30ug" FALSE +"CLSI 2012" "MIC" "Parenteral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" 0.5 2 FALSE +"CLSI 2012" "MIC" "Oral" "Streptococcus pneumoniae" "Cefuroxime" "Table 2G" 1 4 FALSE +"CLSI 2012" "MIC" "Aeromonas" "Cefazolin" "M45 Table 2" 1 4 FALSE +"CLSI 2012" "MIC" "Bacillus" "Cefazolin" "M45 Table 3" 8 16 FALSE +"CLSI 2012" "MIC" "Bacillus anthracis" "Cefazolin" "M45 Table 16" FALSE +"CLSI 2012" "MIC" "Plesiomonas" "Cefazolin" "M45 Table 2" 1 4 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Cefazolin" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Cefazolin" "Table 2C" 8 32 FALSE +"CLSI 2012" "MIC" "Anaerosalibacter" "Ceftizoxime" "Table 2J" 32 128 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Ceftizoxime" "Table 2E" "30ug" 26 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Ceftizoxime" "Table 2E" 2 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" "Ceftizoxime" "Table 2F" "30ug" 38 FALSE +"CLSI 2012" "MIC" "Neisseria gonorrhoeae" "Ceftizoxime" "Table 2F" 0.5 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Ceftizoxime" "Table 2C" "30ug" 20 14 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Ceftizoxime" "Table 2C" 8 64 FALSE +"CLSI 2012" "DISK" "Enterococcus" "Daptomycin" "Table 2D" "30ug" FALSE +"CLSI 2012" "MIC" "Enterococcus" "Daptomycin" "Table 2D" 4 FALSE +"CLSI 2012" "MIC" "Lactobacillus" "Daptomycin" "M45 Table 9" 4 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Daptomycin" "Table 2C" "30ug" FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Daptomycin" "Table 2C" 1 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Daptomycin" "Table 2H-1" "30ug" 16 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Daptomycin" "Table 2H-1" FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Daptomycin" "Table 2G" "30ug" FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Daptomycin" "Table 2H-2" "30ug" FALSE +"CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Daptomycin" "Table 2H-2" 1 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Dirithromycin" "Table 2C" "15ug" 19 15 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Dirithromycin" "Table 2C" 2 8 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Dirithromycin" "Table 2H-1" "15ug" 18 13 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Dirithromycin" "Table 2H-1" 0.5 2 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Dirithromycin" "Table 2G" "15ug" 18 13 FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Dirithromycin" "Table 2G" 0.5 2 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Dirithromycin" "Table 2H-2" "15ug" 18 13 FALSE +"CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Dirithromycin" "Table 2H-2" 0.5 2 FALSE +"CLSI 2012" "MIC" "Anaerosalibacter" "Doripenem" "Table 2J" 2 8 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Doripenem" "Table 2E" "10ug" 16 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Doripenem" "Table 2E" 1 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" "Doripenem" "Table 2B-1" "10ug" 19 15 FALSE +"CLSI 2012" "MIC" "Pseudomonas aeruginosa" "Doripenem" "Table 2B-1" 2 8 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Doripenem" "Table 2C" "10ug" 30 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Doripenem" "Table 2C" 0.5 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Doripenem" "Table 2H-1" "10ug" FALSE +"CLSI 2012" "MIC" "Streptococcus" "Doripenem" "Table 2H-1" 0.125 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Doripenem" "Table 2G" "10ug" FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Doripenem" "Table 2G" 1 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Doripenem" "Table 2H-2" "10ug" FALSE +"CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Doripenem" "Table 2H-2" 1 FALSE +"CLSI 2012" "DISK" "Acinetobacter" "Doxycycline" "Table 2B-2" "30ug" 13 9 FALSE +"CLSI 2012" "MIC" "Acinetobacter" "Doxycycline" "Table 2B-2" 4 16 FALSE +"CLSI 2012" "MIC" "Bacillus anthracis" "Doxycycline" "M45 Table 16" 1 FALSE +"CLSI 2012" "MIC" "Brucella" "Doxycycline" "M45 Table 16" 1 FALSE +"CLSI 2012" "MIC" "Burkholderia mallei" "Doxycycline" "M45 Table 16" 4 16 FALSE +"CLSI 2012" "MIC" "Burkholderia pseudomallei" "Doxycycline" "M45 Table 16" 4 16 FALSE +"CLSI 2012" "MIC" "Campylobacter" "Doxycycline" "M45 Table 3" 2 8 FALSE +"CLSI 2012" "DISK" "Enterococcus" "Doxycycline" "Table 2D" "30ug" 16 12 FALSE +"CLSI 2012" "MIC" "Enterococcus" "Doxycycline" "Table 2D" 4 16 FALSE +"CLSI 2012" "MIC" "Francisella tularensis" "Doxycycline" "M45 Table 16" 4 FALSE +"CLSI 2012" "DISK" "Pasteurella" "Doxycycline" "M45 Table 13" "30ug" 23 FALSE +"CLSI 2012" "MIC" "Pasteurella" "Doxycycline" "M45 Table 13" 0.5 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Doxycycline" "Table 2C" "30ug" 16 12 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Doxycycline" "Table 2C" 4 16 FALSE +"CLSI 2012" "MIC" "Vibrio cholerae" "Doxycycline" "M45 Table 14" "30ug" 4 16 FALSE +"CLSI 2012" "MIC" "Yersinia pestis" "Doxycycline" "M45 Table 16" 4 16 FALSE +"CLSI 2012" "MIC" "Canine, feline" "Alloscardovia" "Enrofloxacin" "Vet Table" 0.5 4 FALSE +"CLSI 2012" "DISK" "Histophilus somni" "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2012" "MIC" "Histophilus somni" "Enrofloxacin" "Vet Table" 0.25 2 FALSE +"CLSI 2012" "DISK" "Providencia heimbachae" "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2012" "DISK" "Pasteurella multocida" "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" "Enoxacin" "Table 2F" "10ug" 36 31 FALSE +"CLSI 2012" "MIC" "Neisseria gonorrhoeae" "Enoxacin" "Table 2F" 0.5 2 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Enoxacin" "Table 2C" "10ug" 18 14 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Enoxacin" "Table 2C" 2 8 FALSE +"CLSI 2012" "MIC" "Bacillus" "Erythromycin" "M45 Table 3" 0.5 8 FALSE +"CLSI 2012" "MIC" "Bacillus anthracis" "Erythromycin" "M45 Table 16" FALSE +"CLSI 2012" "MIC" "Campylobacter" "Erythromycin" "M45 Table 3" 8 32 FALSE +"CLSI 2012" "DISK" "Enterococcus" "Erythromycin" "Table 2D" "15ug" 23 13 FALSE +"CLSI 2012" "MIC" "Enterococcus" "Erythromycin" "Table 2D" 0.5 8 FALSE +"CLSI 2012" "MIC" "Erysipelothrix rhusiopathiae" "Erythromycin" "M45 Table 6" 0.25 1 FALSE +"CLSI 2012" "MIC" "Granulicatella" "Erythromycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2012" "MIC" "Lactobacillus" "Erythromycin" "M45 Table 9" 0.5 8 FALSE +"CLSI 2012" "DISK" "Moraxella catarrhalis" "Erythromycin" "M45 Table 12" "15ug" 21 FALSE +"CLSI 2012" "MIC" "Moraxella catarrhalis" "Erythromycin" "M45 Table 12" 2 FALSE +"CLSI 2012" "DISK" "Pasteurella" "Erythromycin" "M45 Table 13" "15ug" 27 24 FALSE +"CLSI 2012" "MIC" "Pasteurella" "Erythromycin" "M45 Table 13" 0.5 2 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Erythromycin" "Table 2C" "15ug" 23 13 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Erythromycin" "Table 2C" 0.5 8 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Erythromycin" "Table 2H-1" "15ug" 21 15 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Erythromycin" "M45 Table 1" 0.25 1 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Erythromycin" "Table 2H-1" 0.25 1 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Erythromycin" "Table 2G" "15ug" 21 15 FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Erythromycin" "Table 2G" 0.25 1 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Erythromycin" "Table 2H-2" "15ug" 21 15 FALSE +"CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Erythromycin" "Table 2H-2" 0.25 1 FALSE +"CLSI 2012" "DISK" "Acinetobacter" "Ertapenem" "Table 2B-2" "10ug" FALSE +"CLSI 2012" "MIC" "Acinetobacter" "Ertapenem" "Table 2B-2" FALSE +"CLSI 2012" "DISK" "Aeromonas" "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE +"CLSI 2012" "MIC" "Aeromonas" "Ertapenem" "M45 Table 2" 2 8 FALSE +"CLSI 2012" "MIC" "Anaerosalibacter" "Ertapenem" "Table 2J" 4 16 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Ertapenem" "Table 2E" "10ug" 19 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Ertapenem" "Table 2E" 0.5 FALSE +"CLSI 2012" "DISK" "Plesiomonas" "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE +"CLSI 2012" "MIC" "Plesiomonas" "Ertapenem" "M45 Table 2" 2 8 FALSE +"CLSI 2012" "DISK" "Pseudomonas" "Ertapenem" "10ug" FALSE +"CLSI 2012" "MIC" "Pseudomonas" "Ertapenem" FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Ertapenem" "Table 2C" "10ug" 19 15 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Ertapenem" "Table 2C" 2 8 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Ertapenem" "Table 2H-1" "10ug" FALSE +"CLSI 2012" "MIC" "Streptococcus" "Ertapenem" "Table 2H-1" 1 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Ertapenem" "Table 2G" "10ug" FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Ertapenem" "Table 2G" 1 4 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Ertapenem" "Table 2H-2" "10ug" FALSE +"CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Ertapenem" "Table 2H-2" 1 FALSE +"CLSI 2012" "DISK" "Acinetobacter" "Cefepime" "Table 2B-2" "30ug" 18 14 FALSE +"CLSI 2012" "MIC" "Acinetobacter" "Cefepime" "Table 2B-2" 8 32 FALSE +"CLSI 2012" "DISK" "Aeromonas" "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2012" "MIC" "Aeromonas" "Cefepime" "M45 Table 2" 8 32 FALSE +"CLSI 2012" "MIC" "Erysipelothrix rhusiopathiae" "Cefepime" "M45 Table 6" 1 FALSE +"CLSI 2012" "MIC" "Granulicatella" "Cefepime" "M45 Table 1" 1 4 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Cefepime" "Table 2E" "30ug" 26 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Cefepime" "Table 2E" 2 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" "Cefepime" "Table 2F" "30ug" 31 FALSE +"CLSI 2012" "MIC" "Neisseria gonorrhoeae" "Cefepime" "Table 2F" 0.5 FALSE +"CLSI 2012" "DISK" "Plesiomonas" "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2012" "MIC" "Plesiomonas" "Cefepime" "M45 Table 2" 8 32 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" "Cefepime" "Table 2B-1" "30ug" 18 14 FALSE +"CLSI 2012" "MIC" "Pseudomonas aeruginosa" "Cefepime" "Table 2B-1" 8 32 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Cefepime" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Cefepime" "Table 2C" 8 32 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Cefepime" "Table 2H-1" "30ug" 24 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Cefepime" "M45 Table 1" 1 4 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Cefepime" "Table 2H-1" 0.5 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Cefepime" "Table 2G" "30ug" FALSE +"CLSI 2012" "MIC" "Meningitis" "Streptococcus pneumoniae" "Cefepime" "Table 2G" 0.5 2 FALSE +"CLSI 2012" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Cefepime" "Table 2G" 1 4 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Cefepime" "Table 2H-2" "30ug" 24 21 FALSE +"CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Cefepime" "Table 2H-2" 1 4 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Fleroxacin" "Table 2E" "5ug" 19 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Fleroxacin" "Table 2E" 2 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" "Fleroxacin" "Table 2F" "5ug" 35 28 FALSE +"CLSI 2012" "MIC" "Neisseria gonorrhoeae" "Fleroxacin" "Table 2F" 0.25 1 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Fleroxacin" "Table 2C" "5ug" 19 15 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Fleroxacin" "Table 2C" 2 8 FALSE +"CLSI 2012" "DISK" "Enterococcus" "Fosfomycin" "Table 2D" "200ug" 16 12 FALSE +"CLSI 2012" "MIC" "Enterococcus" "Fosfomycin" "Table 2D" 64 256 FALSE +"CLSI 2012" "DISK" "Aeromonas" "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2012" "MIC" "Aeromonas" "Cefoxitin" "M45 Table 2" 8 32 FALSE +"CLSI 2012" "MIC" "Anaerosalibacter" "Cefoxitin" "Table 2J" 16 64 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" "Cefoxitin" "Table 2F" "30ug" 28 23 FALSE +"CLSI 2012" "MIC" "Neisseria gonorrhoeae" "Cefoxitin" "Table 2F" 2 8 FALSE +"CLSI 2012" "DISK" "Plesiomonas" "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE +"CLSI 2012" "MIC" "Plesiomonas" "Cefoxitin" "M45 Table 2" 8 32 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Cefoxitin" "Table 2C" "30ug" 25 24 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Cefoxitin" "Table 2C" 4 8 FALSE +"CLSI 2012" "DISK" "Staphylococcus aureus" "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE +"CLSI 2012" "MIC" "Staphylococcus aureus" "Cefoxitin" "Table 2C" 4 8 FALSE +"CLSI 2012" "DISK" "Staphylococcus lugdunensis" "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE +"CLSI 2012" "MIC" "Staphylococcus lugdunensis" "Cefoxitin" "Table 2C" 4 8 FALSE +"CLSI 2012" "MIC" "Abiotrophia" "Gatifloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2012" "DISK" "Acinetobacter" "Gatifloxacin" "Table 2B-2" "5ug" 18 14 FALSE +"CLSI 2012" "MIC" "Acinetobacter" "Gatifloxacin" "Table 2B-2" 2 8 FALSE +"CLSI 2012" "DISK" "Enterococcus" "Gatifloxacin" "Table 2D" "5ug" 18 14 FALSE +"CLSI 2012" "MIC" "Enterococcus" "Gatifloxacin" "Table 2D" 2 8 FALSE +"CLSI 2012" "MIC" "Granulicatella" "Gatifloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Gatifloxacin" "Table 2E" "5ug" 18 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Gatifloxacin" "Table 2E" 1 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" "Gatifloxacin" "Table 2F" "5ug" 38 33 FALSE +"CLSI 2012" "MIC" "Neisseria gonorrhoeae" "Gatifloxacin" "Table 2F" 0.125 0.5 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" "Gatifloxacin" "Table 2B-1" "5ug" 18 14 FALSE +"CLSI 2012" "MIC" "Pseudomonas aeruginosa" "Gatifloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Gatifloxacin" "Table 2C" "10ug" 23 19 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Gatifloxacin" "Table 2C" 0.5 2 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Gatifloxacin" "Table 2H-1" "5ug" 21 17 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Gatifloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Gatifloxacin" "Table 2H-1" 1 4 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Gatifloxacin" "Table 2G" "5ug" 21 17 FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Gatifloxacin" "Table 2G" 1 4 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Gatifloxacin" "Table 2H-2" "5ug" 21 17 FALSE +"CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Gatifloxacin" "Table 2H-2" 1 4 FALSE +"CLSI 2012" "DISK" "Enterococcus" "Gentamicin-high" "Table 2D" "120ug" 10 6 FALSE +"CLSI 2012" "MIC" "Enterococcus" "Gentamicin-high" "Table 2D" 512 512 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Gemifloxacin" "Table 2E" "5ug" 18 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Gemifloxacin" "Table 2E" 0.125 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Gemifloxacin" "Table 2H-1" "5ug" FALSE +"CLSI 2012" "MIC" "Streptococcus" "Gemifloxacin" "Table 2H-1" FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Gemifloxacin" "Table 2G" "5ug" 23 19 FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Gemifloxacin" "Table 2G" 0.125 0.5 FALSE +"CLSI 2012" "DISK" "Acinetobacter" "Gentamicin" "Table 2B-2" "10ug" 15 12 FALSE +"CLSI 2012" "MIC" "Acinetobacter" "Gentamicin" "Table 2B-2" 4 16 FALSE +"CLSI 2012" "DISK" "Aeromonas" "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE +"CLSI 2012" "MIC" "Aeromonas" "Gentamicin" "M45 Table 2" 4 16 FALSE +"CLSI 2012" "MIC" "Bacillus" "Gentamicin" "M45 Table 3" 4 16 FALSE +"CLSI 2012" "MIC" "Bacillus anthracis" "Gentamicin" "M45 Table 16" FALSE +"CLSI 2012" "MIC" "Brucella" "Gentamicin" "M45 Table 16" 4 FALSE +"CLSI 2012" "MIC" "Enterococcus" "Gentamicin" "Table 2D" 512 512 FALSE +"CLSI 2012" "MIC" "Francisella tularensis" "Gentamicin" "M45 Table 16" 4 FALSE +"CLSI 2012" "MIC" "Leuconostoc" "Gentamicin" "M45 Table 10" 4 16 FALSE +"CLSI 2012" "MIC" "Lactobacillus" "Gentamicin" "M45 Table 9" 4 16 FALSE +"CLSI 2012" "MIC" "Pediococcus" "Gentamicin" "M45 Table 14" 4 16 FALSE +"CLSI 2012" "DISK" "Plesiomonas" "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE +"CLSI 2012" "MIC" "Plesiomonas" "Gentamicin" "M45 Table 2" 4 16 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" "Gentamicin" "Table 2B-1" "10ug" 15 12 FALSE +"CLSI 2012" "MIC" "Pseudomonas aeruginosa" "Gentamicin" "Table 2B-1" 4 16 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Gentamicin" "Table 2C" "10ug" 15 12 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Gentamicin" "Table 2C" 4 16 FALSE +"CLSI 2012" "MIC" "Yersinia pestis" "Gentamicin" "M45 Table 16" 4 16 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Grepafloxacin" "Table 2E" "5ug" 24 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Grepafloxacin" "Table 2E" 0.5 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" "Grepafloxacin" "Table 2F" "5ug" 37 27 FALSE +"CLSI 2012" "MIC" "Neisseria gonorrhoeae" "Grepafloxacin" "Table 2F" 0.064 1 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Grepafloxacin" "Table 2C" "5ug" 18 14 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Grepafloxacin" "Table 2C" 1 4 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Grepafloxacin" "Table 2H-1" "5ug" 19 15 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Grepafloxacin" "Table 2H-1" 0.5 2 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Grepafloxacin" "Table 2G" "5ug" 19 15 FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Grepafloxacin" "Table 2G" 0.5 2 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Grepafloxacin" "Table 2H-2" "5ug" 19 15 FALSE +"CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Grepafloxacin" "Table 2H-2" 0.5 2 FALSE +"CLSI 2012" "MIC" "Abiotrophia" "Imipenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2012" "DISK" "Acinetobacter" "Imipenem" "Table 2B-2" "10ug" 16 13 FALSE +"CLSI 2012" "MIC" "Acinetobacter" "Imipenem" "Table 2B-2" 4 16 FALSE +"CLSI 2012" "DISK" "Aeromonas" "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2012" "MIC" "Aeromonas" "Imipenem" "M45 Table 2" 4 16 FALSE +"CLSI 2012" "MIC" "Aggregatibacter" "Imipenem" "M45 Table 7" 4 16 FALSE +"CLSI 2012" "MIC" "Anaerosalibacter" "Imipenem" "Table 2J" 4 16 FALSE +"CLSI 2012" "MIC" "Bacillus" "Imipenem" "M45 Table 3" 4 16 FALSE +"CLSI 2012" "MIC" "Bacillus anthracis" "Imipenem" "M45 Table 16" FALSE +"CLSI 2012" "MIC" "Burkholderia mallei" "Imipenem" "M45 Table 16" 4 16 FALSE +"CLSI 2012" "MIC" "Burkholderia pseudomallei" "Imipenem" "M45 Table 16" 4 16 FALSE +"CLSI 2012" "MIC" "Cardiobacterium" "Imipenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2012" "MIC" "Eikenella" "Imipenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2012" "MIC" "Erysipelothrix rhusiopathiae" "Imipenem" "M45 Table 6" 0.5 FALSE +"CLSI 2012" "MIC" "Granulicatella" "Imipenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Imipenem" "Table 2E" "10ug" 16 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Imipenem" "Table 2E" 4 FALSE +"CLSI 2012" "MIC" "Kingella" "Imipenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2012" "MIC" "Lactobacillus" "Imipenem" "M45 Table 9" 0.5 2 FALSE +"CLSI 2012" "MIC" "Pediococcus" "Imipenem" "M45 Table 14" 0.5 FALSE +"CLSI 2012" "DISK" "Plesiomonas" "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2012" "MIC" "Plesiomonas" "Imipenem" "M45 Table 2" 4 16 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" "Imipenem" "Table 2B-1" "10ug" 19 15 FALSE +"CLSI 2012" "MIC" "Pseudomonas aeruginosa" "Imipenem" "Table 2B-1" 2 8 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Imipenem" "Table 2C" "10ug" 16 13 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Imipenem" "Table 2C" 4 16 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Imipenem" "Table 2H-1" "10ug" FALSE +"CLSI 2012" "MIC" "Streptococcus" "Imipenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Imipenem" "Table 2H-1" FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Imipenem" "Table 2G" "10ug" FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Imipenem" "Table 2G" 0.125 1 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Kanamycin" "Table 2C" "30ug" 18 13 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Kanamycin" "Table 2C" 16 64 FALSE +"CLSI 2012" "DISK" "Enterococcus" "Linezolid" "Table 2D" "30ug" 23 20 FALSE +"CLSI 2012" "MIC" "Enterococcus" "Linezolid" "Table 2D" 2 8 FALSE +"CLSI 2012" "MIC" "Lactobacillus" "Linezolid" "M45 Table 9" 4 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Linezolid" "Table 2C" "30ug" 21 20 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Linezolid" "Table 2C" 4 8 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Linezolid" "Table 2H-1" "30ug" 21 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Linezolid" "Table 2H-1" 2 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Linezolid" "Table 2G" "30ug" 21 FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Linezolid" "Table 2G" 2 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Linezolid" "Table 2H-2" "30ug" 21 FALSE +"CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Linezolid" "Table 2H-2" 2 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Lomefloxacin" "Table 2E" "10ug" 22 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Lomefloxacin" "Table 2E" 2 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" "Lomefloxacin" "Table 2F" "10ug" 38 26 FALSE +"CLSI 2012" "MIC" "Neisseria gonorrhoeae" "Lomefloxacin" "Table 2F" 0.125 2 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" "Lomefloxacin" "Table 2B-1" "10ug" 22 18 FALSE +"CLSI 2012" "MIC" "Pseudomonas aeruginosa" "Lomefloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Lomefloxacin" "Table 2C" "10ug" 22 18 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Lomefloxacin" "Table 2C" 2 8 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Loracarbef" "Table 2E" "30ug" 19 15 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Loracarbef" "Table 2E" 8 32 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Loracarbef" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Loracarbef" "Table 2C" 8 32 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Loracarbef" "Table 2G" "30ug" FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Loracarbef" "Table 2G" 2 8 FALSE +"CLSI 2012" "MIC" "Anaerosalibacter" "Latamoxef" "Table 2J" 2 8 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Latamoxef" "Table 2C" "30ug" 23 14 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Latamoxef" "Table 2C" 8 64 FALSE +"CLSI 2012" "MIC" "Abiotrophia" "Levofloxacin" "M45 Table 1" 2 8 FALSE +"CLSI 2012" "DISK" "Acinetobacter" "Levofloxacin" "Table 2B-2" "5ug" 17 13 FALSE +"CLSI 2012" "MIC" "Acinetobacter" "Levofloxacin" "Table 2B-2" 2 8 FALSE +"CLSI 2012" "DISK" "Aeromonas" "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE +"CLSI 2012" "MIC" "Aeromonas" "Levofloxacin" "M45 Table 2" 2 8 FALSE +"CLSI 2012" "MIC" "Aggregatibacter" "Levofloxacin" "M45 Table 7" 2 8 FALSE +"CLSI 2012" "MIC" "Bacillus" "Levofloxacin" "M45 Table 3" 2 8 FALSE +"CLSI 2012" "MIC" "Bacillus anthracis" "Levofloxacin" "M45 Table 16" 0.25 FALSE +"CLSI 2012" "DISK" "Burkholderia cepacia" "Levofloxacin" "Table 2B-3" "5ug" FALSE +"CLSI 2012" "MIC" "Burkholderia cepacia" "Levofloxacin" "Table 2B-3" 2 8 FALSE +"CLSI 2012" "MIC" "Cardiobacterium" "Levofloxacin" "M45 Table 7" 2 8 FALSE +"CLSI 2012" "MIC" "Eikenella" "Levofloxacin" "M45 Table 7" 2 8 FALSE +"CLSI 2012" "DISK" "Enterococcus" "Levofloxacin" "Table 2D" "5ug" 17 13 FALSE +"CLSI 2012" "MIC" "Enterococcus" "Levofloxacin" "Table 2D" 2 8 FALSE +"CLSI 2012" "MIC" "Erysipelothrix rhusiopathiae" "Levofloxacin" "M45 Table 6" 2 FALSE +"CLSI 2012" "MIC" "Francisella tularensis" "Levofloxacin" "M45 Table 16" 0.5 FALSE +"CLSI 2012" "MIC" "Granulicatella" "Levofloxacin" "M45 Table 1" 2 8 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Levofloxacin" "Table 2E" "5ug" 17 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Levofloxacin" "Table 2E" 2 FALSE +"CLSI 2012" "MIC" "Kingella" "Levofloxacin" "M45 Table 7" 2 8 FALSE +"CLSI 2012" "MIC" "Moraxella catarrhalis" "Levofloxacin" "M45 Table 12" 2 FALSE +"CLSI 2012" "DISK" "Neisseria meningitidis" "Levofloxacin" "Table 2I" "5ug" FALSE +"CLSI 2012" "MIC" "Neisseria meningitidis" "Levofloxacin" "Table 2I" 0.032 0.12 FALSE +"CLSI 2012" "DISK" "Plesiomonas" "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE +"CLSI 2012" "MIC" "Plesiomonas" "Levofloxacin" "M45 Table 2" 2 8 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" "Levofloxacin" "Table 2B-1" "5ug" 17 13 FALSE +"CLSI 2012" "MIC" "Pseudomonas aeruginosa" "Levofloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2012" "DISK" "Pasteurella" "Levofloxacin" "M45 Table 13" "5ug" 28 FALSE +"CLSI 2012" "MIC" "Pasteurella" "Levofloxacin" "M45 Table 13" 0.064 FALSE +"CLSI 2012" "DISK" "Stenotrophomonas maltophilia" "Levofloxacin" "Table 2B-4" "75ug" 17 13 FALSE +"CLSI 2012" "MIC" "Stenotrophomonas maltophilia" "Levofloxacin" "Table 2B-4" 2 8 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Levofloxacin" "Table 2C" "10ug" 19 15 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Levofloxacin" "Table 2C" 1 4 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Levofloxacin" "Table 2H-1" "5ug" 17 13 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Levofloxacin" "M45 Table 1" 2 8 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Levofloxacin" "Table 2H-1" 2 8 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Levofloxacin" "Table 2G" "5ug" 17 13 FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Levofloxacin" "Table 2G" 2 8 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Levofloxacin" "Table 2H-2" "5ug" 17 13 FALSE +"CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Levofloxacin" "Table 2H-2" 2 8 FALSE +"CLSI 2012" "MIC" "Yersinia pestis" "Levofloxacin" "M45 Table 16" 0.25 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Cefamandole" "Table 2E" "30ug" FALSE +"CLSI 2012" "MIC" "Haemophilus" "Cefamandole" "Table 2E" 4 16 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Cefamandole" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Cefamandole" "Table 2C" 8 32 FALSE +"CLSI 2012" "MIC" "Abiotrophia" "Meropenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2012" "DISK" "Acinetobacter" "Meropenem" "Table 2B-2" "10ug" 16 13 FALSE +"CLSI 2012" "MIC" "Acinetobacter" "Meropenem" "Table 2B-2" 4 16 FALSE +"CLSI 2012" "DISK" "Aeromonas" "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2012" "MIC" "Aeromonas" "Meropenem" "M45 Table 2" 4 16 FALSE +"CLSI 2012" "MIC" "Aggregatibacter" "Meropenem" "M45 Table 7" 4 16 FALSE +"CLSI 2012" "MIC" "Anaerosalibacter" "Meropenem" "Table 2J" 4 16 FALSE +"CLSI 2012" "DISK" "Burkholderia cepacia" "Meropenem" "Table 2B-3" "10ug" 20 15 FALSE +"CLSI 2012" "MIC" "Burkholderia cepacia" "Meropenem" "Table 2B-3" 4 16 FALSE +"CLSI 2012" "MIC" "Cardiobacterium" "Meropenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2012" "MIC" "Eikenella" "Meropenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2012" "MIC" "Erysipelothrix rhusiopathiae" "Meropenem" "M45 Table 6" 0.5 FALSE +"CLSI 2012" "MIC" "Granulicatella" "Meropenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Meropenem" "Table 2E" "10ug" 20 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Meropenem" "Table 2E" 0.5 FALSE +"CLSI 2012" "MIC" "Kingella" "Meropenem" "M45 Table 7" 0.5 2 FALSE +"CLSI 2012" "DISK" "Neisseria meningitidis" "Meropenem" "Table 2I" "10ug" 30 FALSE +"CLSI 2012" "MIC" "Neisseria meningitidis" "Meropenem" "Table 2I" 0.25 FALSE +"CLSI 2012" "DISK" "Plesiomonas" "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE +"CLSI 2012" "MIC" "Plesiomonas" "Meropenem" "M45 Table 2" 4 16 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" "Meropenem" "Table 2B-1" "10ug" 19 15 FALSE +"CLSI 2012" "MIC" "Pseudomonas aeruginosa" "Meropenem" "Table 2B-1" 2 8 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Meropenem" "Table 2C" "10ug" 15 13 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Meropenem" "Table 2C" 4 16 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Meropenem" "Table 2H-1" "10ug" FALSE +"CLSI 2012" "MIC" "Streptococcus" "Meropenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Meropenem" "Table 2H-1" 0.5 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Meropenem" "Table 2G" "10ug" FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Meropenem" "Table 2G" 0.25 1 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Meropenem" "Table 2H-2" "10ug" FALSE +"CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Meropenem" "Table 2H-2" 0.5 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Methicillin" "Table 2C" "5ug" 14 9 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Methicillin" "Table 2C" 8 16 FALSE +"CLSI 2012" "DISK" "Acinetobacter" "Mezlocillin" "Table 2B-2" "75ug" 21 17 FALSE +"CLSI 2012" "MIC" "Acinetobacter" "Mezlocillin" "Table 2B-2" 16 128 FALSE +"CLSI 2012" "MIC" "Anaerosalibacter" "Mezlocillin" "Table 2J" 32 128 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Moxifloxacin" "Table 2E" "5ug" 18 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Moxifloxacin" "Table 2E" 1 FALSE +"CLSI 2012" "DISK" "Pasteurella" "Moxifloxacin" "M45 Table 13" "5ug" 28 FALSE +"CLSI 2012" "MIC" "Pasteurella" "Moxifloxacin" "M45 Table 13" 0.064 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Moxifloxacin" "Table 2C" "5ug" 24 20 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Moxifloxacin" "Table 2C" 0.5 2 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Moxifloxacin" "Table 2H-1" "5ug" FALSE +"CLSI 2012" "MIC" "Streptococcus" "Moxifloxacin" "Table 2H-1" FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Moxifloxacin" "Table 2G" "5ug" 18 14 FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Moxifloxacin" "Table 2G" 1 4 FALSE +"CLSI 2012" "DISK" "Acinetobacter" "Minocycline" "Table 2B-2" "30ug" 16 12 FALSE +"CLSI 2012" "MIC" "Acinetobacter" "Minocycline" "Table 2B-2" 4 16 FALSE +"CLSI 2012" "DISK" "Burkholderia cepacia" "Minocycline" "Table 2B-3" "30ug" 19 14 FALSE +"CLSI 2012" "MIC" "Burkholderia cepacia" "Minocycline" "Table 2B-3" 4 16 FALSE +"CLSI 2012" "DISK" "Enterococcus" "Minocycline" "Table 2D" "30ug" 19 14 FALSE +"CLSI 2012" "MIC" "Enterococcus" "Minocycline" "Table 2D" 4 16 FALSE +"CLSI 2012" "MIC" "Leuconostoc" "Minocycline" "M45 Table 10" 4 16 FALSE +"CLSI 2012" "DISK" "Neisseria meningitidis" "Minocycline" "Table 2I" "30ug" 26 FALSE +"CLSI 2012" "MIC" "Neisseria meningitidis" "Minocycline" "Table 2I" 2 FALSE +"CLSI 2012" "DISK" "Stenotrophomonas maltophilia" "Minocycline" "Table 2B-4" "30ug" 19 14 FALSE +"CLSI 2012" "MIC" "Stenotrophomonas maltophilia" "Minocycline" "Table 2B-4" 4 16 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Minocycline" "Table 2C" "30ug" 19 14 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Minocycline" "Table 2C" 4 16 FALSE +"CLSI 2012" "MIC" "Anaerosalibacter" "Metronidazole" "Table 2J" 8 32 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Nafcillin" "Table 2C" "1ug" 13 10 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Nafcillin" "Table 2C" 2 4 FALSE +"CLSI 2012" "DISK" "Neisseria meningitidis" "Nalidixic acid" "Table 2I" "30ug" 26 25 FALSE +"CLSI 2012" "MIC" "Neisseria meningitidis" "Nalidixic acid" "Table 2I" 4 8 FALSE +"CLSI 2012" "DISK" "Acinetobacter" "Netilmicin" "Table 2B-2" "30ug" FALSE +"CLSI 2012" "MIC" "Acinetobacter" "Netilmicin" "Table 2B-2" 8 32 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" "Netilmicin" "Table 2B-1" "30ug" 15 12 FALSE +"CLSI 2012" "MIC" "Pseudomonas aeruginosa" "Netilmicin" "Table 2B-1" 8 32 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Netilmicin" "Table 2C" "30ug" 15 12 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Netilmicin" "Table 2C" 8 32 FALSE +"CLSI 2012" "DISK" "Enterococcus" "Nitrofurantoin" "Table 2D" "300ug" 17 14 FALSE +"CLSI 2012" "MIC" "Enterococcus" "Nitrofurantoin" "Table 2D" 32 128 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Nitrofurantoin" "Table 2C" "300ug" 17 14 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Nitrofurantoin" "Table 2C" 32 128 FALSE +"CLSI 2012" "DISK" "Enterococcus" "Norfloxacin" "Table 2D" "10ug" 17 12 FALSE +"CLSI 2012" "MIC" "Enterococcus" "Norfloxacin" "Table 2D" 4 16 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" "Norfloxacin" "Table 2B-1" "10ug" 17 12 FALSE +"CLSI 2012" "MIC" "Pseudomonas aeruginosa" "Norfloxacin" "Table 2B-1" 4 16 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Norfloxacin" "Table 2C" "10ug" 17 12 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Norfloxacin" "Table 2C" 4 16 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Norfloxacin" "Table 2G" "5ug" FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Norfloxacin" "Table 2G" FALSE +"CLSI 2012" "DISK" "Haemophilus" "Ofloxacin" "Table 2E" "5ug" 16 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Ofloxacin" "Table 2E" 2 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" "Ofloxacin" "Table 2F" "5ug" 31 24 FALSE +"CLSI 2012" "MIC" "Neisseria gonorrhoeae" "Ofloxacin" "Table 2F" 0.25 2 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" "Ofloxacin" "Table 2B-1" "5ug" 16 12 FALSE +"CLSI 2012" "MIC" "Pseudomonas aeruginosa" "Ofloxacin" "Table 2B-1" 2 8 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Ofloxacin" "Table 2C" "5ug" 18 14 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Ofloxacin" "Table 2C" 1 4 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Ofloxacin" "Table 2H-1" "5ug" 16 12 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Ofloxacin" "Table 2H-1" 2 8 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Ofloxacin" "Table 2G" "5ug" 16 12 FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Ofloxacin" "Table 2G" 2 8 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Ofloxacin" "Table 2H-2" "5ug" 16 12 FALSE +"CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Ofloxacin" "Table 2H-2" 2 8 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Oxacillin" "Table 2C" "1ug" 13 10 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Oxacillin" "Table 2C" 2 4 FALSE +"CLSI 2012" "DISK" "Staphylococcus aureus" "Oxacillin" "Table 2C" "1ug" 13 10 FALSE +"CLSI 2012" "MIC" "Staphylococcus aureus" "Oxacillin" "Table 2C" 2 4 FALSE +"CLSI 2012" "DISK" "Staphylococcus lugdunensis" "Oxacillin" "Table 2C" "1ug" FALSE +"CLSI 2012" "MIC" "Staphylococcus lugdunensis" "Oxacillin" "Table 2C" 2 4 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Oxacillin" "Table 2G" "1ug" 20 FALSE +"CLSI 2012" "MIC" "Abiotrophia" "Penicillin G" "M45 Table 1" 0.125 4 FALSE +"CLSI 2012" "MIC" "Aggregatibacter" "Penicillin G" "M45 Table 7" 1 4 FALSE +"CLSI 2012" "MIC" "Anaerosalibacter" "Penicillin G" "Table 2J" 0.5 2 FALSE +"CLSI 2012" "MIC" "Bacillus" "Penicillin G" "M45 Table 3" 0.125 0.25 FALSE +"CLSI 2012" "MIC" "Bacillus anthracis" "Penicillin G" "M45 Table 16" 0.125 0.25 FALSE +"CLSI 2012" "MIC" "Cardiobacterium" "Penicillin G" "M45 Table 7" 1 4 FALSE +"CLSI 2012" "MIC" "Eikenella" "Penicillin G" "M45 Table 7" 1 4 FALSE +"CLSI 2012" "DISK" "Enterococcus" "Penicillin G" "Table 2D" "10units" 15 14 FALSE +"CLSI 2012" "MIC" "Enterococcus" "Penicillin G" "Table 2D" 8 16 FALSE +"CLSI 2012" "MIC" "Erysipelothrix rhusiopathiae" "Penicillin G" "M45 Table 6" 0.125 FALSE +"CLSI 2012" "MIC" "Granulicatella" "Penicillin G" "M45 Table 1" 0.125 4 FALSE +"CLSI 2012" "MIC" "Kingella" "Penicillin G" "M45 Table 7" 1 4 FALSE +"CLSI 2012" "MIC" "Leuconostoc" "Penicillin G" "M45 Table 10" 8 FALSE +"CLSI 2012" "MIC" "Lactobacillus" "Penicillin G" "M45 Table 9" 8 FALSE +"CLSI 2012" "DISK" "Listeria monocytogenes" "Penicillin G" "M45 Table 11" "10units" FALSE +"CLSI 2012" "MIC" "Listeria monocytogenes" "Penicillin G" "M45 Table 11" 2 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" "Penicillin G" "Table 2F" "10units" 47 26 FALSE +"CLSI 2012" "MIC" "Neisseria gonorrhoeae" "Penicillin G" "Table 2F" 0.064 2 FALSE +"CLSI 2012" "DISK" "Neisseria meningitidis" "Penicillin G" "Table 2I" "10units" FALSE +"CLSI 2012" "MIC" "Neisseria meningitidis" "Penicillin G" "Table 2I" 0.064 0.5 FALSE +"CLSI 2012" "MIC" "Pediococcus" "Penicillin G" "M45 Table 14" 8 FALSE +"CLSI 2012" "DISK" "Pasteurella" "Penicillin G" "M45 Table 13" "10 Units" 25 FALSE +"CLSI 2012" "MIC" "Pasteurella" "Penicillin G" "M45 Table 13" 0.5 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Penicillin G" "Table 2C" "10ug" 29 28 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Penicillin G" "Table 2C" 0.125 0.25 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Penicillin G" "Table 2H-1" "10units" 24 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Penicillin G" "M45 Table 1" 0.125 4 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Penicillin G" "Table 2H-1" 0.125 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" "10units" FALSE +"CLSI 2012" "MIC" "Meningitis" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" 0.064 0.12 FALSE +"CLSI 2012" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" 2 8 FALSE +"CLSI 2012" "MIC" "Oral" "Streptococcus pneumoniae" "Penicillin G" "Table 2G" 0.064 2 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Penicillin G" "Table 2H-2" "10units" FALSE +"CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Penicillin G" "Table 2H-2" 0.125 4 FALSE +"CLSI 2012" "DISK" "Acinetobacter" "Piperacillin" "Table 2B-2" "100ug" 21 17 FALSE +"CLSI 2012" "MIC" "Acinetobacter" "Piperacillin" "Table 2B-2" 16 128 FALSE +"CLSI 2012" "MIC" "Anaerosalibacter" "Piperacillin" "Table 2J" 32 128 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" "Piperacillin" "Table 2B-1" "100ug" 21 14 FALSE +"CLSI 2012" "MIC" "Pseudomonas aeruginosa" "Piperacillin" "Table 2B-1" 16 128 FALSE +"CLSI 2012" "DISK" "Acinetobacter" "Polymyxin B" "Table 2B-2" "300ug" FALSE +"CLSI 2012" "MIC" "Acinetobacter" "Polymyxin B" "Table 2B-2" 2 4 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" "Polymyxin B" "Table 2B-1" "300ug" 12 11 FALSE +"CLSI 2012" "MIC" "Pseudomonas aeruginosa" "Polymyxin B" "Table 2B-1" 2 8 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Penicillin V" "Table 2G" "10ug" FALSE +"CLSI 2012" "MIC" "Oral" "Streptococcus pneumoniae" "Penicillin V" "Table 2G" 0.064 2 FALSE +"CLSI 2012" "DISK" "Enterococcus" "Quinupristin/dalfopristin" "Table 2D" "15ug" 19 15 FALSE +"CLSI 2012" "MIC" "Enterococcus" "Quinupristin/dalfopristin" "Table 2D" 1 4 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Quinupristin/dalfopristin" "Table 2C" "15ug" 19 15 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Quinupristin/dalfopristin" "Table 2C" 1 4 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Quinupristin/dalfopristin" "Table 2H-1" "15ug" 19 15 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Quinupristin/dalfopristin" "Table 2H-1" 1 4 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Quinupristin/dalfopristin" "Table 2G" "15ug" 19 15 FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Quinupristin/dalfopristin" "Table 2G" 1 4 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Quinupristin/dalfopristin" "Table 2H-2" "15ug" 19 15 FALSE +"CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Quinupristin/dalfopristin" "Table 2H-2" 1 4 FALSE +"CLSI 2012" "MIC" "Aggregatibacter" "Rifampicin" "M45 Table 7" 1 4 FALSE +"CLSI 2012" "MIC" "Bacillus" "Rifampicin" "M45 Table 3" 1 4 FALSE +"CLSI 2012" "MIC" "Bacillus anthracis" "Rifampicin" "M45 Table 16" FALSE +"CLSI 2012" "MIC" "Cardiobacterium" "Rifampicin" "M45 Table 7" 1 4 FALSE +"CLSI 2012" "MIC" "Eikenella" "Rifampicin" "M45 Table 7" 1 4 FALSE +"CLSI 2012" "DISK" "Enterococcus" "Rifampicin" "Table 2D" "5ug" 20 16 FALSE +"CLSI 2012" "MIC" "Enterococcus" "Rifampicin" "Table 2D" 1 4 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Rifampicin" "Table 2E" "5ug" 20 16 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Rifampicin" "Table 2E" 1 4 FALSE +"CLSI 2012" "MIC" "Kingella" "Rifampicin" "M45 Table 7" 1 4 FALSE +"CLSI 2012" "MIC" "Moraxella catarrhalis" "Rifampicin" "M45 Table 12" 1 4 FALSE +"CLSI 2012" "DISK" "Neisseria meningitidis" "Rifampicin" "Table 2I" "5ug" 25 19 FALSE +"CLSI 2012" "MIC" "Neisseria meningitidis" "Rifampicin" "Table 2I" 0.5 2 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Rifampicin" "Table 2C" "5ug" 20 16 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Rifampicin" "Table 2C" 1 4 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Rifampicin" "Table 2H-1" "5ug" FALSE +"CLSI 2012" "MIC" "Streptococcus" "Rifampicin" "Table 2H-1" FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Rifampicin" "Table 2G" "5ug" 19 16 FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Rifampicin" "Table 2G" 1 4 FALSE +"CLSI 2012" "DISK" "Acinetobacter" "Ampicillin/sulbactam" "Table 2B-2" "10ug" 15 11 FALSE +"CLSI 2012" "MIC" "Acinetobacter" "Ampicillin/sulbactam" "Table 2B-2" 8 32 FALSE +"CLSI 2012" "DISK" "Aeromonas" "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE +"CLSI 2012" "MIC" "Aeromonas" "Ampicillin/sulbactam" "M45 Table 2" 8 32 FALSE +"CLSI 2012" "MIC" "Aggregatibacter" "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE +"CLSI 2012" "MIC" "Anaerosalibacter" "Ampicillin/sulbactam" "Table 2J" 8 32 FALSE +"CLSI 2012" "MIC" "Cardiobacterium" "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE +"CLSI 2012" "MIC" "Eikenella" "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Ampicillin/sulbactam" "Table 2E" "10/10ug" 20 19 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Ampicillin/sulbactam" "Table 2E" 2 4 FALSE +"CLSI 2012" "DISK" "Plesiomonas" "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE +"CLSI 2012" "MIC" "Plesiomonas" "Ampicillin/sulbactam" "M45 Table 2" 8 32 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Ampicillin/sulbactam" "Table 2C" "10ug" 15 11 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Ampicillin/sulbactam" "Table 2C" 8 32 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Ampicillin/sulbactam" "Table 2G" "10/10ug" FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Ampicillin/sulbactam" "Table 2G" FALSE +"CLSI 2012" "DISK" "Neisseria meningitidis" "Sulfamethoxazole" "Table 2I" "200-300ug" FALSE +"CLSI 2012" "MIC" "Neisseria meningitidis" "Sulfamethoxazole" "Table 2I" 2 8 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Sulfamethoxazole" "Table 2C" "200ug" 17 12 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Sulfamethoxazole" "Table 2C" 256 512 FALSE +"CLSI 2012" "DISK" "Neisseria meningitidis" "Sulfisoxazole" "Table 2I" "200-300ug" FALSE +"CLSI 2012" "MIC" "Neisseria meningitidis" "Sulfisoxazole" "Table 2I" 2 8 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Sulfisoxazole" "Table 2C" "200ug" 17 12 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Sulfisoxazole" "Table 2C" 256 512 FALSE +"CLSI 2012" "DISK" "Histophilus somni" "Spectinomycin" "Vet Table" "100ug" 14 10 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" "Spectinomycin" "Table 2F" "100ug" 18 14 FALSE +"CLSI 2012" "MIC" "Neisseria gonorrhoeae" "Spectinomycin" "Table 2F" 32 128 FALSE +"CLSI 2012" "DISK" "Providencia heimbachae" "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2012" "DISK" "Pasteurella multocida" "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Sparfloxacin" "Table 2E" "5ug" FALSE +"CLSI 2012" "MIC" "Haemophilus" "Sparfloxacin" "Table 2E" 0.25 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Sparfloxacin" "Table 2C" "5ug" 19 15 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Sparfloxacin" "Table 2C" 0.5 2 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Sparfloxacin" "Table 2H-1" "5ug" FALSE +"CLSI 2012" "MIC" "Streptococcus" "Sparfloxacin" "Table 2H-1" FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Sparfloxacin" "Table 2G" "5ug" 19 15 FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Sparfloxacin" "Table 2G" 0.5 2 FALSE +"CLSI 2012" "DISK" "Neisseria meningitidis" "Sulfonamides" "Table 2I" "200-300ug" FALSE +"CLSI 2012" "MIC" "Neisseria meningitidis" "Sulfonamides" "Table 2I" 2 8 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Sulfonamides" "Table 2C" "200ug" 17 12 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Sulfonamides" "Table 2C" 256 512 FALSE +"CLSI 2012" "DISK" "Enterococcus" "Streptomycin-high" "Table 2D" "300ug" 10 6 FALSE +"CLSI 2012" "MIC" "Enterococcus" "Streptomycin-high" "Table 2D" 1024 1024 FALSE +"CLSI 2012" "MIC" "Brucella" "Streptoduocin" "M45 Table 16" 8 FALSE +"CLSI 2012" "MIC" "Enterococcus" "Streptoduocin" "Table 2D" 1024 1024 FALSE +"CLSI 2012" "MIC" "Francisella tularensis" "Streptoduocin" "M45 Table 16" 8 FALSE +"CLSI 2012" "MIC" "Yersinia pestis" "Streptoduocin" "M45 Table 16" 4 16 FALSE +"CLSI 2012" "DISK" "Acinetobacter" "Trimethoprim/sulfamethoxazole" "Table 2B-2" "1.25/23.75ug" 16 10 FALSE +"CLSI 2012" "MIC" "Acinetobacter" "Trimethoprim/sulfamethoxazole" "Table 2B-2" 2 4 FALSE +"CLSI 2012" "DISK" "Aeromonas" "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25/23.75ug" 16 10 FALSE +"CLSI 2012" "MIC" "Aeromonas" "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE +"CLSI 2012" "MIC" "Aggregatibacter" "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE +"CLSI 2012" "MIC" "Bacillus" "Trimethoprim/sulfamethoxazole" "M45 Table 3" 2 4 FALSE +"CLSI 2012" "MIC" "Bacillus anthracis" "Trimethoprim/sulfamethoxazole" "M45 Table 16" FALSE +"CLSI 2012" "MIC" "Brucella" "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 FALSE +"CLSI 2012" "DISK" "Burkholderia cepacia" "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25/23.75ug" 16 10 FALSE +"CLSI 2012" "MIC" "Burkholderia cepacia" "Trimethoprim/sulfamethoxazole" "Table 2B-3" 2 4 FALSE +"CLSI 2012" "MIC" "Burkholderia pseudomallei" "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 4 FALSE +"CLSI 2012" "MIC" "Cardiobacterium" "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE +"CLSI 2012" "MIC" "Eikenella" "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Trimethoprim/sulfamethoxazole" "Table 2E" "1.25/23.75ug" 15 10 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Trimethoprim/sulfamethoxazole" "Table 2E" 0.5 4 FALSE +"CLSI 2012" "MIC" "Kingella" "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE +"CLSI 2012" "MIC" "Listeria monocytogenes" "Trimethoprim/sulfamethoxazole" "M45 Table 11" 0.5 4 FALSE +"CLSI 2012" "DISK" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" "M45 Table 12" "1.25/23.75ug" 13 10 FALSE +"CLSI 2012" "MIC" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" "M45 Table 12" 0.5 4 FALSE +"CLSI 2012" "DISK" "Neisseria meningitidis" "Trimethoprim/sulfamethoxazole" "Table 2I" "1.25/23.75ug" 30 25 FALSE +"CLSI 2012" "MIC" "Neisseria meningitidis" "Trimethoprim/sulfamethoxazole" "Table 2I" 0.125 0.5 FALSE +"CLSI 2012" "DISK" "Plesiomonas" "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25/23.75ug" 16 10 FALSE +"CLSI 2012" "MIC" "Plesiomonas" "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE +"CLSI 2012" "DISK" "Pasteurella" "Trimethoprim/sulfamethoxazole" "M45 Table 13" "1.25/23.75ug" 24 FALSE +"CLSI 2012" "MIC" "Pasteurella" "Trimethoprim/sulfamethoxazole" "M45 Table 13" 0.5 FALSE +"CLSI 2012" "DISK" "Stenotrophomonas maltophilia" "Trimethoprim/sulfamethoxazole" "Table 2B-4" "30ug" 16 10 FALSE +"CLSI 2012" "MIC" "Stenotrophomonas maltophilia" "Trimethoprim/sulfamethoxazole" "Table 2B-4" 2 4 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Trimethoprim/sulfamethoxazole" "Table 2C" "1.25/23.75ug" 16 10 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Trimethoprim/sulfamethoxazole" "Table 2C" 2 4 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Trimethoprim/sulfamethoxazole" "Table 2H-1" "1.25/23.75ug" FALSE +"CLSI 2012" "MIC" "Streptococcus" "Trimethoprim/sulfamethoxazole" "Table 2H-1" FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" "Table 2G" "1.25/23.75ug" 19 15 FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" "Table 2G" 0.5 4 FALSE +"CLSI 2012" "MIC" "Yersinia pestis" "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 4 FALSE +"CLSI 2012" "DISK" "Acinetobacter" "Ticarcillin/clavulanic acid" "Table 2B-2" "75ug" 20 14 FALSE +"CLSI 2012" "MIC" "Acinetobacter" "Ticarcillin/clavulanic acid" "Table 2B-2" 16 128 FALSE +"CLSI 2012" "MIC" "Anaerosalibacter" "Ticarcillin/clavulanic acid" "Table 2J" 32 128 FALSE +"CLSI 2012" "DISK" "Burkholderia cepacia" "Ticarcillin/clavulanic acid" "Table 2B-3" "75ug" FALSE +"CLSI 2012" "MIC" "Burkholderia cepacia" "Ticarcillin/clavulanic acid" "Table 2B-3" 16 128 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" "Ticarcillin/clavulanic acid" "Table 2B-1" "75ug" 24 15 FALSE +"CLSI 2012" "MIC" "Pseudomonas aeruginosa" "Ticarcillin/clavulanic acid" "Table 2B-1" 16 128 FALSE +"CLSI 2012" "DISK" "Stenotrophomonas maltophilia" "Ticarcillin/clavulanic acid" "Table 2B-4" "30ug" FALSE +"CLSI 2012" "MIC" "Stenotrophomonas maltophilia" "Ticarcillin/clavulanic acid" "Table 2B-4" 16 128 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Ticarcillin/clavulanic acid" "Table 2C" "75/10ug" 23 22 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Ticarcillin/clavulanic acid" "Table 2C" 8 16 FALSE +"CLSI 2012" "DISK" "Acinetobacter" "Tetracycline" "Table 2B-2" "30ug" 15 11 FALSE +"CLSI 2012" "MIC" "Acinetobacter" "Tetracycline" "Table 2B-2" 4 16 FALSE +"CLSI 2012" "DISK" "Aeromonas" "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE +"CLSI 2012" "MIC" "Aeromonas" "Tetracycline" "M45 Table 2" 4 16 FALSE +"CLSI 2012" "MIC" "Aggregatibacter" "Tetracycline" "M45 Table 7" 2 8 FALSE +"CLSI 2012" "MIC" "Anaerosalibacter" "Tetracycline" "Table 2J" 4 16 FALSE +"CLSI 2012" "MIC" "Bacillus" "Tetracycline" "M45 Table 3" 4 16 FALSE +"CLSI 2012" "MIC" "Bacillus anthracis" "Tetracycline" "M45 Table 16" 1 FALSE +"CLSI 2012" "MIC" "Brucella" "Tetracycline" "M45 Table 16" 1 FALSE +"CLSI 2012" "MIC" "Burkholderia mallei" "Tetracycline" "M45 Table 16" 4 16 FALSE +"CLSI 2012" "MIC" "Burkholderia pseudomallei" "Tetracycline" "M45 Table 16" 4 16 FALSE +"CLSI 2012" "MIC" "Campylobacter" "Tetracycline" "M45 Table 3" 4 16 FALSE +"CLSI 2012" "MIC" "Cardiobacterium" "Tetracycline" "M45 Table 7" 2 8 FALSE +"CLSI 2012" "MIC" "Eikenella" "Tetracycline" "M45 Table 7" 2 8 FALSE +"CLSI 2012" "DISK" "Enterococcus" "Tetracycline" "Table 2D" "30ug" 19 14 FALSE +"CLSI 2012" "MIC" "Enterococcus" "Tetracycline" "Table 2D" 4 16 FALSE +"CLSI 2012" "MIC" "Francisella tularensis" "Tetracycline" "M45 Table 16" 4 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Tetracycline" "Table 2E" "30ug" 29 25 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Tetracycline" "Table 2E" 2 8 FALSE +"CLSI 2012" "MIC" "Kingella" "Tetracycline" "M45 Table 7" 2 8 FALSE +"CLSI 2012" "DISK" "Moraxella catarrhalis" "Tetracycline" "M45 Table 12" "30ug" 29 24 FALSE +"CLSI 2012" "MIC" "Moraxella catarrhalis" "Tetracycline" "M45 Table 12" 2 8 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" "Tetracycline" "Table 2F" "30ug" 38 30 FALSE +"CLSI 2012" "MIC" "Neisseria gonorrhoeae" "Tetracycline" "Table 2F" 0.25 2 FALSE +"CLSI 2012" "DISK" "Plesiomonas" "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE +"CLSI 2012" "MIC" "Plesiomonas" "Tetracycline" "M45 Table 2" 4 16 FALSE +"CLSI 2012" "DISK" "Pasteurella" "Tetracycline" "M45 Table 13" "30ug" 23 FALSE +"CLSI 2012" "MIC" "Pasteurella" "Tetracycline" "M45 Table 13" 1 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Tetracycline" "Table 2C" "30ug" 19 14 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Tetracycline" "Table 2C" 4 16 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Tetracycline" "Table 2H-1" "30ug" 23 18 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Tetracycline" "Table 2H-1" 2 8 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Tetracycline" "Table 2G" "30ug" 23 18 FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Tetracycline" "Table 2G" 2 8 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Tetracycline" "Table 2H-2" "30ug" 23 18 FALSE +"CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Tetracycline" "Table 2H-2" 2 8 FALSE +"CLSI 2012" "MIC" "Yersinia pestis" "Tetracycline" "M45 Table 16" 4 16 FALSE +"CLSI 2012" "DISK" "Enterococcus" "Teicoplanin" "Table 2D" "30ug" 14 10 FALSE +"CLSI 2012" "MIC" "Enterococcus" "Teicoplanin" "Table 2D" 8 32 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Teicoplanin" "Table 2C" "30ug" 14 10 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Teicoplanin" "Table 2C" 8 32 FALSE +"CLSI 2012" "DISK" "Acinetobacter" "Ticarcillin" "Table 2B-2" "75ug" 20 14 FALSE +"CLSI 2012" "MIC" "Acinetobacter" "Ticarcillin" "Table 2B-2" 16 128 FALSE +"CLSI 2012" "MIC" "Anaerosalibacter" "Ticarcillin" "Table 2J" 32 128 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" "Ticarcillin" "Table 2B-1" "75ug" 24 15 FALSE +"CLSI 2012" "MIC" "Pseudomonas aeruginosa" "Ticarcillin" "Table 2B-1" 16 128 FALSE +"CLSI 2012" "DISK" "Actinobacillus pleuropneumoniae" "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE +"CLSI 2012" "MIC" "Actinobacillus pleuropneumoniae" "Tilmicosin" "Vet Table" 16 32 FALSE +"CLSI 2012" "DISK" "Pasteurella multocida" "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE +"CLSI 2012" "MIC" "Pasteurella multocida" "Tilmicosin" "Vet Table" 16 32 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Telithromycin" "Table 2E" "15ug" 15 11 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Telithromycin" "Table 2E" 4 16 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Telithromycin" "Table 2C" "15ug" 22 18 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Telithromycin" "Table 2C" 1 4 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Telithromycin" "Table 2H-1" FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Telithromycin" "Table 2G" "15ug" 19 15 FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Telithromycin" "Table 2G" 1 4 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Trimethoprim" "Table 2C" "5ug" 16 10 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Trimethoprim" "Table 2C" 8 16 FALSE +"CLSI 2012" "DISK" "Acinetobacter" "Tobramycin" "Table 2B-2" "10ug" 15 12 FALSE +"CLSI 2012" "MIC" "Acinetobacter" "Tobramycin" "Table 2B-2" 4 16 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" "Tobramycin" "Table 2B-1" "10ug" 15 12 FALSE +"CLSI 2012" "MIC" "Pseudomonas aeruginosa" "Tobramycin" "Table 2B-1" 4 16 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Tobramycin" "Table 2C" "10ug" 15 12 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Tobramycin" "Table 2C" 4 16 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Trovafloxacin" "Table 2E" "10ug" 22 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Trovafloxacin" "Table 2E" 1 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" "Trovafloxacin" "Table 2F" "10ug" 34 FALSE +"CLSI 2012" "MIC" "Neisseria gonorrhoeae" "Trovafloxacin" "Table 2F" 0.25 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Trovafloxacin" "Table 2H-1" "10ug" 19 15 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Trovafloxacin" "Table 2H-1" 1 4 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Trovafloxacin" "Table 2G" "10ug" 19 15 FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Trovafloxacin" "Table 2G" 1 4 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Trovafloxacin" "Table 2H-2" "10ug" 19 15 FALSE +"CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Trovafloxacin" "Table 2H-2" 1 4 FALSE +"CLSI 2012" "DISK" "Acinetobacter" "Piperacillin/tazobactam" "Table 2B-2" "100ug" 21 17 FALSE +"CLSI 2012" "MIC" "Acinetobacter" "Piperacillin/tazobactam" "Table 2B-2" 16 128 FALSE +"CLSI 2012" "DISK" "Aeromonas" "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE +"CLSI 2012" "MIC" "Aeromonas" "Piperacillin/tazobactam" "M45 Table 2" 16 128 FALSE +"CLSI 2012" "MIC" "Anaerosalibacter" "Piperacillin/tazobactam" "Table 2J" 32 128 FALSE +"CLSI 2012" "DISK" "Haemophilus" "Piperacillin/tazobactam" "Table 2E" "100ug" 21 FALSE +"CLSI 2012" "MIC" "Haemophilus" "Piperacillin/tazobactam" "Table 2E" 1 2 FALSE +"CLSI 2012" "DISK" "Plesiomonas" "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE +"CLSI 2012" "MIC" "Plesiomonas" "Piperacillin/tazobactam" "M45 Table 2" 16 128 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" "Piperacillin/tazobactam" "Table 2B-1" "100ug" 21 14 FALSE +"CLSI 2012" "MIC" "Pseudomonas aeruginosa" "Piperacillin/tazobactam" "Table 2B-1" 16 128 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Piperacillin/tazobactam" "Table 2C" "100/10ug" 18 17 FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Piperacillin/tazobactam" "Table 2C" 8 16 FALSE +"CLSI 2012" "MIC" "Abiotrophia" "Vancomycin" "M45 Table 1" 1 FALSE +"CLSI 2012" "MIC" "Bacillus" "Vancomycin" "M45 Table 3" 4 FALSE +"CLSI 2012" "MIC" "Bacillus anthracis" "Vancomycin" "M45 Table 16" FALSE +"CLSI 2012" "DISK" "Enterococcus" "Vancomycin" "Table 2D" "30ug" 17 14 FALSE +"CLSI 2012" "MIC" "Enterococcus" "Vancomycin" "Table 2D" 4 32 FALSE +"CLSI 2012" "MIC" "Granulicatella" "Vancomycin" "M45 Table 1" 1 FALSE +"CLSI 2012" "MIC" "Lactobacillus" "Vancomycin" "M45 Table 9" 2 16 FALSE +"CLSI 2012" "DISK" "Staphylococcus" "Vancomycin" "Table 2C" "30ug" FALSE +"CLSI 2012" "MIC" "Staphylococcus" "Vancomycin" "Table 2C" 4 32 FALSE +"CLSI 2012" "MIC" "Staphylococcus aureus" "Vancomycin" "Table 2C" 2 16 FALSE +"CLSI 2012" "DISK" "Streptococcus" "Vancomycin" "Table 2H-1" "30ug" 17 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Vancomycin" "M45 Table 1" 1 FALSE +"CLSI 2012" "MIC" "Streptococcus" "Vancomycin" "Table 2H-1" 1 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" "Vancomycin" "Table 2G" "30ug" 17 FALSE +"CLSI 2012" "MIC" "Streptococcus pneumoniae" "Vancomycin" "Table 2G" 1 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" "Vancomycin" "Table 2H-2" "30ug" 17 FALSE +"CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" "Vancomycin" "Table 2H-2" 1 FALSE +"CLSI 2011" "DISK" "Aeromonas" "Amoxicillin/clavulanic acid" "20ug" 18 13 FALSE +"CLSI 2011" "MIC" "Aeromonas" "Amoxicillin/clavulanic acid" 8 32 FALSE +"CLSI 2011" "MIC" "Aggregatibacter" "Amoxicillin/clavulanic acid" 4 8 FALSE +"CLSI 2011" "MIC" "Anaerosalibacter" "Amoxicillin/clavulanic acid" 4 16 FALSE +"CLSI 2011" "MIC" "Burkholderia pseudomallei" "Amoxicillin/clavulanic acid" 8 32 FALSE +"CLSI 2011" "MIC" "Cardiobacterium" "Amoxicillin/clavulanic acid" 4 8 FALSE +"CLSI 2011" "MIC" "Eikenella" "Amoxicillin/clavulanic acid" 4 8 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Amoxicillin/clavulanic acid" "20/10ug" 20 19 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Amoxicillin/clavulanic acid" 4 8 FALSE +"CLSI 2011" "DISK" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" "200ug" 24 23 FALSE +"CLSI 2011" "MIC" "Moraxella catarrhalis" "Amoxicillin/clavulanic acid" 4 8 FALSE +"CLSI 2011" "DISK" "Plesiomonas" "Amoxicillin/clavulanic acid" "20ug" 18 13 FALSE +"CLSI 2011" "MIC" "Plesiomonas" "Amoxicillin/clavulanic acid" 8 32 FALSE +"CLSI 2011" "DISK" "Pasteurella" "Amoxicillin/clavulanic acid" "20ug" 27 FALSE +"CLSI 2011" "MIC" "Pasteurella" "Amoxicillin/clavulanic acid" 0.5 FALSE +"CLSI 2011" "DISK" "Staphylococcus" "Amoxicillin/clavulanic acid" "20/10ug" 20 19 FALSE +"CLSI 2011" "MIC" "Staphylococcus" "Amoxicillin/clavulanic acid" 4 8 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Amoxicillin/clavulanic acid" FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Amoxicillin/clavulanic acid" "10/10ug" FALSE +"CLSI 2011" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Amoxicillin/clavulanic acid" 2 8 FALSE +"CLSI 2011" "DISK" "Aeromonas" "Amikacin" "30ug" 17 14 FALSE +"CLSI 2011" "MIC" "Aeromonas" "Amikacin" 16 64 FALSE +"CLSI 2011" "MIC" "Bacillus" "Amikacin" 16 64 FALSE +"CLSI 2011" "MIC" "Bacillus anthracis" "Amikacin" FALSE +"CLSI 2011" "DISK" "Plesiomonas" "Amikacin" "30ug" 17 14 FALSE +"CLSI 2011" "MIC" "Plesiomonas" "Amikacin" 16 64 FALSE +"CLSI 2011" "MIC" "Aggregatibacter" "Ampicillin" 1 4 FALSE +"CLSI 2011" "MIC" "Anaerosalibacter" "Ampicillin" 0.5 2 FALSE +"CLSI 2011" "MIC" "Bacillus" "Ampicillin" 0.25 0.5 FALSE +"CLSI 2011" "MIC" "Bacillus anthracis" "Ampicillin" FALSE +"CLSI 2011" "MIC" "Cardiobacterium" "Ampicillin" 1 4 FALSE +"CLSI 2011" "MIC" "Eikenella" "Ampicillin" 1 4 FALSE +"CLSI 2011" "DISK" "Enterococcus" "Ampicillin" "10ug" 17 16 FALSE +"CLSI 2011" "MIC" "Enterococcus" "Ampicillin" 8 16 FALSE +"CLSI 2011" "MIC" "Erysipelothrix rhusiopathiae" "Ampicillin" 0.25 FALSE +"CLSI 2011" "MIC" "Granulicatella" "Ampicillin" 0.25 8 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Ampicillin" "10ug" 22 18 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Ampicillin" 1 4 FALSE +"CLSI 2011" "MIC" "Leuconostoc" "Ampicillin" 8 FALSE +"CLSI 2011" "MIC" "Lactobacillus" "Ampicillin" 8 FALSE +"CLSI 2011" "DISK" "Listeria monocytogenes" "Ampicillin" "10ug" FALSE +"CLSI 2011" "MIC" "Listeria monocytogenes" "Ampicillin" 2 FALSE +"CLSI 2011" "DISK" "Neisseria meningitidis" "Ampicillin" "10ug" FALSE +"CLSI 2011" "MIC" "Neisseria meningitidis" "Ampicillin" 0.125 2 FALSE +"CLSI 2011" "MIC" "Pediococcus" "Ampicillin" 8 FALSE +"CLSI 2011" "DISK" "Pasteurella" "Ampicillin" "10ug" 27 FALSE +"CLSI 2011" "MIC" "Pasteurella" "Ampicillin" 0.5 FALSE +"CLSI 2011" "DISK" "Staphylococcus" "Ampicillin" "10ug" 29 28 FALSE +"CLSI 2011" "MIC" "Staphylococcus" "Ampicillin" 0.25 0.5 FALSE +"CLSI 2011" "DISK" "Streptococcus" "Ampicillin" "10ug" 24 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Ampicillin" 0.25 8 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Ampicillin" 0.25 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Ampicillin" "10ug" FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Ampicillin" FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" "Ampicillin" "10ug" FALSE +"CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" "Ampicillin" 0.25 8 FALSE +"CLSI 2011" "MIC" "Pasteurella" "Amoxicillin" 0.5 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Amoxicillin" FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Amoxicillin" "30ug" FALSE +"CLSI 2011" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Amoxicillin" 2 8 FALSE +"CLSI 2011" "DISK" "Aeromonas" "Aztreonam" "30ug" 21 17 FALSE +"CLSI 2011" "MIC" "Aeromonas" "Aztreonam" 4 16 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Aztreonam" "30ug" 26 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Aztreonam" 2 FALSE +"CLSI 2011" "DISK" "Plesiomonas" "Aztreonam" "30ug" 21 17 FALSE +"CLSI 2011" "MIC" "Plesiomonas" "Aztreonam" 4 16 FALSE +"CLSI 2011" "MIC" "Aggregatibacter" "Azithromycin" 4 FALSE +"CLSI 2011" "MIC" "Cardiobacterium" "Azithromycin" 4 FALSE +"CLSI 2011" "MIC" "Eikenella" "Azithromycin" 4 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Azithromycin" "15ug" 12 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Azithromycin" 4 FALSE +"CLSI 2011" "MIC" "Kingella" "Azithromycin" 4 FALSE +"CLSI 2011" "DISK" "Moraxella catarrhalis" "Azithromycin" "15ug" 26 FALSE +"CLSI 2011" "MIC" "Moraxella catarrhalis" "Azithromycin" 0.25 FALSE +"CLSI 2011" "DISK" "Neisseria meningitidis" "Azithromycin" "15ug" 20 FALSE +"CLSI 2011" "MIC" "Neisseria meningitidis" "Azithromycin" 2 FALSE +"CLSI 2011" "DISK" "Pasteurella" "Azithromycin" "15ug" 20 FALSE +"CLSI 2011" "MIC" "Pasteurella" "Azithromycin" 1 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Azithromycin" 0.5 2 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Azithromycin" "15ug" 18 13 FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Azithromycin" 0.5 2 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" "Azithromycin" "15ug" 18 13 FALSE +"CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" "Azithromycin" 0.5 2 FALSE +"CLSI 2011" "MIC" "Vibrio cholerae" "Azithromycin" 2 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Cefacetrile" "30ug" FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Cefacetrile" 1 4 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Cefetamet" "10ug" 18 14 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Cefetamet" 4 16 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" "Cefetamet" "10ug" 29 FALSE +"CLSI 2011" "MIC" "Neisseria gonorrhoeae" "Cefetamet" 0.5 FALSE +"CLSI 2011" "DISK" "Aeromonas" "Ceftazidime" "30ug" 21 17 FALSE +"CLSI 2011" "MIC" "Aeromonas" "Ceftazidime" 4 16 FALSE +"CLSI 2011" "MIC" "Bacillus" "Ceftazidime" 8 32 FALSE +"CLSI 2011" "MIC" "Bacillus anthracis" "Ceftazidime" FALSE +"CLSI 2011" "DISK" "Bacillus cereus" "Ceftazidime" "30ug" 21 17 FALSE +"CLSI 2011" "DISK" "Burkholderia cepacia" "Ceftazidime" "30ug" 21 17 FALSE +"CLSI 2011" "DISK" "Burkholderia cepacia" "Ceftazidime" "30ug" 21 17 FALSE +"CLSI 2011" "MIC" "Burkholderia mallei" "Ceftazidime" 8 32 FALSE +"CLSI 2011" "MIC" "Burkholderia pseudomallei" "Ceftazidime" 8 32 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Ceftazidime" "30ug" 26 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Ceftazidime" 2 FALSE +"CLSI 2011" "MIC" "Moraxella catarrhalis" "Ceftazidime" 2 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" "Ceftazidime" "30ug" 31 FALSE +"CLSI 2011" "MIC" "Neisseria gonorrhoeae" "Ceftazidime" 0.5 FALSE +"CLSI 2011" "DISK" "Plesiomonas" "Ceftazidime" "30ug" 21 17 FALSE +"CLSI 2011" "MIC" "Plesiomonas" "Ceftazidime" 4 16 FALSE +"CLSI 2011" "DISK" "Stenotrophomonas maltophilia" "Ceftazidime" "30ug" FALSE +"CLSI 2011" "DISK" "Haemophilus" "Cefdinir" "5ug" 20 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Cefdinir" 1 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Cefdinir" "5ug" FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Cefdinir" 0.5 2 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Cefaclor" "30ug" 20 16 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Cefaclor" 8 32 FALSE +"CLSI 2011" "MIC" "Moraxella catarrhalis" "Cefaclor" 8 32 FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Cefaclor" 1 4 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Cefixime" "5ug" 21 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Cefixime" 1 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" "Cefixime" "5ug" 31 FALSE +"CLSI 2011" "MIC" "Neisseria gonorrhoeae" "Cefixime" 0.25 FALSE +"CLSI 2011" "MIC" "Anaerosalibacter" "Cefoperazone" 16 64 FALSE +"CLSI 2011" "DISK" "Aeromonas" "Chloramphenicol" "30ug" 18 12 FALSE +"CLSI 2011" "MIC" "Aeromonas" "Chloramphenicol" 8 32 FALSE +"CLSI 2011" "MIC" "Aggregatibacter" "Chloramphenicol" 4 16 FALSE +"CLSI 2011" "MIC" "Anaerosalibacter" "Chloramphenicol" 8 32 FALSE +"CLSI 2011" "MIC" "Bacillus" "Chloramphenicol" 8 32 FALSE +"CLSI 2011" "MIC" "Bacillus anthracis" "Chloramphenicol" FALSE +"CLSI 2011" "DISK" "Bacillus cereus" "Chloramphenicol" "30ug" FALSE +"CLSI 2011" "MIC" "Cardiobacterium" "Chloramphenicol" 4 16 FALSE +"CLSI 2011" "MIC" "Eikenella" "Chloramphenicol" 4 16 FALSE +"CLSI 2011" "MIC" "Francisella tularensis" "Chloramphenicol" 8 FALSE +"CLSI 2011" "MIC" "Granulicatella" "Chloramphenicol" 4 8 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Chloramphenicol" "30ug" 29 25 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Chloramphenicol" 2 8 FALSE +"CLSI 2011" "MIC" "Kingella" "Chloramphenicol" 4 16 FALSE +"CLSI 2011" "MIC" "Leuconostoc" "Chloramphenicol" 8 32 FALSE +"CLSI 2011" "MIC" "Moraxella catarrhalis" "Chloramphenicol" 2 8 FALSE +"CLSI 2011" "DISK" "Neisseria meningitidis" "Chloramphenicol" "30ug" 26 19 FALSE +"CLSI 2011" "MIC" "Neisseria meningitidis" "Chloramphenicol" 2 8 FALSE +"CLSI 2011" "MIC" "Pediococcus" "Chloramphenicol" 8 32 FALSE +"CLSI 2011" "DISK" "Plesiomonas" "Chloramphenicol" "30ug" 18 12 FALSE +"CLSI 2011" "MIC" "Plesiomonas" "Chloramphenicol" 8 32 FALSE +"CLSI 2011" "DISK" "Pasteurella" "Chloramphenicol" "30ug" 28 FALSE +"CLSI 2011" "MIC" "Pasteurella" "Chloramphenicol" 2 FALSE +"CLSI 2011" "DISK" "Stenotrophomonas maltophilia" "Chloramphenicol" "30ug" FALSE +"CLSI 2011" "DISK" "Streptococcus" "Chloramphenicol" "30ug" 21 17 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Chloramphenicol" 4 8 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Chloramphenicol" 4 16 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Chloramphenicol" "30ug" 21 20 FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Chloramphenicol" 4 8 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" "Chloramphenicol" "30ug" 21 17 FALSE +"CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" "Chloramphenicol" 4 16 FALSE +"CLSI 2011" "MIC" "Yersinia pestis" "Chloramphenicol" 8 32 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Cefonicid" "30ug" 20 16 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Cefonicid" 4 16 FALSE +"CLSI 2011" "DISK" "Aeromonas" "Ciprofloxacin" "5ug" 21 15 FALSE +"CLSI 2011" "MIC" "Aeromonas" "Ciprofloxacin" 1 4 FALSE +"CLSI 2011" "MIC" "Aggregatibacter" "Ciprofloxacin" 1 4 FALSE +"CLSI 2011" "MIC" "Bacillus" "Ciprofloxacin" 1 4 FALSE +"CLSI 2011" "MIC" "Bacillus anthracis" "Ciprofloxacin" 0.25 FALSE +"CLSI 2011" "MIC" "Campylobacter" "Ciprofloxacin" 1 4 FALSE +"CLSI 2011" "MIC" "Cardiobacterium" "Ciprofloxacin" 1 4 FALSE +"CLSI 2011" "MIC" "Eikenella" "Ciprofloxacin" 1 4 FALSE +"CLSI 2011" "MIC" "Erysipelothrix rhusiopathiae" "Ciprofloxacin" 1 FALSE +"CLSI 2011" "MIC" "Francisella tularensis" "Ciprofloxacin" 0.5 FALSE +"CLSI 2011" "MIC" "Granulicatella" "Ciprofloxacin" 1 4 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Ciprofloxacin" "5ug" 21 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Ciprofloxacin" 1 FALSE +"CLSI 2011" "MIC" "Kingella" "Ciprofloxacin" 1 4 FALSE +"CLSI 2011" "MIC" "Moraxella catarrhalis" "Ciprofloxacin" 1 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" "Ciprofloxacin" "5ug" 41 27 FALSE +"CLSI 2011" "MIC" "Neisseria gonorrhoeae" "Ciprofloxacin" 0.064 1 FALSE +"CLSI 2011" "DISK" "Neisseria meningitidis" "Ciprofloxacin" "5ug" 35 32 FALSE +"CLSI 2011" "MIC" "Neisseria meningitidis" "Ciprofloxacin" 0.032 0.12 FALSE +"CLSI 2011" "DISK" "Plesiomonas" "Ciprofloxacin" "5ug" 21 15 FALSE +"CLSI 2011" "MIC" "Plesiomonas" "Ciprofloxacin" 1 4 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Ciprofloxacin" 1 4 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Ciprofloxacin" "5ug" FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Ciprofloxacin" FALSE +"CLSI 2011" "MIC" "Yersinia pestis" "Ciprofloxacin" 0.25 FALSE +"CLSI 2011" "MIC" "Anaerosalibacter" "Clindamycin" 2 8 FALSE +"CLSI 2011" "MIC" "Bacillus" "Clindamycin" 0.5 4 FALSE +"CLSI 2011" "MIC" "Bacillus anthracis" "Clindamycin" FALSE +"CLSI 2011" "MIC" "Erysipelothrix rhusiopathiae" "Clindamycin" 0.25 1 FALSE +"CLSI 2011" "MIC" "Granulicatella" "Clindamycin" 0.25 1 FALSE +"CLSI 2011" "MIC" "Lactobacillus" "Clindamycin" 0.5 2 FALSE +"CLSI 2011" "MIC" "Moraxella catarrhalis" "Clindamycin" 0.5 4 FALSE +"CLSI 2011" "DISK" "Streptococcus" "Clindamycin" "2ug" 19 15 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Clindamycin" 0.25 1 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Clindamycin" 0.25 1 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Clindamycin" "2ug" 19 15 FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Clindamycin" 0.25 1 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" "Clindamycin" "2ug" 19 15 FALSE +"CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" "Clindamycin" 0.25 1 FALSE +"CLSI 2011" "MIC" "Aggregatibacter" "Clarithromycin" 8 32 FALSE +"CLSI 2011" "MIC" "Cardiobacterium" "Clarithromycin" 8 32 FALSE +"CLSI 2011" "MIC" "Eikenella" "Clarithromycin" 8 32 FALSE +"CLSI 2011" "MIC" "Helicobacter pylori" "Clarithromycin" 0.25 1 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Clarithromycin" "15ug" 13 10 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Clarithromycin" 8 32 FALSE +"CLSI 2011" "MIC" "Kingella" "Clarithromycin" 8 32 FALSE +"CLSI 2011" "DISK" "Moraxella catarrhalis" "Clarithromycin" "15ug" 24 FALSE +"CLSI 2011" "MIC" "Moraxella catarrhalis" "Clarithromycin" 1 FALSE +"CLSI 2011" "DISK" "Streptococcus" "Clarithromycin" "15ug" 21 16 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Clarithromycin" 0.25 1 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Clarithromycin" "15ug" 21 16 FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Clarithromycin" 0.25 1 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" "Clarithromycin" "15ug" 21 16 FALSE +"CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" "Clarithromycin" 0.25 1 FALSE +"CLSI 2011" "MIC" "Anaerosalibacter" "Cefmetazole" 16 64 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" "Cefmetazole" "30ug" 33 27 FALSE +"CLSI 2011" "MIC" "Neisseria gonorrhoeae" "Cefmetazole" 2 8 FALSE +"CLSI 2011" "DISK" "Acinetobacter" "Colistin" "10ug" FALSE +"CLSI 2011" "MIC" "Acinetobacter" "Colistin" 2 4 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Cefpodoxime" "10ug" 21 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Cefpodoxime" 2 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" "Cefpodoxime" "10ug" 29 FALSE +"CLSI 2011" "MIC" "Neisseria gonorrhoeae" "Cefpodoxime" 0.5 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Cefpodoxime" "10ug" FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Cefpodoxime" 0.5 2 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Cefprozil" "30ug" 18 14 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Cefprozil" 8 32 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Cefprozil" "30ug" FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Cefprozil" 2 8 FALSE +"CLSI 2011" "DISK" "Pseudomonas aeruginosa" "Carbenicillin" "100ug" 17 13 FALSE +"CLSI 2011" "MIC" "Pseudomonas aeruginosa" "Carbenicillin" 128 512 FALSE +"CLSI 2011" "DISK" "Aeromonas" "Ceftriaxone" "30ug" 23 19 FALSE +"CLSI 2011" "MIC" "Aeromonas" "Ceftriaxone" 1 4 FALSE +"CLSI 2011" "MIC" "Aggregatibacter" "Ceftriaxone" 2 FALSE +"CLSI 2011" "MIC" "Anaerosalibacter" "Ceftriaxone" 16 64 FALSE +"CLSI 2011" "MIC" "Bacillus" "Ceftriaxone" 8 64 FALSE +"CLSI 2011" "MIC" "Bacillus anthracis" "Ceftriaxone" FALSE +"CLSI 2011" "MIC" "Cardiobacterium" "Ceftriaxone" 2 FALSE +"CLSI 2011" "MIC" "Eikenella" "Ceftriaxone" 2 FALSE +"CLSI 2011" "MIC" "Erysipelothrix rhusiopathiae" "Ceftriaxone" 1 FALSE +"CLSI 2011" "MIC" "Granulicatella" "Ceftriaxone" 1 4 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Ceftriaxone" "30ug" 26 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Ceftriaxone" 2 FALSE +"CLSI 2011" "MIC" "Kingella" "Ceftriaxone" 2 FALSE +"CLSI 2011" "MIC" "Moraxella catarrhalis" "Ceftriaxone" 2 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" "Ceftriaxone" "30ug" 35 FALSE +"CLSI 2011" "MIC" "Neisseria gonorrhoeae" "Ceftriaxone" 0.25 FALSE +"CLSI 2011" "DISK" "Neisseria meningitidis" "Ceftriaxone" "30ug" 34 FALSE +"CLSI 2011" "MIC" "Neisseria meningitidis" "Ceftriaxone" 0.125 FALSE +"CLSI 2011" "DISK" "Plesiomonas" "Ceftriaxone" "30ug" 23 19 FALSE +"CLSI 2011" "MIC" "Plesiomonas" "Ceftriaxone" 1 4 FALSE +"CLSI 2011" "DISK" "Pasteurella" "Ceftriaxone" "30ug" 34 FALSE +"CLSI 2011" "MIC" "Pasteurella" "Ceftriaxone" 0.125 FALSE +"CLSI 2011" "DISK" "Streptococcus" "Ceftriaxone" "30ug" 24 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Ceftriaxone" 1 4 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Ceftriaxone" 0.5 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Ceftriaxone" "30ug" FALSE +"CLSI 2011" "MIC" "Meningitis" "Streptococcus pneumoniae" "Ceftriaxone" 0.5 2 FALSE +"CLSI 2011" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Ceftriaxone" 1 4 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" "30ug" 27 24 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" "30ug" 27 24 FALSE +"CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" "Ceftriaxone" 1 4 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Ceftibuten" "30ug" 28 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Ceftibuten" 2 FALSE +"CLSI 2011" "MIC" "Anaerosalibacter" "Cefotetan" 16 64 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" "Cefotetan" "30ug" 26 19 FALSE +"CLSI 2011" "MIC" "Neisseria gonorrhoeae" "Cefotetan" 2 8 FALSE +"CLSI 2011" "DISK" "Aeromonas" "Cefotaxime" "30ug" 26 22 FALSE +"CLSI 2011" "MIC" "Aeromonas" "Cefotaxime" 1 4 FALSE +"CLSI 2011" "MIC" "Aggregatibacter" "Cefotaxime" 2 FALSE +"CLSI 2011" "MIC" "Anaerosalibacter" "Cefotaxime" 16 64 FALSE +"CLSI 2011" "MIC" "Bacillus" "Cefotaxime" 8 64 FALSE +"CLSI 2011" "MIC" "Bacillus anthracis" "Cefotaxime" FALSE +"CLSI 2011" "MIC" "Cardiobacterium" "Cefotaxime" 2 FALSE +"CLSI 2011" "MIC" "Eikenella" "Cefotaxime" 2 FALSE +"CLSI 2011" "MIC" "Erysipelothrix rhusiopathiae" "Cefotaxime" 1 FALSE +"CLSI 2011" "MIC" "Granulicatella" "Cefotaxime" 1 4 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Cefotaxime" "30ug" 26 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Cefotaxime" 2 FALSE +"CLSI 2011" "MIC" "Kingella" "Cefotaxime" 2 FALSE +"CLSI 2011" "MIC" "Moraxella catarrhalis" "Cefotaxime" 2 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" "Cefotaxime" "30ug" 31 FALSE +"CLSI 2011" "MIC" "Neisseria gonorrhoeae" "Cefotaxime" 0.5 FALSE +"CLSI 2011" "DISK" "Neisseria meningitidis" "Cefotaxime" "30ug" 34 FALSE +"CLSI 2011" "MIC" "Neisseria meningitidis" "Cefotaxime" 0.125 FALSE +"CLSI 2011" "DISK" "Plesiomonas" "Cefotaxime" "30ug" 26 22 FALSE +"CLSI 2011" "MIC" "Plesiomonas" "Cefotaxime" 1 4 FALSE +"CLSI 2011" "DISK" "Streptococcus" "Cefotaxime" "30ug" 24 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Cefotaxime" 1 4 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Cefotaxime" 0.5 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Cefotaxime" "30ug" FALSE +"CLSI 2011" "MIC" "Meningitis" "Streptococcus pneumoniae" "Cefotaxime" 0.5 2 FALSE +"CLSI 2011" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Cefotaxime" 1 4 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" "Cefotaxime" "30ug" 28 25 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" "Cefotaxime" "30ug" 28 25 FALSE +"CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" "Cefotaxime" 1 4 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Cefuroxime axetil" "30ug" 20 16 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Cefuroxime axetil" 4 16 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Cefuroxime axetil" "30ug" FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Cefuroxime axetil" 1 4 FALSE +"CLSI 2011" "DISK" "Aeromonas" "Cefuroxime" "30ug" 18 14 FALSE +"CLSI 2011" "MIC" "Aeromonas" "Cefuroxime" 8 32 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Cefuroxime" "30ug" 20 16 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Cefuroxime" 4 16 FALSE +"CLSI 2011" "MIC" "Moraxella catarrhalis" "Cefuroxime" 4 16 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" "Cefuroxime" "30ug" 31 25 FALSE +"CLSI 2011" "MIC" "Neisseria gonorrhoeae" "Cefuroxime" 1 4 FALSE +"CLSI 2011" "DISK" "Plesiomonas" "Cefuroxime" "30ug" 18 14 FALSE +"CLSI 2011" "MIC" "Plesiomonas" "Cefuroxime" 8 32 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Cefuroxime" FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Cefuroxime" "30ug" FALSE +"CLSI 2011" "MIC" "Oral" "Streptococcus pneumoniae" "Cefuroxime" 1 4 FALSE +"CLSI 2011" "MIC" "Parenteral" "Streptococcus pneumoniae" "Cefuroxime" 0.5 2 FALSE +"CLSI 2011" "MIC" "Aeromonas" "Cefazolin" 1 4 FALSE +"CLSI 2011" "MIC" "Bacillus" "Cefazolin" 8 16 FALSE +"CLSI 2011" "MIC" "Bacillus anthracis" "Cefazolin" FALSE +"CLSI 2011" "MIC" "Plesiomonas" "Cefazolin" 1 4 FALSE +"CLSI 2011" "MIC" "Anaerosalibacter" "Ceftizoxime" 32 128 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Ceftizoxime" "30ug" 26 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Ceftizoxime" 2 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" "Ceftizoxime" "30ug" 38 FALSE +"CLSI 2011" "MIC" "Neisseria gonorrhoeae" "Ceftizoxime" 0.5 FALSE +"CLSI 2011" "DISK" "Enterococcus" "Daptomycin" "30ug" 11 FALSE +"CLSI 2011" "MIC" "Enterococcus" "Daptomycin" 4 FALSE +"CLSI 2011" "MIC" "Lactobacillus" "Daptomycin" 4 FALSE +"CLSI 2011" "DISK" "Streptococcus" "Daptomycin" "30ug" 16 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Daptomycin" "30ug" FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" "Daptomycin" "30ug" FALSE +"CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" "Daptomycin" 1 FALSE +"CLSI 2011" "DISK" "Streptococcus" "Dirithromycin" "15ug" 18 13 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Dirithromycin" 0.5 2 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Dirithromycin" "15ug" 18 13 FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Dirithromycin" 0.5 2 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" "Dirithromycin" "15ug" 18 13 FALSE +"CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" "Dirithromycin" 0.5 2 FALSE +"CLSI 2011" "DISK" "Acinetobacter" "Doxycycline" "30ug" 13 9 FALSE +"CLSI 2011" "MIC" "Bacillus anthracis" "Doxycycline" 1 FALSE +"CLSI 2011" "MIC" "Brucella" "Doxycycline" 1 FALSE +"CLSI 2011" "MIC" "Burkholderia mallei" "Doxycycline" 4 16 FALSE +"CLSI 2011" "MIC" "Burkholderia pseudomallei" "Doxycycline" 4 16 FALSE +"CLSI 2011" "MIC" "Campylobacter" "Doxycycline" 2 8 FALSE +"CLSI 2011" "DISK" "Enterococcus" "Doxycycline" "30ug" 16 12 FALSE +"CLSI 2011" "MIC" "Francisella tularensis" "Doxycycline" 4 FALSE +"CLSI 2011" "DISK" "Pasteurella" "Doxycycline" "30ug" 23 FALSE +"CLSI 2011" "MIC" "Pasteurella" "Doxycycline" 0.5 FALSE +"CLSI 2011" "DISK" "Staphylococcus" "Doxycycline" "30ug" 16 12 FALSE +"CLSI 2011" "MIC" "Vibrio cholerae" "Doxycycline" "30ug" 4 16 FALSE +"CLSI 2011" "MIC" "Yersinia pestis" "Doxycycline" 4 16 FALSE +"CLSI 2011" "MIC" "Canine, feline" "Alloscardovia" "Enrofloxacin" 0.5 4 FALSE +"CLSI 2011" "DISK" "Histophilus somni" "Enrofloxacin" "5ug" 21 16 FALSE +"CLSI 2011" "MIC" "Histophilus somni" "Enrofloxacin" 0.25 2 FALSE +"CLSI 2011" "DISK" "Providencia heimbachae" "Enrofloxacin" "5ug" 21 16 FALSE +"CLSI 2011" "DISK" "Pasteurella multocida" "Enrofloxacin" "5ug" 21 16 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" "Enoxacin" "10ug" 36 31 FALSE +"CLSI 2011" "MIC" "Neisseria gonorrhoeae" "Enoxacin" 0.5 2 FALSE +"CLSI 2011" "MIC" "Bacillus" "Erythromycin" 0.5 8 FALSE +"CLSI 2011" "MIC" "Bacillus anthracis" "Erythromycin" FALSE +"CLSI 2011" "MIC" "Campylobacter" "Erythromycin" 8 32 FALSE +"CLSI 2011" "MIC" "Erysipelothrix rhusiopathiae" "Erythromycin" 0.25 1 FALSE +"CLSI 2011" "MIC" "Granulicatella" "Erythromycin" 0.25 1 FALSE +"CLSI 2011" "MIC" "Lactobacillus" "Erythromycin" 0.5 8 FALSE +"CLSI 2011" "DISK" "Moraxella catarrhalis" "Erythromycin" "15ug" 21 FALSE +"CLSI 2011" "MIC" "Moraxella catarrhalis" "Erythromycin" 2 FALSE +"CLSI 2011" "DISK" "Pasteurella" "Erythromycin" "15ug" 27 24 FALSE +"CLSI 2011" "MIC" "Pasteurella" "Erythromycin" 0.5 2 FALSE +"CLSI 2011" "DISK" "Streptococcus" "Erythromycin" "15ug" 21 15 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Erythromycin" 0.25 1 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Erythromycin" 0.25 1 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Erythromycin" "15ug" 21 15 FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Erythromycin" 0.25 1 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" "Erythromycin" "15ug" 21 15 FALSE +"CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" "Erythromycin" 0.25 1 FALSE +"CLSI 2011" "DISK" "Acinetobacter" "Ertapenem" "10ug" FALSE +"CLSI 2011" "MIC" "Acinetobacter" "Ertapenem" FALSE +"CLSI 2011" "DISK" "Aeromonas" "Ertapenem" "10ug" 19 15 FALSE +"CLSI 2011" "MIC" "Aeromonas" "Ertapenem" 2 8 FALSE +"CLSI 2011" "MIC" "Anaerosalibacter" "Ertapenem" 4 16 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Ertapenem" "10ug" 19 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Ertapenem" 0.5 FALSE +"CLSI 2011" "DISK" "Plesiomonas" "Ertapenem" "10ug" 19 15 FALSE +"CLSI 2011" "MIC" "Plesiomonas" "Ertapenem" 2 8 FALSE +"CLSI 2011" "DISK" "Pseudomonas" "Ertapenem" "10ug" FALSE +"CLSI 2011" "MIC" "Pseudomonas" "Ertapenem" FALSE +"CLSI 2011" "DISK" "Streptococcus" "Ertapenem" "10ug" FALSE +"CLSI 2011" "MIC" "Streptococcus" "Ertapenem" 1 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Ertapenem" "10ug" FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Ertapenem" 1 4 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" "Ertapenem" "10ug" FALSE +"CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" "Ertapenem" 1 FALSE +"CLSI 2011" "MIC" "Abiotrophia" "Cefepime" "M45 Table 1" 1 4 FALSE +"CLSI 2011" "DISK" "Aeromonas" "Cefepime" "30ug" 18 14 FALSE +"CLSI 2011" "MIC" "Aeromonas" "Cefepime" 8 32 FALSE +"CLSI 2011" "MIC" "Erysipelothrix rhusiopathiae" "Cefepime" 1 FALSE +"CLSI 2011" "MIC" "Granulicatella" "Cefepime" 1 4 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Cefepime" "30ug" 26 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Cefepime" 2 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" "Cefepime" "30ug" 31 FALSE +"CLSI 2011" "MIC" "Neisseria gonorrhoeae" "Cefepime" 0.5 FALSE +"CLSI 2011" "DISK" "Plesiomonas" "Cefepime" "30ug" 18 14 FALSE +"CLSI 2011" "MIC" "Plesiomonas" "Cefepime" 8 32 FALSE +"CLSI 2011" "DISK" "Streptococcus" "Cefepime" "30ug" 24 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Cefepime" 1 4 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Cefepime" 0.5 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Cefepime" "30ug" FALSE +"CLSI 2011" "MIC" "Meningitis" "Streptococcus pneumoniae" "Cefepime" 0.5 2 FALSE +"CLSI 2011" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Cefepime" 1 4 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" "Cefepime" "30ug" 24 21 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" "Cefepime" "30ug" 24 21 FALSE +"CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" "Cefepime" 1 4 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Fleroxacin" "5ug" 19 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Fleroxacin" 2 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" "Fleroxacin" "5ug" 35 28 FALSE +"CLSI 2011" "MIC" "Neisseria gonorrhoeae" "Fleroxacin" 0.25 1 FALSE +"CLSI 2011" "DISK" "Aeromonas" "Cefoxitin" "30ug" 18 14 FALSE +"CLSI 2011" "MIC" "Aeromonas" "Cefoxitin" 8 32 FALSE +"CLSI 2011" "MIC" "Anaerosalibacter" "Cefoxitin" 16 64 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" "Cefoxitin" "30ug" 28 23 FALSE +"CLSI 2011" "MIC" "Neisseria gonorrhoeae" "Cefoxitin" 2 8 FALSE +"CLSI 2011" "DISK" "Plesiomonas" "Cefoxitin" "30ug" 18 14 FALSE +"CLSI 2011" "MIC" "Plesiomonas" "Cefoxitin" 8 32 FALSE +"CLSI 2011" "DISK" "Staphylococcus" "Cefoxitin" "30ug" 25 24 FALSE +"CLSI 2011" "DISK" "Staphylococcus aureus" "Cefoxitin" "30ug" 22 21 FALSE +"CLSI 2011" "MIC" "Staphylococcus aureus" "Cefoxitin" 4 8 FALSE +"CLSI 2011" "DISK" "Staphylococcus lugdunensis" "Cefoxitin" "30ug" 22 21 FALSE +"CLSI 2011" "MIC" "Staphylococcus lugdunensis" "Cefoxitin" 4 8 FALSE +"CLSI 2011" "MIC" "Abiotrophia" "Gatifloxacin" "M45 Table 1" 1 4 FALSE +"CLSI 2011" "MIC" "Granulicatella" "Gatifloxacin" 1 4 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Gatifloxacin" "5ug" 18 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Gatifloxacin" 1 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" "Gatifloxacin" "5ug" 38 33 FALSE +"CLSI 2011" "MIC" "Neisseria gonorrhoeae" "Gatifloxacin" 0.125 0.5 FALSE +"CLSI 2011" "DISK" "Staphylococcus" "Gatifloxacin" "10ug" 23 19 FALSE +"CLSI 2011" "MIC" "Staphylococcus" "Gatifloxacin" 0.5 2 FALSE +"CLSI 2011" "DISK" "Streptococcus" "Gatifloxacin" "5ug" 21 17 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Gatifloxacin" 1 4 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Gatifloxacin" 1 4 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Gatifloxacin" "5ug" 21 17 FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Gatifloxacin" 1 4 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" "Gatifloxacin" "5ug" 21 17 FALSE +"CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" "Gatifloxacin" 1 4 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Gemifloxacin" "5ug" 18 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Gemifloxacin" 0.125 FALSE +"CLSI 2011" "DISK" "Streptococcus" "Gemifloxacin" "5ug" FALSE +"CLSI 2011" "MIC" "Streptococcus" "Gemifloxacin" FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Gemifloxacin" "5ug" 23 19 FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Gemifloxacin" 0.125 0.5 FALSE +"CLSI 2011" "DISK" "Aeromonas" "Gentamicin" "10ug" 15 12 FALSE +"CLSI 2011" "MIC" "Aeromonas" "Gentamicin" 4 16 FALSE +"CLSI 2011" "MIC" "Bacillus" "Gentamicin" 4 16 FALSE +"CLSI 2011" "MIC" "Bacillus anthracis" "Gentamicin" FALSE +"CLSI 2011" "MIC" "Brucella" "Gentamicin" 4 FALSE +"CLSI 2011" "MIC" "Francisella tularensis" "Gentamicin" 4 FALSE +"CLSI 2011" "MIC" "Leuconostoc" "Gentamicin" 4 16 FALSE +"CLSI 2011" "MIC" "Lactobacillus" "Gentamicin" 4 16 FALSE +"CLSI 2011" "MIC" "Pediococcus" "Gentamicin" 4 16 FALSE +"CLSI 2011" "DISK" "Plesiomonas" "Gentamicin" "10ug" 15 12 FALSE +"CLSI 2011" "MIC" "Plesiomonas" "Gentamicin" 4 16 FALSE +"CLSI 2011" "MIC" "Yersinia pestis" "Gentamicin" 4 16 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Grepafloxacin" "5ug" 24 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Grepafloxacin" 0.5 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" "Grepafloxacin" "5ug" 37 27 FALSE +"CLSI 2011" "MIC" "Neisseria gonorrhoeae" "Grepafloxacin" 0.064 1 FALSE +"CLSI 2011" "DISK" "Streptococcus" "Grepafloxacin" "5ug" 19 15 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Grepafloxacin" 0.5 2 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Grepafloxacin" "5ug" 19 15 FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Grepafloxacin" 0.5 2 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" "Grepafloxacin" "5ug" 19 15 FALSE +"CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" "Grepafloxacin" 0.5 2 FALSE +"CLSI 2011" "MIC" "Abiotrophia" "Imipenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2011" "DISK" "Aeromonas" "Imipenem" "10ug" 16 13 FALSE +"CLSI 2011" "MIC" "Aeromonas" "Imipenem" 4 16 FALSE +"CLSI 2011" "MIC" "Aggregatibacter" "Imipenem" 4 16 FALSE +"CLSI 2011" "MIC" "Anaerosalibacter" "Imipenem" 4 16 FALSE +"CLSI 2011" "MIC" "Bacillus" "Imipenem" 4 16 FALSE +"CLSI 2011" "MIC" "Bacillus anthracis" "Imipenem" FALSE +"CLSI 2011" "MIC" "Burkholderia mallei" "Imipenem" 4 16 FALSE +"CLSI 2011" "MIC" "Burkholderia pseudomallei" "Imipenem" 4 16 FALSE +"CLSI 2011" "MIC" "Cardiobacterium" "Imipenem" 0.5 2 FALSE +"CLSI 2011" "MIC" "Eikenella" "Imipenem" 0.5 2 FALSE +"CLSI 2011" "MIC" "Erysipelothrix rhusiopathiae" "Imipenem" 0.5 FALSE +"CLSI 2011" "MIC" "Granulicatella" "Imipenem" 0.5 2 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Imipenem" "10ug" 16 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Imipenem" 4 FALSE +"CLSI 2011" "MIC" "Kingella" "Imipenem" 0.5 2 FALSE +"CLSI 2011" "MIC" "Lactobacillus" "Imipenem" 0.5 2 FALSE +"CLSI 2011" "MIC" "Pediococcus" "Imipenem" 0.5 FALSE +"CLSI 2011" "DISK" "Plesiomonas" "Imipenem" "10ug" 16 13 FALSE +"CLSI 2011" "MIC" "Plesiomonas" "Imipenem" 4 16 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Imipenem" 0.5 2 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Imipenem" FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Imipenem" "10ug" FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Imipenem" 0.125 1 FALSE +"CLSI 2011" "DISK" "Enterococcus" "Linezolid" "30ug" 23 20 FALSE +"CLSI 2011" "MIC" "Enterococcus" "Linezolid" 2 8 FALSE +"CLSI 2011" "MIC" "Lactobacillus" "Linezolid" 4 FALSE +"CLSI 2011" "DISK" "Streptococcus" "Linezolid" "30ug" 21 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Linezolid" 2 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Linezolid" "30ug" 21 FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Linezolid" 2 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" "Linezolid" "30ug" 21 FALSE +"CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" "Linezolid" 2 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Lomefloxacin" "10ug" 22 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Lomefloxacin" 2 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" "Lomefloxacin" "10ug" 38 26 FALSE +"CLSI 2011" "MIC" "Neisseria gonorrhoeae" "Lomefloxacin" 0.125 2 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Loracarbef" "30ug" 19 15 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Loracarbef" 8 32 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Loracarbef" "30ug" FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Loracarbef" 2 8 FALSE +"CLSI 2011" "MIC" "Anaerosalibacter" "Latamoxef" 2 8 FALSE +"CLSI 2011" "MIC" "Abiotrophia" "Levofloxacin" "M45 Table 1" 2 8 FALSE +"CLSI 2011" "DISK" "Aeromonas" "Levofloxacin" "5ug" 17 13 FALSE +"CLSI 2011" "MIC" "Aeromonas" "Levofloxacin" 2 8 FALSE +"CLSI 2011" "MIC" "Aggregatibacter" "Levofloxacin" 2 8 FALSE +"CLSI 2011" "MIC" "Bacillus" "Levofloxacin" 2 8 FALSE +"CLSI 2011" "MIC" "Bacillus anthracis" "Levofloxacin" 0.25 FALSE +"CLSI 2011" "DISK" "Bacillus cereus" "Levofloxacin" "5ug" FALSE +"CLSI 2011" "MIC" "Cardiobacterium" "Levofloxacin" 2 8 FALSE +"CLSI 2011" "MIC" "Eikenella" "Levofloxacin" 2 8 FALSE +"CLSI 2011" "MIC" "Erysipelothrix rhusiopathiae" "Levofloxacin" 2 FALSE +"CLSI 2011" "MIC" "Francisella tularensis" "Levofloxacin" 0.5 FALSE +"CLSI 2011" "MIC" "Granulicatella" "Levofloxacin" 2 8 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Levofloxacin" "5ug" 17 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Levofloxacin" 2 FALSE +"CLSI 2011" "MIC" "Kingella" "Levofloxacin" 2 8 FALSE +"CLSI 2011" "MIC" "Moraxella catarrhalis" "Levofloxacin" 2 FALSE +"CLSI 2011" "DISK" "Neisseria meningitidis" "Levofloxacin" "5ug" FALSE +"CLSI 2011" "MIC" "Neisseria meningitidis" "Levofloxacin" 0.032 0.12 FALSE +"CLSI 2011" "DISK" "Plesiomonas" "Levofloxacin" "5ug" 17 13 FALSE +"CLSI 2011" "MIC" "Plesiomonas" "Levofloxacin" 2 8 FALSE +"CLSI 2011" "DISK" "Pasteurella" "Levofloxacin" "5ug" 28 FALSE +"CLSI 2011" "MIC" "Pasteurella" "Levofloxacin" 0.064 FALSE +"CLSI 2011" "DISK" "Staphylococcus" "Levofloxacin" "10ug" 19 15 FALSE +"CLSI 2011" "MIC" "Staphylococcus" "Levofloxacin" 1 4 FALSE +"CLSI 2011" "DISK" "Streptococcus" "Levofloxacin" "5ug" 17 13 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Levofloxacin" 2 8 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Levofloxacin" 2 8 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Levofloxacin" "5ug" 17 13 FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Levofloxacin" 2 8 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" "Levofloxacin" "5ug" 17 13 FALSE +"CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" "Levofloxacin" 2 8 FALSE +"CLSI 2011" "MIC" "Yersinia pestis" "Levofloxacin" 0.25 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Cefamandole" "30ug" FALSE +"CLSI 2011" "MIC" "Haemophilus" "Cefamandole" 4 16 FALSE +"CLSI 2011" "MIC" "Abiotrophia" "Meropenem" "M45 Table 1" 0.5 2 FALSE +"CLSI 2011" "DISK" "Aeromonas" "Meropenem" "10ug" 16 13 FALSE +"CLSI 2011" "MIC" "Aeromonas" "Meropenem" 4 16 FALSE +"CLSI 2011" "MIC" "Aggregatibacter" "Meropenem" 4 16 FALSE +"CLSI 2011" "MIC" "Anaerosalibacter" "Meropenem" 4 16 FALSE +"CLSI 2011" "DISK" "Bacillus cereus" "Meropenem" "10ug" 20 15 FALSE +"CLSI 2011" "DISK" "Burkholderia cepacia" "Meropenem" "10ug" 20 15 FALSE +"CLSI 2011" "DISK" "Burkholderia cepacia" "Meropenem" "10ug" 20 15 FALSE +"CLSI 2011" "MIC" "Cardiobacterium" "Meropenem" 0.5 2 FALSE +"CLSI 2011" "MIC" "Eikenella" "Meropenem" 0.5 2 FALSE +"CLSI 2011" "MIC" "Erysipelothrix rhusiopathiae" "Meropenem" 0.5 FALSE +"CLSI 2011" "MIC" "Granulicatella" "Meropenem" 0.5 2 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Meropenem" "10ug" 20 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Meropenem" 0.5 FALSE +"CLSI 2011" "MIC" "Kingella" "Meropenem" 0.5 2 FALSE +"CLSI 2011" "DISK" "Neisseria meningitidis" "Meropenem" "10ug" 30 FALSE +"CLSI 2011" "MIC" "Neisseria meningitidis" "Meropenem" 0.25 FALSE +"CLSI 2011" "DISK" "Plesiomonas" "Meropenem" "10ug" 16 13 FALSE +"CLSI 2011" "MIC" "Plesiomonas" "Meropenem" 4 16 FALSE +"CLSI 2011" "DISK" "Streptococcus" "Meropenem" "10ug" FALSE +"CLSI 2011" "MIC" "Streptococcus" "Meropenem" 0.5 2 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Meropenem" 0.5 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Meropenem" "10ug" FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Meropenem" 0.25 1 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" "Meropenem" "10ug" FALSE +"CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" "Meropenem" 0.5 FALSE +"CLSI 2011" "MIC" "Anaerosalibacter" "Mezlocillin" 32 128 FALSE +"CLSI 2011" "DISK" "Pseudomonas aeruginosa" "Mezlocillin" "75ug" 16 15 FALSE +"CLSI 2011" "MIC" "Pseudomonas aeruginosa" "Mezlocillin" 64 128 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Moxifloxacin" "5ug" 18 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Moxifloxacin" 1 FALSE +"CLSI 2011" "DISK" "Pasteurella" "Moxifloxacin" "5ug" 28 FALSE +"CLSI 2011" "MIC" "Pasteurella" "Moxifloxacin" 0.064 FALSE +"CLSI 2011" "DISK" "Staphylococcus" "Moxifloxacin" "5ug" 24 20 FALSE +"CLSI 2011" "DISK" "Streptococcus" "Moxifloxacin" "5ug" FALSE +"CLSI 2011" "MIC" "Streptococcus" "Moxifloxacin" FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Moxifloxacin" "5ug" 18 14 FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Moxifloxacin" 1 4 FALSE +"CLSI 2011" "DISK" "Burkholderia cepacia" "Minocycline" "30ug" 19 14 FALSE +"CLSI 2011" "DISK" "Enterococcus" "Minocycline" "30ug" 19 14 FALSE +"CLSI 2011" "MIC" "Leuconostoc" "Minocycline" 4 16 FALSE +"CLSI 2011" "DISK" "Neisseria meningitidis" "Minocycline" "30ug" 26 FALSE +"CLSI 2011" "MIC" "Neisseria meningitidis" "Minocycline" 2 FALSE +"CLSI 2011" "DISK" "Stenotrophomonas maltophilia" "Minocycline" "30ug" 19 14 FALSE +"CLSI 2011" "DISK" "Staphylococcus" "Minocycline" "30ug" 19 14 FALSE +"CLSI 2011" "MIC" "Anaerosalibacter" "Metronidazole" 8 32 FALSE +"CLSI 2011" "DISK" "Neisseria meningitidis" "Nalidixic acid" "30ug" 26 25 FALSE +"CLSI 2011" "MIC" "Neisseria meningitidis" "Nalidixic acid" 4 8 FALSE +"CLSI 2011" "DISK" "Acinetobacter" "Netilmicin" "30ug" FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Norfloxacin" "5ug" FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Norfloxacin" FALSE +"CLSI 2011" "DISK" "Haemophilus" "Ofloxacin" "5ug" 16 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Ofloxacin" 2 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" "Ofloxacin" "5ug" 31 24 FALSE +"CLSI 2011" "MIC" "Neisseria gonorrhoeae" "Ofloxacin" 0.25 2 FALSE +"CLSI 2011" "DISK" "Staphylococcus" "Ofloxacin" "10ug" 18 14 FALSE +"CLSI 2011" "MIC" "Staphylococcus" "Ofloxacin" 1 4 FALSE +"CLSI 2011" "DISK" "Streptococcus" "Ofloxacin" "5ug" 16 12 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Ofloxacin" 2 8 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Ofloxacin" "5ug" 16 12 FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Ofloxacin" 2 8 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" "Ofloxacin" "5ug" 16 12 FALSE +"CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" "Ofloxacin" 2 8 FALSE +"CLSI 2011" "DISK" "Staphylococcus" "Oxacillin" "1ug" FALSE +"CLSI 2011" "DISK" "Staphylococcus aureus" "Oxacillin" "1ug" 13 10 FALSE +"CLSI 2011" "MIC" "Staphylococcus aureus" "Oxacillin" 2 4 FALSE +"CLSI 2011" "DISK" "Staphylococcus lugdunensis" "Oxacillin" "1ug" FALSE +"CLSI 2011" "MIC" "Staphylococcus lugdunensis" "Oxacillin" 2 4 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Oxacillin" "1ug" 20 FALSE +"CLSI 2011" "MIC" "Abiotrophia" "Penicillin G" "M45 Table 1" 0.125 4 FALSE +"CLSI 2011" "MIC" "Aggregatibacter" "Penicillin G" 1 4 FALSE +"CLSI 2011" "MIC" "Anaerosalibacter" "Penicillin G" 0.5 2 FALSE +"CLSI 2011" "MIC" "Bacillus" "Penicillin G" 0.125 0.25 FALSE +"CLSI 2011" "MIC" "Bacillus anthracis" "Penicillin G" 0.125 0.25 FALSE +"CLSI 2011" "MIC" "Cardiobacterium" "Penicillin G" 1 4 FALSE +"CLSI 2011" "MIC" "Eikenella" "Penicillin G" 1 4 FALSE +"CLSI 2011" "DISK" "Enterococcus" "Penicillin G" "10units" 15 14 FALSE +"CLSI 2011" "MIC" "Enterococcus" "Penicillin G" 8 16 FALSE +"CLSI 2011" "MIC" "Erysipelothrix rhusiopathiae" "Penicillin G" 0.125 FALSE +"CLSI 2011" "MIC" "Granulicatella" "Penicillin G" 0.125 4 FALSE +"CLSI 2011" "MIC" "Kingella" "Penicillin G" 1 4 FALSE +"CLSI 2011" "MIC" "Leuconostoc" "Penicillin G" 8 FALSE +"CLSI 2011" "MIC" "Lactobacillus" "Penicillin G" 8 FALSE +"CLSI 2011" "DISK" "Listeria monocytogenes" "Penicillin G" "10units" FALSE +"CLSI 2011" "MIC" "Listeria monocytogenes" "Penicillin G" 2 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" "Penicillin G" "10units" 47 26 FALSE +"CLSI 2011" "MIC" "Neisseria gonorrhoeae" "Penicillin G" 0.064 2 FALSE +"CLSI 2011" "DISK" "Neisseria meningitidis" "Penicillin G" "10units" FALSE +"CLSI 2011" "MIC" "Neisseria meningitidis" "Penicillin G" 0.064 0.5 FALSE +"CLSI 2011" "MIC" "Pediococcus" "Penicillin G" 8 FALSE +"CLSI 2011" "DISK" "Pasteurella" "Penicillin G" "10ug" 25 FALSE +"CLSI 2011" "MIC" "Pasteurella" "Penicillin G" 0.5 FALSE +"CLSI 2011" "DISK" "Streptococcus" "Penicillin G" "10units" 24 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Penicillin G" 0.125 4 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Penicillin G" 0.125 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Penicillin G" "10units" FALSE +"CLSI 2011" "MIC" "Meningitis" "Streptococcus pneumoniae" "Penicillin G" 0.064 0.12 FALSE +"CLSI 2011" "MIC" "Non-meningitis" "Streptococcus pneumoniae" "Penicillin G" 2 8 FALSE +"CLSI 2011" "MIC" "Oral" "Streptococcus pneumoniae" "Penicillin G" 0.064 2 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" "Penicillin G" "10units" FALSE +"CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" "Penicillin G" 0.125 4 FALSE +"CLSI 2011" "MIC" "Anaerosalibacter" "Piperacillin" 32 128 FALSE +"CLSI 2011" "DISK" "Pseudomonas aeruginosa" "Piperacillin" "100ug" 18 17 FALSE +"CLSI 2011" "MIC" "Pseudomonas aeruginosa" "Piperacillin" 64 128 FALSE +"CLSI 2011" "DISK" "Acinetobacter" "Polymyxin B" "300ug" FALSE +"CLSI 2011" "MIC" "Acinetobacter" "Polymyxin B" 2 4 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Penicillin V" "10ug" FALSE +"CLSI 2011" "MIC" "Oral" "Streptococcus pneumoniae" "Penicillin V" 0.064 2 FALSE +"CLSI 2011" "DISK" "Streptococcus" "Quinupristin/dalfopristin" "15ug" 19 15 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Quinupristin/dalfopristin" 1 4 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Quinupristin/dalfopristin" "15ug" 19 15 FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Quinupristin/dalfopristin" 1 4 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" "Quinupristin/dalfopristin" "15ug" 19 15 FALSE +"CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" "Quinupristin/dalfopristin" 1 4 FALSE +"CLSI 2011" "MIC" "Aggregatibacter" "Rifampicin" 1 4 FALSE +"CLSI 2011" "MIC" "Bacillus" "Rifampicin" 1 4 FALSE +"CLSI 2011" "MIC" "Bacillus anthracis" "Rifampicin" FALSE +"CLSI 2011" "MIC" "Cardiobacterium" "Rifampicin" 1 4 FALSE +"CLSI 2011" "MIC" "Eikenella" "Rifampicin" 1 4 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Rifampicin" 1 4 FALSE +"CLSI 2011" "MIC" "Kingella" "Rifampicin" 1 4 FALSE +"CLSI 2011" "MIC" "Moraxella catarrhalis" "Rifampicin" 1 4 FALSE +"CLSI 2011" "DISK" "Neisseria meningitidis" "Rifampicin" "5ug" 25 19 FALSE +"CLSI 2011" "MIC" "Neisseria meningitidis" "Rifampicin" 0.5 2 FALSE +"CLSI 2011" "DISK" "Streptococcus" "Rifampicin" "5ug" FALSE +"CLSI 2011" "MIC" "Streptococcus" "Rifampicin" FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Rifampicin" "5ug" 19 16 FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Rifampicin" 1 4 FALSE +"CLSI 2011" "DISK" "Aeromonas" "Ampicillin/sulbactam" "10ug" 15 11 FALSE +"CLSI 2011" "MIC" "Aeromonas" "Ampicillin/sulbactam" 8 32 FALSE +"CLSI 2011" "MIC" "Aggregatibacter" "Ampicillin/sulbactam" 2 4 FALSE +"CLSI 2011" "MIC" "Anaerosalibacter" "Ampicillin/sulbactam" 8 32 FALSE +"CLSI 2011" "MIC" "Cardiobacterium" "Ampicillin/sulbactam" 2 4 FALSE +"CLSI 2011" "MIC" "Eikenella" "Ampicillin/sulbactam" 2 4 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Ampicillin/sulbactam" "10/10ug" 20 19 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Ampicillin/sulbactam" 2 4 FALSE +"CLSI 2011" "DISK" "Plesiomonas" "Ampicillin/sulbactam" "10ug" 15 11 FALSE +"CLSI 2011" "MIC" "Plesiomonas" "Ampicillin/sulbactam" 8 32 FALSE +"CLSI 2011" "DISK" "Pseudomonas aeruginosa" "Ampicillin/sulbactam" "10/10ug" FALSE +"CLSI 2011" "MIC" "Pseudomonas aeruginosa" "Ampicillin/sulbactam" FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Ampicillin/sulbactam" "10/10ug" FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Ampicillin/sulbactam" FALSE +"CLSI 2011" "DISK" "Neisseria meningitidis" "Sulfamethoxazole" "200-300ug" FALSE +"CLSI 2011" "MIC" "Neisseria meningitidis" "Sulfamethoxazole" 2 8 FALSE +"CLSI 2011" "MIC" "Neisseria meningitidis" "Sulfamethoxazole" 2 8 FALSE +"CLSI 2011" "DISK" "Neisseria meningitidis" "Sulfisoxazole" "200-300ug" FALSE +"CLSI 2011" "MIC" "Neisseria meningitidis" "Sulfisoxazole" 2 8 FALSE +"CLSI 2011" "DISK" "Histophilus somni" "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2011" "DISK" "Providencia heimbachae" "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2011" "DISK" "Pasteurella multocida" "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Sparfloxacin" "5ug" FALSE +"CLSI 2011" "MIC" "Haemophilus" "Sparfloxacin" 0.25 FALSE +"CLSI 2011" "DISK" "Streptococcus" "Sparfloxacin" "5ug" FALSE +"CLSI 2011" "MIC" "Streptococcus" "Sparfloxacin" FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Sparfloxacin" "5ug" 19 15 FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Sparfloxacin" 0.5 2 FALSE +"CLSI 2011" "DISK" "Neisseria meningitidis" "Sulfonamides" "200-300ug" FALSE +"CLSI 2011" "MIC" "Neisseria meningitidis" "Sulfonamides" 2 8 FALSE +"CLSI 2011" "MIC" "Brucella" "Streptoduocin" 8 FALSE +"CLSI 2011" "MIC" "Francisella tularensis" "Streptoduocin" 8 FALSE +"CLSI 2011" "MIC" "Yersinia pestis" "Streptoduocin" 4 16 FALSE +"CLSI 2011" "DISK" "Aeromonas" "Trimethoprim/sulfamethoxazole" "1.25/23.75ug" 16 10 FALSE +"CLSI 2011" "MIC" "Aeromonas" "Trimethoprim/sulfamethoxazole" 2 4 FALSE +"CLSI 2011" "MIC" "Aggregatibacter" "Trimethoprim/sulfamethoxazole" 0.5 4 FALSE +"CLSI 2011" "MIC" "Bacillus" "Trimethoprim/sulfamethoxazole" 2 4 FALSE +"CLSI 2011" "MIC" "Bacillus anthracis" "Trimethoprim/sulfamethoxazole" FALSE +"CLSI 2011" "MIC" "Brucella" "Trimethoprim/sulfamethoxazole" 2 FALSE +"CLSI 2011" "MIC" "Burkholderia pseudomallei" "Trimethoprim/sulfamethoxazole" 2 4 FALSE +"CLSI 2011" "MIC" "Cardiobacterium" "Trimethoprim/sulfamethoxazole" 0.5 4 FALSE +"CLSI 2011" "MIC" "Eikenella" "Trimethoprim/sulfamethoxazole" 0.5 4 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Trimethoprim/sulfamethoxazole" 0.5 4 FALSE +"CLSI 2011" "MIC" "Kingella" "Trimethoprim/sulfamethoxazole" 0.5 4 FALSE +"CLSI 2011" "MIC" "Listeria monocytogenes" "Trimethoprim/sulfamethoxazole" 0.5 4 FALSE +"CLSI 2011" "DISK" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" "1.25/23.75ug" 13 10 FALSE +"CLSI 2011" "MIC" "Moraxella catarrhalis" "Trimethoprim/sulfamethoxazole" 0.5 4 FALSE +"CLSI 2011" "DISK" "Neisseria meningitidis" "Trimethoprim/sulfamethoxazole" "1.25/23.75ug" 30 25 FALSE +"CLSI 2011" "MIC" "Neisseria meningitidis" "Trimethoprim/sulfamethoxazole" 0.125 0.5 FALSE +"CLSI 2011" "DISK" "Plesiomonas" "Trimethoprim/sulfamethoxazole" "1.25/23.75ug" 16 10 FALSE +"CLSI 2011" "MIC" "Plesiomonas" "Trimethoprim/sulfamethoxazole" 2 4 FALSE +"CLSI 2011" "DISK" "Pasteurella" "Trimethoprim/sulfamethoxazole" "1.25/23.75ug" 24 FALSE +"CLSI 2011" "MIC" "Pasteurella" "Trimethoprim/sulfamethoxazole" 0.5 FALSE +"CLSI 2011" "DISK" "Streptococcus" "Trimethoprim/sulfamethoxazole" "1.25/23.75ug" FALSE +"CLSI 2011" "MIC" "Streptococcus" "Trimethoprim/sulfamethoxazole" FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" "1.25/23.75ug" 19 15 FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Trimethoprim/sulfamethoxazole" 0.5 4 FALSE +"CLSI 2011" "MIC" "Yersinia pestis" "Trimethoprim/sulfamethoxazole" 2 4 FALSE +"CLSI 2011" "MIC" "Anaerosalibacter" "Ticarcillin/clavulanic acid" 32 128 FALSE +"CLSI 2011" "DISK" "Bacillus cereus" "Ticarcillin/clavulanic acid" "75ug" FALSE +"CLSI 2011" "DISK" "Pseudomonas aeruginosa" "Ticarcillin/clavulanic acid" "75/10ug" 15 14 FALSE +"CLSI 2011" "MIC" "Pseudomonas aeruginosa" "Ticarcillin/clavulanic acid" 64 128 FALSE +"CLSI 2011" "DISK" "Stenotrophomonas maltophilia" "Ticarcillin/clavulanic acid" "75ug" FALSE +"CLSI 2011" "DISK" "Staphylococcus" "Ticarcillin/clavulanic acid" "75/10ug" 23 22 FALSE +"CLSI 2011" "MIC" "Staphylococcus" "Ticarcillin/clavulanic acid" 8 16 FALSE +"CLSI 2011" "DISK" "Aeromonas" "Tetracycline" "30ug" 15 11 FALSE +"CLSI 2011" "MIC" "Aeromonas" "Tetracycline" 4 16 FALSE +"CLSI 2011" "MIC" "Aggregatibacter" "Tetracycline" 2 8 FALSE +"CLSI 2011" "MIC" "Anaerosalibacter" "Tetracycline" 4 16 FALSE +"CLSI 2011" "MIC" "Bacillus" "Tetracycline" 4 16 FALSE +"CLSI 2011" "MIC" "Bacillus anthracis" "Tetracycline" 1 FALSE +"CLSI 2011" "MIC" "Brucella" "Tetracycline" 1 FALSE +"CLSI 2011" "MIC" "Burkholderia mallei" "Tetracycline" 4 16 FALSE +"CLSI 2011" "MIC" "Burkholderia pseudomallei" "Tetracycline" 4 16 FALSE +"CLSI 2011" "MIC" "Campylobacter" "Tetracycline" 4 16 FALSE +"CLSI 2011" "MIC" "Cardiobacterium" "Tetracycline" 2 8 FALSE +"CLSI 2011" "MIC" "Eikenella" "Tetracycline" 2 8 FALSE +"CLSI 2011" "DISK" "Enterococcus" "Tetracycline" "30ug" 19 14 FALSE +"CLSI 2011" "MIC" "Francisella tularensis" "Tetracycline" 4 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Tetracycline" "30ug" 29 25 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Tetracycline" 2 8 FALSE +"CLSI 2011" "MIC" "Kingella" "Tetracycline" 2 8 FALSE +"CLSI 2011" "DISK" "Moraxella catarrhalis" "Tetracycline" "30ug" 29 24 FALSE +"CLSI 2011" "MIC" "Moraxella catarrhalis" "Tetracycline" 2 8 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" "Tetracycline" "30ug" 38 30 FALSE +"CLSI 2011" "MIC" "Neisseria gonorrhoeae" "Tetracycline" 0.25 2 FALSE +"CLSI 2011" "DISK" "Plesiomonas" "Tetracycline" "30ug" 15 11 FALSE +"CLSI 2011" "MIC" "Plesiomonas" "Tetracycline" 4 16 FALSE +"CLSI 2011" "DISK" "Pasteurella" "Tetracycline" "30ug" 23 FALSE +"CLSI 2011" "MIC" "Pasteurella" "Tetracycline" 1 FALSE +"CLSI 2011" "DISK" "Staphylococcus" "Tetracycline" "30ug" 19 14 FALSE +"CLSI 2011" "DISK" "Streptococcus" "Tetracycline" "30ug" 23 18 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Tetracycline" 2 8 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Tetracycline" "30ug" 23 18 FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Tetracycline" 2 8 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" "Tetracycline" "30ug" 23 18 FALSE +"CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" "Tetracycline" 2 8 FALSE +"CLSI 2011" "MIC" "Yersinia pestis" "Tetracycline" 4 16 FALSE +"CLSI 2011" "MIC" "Anaerosalibacter" "Ticarcillin" 32 128 FALSE +"CLSI 2011" "DISK" "Pseudomonas aeruginosa" "Ticarcillin" "75ug" 15 14 FALSE +"CLSI 2011" "MIC" "Pseudomonas aeruginosa" "Ticarcillin" 64 128 FALSE +"CLSI 2011" "DISK" "Actinobacillus pleuropneumoniae" "Tilmicosin" "15ug" 11 10 FALSE +"CLSI 2011" "MIC" "Actinobacillus pleuropneumoniae" "Tilmicosin" 16 32 FALSE +"CLSI 2011" "DISK" "Pasteurella multocida" "Tilmicosin" "15ug" 11 10 FALSE +"CLSI 2011" "MIC" "Pasteurella multocida" "Tilmicosin" 16 32 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Telithromycin" "15ug" 15 11 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Telithromycin" 4 16 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Telithromycin" FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Telithromycin" "15ug" 19 15 FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Telithromycin" 1 4 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Trovafloxacin" "10ug" 22 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Trovafloxacin" 1 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" "Trovafloxacin" "10ug" 34 FALSE +"CLSI 2011" "MIC" "Neisseria gonorrhoeae" "Trovafloxacin" 0.25 FALSE +"CLSI 2011" "DISK" "Streptococcus" "Trovafloxacin" "10ug" 19 15 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Trovafloxacin" 1 4 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Trovafloxacin" "10ug" 19 15 FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Trovafloxacin" 1 4 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" "Trovafloxacin" "10ug" 19 15 FALSE +"CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" "Trovafloxacin" 1 4 FALSE +"CLSI 2011" "DISK" "Aeromonas" "Piperacillin/tazobactam" "100ug" 21 17 FALSE +"CLSI 2011" "MIC" "Aeromonas" "Piperacillin/tazobactam" 16 128 FALSE +"CLSI 2011" "MIC" "Anaerosalibacter" "Piperacillin/tazobactam" 32 128 FALSE +"CLSI 2011" "DISK" "Haemophilus" "Piperacillin/tazobactam" "100ug" 21 FALSE +"CLSI 2011" "MIC" "Haemophilus" "Piperacillin/tazobactam" 1 2 FALSE +"CLSI 2011" "DISK" "Plesiomonas" "Piperacillin/tazobactam" "100ug" 21 17 FALSE +"CLSI 2011" "MIC" "Plesiomonas" "Piperacillin/tazobactam" 16 128 FALSE +"CLSI 2011" "DISK" "Pseudomonas aeruginosa" "Piperacillin/tazobactam" "100/10ug" 18 17 FALSE +"CLSI 2011" "MIC" "Pseudomonas aeruginosa" "Piperacillin/tazobactam" 64 128 FALSE +"CLSI 2011" "DISK" "Staphylococcus" "Piperacillin/tazobactam" "100/10ug" 18 17 FALSE +"CLSI 2011" "MIC" "Staphylococcus" "Piperacillin/tazobactam" 8 16 FALSE +"CLSI 2011" "MIC" "Abiotrophia" "Vancomycin" "M45 Table 1" 1 FALSE +"CLSI 2011" "MIC" "Bacillus" "Vancomycin" 4 FALSE +"CLSI 2011" "MIC" "Bacillus anthracis" "Vancomycin" FALSE +"CLSI 2011" "DISK" "Enterococcus" "Vancomycin" "30ug" 17 14 FALSE +"CLSI 2011" "MIC" "Granulicatella" "Vancomycin" 1 FALSE +"CLSI 2011" "MIC" "Lactobacillus" "Vancomycin" 2 16 FALSE +"CLSI 2011" "MIC" "Staphylococcus aureus" "Vancomycin" 2 16 FALSE +"CLSI 2011" "DISK" "Streptococcus" "Vancomycin" "30ug" 17 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Vancomycin" 1 FALSE +"CLSI 2011" "MIC" "Streptococcus" "Vancomycin" 1 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" "Vancomycin" "30ug" 17 FALSE +"CLSI 2011" "MIC" "Streptococcus pneumoniae" "Vancomycin" 1 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" "Vancomycin" "30ug" 17 FALSE +"CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" "Vancomycin" 1 FALSE diff --git a/data/rsi_translation.rda b/data/rsi_translation.rda index 323e32a4e230b6804e845553d20f8e1f1ef7306e..ee5d7d81cca1b1e28ab7b6a0f2cebcc6207b5250 100644 GIT binary patch literal 25970 zcmXtfXH*kP)NLU2-b?7xLx&_vHK9o-kkCOxC?+9Ml#b#Jy(7H@MF=E>DlJ%0q)Sx@ zMT#gknhGd_*skw>?|tw5nfWni&6=~$oHeue+1CCzQzL|*2FlMyDA=2`BI=)kzkfd? z9Jv0zJ^T0X&nNq@F#s}vZ3C{9#FqsCe=c2f-T?f6V<$)8{qB3fYuQA+07z~d?r=Cj zXc{1?heLG?A{$`-OSN!F6kc4@$U1oLWQNSH#vTrHdY zyl7F03x%z4u5h9d05FD(&l+aHvkDzKHBc_9@c-S9ZN^Ae7BW#QD<~^a1pok5UGjlE zp}dw}>QE4lD;0hO`F{(!;Ji&voJO2RrQhf^wTiWnBS9{>um?SP7XSfxda8*l!zt*$ z@W!&UDC7~)9i?otP|Z=(*t89|Alw-#=KFd4{X2D^&#AGdusQdy1vu%G=h-b+M&r9l zgQL+lsbM1$_#rF%72gA@pm8q6YspT5fPzgK!)}Mx5@}|0;arolg+W-0&>+0ztDL?` z`mE0huAZ*H?734$jBNwIUyLH21LZyz`XWSW?zWD_o8$B;P1Ct__1F#5BOsCuPoj-02SuMVMZsrkH-Pa+U1 zbmTF;DhyIt#B2JhhD|$d2G~Z4?Fa3c6Q_Dz@qd1n9u6t2Hm@L8S~<6x)w{k91-&<4 zfH^;^D9`RPuyE^?_AUL$YuZ4J9Zd+CLI?G1lC<_6V`_XG^*9&P_RT5IkL=cqqlY1> z<>LM=v{L!?xQRuoMW_O{!W-qkT9Lr*7e5r_7Zt@D!MF&r$eJ)>U>2G*+ zX~pq{<7;85)G5?su`kpa{;?p!KJs8>r>!Y=cAovqBW&QrTI{U;a_X{gU6q%OayBz1 znc+gzY2nAeX_{GzI+w_-oAMrc@*S10xzZa`xx5Bhd|eQ}*bzVbr8gn~<`p-z+qK*m zH`;SF7xVh;xgIt3o!_s&CYe(;-yLZFz5H`gjDM415Xa-8ec*rH$hFK?x;N(P<_pDN z(OcHxVfsG20*x!blzicTz6rmVINK?GviMK+j~B;Js~_(C;ZqE~2H(}c`{wN0g{8ag zk7Ldwj@p^4@zRu_(bwX?XvdDR6@C|%&vspqv=}+~X+2_eP|FP~rq57UN~b(!Sk<;G4X}n1?{LAe4EhwLAr4r4rnhXg#a70mLfZ;?}N9C%&V0ccUuCc7~ zh`lSND5X%)o|?r#witJiYI8%-IH(CKR0`IKv&W_sE)Yd^>+n$62yV?;-L+arw@OfB z-q{0^?u?y>rT7yuS-g_E{-F!KVR%o8xoW;*7@r8()}BDp*6v!SHmo>RbxrbeP5Kkj zGaAZhm}@@TpU4m^pDA9|#lu8Bdlp*Dr0TI%Dp2-0EbEnixac#A+>y16U6%2gY=jdl=6!2BvIFDKtNAnhmcuU!8p&KR-SUK@F#4 zdiN^~hmpSF^wP=dQ*-_hJD4)X2qXy#hbYSmmWg?3G%$KXR6H0AQhv3c zZdZQ2sxB1fz+j4ncVn}1vRuXp_9Q&NoM?AAaYYyARm{S6!u+#4@xHE%H5eZ6%UGh2 zK=Wc+!M^nx)HYa1NHCU=Z^t0~7kOJ;G0(Jix4#}^6~-ys+0-qOUsl_TZw=6<&oujW zgFNl?8`fZGf-B6+3B5o~FY4*)a>VL2QC#g8<}z`A_KtLj8(_~vJMtLW#`dMtaoWEgZMI933`xxsYx$M zNw5Z$F-prADyG1~LQr;6o)O{Ggk1aO-chiWGXalt2IV7ZcK)!^|9qfL4s-S^uu+s= zRkhkevI#y|J4b8|l+j+@2&t5%@lsM1Ar(!5EiVks==D(M zLVID<#hjic5084Ud`J^`uy>+amNC~m7a|2!_lM@>%6U|-dWTO0NOrl_W8~~`IS~7m zx)KNV-fDc0_e6k1hzhZRm`_tBWK8yYt_U^}v%9p3sL+hrwlpGmg~T(ZHkRJQk9Wq> zCsT2x0Ctj%w@yefQ%+;Fr$zQOD!*MKLZTWLAk`B9vnvJ@RiL01O4bWl`@ctlH?~J# zaQk@0jBjbv=Q6H~8Cw-^IDdcQK6k8ir%ftX98jKAjPXvotrBzey7%aPOw+Z+-OD*i&3`m-c4X)}tj+b*~1Jv~!EU?0o6x&^r^@P}V5=x8a|AfjIVK14sOXb@UGx9*K zfo}tS5+zf`!TRSsz6z)|=3W0tH##gH$>^$H>`ajEytZx-{Rlg@xS!j4!TWB4&#AuN zE7$3|rqU)qh-j*qO*-Q@t(1cdt6|R8-(r#Tw*(4=+~Hp!p%72uLOZ zjpypsS`eCWt8eV_Y=3fbQiDY{CGRYM(PqVm+t&;5v1twXmZ6T_M^Cv`9~s7)9ma#6 zM1@ZXiI>|7_W$dU=y{WyyGvv#Bjn)eR`~tXK|zSLejN*V79e6WS?$89?JK5RPkr88 zi5h^8{ zAXc|K2hLcv7Hjo8aQLRVx;+j3C<9Gh$Ak!^(r`m@l-Z&+V5L>T)Mo*k7qeVDa6^8P zT1BdK1bp6`>~vFiRW3-s)Rfofyh;bO7Ix}`x32ihWZ|2Vt9=K8En0^O%t9!GLrO`@ z-T7feiwW7TK9TF-OH^_z{YPCc@`kvs8+**=SO z(<(D0UbFx9dM0q*K+gY;VDG^hQ2yHcZv{^oHW<4WDSch-@{i7TWDnL(G?TC!RBO(o zi){`UyX2^=UgKWLW@MF6rYk;EC6acyG$Y>8GJergq;SG=zlzws_RgfR=8o!iBpY+kE%2#LEr*=9@1i!`zd^PC%T{8X5w*m_T#h|+Qzm~?7gz+`w-kq zU^1B$-4o+F(yuT7FqbM0uIlT^_I7KbF)m9-kexVzw3L0oXwkKnsy=dz05E%BSe$%5 zIb+}>`CLM$(9$+P2# zfXZOaMb@c2X#{|Fdy|tsKB2 zb!HYaaavf&CBxce%0Vr690-X3OfnOi>q}no51E}7czmYse5;R^+$J+p04fGI1q@g_ z-B!1fCd-zlkjJOx>Y;PGf}Kq{^Axy> z12;OmCEmVoHe&*HhLB)w5uuln{lAYWMT7YTv|_fx7gwwJZ;;E?c}!EUsGLvyin4Se zuJD)i{1lwNAKYT}-^~d(CLXOibkt}#^4MQ(Ip+L*_pX+;m3E;9o7&d&S!G+qziP;T zwyl*uWn~_+RQ~W3{##i1FSX%p8((8%_sc&P{e&=ilHN<6@3nUm)2?VDcaZVJ3&u$B|G z7yByd7%Tkp>j|(y`4mC9TDRiqfl@!*e4w-F^x(+$2qbi_zQ)`_zx>N>z5FWOg3O?E z4vR%yH>%!cYz6jr!zx!u`)g5++=EX<(lp3Rtx5s>U4lZj(X`LQb2H{ww_llm14Ih4 z0SzQZe5hNt^S^EGJLnJK*&@cU!XF-eUv(Qv}$kZ z_g=7W2U2+sh;#gi#-!GjM$dybB?Xk{U*a~2TE`X(Y0E4XDK_OH0b@DH^KzWPd4oCl ztzw%8K0KLpUJ47Vmbz|p(6pmnP+(7upNFiMFGGet!a0n^$HZbM-rId(!dn8gXyo=`2G5D(806=ZuD`dQ!> z*4K#UnGDbvNZ^y%sRKcD{3WTgbNIph!V9IQWVOaaX+i~4avkwM3|-#tdJl$S-t7h{h{Ct-3^S7m!PEA*jp^2N#3tos~lqMy8V zQBo?FGkSsV@HK_=RU$pO`8pA*N9LJejc@nURvU|o5O{V(AJDLRsCSoXYVgKD<4F0JOB5MEp(pVBv`)d zj2%0QAA0lj68mNQ_j*0`pkx_`EtA6eU>P4LWPs>-8$cWTmELf!ZbX+Lot6m*0QUva043;W_iWnXRjO|-wrGai~?MrptEjw<)PtgwD0P>cH# zPQ^alde-v*-5h3sA5T=B?pb}A<#qUMKfu_QEGknE=tBJPU=eoG#R~e_`TYKH^F-*E>~nC|gYLnD^`9X1><(cMOmCSvEkmQLK@F|}b?B}oVjhV(Ut`v}b8p7L*)Ec`DJQY1 zFY7-Yx^H|`9aZ)C9_%FIxka8iF-qd2!$9-dLRxA*d-6U+m}+fi7=Fr~q_KhtL^Vj{swyH13nAhX>cxm6sllyUlQsOs z>5S(1cODZ{sg%P+{FAEhudgS)d_WhJAwb;+X;Lvd;mpIw`787@N%|G; z3wKmKE%$ZCNy|fLAmJ+9x`Xsr0@0r+;)Eo_dZY9#CBL=Qf-_43G8`!w@r@&h)j_9%o2*D8fg0IEl5g?u?S%F^`r&c{vvI0HU729+B;cZBHKl_ zeRm)AZ@nzTQ_r&BJVE|bW~lY&eVc>uI!gOSG2{l=yJR4J+wQ8mf0yJR{hh1Qj@G%I zBeahT(fXceEv_4?|NPYPS5teC?!S~D!sS6_ecRP;=g9*k~emJlAKhaja$0 zqteG1cd^XlVU=H-r6l@{+G;q}Oc-3O_9W4rD&fAN#LHgxIHSnl3xZI9B;u*+~zA$E+_=k1(`qeb; zYyCdMuOc!{`tpD1twb?pF&1 zXS9N5gil%UZ$2uxzv{dc=(l-_+8&Sb^xZlQlJ62#TD{!?S$g!zmEhjaSJrKux z+|a07<1N(%-C5qB%u5WE&4@Z(yJhk5UhTn$;GT~8-~b}_qBe&y>MY@5Fa%0Y2Q*Z&hm5vdeW^7Rd~`*8~^8O$GH;59c!OQHOzB4Y8E=r zL`S&OvXh3Jj#w1+Xftk=f7TH<_+Q9*ODVRK&>y6nD{^w4h~)7>tkRBo zU)~($hjm0;W?mHvZWJ!0JlJ&l99_5K5aIn0=#|jy1J{uF5KVUXGgW`DJ?C~_&Fj2} z{=xOytBn#>UQzZVtI+!I*d^~RHM5L2T?8CSpxUT)t?kDB=)wm>3X2I13~wd4CC<8H zLOOZd%OGF%<;|E4cPPh+@SqywyVwtD_g|c!z6HP>j{ajvK^Fwj3*~N_cD1m#Tleb3YwDe_S zJ7B-1ZelAwykD7G0pUn-TP=dV(M^MkS8uiZ*u=d5B;We1H8Qw&EnZ&ti)>X`*09Fh zFmT@8=|RdvT=}$-FJ}MLMrgGc6MBV~0csUw@Re)kCj%xps>FUg`zjV3j2ed*r5wcp z6=v6l2G)T+!iEWk>+NXM?DHO0i7i_O5P9^T*O#2LCh9i~t)k_{eoswT1RocmKMLNl z$zDA_zM?Sut}#g{>J1{!OHozDg8Sjt6PiB|nHMsVsWwmt`G#m_2&NuxtT6DZG%B1b&<} z^20Mp-LfwIaCKege)qC(kQ1zYi@{dvdWu=E1e;^WGb89*nKQs#-wM^P-8UbGg?0R34GVfN^kCdIgeZdL zqfzK>Qd1P)zUt}N+k~kAVd{K6Y-KHVhOmClFQM?Q-NflfK;E>Mt!hAJE<;smdO0hq zU8vw9H^hT!AueZD`m%~^q^hnvRKK(Ng-R`ot+&j{i{7i()?5wa-GmYwZ_T;=T3QMZ z$y+`6P3Ye-UKJk8q})YXplfzLj%zhrdH2ixIg`u0TD&O2RSF)2z>?1fv*&JeH#GlF zIb&5ZE~&3p@ZI0X!)CJKx?@`v>QLgVxKrH%<7?7_Lz2n`hx67=$EusEnYVxK-dyb` z{NY~Vf7uUKq(Mp=_dMfJ-=25wpazvd7y2cCXU?44RNc{Bu2^kvv<$ThCh9vqKqc3g z`YkoPZLCQ#dS%rQE8RyLmzq|8dMT7Cv8Vk?^-x_zOCy>+KS#QoIVEO~p3!n&?zjfV zg?ss|-46HFM>rkba>^7)lhQhBBD6?uppI;QC^4;GS9#rVKD6pgY&xocKlRQJpAD^R zYG#I-3q@|et=JKg)_C~Le$~%KMz_nKbSt8=+`m2WebtxYu$Zdqpes|MTk?>wdOc{H zvp`E^%Kf1g*WQ{aH;MtB_M+~H8+gx${Yuz>2xZ7Jr0D`@sNFlZ%h6VJuL-xD1nx*T zF9o09Pb4*q&m!%~NB-&IYl~OUF_Ne?f7vHKwDn3dQCMOG-!cV)ooSwtnyB_uo`F^C z_)7hW3FhvRd_$mqO?N{xud#hiT}oY3Xl%6@`MNYpsSXQ_Z@8^05$2mdFhn@V(R_Cj z7T{V9YHAB+I;A^h5LY~nn_y0cG+hr8e6h1Dthm}+PM6Y4Yt~q3u55KEo|4s|1w)~7 ze3WXKc*uXyGFMq^ZwYGLFj4dFKtKh!gu?7s)#-HZR4km>QT-qx@A(Zmbmw8ori7)0 zi=>r=`{(|rE7x8yH?H@XX!ck&&OL#gzUce%P0;?6mdUA+B)^#6(8%@pJ<>e&oJj;_ zErR(W4%I63Nsk&5*Mj$}W1X(q9qS{6-(LEQw#R)<@uE35*zYuFPK=lKWW#6MH-1Ai_3^8EhB zF2>F4=Xz`&&Btoa;x?69BSb?k7_{tC6J9vZ?xB-Degg}STfE4!N`0G{^Jr1Y;`XAv zBX`GL=bj>Z?OJGA8&=idGvCXMp(i|VllbKhQJJ4rf8~C0zxG91?Zg4K zFTPg$Mz~3daiejw>=$qcHEQsD?{8LS=-H{)J;)nSKj-7|z%HsBdhvonMt3(nydh!eWU;xQW^ucgbN2I|71U=$|3yrE^ZnY&b4-+j zL4fwzKX;1%X;%F!w%9to7P{hoguVJ;=+>gq{iA}U;MJQ)|MFg1$h-5brtY`+@jvY5 zs*2hF>IPs}!^%4KKzIJNKFK_>+pp`TERD4q`E@G&RoYY1`X}LoaL&Vr+u&T$(tQ8& zT-b%S_Q9P!)ZWd1YoE-F?K0xej#?=wDgOo0HWU|?(nFx}H$9-pUpZeay#$n=5*D4I zDl5l!)8`7V`008FU&wHuk?yu`@Ylyu_f%j;+m>9816XlJfD`Iy&jwo4N0r2aT^7|5zuT8@1xgTt2CR|Fd)# z^idO}G1pQSMNqgdDPR?O!utE@CNuX*=h?Lb@}a7;CHQVeQ}yd}4A%84q%OVnec5C5hkPFEu+xq%ELhcIU$b5Y0QjW<&-<>RxxQDUegB6Dp9KJF0f1FkQ2DY0Yq^Bp z`-}`2t?I0Q*!uLY?vXjzwDHn0+#Q?1U!-#M0*ED{M371hCUP zkm9n+^)@JMnS&pM4^Vr%-DoMdmvmdQd;u_bs$FMo)0pdGsf`pq$rcgVyFoKfUWk(68=9&`(L8}zZsu4C^U2& z0+D5-i*S(*lj#|$F640lgbNM;VIeqyRF@36Aq6t4cI1RYd&)uvH1cd*A$WQoqJ$%K zUIfHd1qsEdx>RyZq|FW)LFP4-=fzcB>?s&mCx<0AhTXF;GQL!z`uT$x8BFW+9IAP@c!f#VvrOD#{v#g2_N8#pp%k`;$qyD^j6K!zs ztXNXXsevW5By+sge>G2G^RHA=zm}d+?wxK0%m;GxW#Wa<5}prNOEzSxmb>^6zPFX~ zRfRO)R!zzcboDkb{Ud|8c*||%W6iIiXLBK1rh64e-5rhDmqyuIyqoNU%J+U(9wz(> zNeFCHDhkXrac#`MFP?1ow1zVe{>#PBj;-+2?i?)Vo9rLQ=94Q?jh|GwdGCU;0d;-wHoaM?W~eN>8Xs|bEtBS4RkAoJ!nn1JO@ z6FZa>MX#1_Z$nH? zNjJo|^6QC|S*J>5pXW}|OrxebK17Htk%Dd)M#hN>*>$paeM05+&^f3Nf|X}(E5Nbk zjJ#dtX$hw@m5QF*Zd%+=Zqa>OZvL1`0tkm6D%A z?RgN3?Fy?;N>OMj_)=934#tE*K#qOUz`?tgZkzYwm3IeR8SpiSxD02`M=W)R=q!h4 zodN~x*Y<5NN>_`pwxUVSL#)^{s&VOtO`ca3&sgta>{^4L5YSwCup4VEIw;S4P z{}~)tXp*if)XF1Nl6v8m7p#&4Q}FIw4_!f(OJLsAXL3?^%EvG@$l9tsTw@3XMF z$-OB=<0I?k$u24D*m#qSa>0|)`g1O$O}pc~wZwCw1CQUPIci+UhYonyw8UF`0}20B zKV!1ayfLM)(v34K~e4ig|VAeUk1qC zzEHf|wOiJSnCn4^%*?20=hDm`MK67kkWntN0Re?pH-ctAn>K_GM&q1Zv8=%ED`RH@ z9-`0jELj2$N?3MBGkO!l>I_&)q+_weGKS-(p3^Eh-eiQzO=njsR0J$)-M9_U@B7qV zJ}QD_-2jly*!1lmD5o*boO)TJLMTPdVu3{!`#~h|f+sjJo$b^Q1-JCejRhaiKbP!V zBQ338P0gXzid+ibM>_C@{~=j_N<~W;&+h$XgUD?Z-jPg>L%0FL%yuYz$wG(Divf!X z?79hYW@X}aY{ehv-fO!uVa+kf9<=1(MEjbS+WqVT>%~MZ0dXXAV=`t{GBw!fsz&4p z)!j^_bPfQgm_874-c`RW>KzUk2?BCRsb|w>XmTN3T>kQpqqM||wN+p5$Q6uIXIxbx z*h)+Yxs#%OuHIru0WW-b*{9!|IT}znB-1~lFS~vu-1k%l50$D%>($jzUb7CkHf=ac z7tL?aBGu{8*jGv1g6iy;Q!_dpf|bW>XgY{|ASgPxX?A7Dk7V)h(HQYM_*Be zaE7CPe^VYJ#=B)e?Bg8A=Mwd2Qu{1*vx7BH8F^2Ql)H4P-98-|Hx9R_%A|A--Dx(t zCZ54o5v%3u9Dx(6-W(h~j?{A5!lx}cWvMmP@jVXZ^tCdlpV!I(r%dR!SNAp^M~a{Jl*Low(TH)`jjwNi zSZnzRBZaFa)nA8Ar~#kZHYg7#=ueyHb9Oi;)XAopLn3JlD8ee=8oQGK)=!}> z8Uzo~2>nd!bYf1Mhx2?~bOjPUE$?>Cn$lEf9kqt4dg-OD}`Sj)6dnPBna@x}kbzw1RrE_k19$7-(olbY${c ztcup0QttX{TseSk3P-CO8svqRU7zlCT4M_cE|eFJxI*1TCVYhhmOYx~W0r-@*--cu zF5Br)ZzS72jo=r#G+P-Q_LA&_f#UDu+0GYKXsbc5%r_2aKH)q#m2;IRy%7;*;X#!$ z7SGZXAB5n?Tc&R*e3`cpi38>+_HwX2Xy0+=$Y)EAvYa8eGmMVf=+Azzy{(N$qzE=G zy=iQdO%9b^<|-&?(+w?;V1Rxkj|)*CG>)iQKDOHc%;kdf>uny*$Ts{;oU4zM;WJ#& z=;K_8JJ#nKmVC|}FZEJWbcu?ymx37`F@61p;kE7kwm&*7FFSS9fWs0K_W;q2%4ptf z6Nj&{U`^Xc{3_Vel(+K|wDOVAE@iulUf`8L6v~y9r{^zmAgcJ~ML(Muo*n~#=O-s) zlp*kXWcwQ<`>x-|#=FHe7ZnPO7Z+e@;gdp%`kf^&eGR`yHXP;zTh9Y)tHx##a#5iY zY>bTMdiO|~#WPmZdjp;Idb&|;&x-~Rrru;a%fG1k8R7h5%i<~Go!`uXo6cVQFx3F_*)jmI>lHTF!YUITxF-;YC+h1KIVoBiZ1&)Hl1J+3 zT37C-3a4~L{e$=g-bL^9ZH}B`OstbKkK>th0Tks)Upd5E#vy>kf5`Amh|YL%Pag}v zT|DR#G6p7pr(J$`;4~YoF%p4S9j;m6^!H4ZCQGm|jPClV$fjCRl5(;S9I zGlVZV4z#SN_4!J12|nS9vPSZoyM9*<5yuRJBIQ<(ryd1q=y@h}I>DWz+qr59rAG*mdfMz|NIOIC(9aZ;n7|gDy2&{c zsd#FVx6jl9$3Gh z_CF9AB?+$|y)Qqgxa#kVc*u`)7S>W1y<51TKFn^78_hUXDblALTnm|zPFF4wndhS1 zADKe%)(5G8ATfkJndTqiHRC*?D=k`YzJVODm>8#m+b0dPhVsg(O?On10msNBGZ5-6NFmS04!Hzcr!Ka)CDm-%9;Z{h?X_AY2 z`^SFWD+YC}_(h69L!)o8i~@IBbMv38GW9aAIYWRYPqmSfcrb9950Qz7h*z6?lTqRU z>S_`fp=`lG%wY3U(^J~>v zXkHK^HYMt*UMOg+_LXowZ_B%=v;BZ4WAJAU=`C@>YZZT-^sD9n zXj~$;#eF3J_z=Az10U$nrcGjS1FmmV#v(5oyEwK^zvmeE9H}N9bD8r}xy8ZZ-q!WT z>&JRfTI?$~L&YL3_qTF<$GiG%Vbw;bovOJ$<=5p&)`o^mOV{K&f4=zUTQ`ZMlBapE zY3P*$(1zz+*?K-GM6=~nS^t(qS?B<3o?0tJMG7WI$~B>`pn@m9cE{k^b7~5_#>$kC5WrpPOMH|qb%lZtATxYT;RISkINj@{@U&~ z#sj|1=Uex5WCyRr<`voH)N61mPnjl|tQM>JN-U*woRi}54xM&%kki1l^jlSEmgnno z#LQ^3(M#`3-!r*a10Cdu{K?1fN-Y`%E?Yl(86AUFv*TladfV1v3; zGMKuj(RSB$)M}-DeUIEcppf&RKlm8&xObi-)^OAy{9%v=@EC~DA*Gzhrd4yzii{L= zaMzl+J&%rb)jr5}`}d^G5LS`=)hm!~yi9q9)}eJid+fe@#pgmpI`(KuR4GD2FM0VR z;61mJHF-d&5IzXH5?_Dg-fKaFB*`a9{C$o+3|Cd~Rp=xXftWj3!I*H%XTb4{4#% z>{`xXdmf(YB&+a)&t0k_3V5m-mmh`g;x%>Jq;GgW{IB+^h=s>+is6w`C3Iw^q_GbB zK<$0NvP7A4gyD11t9ns`gU-2qGv6F<0|g$s-3)R0GoG-KY9xSxRdN-`q{7dG3PQxY^4`UBT*UY~!%sUH6)?$5y#IkhmredkDZjEF^aEu7AQfYv^ z0C@n9<|^^1HEHx64F+Et_`Z6=B65AzhgW<^dGP9#Q#9Tv)8&+JFR+v4^!O-=sJ~kuYbkl`(7iO@wR*!BINSM_3zDLIe12PIq(nxMIE(+Rzq)rZq7Y=A z_X_aP3F9t#qbjAQ39gTg5cjMT~)q6g<)WI(l>s{SNra z93)tq4bqycdn~9K2d8@U^6W4=jHfr>BamcEiHnd^CVMG^X_Ds?fXcz3`>Ib%Ba<`| zJUDW6v&)Xuk)2V=_Ef>=P0?F2XQZbEUGL_)jG~qW-!VkFmuX_75+ia;O}Ygm{noQ` z!$ZA`?V(>lcU3Ygg160Xo@Hy9M|fJ#@*oOomh`u^dg+cX0!c9lLt}e)@2wlv@4)1X zd;IFkVW;2oE~7ZH9B*Ar$tphOBKI27FfLNV6Iv39l87vc&(rNc7Ow5Rgcg1eK6vi1 z@QF#D^+v+AYA}X+ng#hO4z~>Lq+-Vqx)CE2Shoas6Be~MhmJ-n+L0sQx z)k)CVn{KYJtk|*U$#32Xbz+$((W#bl?%N(2z5E7!J3TN}DBKz#zT35XV?OQQHGBZ1tIqx?_RQ1&qDIDMYEO(!JqR6Zhx=& zfhqZpxx{HBBI6)b1K3tnW8;rs(eFs{q@=k+?9OED~DQieRIdD;Hsu_GbsKAI}jY~F`f3eoz7V1RL{ z*zntJKIhN(;fUl<&JeEiS8DauSVUfMn>w0PnVh80MtCa(_-WO~H9&UEOOEvVgb=}V z4UAVa$WJxIW~Cpp?H04prDTYpr;D)pw@Gi-*p^&H1BK72z4)00z_gAlO%C{ILlF~< za<3KYGRp6v^1sor6>=E>&jzw}k_~lz9|=9GA?`ehR%&dD5w%+@*;98&B7ki&-@beo zHeEi+?Cn-t!0Q>(J=Hu#7NhoG^)IIvQFOYw!dGlX&bGIx zM}C~7u?TA>x|R^U$4TBSSXrAKCw4X8ThHxtke*Zrkx0pB%(z6rq;7V5Z<39Ad^>#? zZI{`4JR8&-yuc_B4BF5PEp8U~&v#kPp-+=26jeM7mh0h>k^}vZzaxQdhyBAm3Rzx~ z-Jy0p{=0o;{2rxCu6Fe<%CLEfH3>bi6s|L@+8-#YHjMXd0~ZsC)nPDV`4FrGvzS%y z1HIp*JMY(2)iqWNg>?C)<7swwe96V9@LYm23}zJRLD!5OgPJpxF}BR`JT)&u%4d|T zI_o%9x^_B(y|}2>y?RoEDY|%+=M1gdBb+FQ4=*+hBUhoIpoS%hQIPS?9?Ay=y}PPm zccoT|jHZ;KtaR7%d^*$)(d;`r;+k(g=V}Kx!cp=$%b{FE5RJzW32S-_5l&q<1F zuojm6B?avo@OhNn+mP%s5WPe)A4Wh)DSP-DONB4kwMx3$6ROn_9c`5S5?e|2x1X}1 zoeV~so}s@Om9HvHZK>K7Pi!sM$|*--^0Z+pJUvv(oNn8@pn6Fedgx1euj!3Xo$7bO9rG%=iUZ)X~F}!ZW7*q4^=LHnui-+2~Um0>n zFm>zY?7FD_(9Zla9lmm>x+cbIh_g!>Y|1HZh_wP+Ac1CA2~g#g&MtolRo9?Tg z`Ht19SUXC~6qAK6?F$4{Mc%~6}eL|!LrOB=M!%@xm_=+2$UZW!ov!>OC*=dZUl#AOobBjtG%j? z%Z|P={kbMc0<0AfEAwkUlxR5EEllGxa~A)fj(h z!E)QZ+Y!ZA<&b;w!%?@!!|vL(2(Aq65m(omZ-0)`+ggyV^U6g(C|lCYnyFIV+wH9& z5vHg4@or)M3ovMJ_Id9q?|On>2?4Y^dpi{i6ZeN1)jo0#pNn1I7_N-+c*(@9nmD#N z-G`kkqZbgEWxaU)#QRaZ=#OGSp|NYuc_yb~XiQS*eL1_`iR(zMCg*qR5=jOd-ap&CotAsGJ7u5glrzk|I_0d_ zu*P$Wo7IxS{cSDSN5CJK=&OSLy7vfM`kh2e&g}=jaU+`RZ^_B~bM_J^3C3 zo440c&4WySOs`&gYs-^3wZ>Z{e7F5vH*U>k#XualVqvd1zOz3s`5d0uQg&Ym_qqO_ zsb14)_W!BiT>P2v{y+Zhrc(5Y$Sp$3U2Y4NlH^Y8#?1Y?o7{8lCgd{rO*WFtu+7G> zF_+4nxs=(~43&z?t%P*%=Xd^ra~|*WIG4xk{dzr@E1UU5FhDjyAT~|Opm{;$&oCl_ z(9)&O06)>0I*6iHB(kU3>|q1|w8l>ji%NPI@GZAB64~Jx+&tS*5ViF(o|h1Bm0HNi~BD+rpl~1^2*~?TQHp-gTTNd z7lty8!WqTSn2+?o)XC6=Hi%e=odTFPgI_&deM^p>l^G9#BUvTUh$(EZsQwdK5Pe3m zY_@tZ zJ%jSQ0R=^CQV3R&*Obk^b7GGl^sk49>Ky5rkX@NVu69OePRDd;M_dQ(5_7ZNC9~&o zhn?C@jbZ(0Ntbp--KY9*`B8X}`QWvIV|`lrXvBS_A#fh#te5IAweQ2gc6)c3VaG%Z zdNeyYR{L9i^9S*24~MocPp?M6Dmdf3erl1vTyRNJY`On)Q{c<(1j(?Of%7{=fHF*! z(PD`NEl;L5_Av%Z{qj#T$@t5c)vE0uFHl$0i(X#pEx2@7!To*4;P@e1?3QZE;GiI*4#N=)awg@X-D|d*ur^e_vYvMWq!vqYa`eZzw;t zJ)QN(#a#o(o4pU1nqIwecNqNT$J2Z{eFU|ncPKp z={usmT$`Y;hZyKinzs0Yy%_4oS>nf8m_=k>t%5oH_=N5D7i;Pt$M&rcXX2PSns5^6C8-s(AVjFbBe6so)_OO=& zf%49jw#g_-n9rnZwiO1$sit*@3V%Me^TKr1MeYfA>LGhpaHCD~=wUUPi zle~=M-j`HdKgDhIxj2v$`1(U)QDX-Ec;eR!&dM3-Uo3){fqhyR-z^MU?wLGM{URpe z(f%WQIC1BdKCZ-L+`k%?JgR=Ss(hyUX;Po}wnviWH}(mn9%(zH|pnE^)-VuYN|jb`+DuMq}Dd6)&|VM%slCW zenw6}s6Ki(l=9(H1QE+WM^Xf1cHgS~ZO>SqJTqqpoS8wq{bm7XaUPmG;M zx+(5xY@+po5PKUL8{m4Q&dWzSVqWiVbyZ#h4ehD~WNt=(&U;_)Hzj8RcyeU%Z~XBW z{tqve+T_2fO7{#pIVvCeqGea$+3W7&9!O17hhlFdcX7yRLZZL)0gBj_tBwbj)Gzn; zeia-#c*?#hFi=qrur)F3Fxw_CjV|tf^-_EXJh5M3m4$A)yZa!_Pju35@N1D1-q_nQ zoUCxUR4z$zE=qF^XuJrE`Z^;|74c5 zF4#^Dq%D8-z|nhm2Hg&L47=@Wt#Uef8Jl|G$Zk%Tyz^B#Cr?%6p7d*c@u`jmi<9-i z?gN5Dhk?>RLyt`>W}iA~hdWqb=Jyd3e1TK?&Tz1EYQDS<)z_`R!^y}VXz+4F&7!On zVcFN!Q2$#9>RiU865K;!sBjm?OJMOLVN&o&Unmk?z?fU64!{@hlFCG7+4+Sh0hNb-Uva&Sd2-j@%QB~1 zZyz|XYJFe`WHO&VA!#F*zBg+!K<2N?9g@mEtKYAaWI{Ldz#rXy8>}aF`MQ=2_9-_R zn~4n)#fUzU;wvhKzblT+{rfd4{*StCc|7kgaFuZJLl1W0z-FlKQs31Vw}Jb9T#DYh zMEf=LnfHgAE47_-_}00(WXtlQ)f?mdvD?st-*v0ELn!q%w+%q{N56eJrP4)yd}l0E z9HMcru%7qZeFC81)l$9=pi&9rBGc$P`Zw+^6_AL+$wTU(%UiZgIui`?n%&7xyN* zXMi$e?MgtINSzI9$m6rJ;utL?VJ7)T5#SbL`qJ6Sn|+Xi+QA0xX^M%ugKqJt0}sX? zUTkSMwC>j1SNAx-yHX|DCh^o0imN7>B$szj`oq1Ol{d4O;;nlemMV@~lH#(rjebpj z_oh7JBmm#{O-v@2bg78-LDv%oC!ZJ2U7wbgNUjTSWBoX&k!+jweFNe_6FV@kEG2X7 z@qhL2!W5kMMBcU02xsy;J3C2aZ1y9A(vj<}Z+e(J=qoHMH8>o4a15IY z^Fk}MmLuC61T3-)3H`C}42M zqi( zq{^hq>$qUJYX>g=FJQ)fIuPY+{V=GjI{gS9rZd-B(ruo;(|7abg;*)8B|ajJqf!ocO01mc7IC6u=@WLUf`Ra_r_|^u&#E?~@`sWe8@9lQEChA*u zc}sZEqO%u_QRXBm8`T<_6)hPNDQT*7&PdT1S<5ajrRO6q+?F3z$XD@T2pL&G-PCBaul8I?`_zSOAulrf)#z_Ek3BfHRq%~qW^{vS;q6Q~%rtJqyktFkNJAL35Q>&*!nk4eYLOUS=I~HP*qc?4 zcV&ID(GR|!Dbf5~KUtC#8I0Bo$KYP^Vp?@-A55!$jC#*3{1o(tn>$HAJ@aThVrGC$ zScrqoc9($M$O2;s@+`NhhuLr*-X5FYBr+QaE)H*xjn9cVvGrOD19qWan{*Lb2smH* zSLJ0#g2_|XeLiv}=+8B4W1QU9T*)X>4-?<%PgB6@wRxhGjKGP;hsaZzOe01}QMLoS z#gULosPzy=t&Tz@MJ1k+0)f~plMr;msYGf%Chp!Q&DMpeg((w&QlGH3E9kQZLzGow2hgIqNRiH1NQ3EsDn1a1ApD zUz-i!h-JAJQFC560f9($OLc2*XP%fX1dm760|B7aK$c6nxmO5liZmgxzys?1M&rUr z^}KXrohZt3Tu0}PbKxNz&-;xgbkDgc5!&z}BRpbpQKuB(*&aRwVyjivl2*f4watYf z?gLesI=OvkAE=)CUz&uK^GqpVql4gC)iig`vzV+$@U#=)&&93qY!Er66mxg_GE;%* z2$%!VBO|6j@B3WLL=7Bxe~t*AXa%OG$% zOD&+lLID7>Fage)q;Q4NG6SM=EfKX{uUcV{JJ&O)2yTU76_4xWo}T+L0)(mQ9jza0 z#ZRBhj-vBkI=3Q~JLmzp-9*@U##we2tAQ5d_qH@-ph&_owGHZw2fsAO4!=}wP{crQ zSrf)91$BD@matHV4iMjnj+y-gDKi?kpNZU=r$&GRvJ?{&BWoQEb&Q=_r&>90`(dUn z!OkJPmf+(pxafj$$V2l67P}8tW@740r8=RqoCWU?q>vB~F6Q(kw|~)MpmRN@V?n8} z6up>@kf)S2M1>0+2}KPV^6cR{qXk6&RBGg&z7QFd2*JPZj9JiWnV*`_jb*9oMY?w+^Ya})m zlg6Y>QUT>mr2rZ^Y%XlkpOp#@ObBj_Op=jyM@~AEYV#+Hd8YU<4g;dCPk z0H*%*(VbN|=HyP>>f)KF+tBait2lk8dd$wS4&@7Uk5%%h=8BMS0n`6sP7nL&AH!qc z8)K(4P_V4lFedi>OoGmc!Ytm_2r72`YzNQmS62y2jNgiB_VV_Ns;yZ>7vZT!5Je>3 zGo)~xYb$nI{`BE;2?wIgYcSuhEH|n(G`)WLIHpt|??{^tBF#vGiHE>hi(b(>3hCnz zYcSn#pl}B;D8$G%37LNE;!*Hec50heEM>YQ_cXt3DifU>WSTVvhWD7fG`Bs>bgn8w z2GjxOD0*#9$c^9|64`^eST<`NHG~sP2!)ijI9bKuomd?k>SEspo7I=h*l)C$O^6*O z${L5@$a+W7r~&v)R4r$m=-JXqSwOFrM+d!>wdu2)h8l93ghDTfsf3(audwWeP#@uq zuyE){0FYiXVWo>yCe$o~MOijuGCq*Jn_03JWestWu_GhV&iQ?G9cM>0I~;^$w@$~A z!lBXOLi6epIoia2(`Xx}Omn+4nQ*Y788+DJL1K3VJ0PzDf*pK1X$imrZ5eb8(p}fH zdDUA)qoBvmzHfRfps?iN(1Sa-av(rzak|03XUGs;qAnASHh*aTEcWhL?Z8VNbA1V- zv(hljY7A;pXBrWV76|Ip9WaU-xHJTVsA1M)p2>_>>zE*QOa)uac(=3`0tP}F&y!Pp zV=zA2ovi4Gtkw3ALRc4v4S1lvGtcBdaVrMIwbLlzsT znk6)J|$1Xn$eqQBJ67rvszH!3igIcOn9|0lgUwqr=b zhSfxC9q$(=KD5>pY0kFRH)I+PnccxgO3gAm_OJ&JCm&(H^MV+ZEek zkImN~ZM$qYclM}4ZD9jy$f3|lyBvy~HHmgC-BEkh!`}2Sdmpy-)HV4VeZt~xGM^t(utxf<@wTsNr(>%mLSt#D+XRfGej>S)BRhOGrb_z1k zPG?<&F5%UVr2wpV^GupdcPFW{E>0HW{8F99Wdw$BR#{cM#!CcyB_2L}{b>o%hb18@K~ml!0R3~NTdLVCel zeI)1@@1|%lQ}0B(X|PP&kwWbJ2cIBn+R zxG}gBGgSiOPg7cXN0}sQ2V{R;7`$UicB@0t! z+M2pmmr>$!tqc5{4gE*Uj0uq!JIg=lc+d2D$-Xj;5_RKe)l(h9I5`T{rj9u*Y&N9o z9dbfXb^+erGYD@b+FaxYL#?gSmDG9GTVj>BFJI~u|7ZF$)3xPb(tGP4`9Jf2p;jqf zRs2g8mo92tY*OcXFMo9ZT}G{OSan}frzEJY+jVNP_r6fUIsW8dTDtpfV0&TJL8Xek z_1|Xi50wBC`RB=B+`RbiB~r?Wmib=G$%`GElQEl*Z{7Qw59J_}>Zw;PJpk#W{`kzc z7fMF&z<4i7SmUw!N00NsYQD3lelDy#{;*jsR#B=fR1Mk#a;03VHy9wh%>OYpfT=u5 zOJOLAvOH~<(h_@E{$x@|Pz4s+^lCD6zwIkg8j+kmCYUpn!xMygqx8IsS zw5nkX(y1$lHGV&)f^?`b1z*hb+b-DZ+hrzx%b@hiH_+K^&HjygU${fE_V-#CmO@K4 zjOS1yvxXOo3M1H%bR*ur*|fD|{%*XTVDtBqcQ!ZAWIaxH11^8^;n_~q(NA^NRA^S5 zBz@y2Tv0h}Y_d70r*ZKce?0sRGoMcsCkF`%s?eW6GP0dF>rxM91w%PH|JjeH0 zKeHY&wxn)>FRCbYtFAjFSmCYNk;j=E;&lTDH~7G} z{#))po*aXgt8EV?octBI{J7omMFEfg$ujIwuVK74zRJ?!1jV2!%V&1qDsIlz`&9B> zWyTrgSo#a1w23^DvSR%W>G`{i;%7b729d${60a~mb4E^FN1($V5dUK)R zC&hP_bnEZQuc;2+HSuY;jOtS=H&hG_$Oez>V;n`4&j=jhlrZ^gZqLS{Dqm20$uUzb zi2GE!-%_$L@lLs98gSXQ$3E_8zxt%>feLd&6;);5pg+%i?%N1+$Vq7J#$2##tMpIQ zmwRSs1eM1H-&DUiB!eoPED9?Q7=X~|piw!h|F`~l@qVw9Eo#1cb}KlQy5qe1Z5x@- zqzA5=b@$9r8UnL6(n1>_Q*_jb zyh67!N7i!2(rZr%vpo<|0X5wkmvr9v5PsUv-daq#xAp1+QyGzx|h;-9Hv!#{WzUawmQoT&E%84ug` zYtt>C+S$ImdHKSvH200n6}2SowTr#yDb)P30;B3@|7@Oifq$g^cs}{BZ;f;$>e9u3 zrwxSRk&V}uys{r)4WpVqmFCvLKWN1O%K`7Ijf;XKvvW)$#zSRz=F+1ZT^WSe1N)>!#cfg|?joJ&~aj0UTv@ERg+6-%^d8`43TWJj|Md;DS)vyyu z39;0H;MJSC{Zy(1wkQ~GE6IstV1L4V+=q!wp{6y0)=u^pQg% zNey3J*P-4>_Y9f%cs-}Qy=2SKtg9E)5_-P9mg}Nue4oK-eOP3{dIvo|0@uFtZMS`W z=T<-|<-tU!wnud;Ep6(4=BE)5rJWok1T01$2Lfsa*?~Ef=@vww<)8}zC|BY%X5WH> z#=+J`a8RAXF(g%sDT6~9Bd;@Lbv&Y-E61pSvO8JbWLK1D(2Ntg_6m=nS{lN@Qnu^Y zuM2frp9bYIM2!qFrl+GY^NdD zpVd1;t|9Q&9aLh@gmX&Tz)qDuraG^;um0L~{yMaKr8vuyLE;gc$-}%nKG9ijwuLZR&lUdnTtdX`hjOe_lWa zTQh0jioso#&%YaOk-iprv=x~oT#84mBT(BP5ppN1!(|dI%pF}5Ei9E}EdT$IlWz%XijYIYk@4lM2`{M;|{i>g^oS?Y-OE*t-z7E2jRv ztmlD3n9?NV2#neq!Je~&h0`b_lOMh&70SjsPED;xsHY6NGOh2!>tkz-L4Gqvo|s?? z2Z3dBjwZiNS+%~GR2+ZuYstMnM97%P`z7xB&n0E8xrBZ1E5C~?=RQK537%DXVB4TR z4}L|ub@C_J^6d8onXN0o5I(boYw9(dS0yR*WIbK-Q+PRrvaYdR@yy|bB`1&b?ZFSw z(P`kD|GuS-xFv5EbnlR+LD+g8Y(meaDL)bH2uUc7v};#OKvoc*XEKFaNpfd zOG6Ped(TQ?Wyq!!nbQyvl$K^=}z>W`;F6hxkQfdwvlqN)USZZi>k^thfh;@ zYTp`Vj@Zk6)%bGTOR%*o0cX4LeA0Kk7wm<>5s*Z^u(i0=&e7+(UR*XT&CP>>QVd|g#{W}* zJit|2q-uaqf%Dw}J!cgiWyj?)vT|YmxK_D$2pCaEETfdG^Z$zgyg!*T@b z1UiPbnxY;ogt1m7StjuUE*;4Tn*!Q5lXlF=sMCXhz7U4uwHINPl^~R2AP5|y(JUOq zi*{0Z01`$~i#33)tzv+X)i(asVdFbu{6o309f8-&i5sZOXm%!h>4h1Cu`sC{xv8{rPDCY>_Q<^XihE&@&94Nx&>av)GH z+HO%t9^p(4i)xh0Zu=hDF&K zwZU0a9V~XSm-czn*qNKiH75QHh(AI0hu{ra6iy$wNa=$HF3VIqsyau2CuM=P4bj3G zYhV}!iPXC?o=U)R-t-kAkpll}(`(bfE6sz|NVEeXtnZpatA8z)2$ZOqk&qxOUK^Bi zGGvXqwSZur46?n=y2X=h*LOp2Y_I>mqW>4V#kc;Y^?l3Y3G_~5OT~?^2X8*jalEBg zKKzzb`^#J$^5@=-vI=hYm#2Sgpf@r>0pPYxQL6h}8@L&Gb2|EA! zJNVdx3)>cv>3OQ tX^VRIbSfqM&eOfcp(Di_zUmIUmAILQW;FAk{yQFJV|G3N@|=d!{{ioPzAyj) literal 18090 zcmV)bK&ih%T4*^jL0KkKSth|vhXu3if1v;W?LkNe|KLCW|N6i0-(UcM00H1JzCNOW z0+sP*@aU;Rs!Xh9Qkyi20n-#o00K_ZU;&`6k(dQlQmE~@3P=G!1tMhEgnEE_2m?mcHiW`y&Lkt7%&la}-&pc@vFA%%#>OyU@DSU1+0NrI?9#wp4Rh zSgx!|a|oMeNZ2;2Y*KvMS4z|u)rZlkM#?U=)~I;LO;1cz*-?35n<3Vac+_(c?K-K@^CRO@Ugb)+vD8(uLZVqC4TW<$nZX;)2c73q~uWSwd!H(C;& z7Nql(JJ9B{B|K?K=Ob#ZlJk=01J7I(ZBjbUX;*rY-lJs)j1EkZ-j0Tp=85M@dC_eS z+Ed2ysX3}0>N~^6QL(xjh-}k$u!b;r&_$Uj;v;*8mV@*M_IMBc*e-P zwG*bJu2Zh0>7!+=X@Stm<*6G(#+2^N%FH%U&0XY9@_EtC<)pk?hHSFD;B?j9rE#&L zrVWdx)+??&?+tTScHoS(hdgmPsyXL?4Ms#Zh@uUob|$rqlrStZ%!h^(5hQ|84%P>Q z11yQDA+!sbO?1TtRRqvVWeF3jW?NM2L(!ILJZSUZH=Z8EiA#^|`@E!8^z}#AzN{qz zy$VU>;YyT?*0S~GHk3dQ8|Cl)G@a!7(<)fTC*hNeWca>#?^>Oy#*v0BF*1N)d-(z- z@B7m4-q)_haR+v=Gay%Fy=>XB2RZ^hUJ~K)jS(g5n?XkLzl?U`s}e8>1^|wf0I6Cy zgcvgpP1Sys^t-ffxTupGOe|zYklSELG^Cu2p00Y1wwHmG<9E4ST{Zj#I)&3n;((eB_sb4Fg2ZwIeK{W_(8K>D)H+7= z^18j`oq+;w*!Z%(WWNWhw6s8AKAE*=CJAQDV54(d3b>DgRe zhiU1q-N&}sCL3n)4kx(d!f<@Y$G4hZBiGNq?LB-$&Bb$+YY$z|yOFCUaAERYClThv zVXMq~Xndoix5;jVf>033R{+RmO`u{76PSxx6XAWnRy}*Cr`MUH)z)%2n--ZZpol@k zNUMT|7Ky&FD?yM%Ks2?BQ&EV+=auvK9YC$v{n^RLm88)fyk=^Du$aFmPaA~f!CxQ$J zk5+m-Oq|5H0lIcFa_=||9b?B+pBt`fU5t*m8+qi9zhj3ox}IZ;>)|*C zM3U1AJM>eG&fX|>DMy+hw$yXE#FB!S<5*p~@RE8MTk`FM|5yc;hzQn0)KU)6)v1l4q67;#oBGWc6#;UF_1x7O@gb)-x7xQVGDUz_TO) zh7!T3gD^&pS`C|M1_7~H8Bho0EMAsJv&iSu-scSUG<&}h=^9TmZ;x*=<19Pmv~HEu zoJ|@!=yf$&Rvi(}c$U{7<})>b;=~?1ci|}X5m0duI2S>FZh+iwch6;u^uubrQ?E?c z@eh{=)6H=+tX`3*^cs#QymC07JDl*j9jA`-#dlnLbv+i18x2lOopo`iX|5{MRWXLb zd5>MkOGmCwXkvYLBicA~Ok%ZO6>#mBCw818iNw901Su=ddOmT+*XrJVY)qTf7G{eoI+E-;;3kWeZL0A&SIV}@6L%Q+D2My5eGsYRuw|qAz1>s6+)j+Vw zdblkIqU(~anrpLKO)ezPX;SmNQ)RF^HgX412McP@WJak4T`II}U}Js)FoR8xn3O>_ z78~6I7l#jS=DHpG6~2kedOXeCb%&VCyGKnPDpu%{{kq`JMQ~4^FF*hfw?b{o_6K?z+#d-?zV2b$E`U=g%Y44?(r^ zXv40fuKVdVbI^B&(VI-#&2V?`mwGvxmewAv9S+$%c{^s#7kZzTGY4}_Ve~!MG1IG? z+rL`(jz^g4xSqof@=jv(811L4UNCaCJRLq)RJJ%N-X1cDmjPH|1!GLWrSOQd}kwDrW(&m86(d-hTO>sJ{+{}SxMV3-5X3QZO z1`HZVX3BXm;lqye)2>z}O`TPv(~Xw54+E2$^yK!b)J;IP8Yu}XOuR+F z?%0{ep(rl!3m`G5hXiGiz!11f3V5Ly!^&l{80?A73^LLinvsYM3_a12Jlisq6Wq(2 zi*pwrAQ=OFZ$f~j+z$j5kR-E1D5CQKbQbLxQ_Ws7BY9$F32)V5z5ub-SPt51$irSd zTe}`P`W5ds{mDrWkGIiT^|Z!)*67BYaJe0Q`&^8t_;T5wzxDde+WB#qmmhZ?yl!yU zP8p#r_{V(*GTFwWHd60IZrrh4`@;;FVa%kT=Lqli)!F+DY3-F34U`>62>sEcyqfVj zOO*$r=q?VaSLMoZ%3BJ$)jQWTO^HuUM|sQkawX%s!;6_x`7F4(^5W-QtD1)}N_YCO z(pLRQ?+l6a7;QtL!GevC9^E=-S=Qj@^u@HO@jdQbIO2GZ0}6!!({Rawp=l;631N`B zzY8|WqYb9inkw*5}rcz9{(p?oNZlX96SR+X+_F)i6V*RB#s+09D6<0i2oxX8C4hgaw^qCzq=$d zq@R-rWl27Kpv02@Hc&M}U-#h#luP{iP-v7raH?;E`Tm?fs%mJ;#`rc(y1-qus$fgD zDrAw{Dl@jKi#uYX%I%d4E4GPDuGmUtc(PJ_o=N4QI?F*tT~16nQi>)iBAHqW8I2*vGvDrDmBxt$Ao3D&?5wKPq$L!y}cqz>t?J;%E`P8_ut+g-VDWUTn1?qa|r}9&(+wGx88!RmIr8cI?;bkwxYs);Vzz-T+!uQN#$EYZv~?=G>96Fss<*aSR)b~(Ac5Y z4XD=4>q6QJZA+OhXd&xu9->^-w6xL#IKzp?90@Zd&!zkdMI<4H}e_QYP*)(X;hvmrPG-~|XvtOQ<@%Q|__3&@lN>zB##XBNnR@3pNST45L8P>6`A~97KbEclW z6vPBV>Q3>qIl;A@<;~7=yys4J)QT#;X%vMvq*akBDz*4HC(Ef)lvmA=fl~X~Qu#7a ziPmjOR@FzcNWN$zQ9-CH5QeBmh=wAXkquEyi497o2@DBhq%;!9Lcu4`RbCXY{;q|{ z9IBpbjy#S&W%OtE7G;!B6Jvq!bEV{Z|Y$=)(!;gxQB>0gM{Gw7ONEg`uaVZml z5M9eaMRKo)d%jt47c=_DE?uy>tZS7_&8v-0SIyI&5W_FImRqqwas;_pc%qwkSw3OyWUy&;g(mWE;`xNVVdSMSh zym(X32GQgPSEBMqNSId&=ZVnv`)Wp4wpBr*PcdE99#GNiNw?6aM-K>Iibj;A{;5w28BN70yzX_4|Dqu*;RK{=v4Hf?;yP(hhBVdnsR_ACRspzC%)%;3I&``b3_;sT;bfU$7$rJkq|z?nm>3-j@R*TdgCB=@l-} zs%E2g6@%Up)I!Nl9R#E4CnR|k=%+6Psa|5P{7%w~1~^9+=9ZlNbA?V^lK88bC2^M= z(dS7}tgHAzyAY(UD&9h|?3z2|O*%#Lh+i}Jxz14Fc6wHub-Z;G%}Vydz-+GgRX>g1BKwr;?p5G^`V{F|8J5k9%<_*ad7dz< z#tZdF!k6v`?mY=yT0J7Z!XC7~^>A12il2E-Dx4$856FJN>OKhM_Y!qg9Y#WU59*0m z;Zf!HviMa`G4j$zOf>vM=vJwFf#@pqg1eWp#|p_RQP7FRCuE;$k?f6By`ps&Qbp9B z(2rr}DzBjGA#^bxok;8GbfxQ9_i~@oTO&oLlN9(GnKHqM)+2M9opOH6xLtb0d-WQv02R<|e_X=0~JEl{_VA7d6bF)Uc9~ z#18|d1Gzq;srUDfx7eyZ#Y|%F!!Yodi${Uru864gRXn6E*V8c38(K86reTJL)ooR=k{Y(q))r=l zCaH;LrmzMWZ6^HUsr?o6j#MYEs9G&9x>Dkg*@*0|P%DJlEk~HRxpq_8RP`-A1zsR{ zpuCi$&`6!=uX2?=Nno%Gu{xA^LFQF{;EoTMz?B?Q3^F`QePp`?chMg7mFrZM!WGrl z3a_0~^-e?WD!q|Y?2ph#4_p0;qxsj|eUyjo<3YsHvR{Q4?qxeQEMG-O)RFdzeF*uK z?hxlP%)P7%KeKcXYqZ4Y` zu@h*0S$=Vo+A^K;IF8IV%UVlW4c?AWIj0=&rmf>8aryY&4!Y`xRmUOBF}=+{A7MDd3M-l06Ahx{&ipPiZLeI3-6)U&i(uNyU4rVcL`S z)6AD3m31lC4JRp32Pv=i%51D(1&r|lt?T$=0KUrUye#>3n+~jjkw2rpW&NODma-4b`#+AYPCrQ+-#?Cdw)z>2LQf?e3 zkGl+^R|m4_KOkW`g->OAep;PKFTl_v=7(pbr$Ou;1aMbX=l6tpN338|)yW>A`HFo# z6>9a^rr1(8PqI?wD!h*+L3rY+;14)F5O!57%RA%JgUt^Vrz}R4#B`O#Nk^F2*h^_P zsanNlsLYDDkl=cc*7`0^0emj5l@p>Xysr@+Wg*#9r4i$asxP*c>;!lsnw3vo6aFuu z^j`G#npNqg#m9PC9w(pG61_K8TKZkPj?QjQxgvC1TH7s@0$iz1CL91&X^XA~M`c%{ z1?Ee|cI)s#)PAG#k*_kMe?sm^RC`jA9-^0pN9;QhJ+Emz2=G&c{RKYCoI&g<_7zLz zLYGo~3V1-O zarY21%5q^cxO6_q=UooO`IWreQ&!6JNY*EM9z5IdEiGD%HERZoxO2mm9O$?!sKPcS znihY$8PdxB{`?6i>g#U2X)M(cOhQ<_Yk^L zok5X4(e@<0(b6w!9@R^VkD*cBQs|W{@usltsSkBFYDr0 zLoy``K-2+D6i1|_9k4_22gE$WD7UyDH(dOa?HA}TsxOdB%^!M6IYaB_NWYYSE8+3@ zAA=;;92;PKNl)-bmWN!8E(|`Apy?V$#On>v&Q*5S(qB4_9thNWbe&=S9W5;BIkN0& zOOc8mxh;b!qfy33c-Y+s2HPvUDazFDvU3i#YO-vw=K+H$;mYD{PO-&_qeq!KqxFs2 zJ9Hbrnc9#pVL8f3OGe{ePJ4Y(C(r2>|#90Itb`8rJ_~ody4j5gmypEAh`)1 zS9IYAYOZhMa0?X73VTl zJKsw9W&S}wyJXhVX|-uD`uJ<~j=u2iNBy6wTeTx6_b2$%`hUhpL}Spe^-66s5u#K1 zKzDS*0!qTHD1Tw$19}HY`$OiR$GmN|jk0Xa#zSjm8yT&b)t~;SVD@PL+<$=K>rj+G;GUOjHf-73_g(gQvT9E3|;-x{QoEq zLNv41qvwh7sNX(&jTd=sErY#LvoG&Y?@uZB`d*p~%AxI()(ZoPd4m0-Kc)-8=?m_7 z2cIW|lhzBgyHq$w?<@WfQSaspA5`+g(I41X@%kGxHft==ZAD)kzLokva7vM1>Xb!4 zd5Q|jGMdj^4rBNn5i9@y|Ngo4g(`{?ssIEC000yzfFuf1m7v;D zsH$whlBrc7ik4JFq@;+I8)$$4DBEfhAp!`RX);sOLqQWckc$#F?$n`xy28MtQ z27mwn0i!?$fB<9wO;U&wZ31FyVr@j!dsN;jqGW06H2p|4XlM^m$l8oUAk)+anms^0 zO#+gLl0;}z(UT=T8Yh&~)X>lY>J0&)GyoY4fb|}r001=qLMkHppdtN74|h64`>&sn z;N3&GK~@A!!Y(TOaY7am_2`1Ez^P>30Hx!T&PKA^OX@h626cPM*>*cU?Q-88_W3>Z z=JMq`nmD;~K6dgroL=hXwA#Ct`QCW#u3Z`DawRH+7cdxVaY_~hSXi4jN~8`YgsjIi z-&M|yd88^rG$k;k|2@!;>Hv&XT+zi)?neID%(E5YpE zkFITAosXP4K8HQk*!A7b)?C%{pp>u{X_SV-Vs5NnZW0!}2xCeS-iKpPd3&p)Mvg|V z-uIrK=NykcrWqb^<=D}=H08}XqRlcwsTQ*RA!)^iECAxnW)d)!4L1la1c6DaN>n>1 zHibfSKtS*&g8j7fUhgM+-i|BJ9P-Y*ZQU9)!mA11z*z}dxZq}KE?8QwXum+U0*}=l)aGaT37;SUTM`JG#H9%YlK@=H9TBr*xKoFZu zSg^V4yz-YWoEkgH--n(zz0up)ZxH0vNERJ~4&!Z9KoEh$vlWse7CRZE$FZS~4tZWj zgLH7aqc3~hHr$Vn_nV#LgN||MO&lHX-8sFr&n4Tvj5~O+)&C&J%Oksc9bT`g%KGN} zCpB)`n=h|<)>HsModbkKs4%HhF$`e=EhuHqCu4V3d}+15a$8m0o;(iEI2+# zE9&=-#^lrEUqfDXvAHi7o%!BtdY;&K+mnZHvAcZr+_$?L?uXA~wjTVR$D_QJprlD* z(F-y{7^O8A#J32LX*3uKY>_ol1cfw0CJ97~HA+T@aRjSZC%-Ri-rVGxH6Bk!zNe2f z?0fCypBKkIdTX0nHeVyWUhgv;Y{>6NFPPs$tF^5g-$$|EE9boOJ|3M*s}=9R7s=(! zJ&gHu4Dsf`bu#V@xW+>r0;vc#J@Pv&;P&=*H%+zAbZyPSZ!o1O0ugBf(IquPcT9r` zn35Qp!yNX@gFLQWO48=OV`$5q`tWjP+nZM>V~&nHcIf8ECxfmBE1kWxk2_pWKDaov z?$qV(*`h$bGQo#r5Qms76fvSH3V>oRr!tzwP^#exjXER%b$}%SYyokj*7Mtp_O#yW z;kLuWyRKZPnASTwJ3Dc_+rx$S=X~BS;p!%-1SN7xk!oNq3{gS}U{FgTEFIw8(aQ7L z^*kIND$&n58t$kOgy^IbDMHoNl*5263L7B>mB46=S{Ur<6hsEEWgs*(4iMeSMHWkW zO^ur@J2_k1k>!2c;(aH)-(H)%XHM^&!|BGik@TxyZ=8(z4ljC?L}xiNjNl6(#w?40 zo7e|v8ca>)$i-w76qILFtd-TGTWL0e5MT*P31}gKluO=_G_w>G7RiW8^_Hclf^->? z8({=VEQF-G2uJopQAslZIA|EGFrjLMJ@7+uAYlfU5M&tgJj>zUeU$1w zd6P#uhZN*@q~|9Fee>r$oaN~1!!L9_+WE(u$#^*LVrYB99b1gkftbVVSzX-kGRbQGZlu!1%NKxHLl8Ud)wK+y680VHV*8p>+aBZ=8m zO@u_*;{}GLs#Zm;1EC&0M|<~ro_8;Fb@7vthdCZ6Iyu`~v+Z&`PWv+ZcdxScnXMf6 zK6yEg<;?EJ?bXMz-X~^jw>q;Xk9@<Yb9yQU%D1I~0@v z#L)tlWH<%Yw%i_Wbr)%PmjkJ@%!dd{Clrb(3#76T0PhWwlu9bd9fj_;o;F*>$CcIf zT>Ug z4UN8+51DzVo5q}cPA2j`c8!`Dd)`-&_B&mTIfpimWba*j|oB+UOS`tNqB0;U!6VAs& zvD|Eqt*YhSHUubU1jGzfDs3qNwx(oJMQ;k$V;jz%SD!NX!t)%b+XvWnb30mmtUfOj zQq37JueEcj;LC~GhK(039CEdc-2Gnk7|2 zhALw~;R=bM7&zUCfUq4vl`IBYCGhMQL?DH6G7L!o+Dh@udCVHPHs?%rcP{D3*V5o; zB;~QrbDld`?ccA#)6QNl4$_#&z`Y=2rYf>lER?ZTPy~u>LmK3B&hy?!V^__~N5j+O z52u6Q9-D1-80aQK=mpc99mAYkK*~FVy1F^DwXxoJR?n|_9(R+T7!3xVK%`*80fe_e#H^qWl5_x?`&#CJfHk{th?>54gd8-! z;>Hrt(TkcoG+SRpa{}qs;5*UJK@s5y4nHyaL@OePe?othRC|E(GKynAs17xh1BDfvQ zcmZT^1fdWqfiF;UK)A?hDWD)w@P)0fs=FjtI^$9S&60$$;o&DJh6=WTE#O@ek&rS4 zN-n_8HuZ+Cml!1(fH%z}Y6E4G5`?k<;=|0P5J()#4s-k*3<_i-s0>80iBo{o~}TEF(~OEbV^}?xcWf>OiBg; zq(KAZ4hc%YX5D(*j9ofPHVYa#wx1YRIgNF@6R;1+2#zoT&MBrKdvJr!Aq0WOdW(=c zbii+$^PoAWxo|d#IYT0#RwqDKoiV#9ro(YgOEKfN>U_Ge!kC8uf7p6WGpTw&J0%537ECdPyp;%VBc10x(Hs=hm zN^l08yu+rrIgCB!mlKI~>CVAxLIT2{j>cLF5-f!XU_h|B1H#%{*xWv0$8|fmKKR{t zj5g(c@xW{pf`UY7f&u}K3B(YSRA1r+Kn;x-n=w>bq8z31$}1N0?gytt9vSyd>aOe5 z1o!fStpE)5TLwjIfNiYqn{STtNO%owM`R#4hdd#8V{vS_0~?9pcK776)yPR;fFU=O z44wTLW*@TvdXNk-lgmNKH2`)X5rwY~WI0swXQ((7pegeHkdF5(reN^_ciATAIcOSuz;|n zQo{JxpIE$Jn0DdaIMcm3UFzGQs<<^}Y37zlKv66DQ?Y#1q4R+s*VqWMiU?HHXXr!qH0S8E7WVQoO zITK54=xJ~*P!=KldA#nH#2n&MOQ6K*2Bmg5+QPC40@7?6R7XeEboc<=4wU{P{W#5m zEm21ma(S5eK&;pbCWfss3z#c{sVti!cQZ^PcfN3by zd@kIxY#bnn29{EonlBtxAk~h&D~(}JP^$-+W@lr(iH@n96A}}IK>%U&eypX|Sfwd8L3hz#BAcbw@&P`W>mE1aaxA@gWK@>2!^-?( zl8EFBMlF0CAhcredWU>!c0Dz##89(p))?P@V3U)X-*O7z@*sO4=1&#YJAs45*xR0M zfHejv4o2g+9C~gnZx9A>f;HZNxT&;dXLPz6&w-o)bgAbCOM&GLB?bF+@YQfW-FPEagVU!bN3qzr7TC7?Wb#4K ztQJh<-WClPxD(Z&l2YS9V{=*n={%%gl&J$C=;b|-T`hp?qj#gK3uy)THL?x)TUiHw zdSKlJrD<(+w`P!H0AOE8ZTKaQ=1M`)s5^KdH+y^#)dvKz&F9Kv%3A@AUw;kQZQJ1_#6PuY80bAfx4&Nu?hO6OVui zimD-p%8F8z)J7Gf5Qlg?-Tn2!ojSWW1Dtx*G@Tqya%atVE60<~!RM9EW#009j&R>2 ze7g0e@#J&MmF0FlUhqDEx#*a%m98ToG)@I;KoatlFqXt{I>XV!YIp5k$49;#O1k(rKWKZo?P`4vaA@dzb=A?qzH{|_Ujw7j*y29gJKVXsUHbk8 z;_2I89Wu$Dk4`ZAzJ}`fo}ABv;nT+-I&kl??>1*f@SG(rLK@Jp78ln+7dC3+2_YM1 z0kCi29{t0d9%1Od{63eCj|cD*p|BPM*Pw(Os4W;%7eO@$9H4>~sU3}SIQOfAgSt13 z9#&5`Zn$4(S1)~!XK4I46S2)XXE?I4WW!C9Pdgp+m@8D<{9Yw9sRfKMXYn~}k9;6l( z(q9@3$vmKtF%JNCxE4VO4Xq1T=#vAhK|*gCK^?wY0uXK5$$UU@)dwJKm#7afm;|73 zgSVZSk4DE8?Dw;CBKHA|BF~=(+qAkf$mWMf4&ll6_wM}Pq;vv6J$;aR(%lEVQ@sJY zG=ZS?^w|fH8^R2r*Udq`Mal*v2qX<|2eB@lkWd{O30?qD5%5Y2C1ea$VgY;~8V+yY z#aD;DU316Ma~YYOX}w%8E>AkU%GRy`xE>%i=9f(YqE7TIfnXvdbQ~pz-hXg?KIR&~ z5ad4bhpMWR?fs%umHm1YDfoYE-4Xraf|N$EQD5M2MO;-PY6>g~rAbYql4PkXML>5^ zANTbni~6_~n2oB~TTuRvJblu7xC#Nzn7&@Ji;Q{Qf!bY0+jOrhYdwa%Oz#w z!Hs)vYyBU%C@1magXRL4VC*|V4R$;!XV)1yl1EcbOCDvQO!|tvOJQtPy z6~&psm3~|rr{-UZZHr5AZY|2#KKC=VS#l^}j84t_@cQ;;+NC!RHPS2S;xfu8bV|{A0@PdsjEwu`u}LEl zwZ|(DhPXNTxm{mw)3R!4b8wqAH&v=!M!MCyt5ZQ=Rp1WEC<2mTXa)g{r3l%W1w4V9 z4oa|E8%(Q8uyVz(F~+Ng8!Fg1)o(Jb4TEJ_pwQ~8jB@B%E}&!#B#8jBS7`Eb(p+#7 z_$UI({zYSz_QRI1yY0cN2YdIchBwuHy&bOumCEL`c(^(>Fw?$Q2f?F-?(BJ9a-J-2 z#{FmNBWjTSaiLCNTTuOYDa{qw)Ued6xfjSyhrm5Il)c zos{G#59GNDIyEP`PGt>#=esKYSC_hfS^K&q1*K3s??B~<0B=h#vXI*qQZ@|GY>~{W zo_vzLtE|RmOED#U!;U3-c9pwK$yw=G+!TliJf93SG%U*m-Znggxfxx5k+^dHgRQ0- z8L4a`TOw9x>2S-YSz|0$ti-Q>1uNG*6!3NFvkjRME-~emIk09`M`Z4s@?6(0}^Yl=O4Bmb2gYRsH+T$ zvaD9ZJF-;N!w(f5#@#G2KW6iU^FO$FKzVTA2~ zpS_^iY}zsS>Z`3xe(bMQD~!<)(gKA7c(M@%1bI1l7wxVE^u7y^n#;s`@weqvl~et6 zNhr}u5sg7g3;1%9r>!ar6;!@EDJ>GRAB2UaMJnWgiobrOeo;Tm3RoxYKwrzsMzSR@ zY9g|Po_e}!bdg^!rV$_63-hiZ{enzKZ~E4yV71{x`AhQ@CHui2yb=4s920_YO@A?1 zsxY9^YQK{)#T41K7Njhweo9$X+>oxpA3%!VCG*m6imZbX_n>~v2ee+-=J_80c;-|0 z@O=s);z=wsM2}Vm2?%c<=aE=Asq(53kBbRKw*gmm_XA9J=i;4hU!* z0cC}j0s>twgbJ2w2*g5Q$lGcKup8V6s7ul=nuWo@-=txyueQb1i6)D(n-R>B&Mj5QiHwcNUO!LY|CHLU>}iCruP z*a?WhV+wZON2I~Aw+?OLji|vgaf{UtM$LBzd~9`O9l!tm1Sg` z7FwFov1)47VKJ~}rjR8_0g#5O5=14dXj(AULz=eoQ?+)hF4-D@8BN=RJ7a@LeHHzeh>abf%xez~n1A$0ic}Lmz(FfmO zWn!z)rq#(4mCD)tgY!Utn_X8hTZxx2S2dZHGZLY6^3_t>s&bsMkh9uClGuq>i>L6) zi9fzCz*WC9VtJ;qZ47NnOd${~#Z5&4AVM1^9LtJqtr{C`hG@WON{nSS0V$-=g&{zW z4Ait}aC4I;t2JuasR=>>ivyPdS{lJr$VyTXfXHMd4UnV@WjjSw42B48k+X0~f)WsMygPWOn}PRB1P+-Nx* zad__-&9-kjtDN%Z7|E>~YOK=?jfnGHWhZSDn`_M%gI7kpEhZq*4CsV`nMziYV(HNx z9c~RA)Mgo{amKb$qM;}Oh>{YLWayDjjuJF7yu9TeEM8XPV@9@(R?J>3IlHXQtG0E6 z8l2!^BV`RW$qWQ2L?a<9O4G<(yk2ll1AxMClae}1PD>6a2Mx6>8CGK1CEi?F{O|+23a#Ilpt-8Xi2jU#*UrW6Nb$u#g&6g5z(r) zj$qhr4KQP6vSnqG@Y=!6MwwNxW=6@iX`>7q&Tz6WN-m59p`sxZ0V3ojM9e9rG7x2k zkSR_)YYi67wi_nUfP|*t8B1%K4IaR5LNtp6Wf?;RDNIQ$30FkeWlbPD z;u|XL?VN-V0T8ZXDWS}X+_|ewmMbk9vTYh+(^m3n%GI!UgT{_^a%5!Z2Es^6WFrX< zWE{y73{1ik140?thU5-HqzNW!(`9W#V%m(cWX4Rr)aI*3jj}Y=q<0Q&8x1TmS~MEc z_Sv?H$Pf;|U<-!TQUw6OO(8=jVY1NL8q*ljk(Q%q&4!s{GBz!PFf%h&88u$JKp(=gcB(V8}!BFtvm zFxkzg49IZ9BV#dzrYo6MM!(IXP|4 z!+5muY38-9p=>QfMX6oNU`et(&tF=F=sxSz~Hj zK>=hSIzxs*;2Qy`4W)ye;MOvlw#3?l3^O3wnS+tU;SH*s!7^at!he6I+@$Q$iz#_! zdplftHinkiHLFK6gJUJR!gE_xwyHERXvHwqR>~T(maRnCn<2GX8Z%{(vSU_^(6()u zXle|GjTVq?Ere#PElG_-HCrQKFv&KFv{unD)NN?PMxx6?+9qnvv})2AX=u@-RWxM{ zkucG#QMGKtTMb#T)uTolHFH}7W-?kf%UFyA0|5+>Fl^EqMyXdqw1I6f;G9ZBOy&Y) zFl%UW1F$e5U?~J9X@(Fo$mS8tAt5f68cG(+wBRHlA!UFl1;n9=3=#oENK%asg4t3+ zLgKI*GHX`Bu&r5GWiw@iYBp-b(TQ$y%%hy)To~quxI?jnMx~*XBNa9+sQF)Y(?hY@}?3w8KMcEs4iDBV@xi8&RuMWh^$+RifDpHCSZPwisrOwAr;A zDQMVj8c^hDxv1o7aAdZs)s`BggBLUoMyCd?qehU!N5snavz5yhTB);)T+&B0mYHUu zlMY(Ok_b`M2H6Qj)JcW}a6oO%RbvccvMm`jZ5wTYw6@Wt@MzJMS~N|R<{uV@_BrX6 zvUQ7tPI@4S1L%LBq1OnLqemFf!i!|QFHA_1;L|E@o;3Wk^W78L}7nN zRNMSzTMmQt!apDv%=C{?T(TD7UU}vmg15@`rCWnam5_UBe@d$RwLbJNsaK}25A3Jb zrPf__O8RvzAcp!bYPw=!iqC)QMWR@KrK1fE$SH8DR|=QCCC+$Ax++;HECq#M1z&!r z%MpKEP9ye;xXLHR6~cvd3&O6!ZIKqSagP{wR9uy4m4M(YY4xF6MA~~vcgR+vtyh&H zc1o8=uwtj+B|Zs#;e~4Y2kWTA2km~Pz6usmq~b&1srlvdTRewZrBFO^Q`Ji7s;>FY z3z8kdy;80U*g8DOvev6w7jWmH?FV#li8s==w$56oV!uAC3=_1MYXlP_RP~gG%l{Wtdlzyr&-a{O5`wk$4LF!r8N({Wi*W@s=oOz<3aeNl;o7{s$w?O=c@;hS5o#o zfm#_>fpk*dCpvD2%DkayEy(dlRA6i$p0B7sa8!OF_t)f9(yuAba5hz~Cds!z*Q_+K z(>6abgzmh-Sw$e!BvQx;=d$? z`#asWPU5EVhb)01*9G8&KvLqeJ{+X>Ds8%a2(U}i7m6o!yz3m^Yk?}%WTT}5{^|B= zmF-l&8m@Y|YOLa3wkOR{>oz z6_(^rRZ{cOSGYF`{f%X6&$_ri>g1fmgCYFdjjHqQt02A848tmHs=#j=4gpjKtNGB% zyduRgE4GD|Tq0msXsdAWMQPhwW{_;BC|ECo{2%4$r4Qz#{a^Kl3V*vP!Gr%mIOVMj zwX;}cP9I9;g#}v@7tSaj?Juh`*i^zZ6(+^_5?9xh##w!ewEQ)f0~-C@T7Q?@DzFW>RjDwj?Zx;#BX6X(4Q>vWlywLexGrS5-~w3+Cp6 zE=j^mHAQ;2B76Pg$QmbuB?(0ZunlMKRXC!$ZrUpFE(oRyvoE1i+MT?ptt769o(i3{Hu&$y@KiA;?JXvx%7sJl z7YEN(7F0Ba{}NYZO_g@VRl*jrUwQfSd&$JbTXFs;@Ouz`CF-w2$eX^V$;MS}3UT8T zSZNaXRR*A6aJwkfkK!2mDs_DnJ%2u=9U*?|1NN#cG3=$)Rbr~`NM2bBNSa7p(Dp&B zJMFbKoGD&NHr2jxlHmuUCxc0|-lcJ>R}midUT9tz@StBd)JEz>(N%cYk{Od#Q*|es zzWQD|mDx&`=v_4vnoE+R{bdazj~DO#=|`lm9xA_8@?{kJ7-)`+tCm!@j-v9^EXX>= zS!Z46I81JxlvTR7`!K8c_<7-Uh|;CPBZUvs)YYs~ejuNF-|uBq$rb3`tnXDjs#r-k z300*^=cM7e6_GDAPn8U-g;KXt7*EW;Bz_`aN{7V*{lE7sXPFHFR0RpG41^;gMH$$M zTKW@1gd)wVA}C1;CYyJIl4!`+cOzucriQ41rAmO7C*Lqo`$(fjFww1DBn$eb3i75gCAs9+n3ecM-$QZ`cf0#s@$ zB&eVy3M3K&Af<@PWoFHpvlyJNI5v!XB!sdNLJ>qzCXmI5)lvx(sWq!x z6xudsrb`SpTQKJ;IilEXnPA!rGH7XxEZES=u+gs;u1&ixfuSi4E-OaBB^?GF+39&L|4NeBuq@5m}JqlSY%|pW`cc7gcZtN>v|^eXnKsdr1{mFr%Y$|`$<1ku)X2;*HE6-9 zv}nn(nvI5yWoY2!b8J?nqej>>6_X1R$%aOaOpO?As?^D}VXAGbCWgaChKmeYqee!u zXwjoXMTSfYkckOuMiN9KP<5pVV93$5XyD?9BSn)8!I&1TG%&DXVS^9!2lJo18Zg89 zQON&@dAzEvzx+bdrSDGq!B0elkHu7{s&G+5{Gf^dQ_W?+;%Wm^RVdY{){R=S)s|Z# z>O2yc_++4dy;7K|3+mr&h4MuTc JBq@N^+(3^l?pgo< diff --git a/docs/404.html b/docs/404.html index 226fc5ab..8ce2e1f8 100644 --- a/docs/404.html +++ b/docs/404.html @@ -84,7 +84,7 @@ AMR (for R) - 0.9.0.9022 + 0.9.0.9023 diff --git a/docs/LICENSE-text.html b/docs/LICENSE-text.html index 5142d53b..361ad66b 100644 --- a/docs/LICENSE-text.html +++ b/docs/LICENSE-text.html @@ -84,7 +84,7 @@ AMR (for R) - 0.9.0.9022 + 0.9.0.9023 diff --git a/docs/articles/index.html b/docs/articles/index.html index 01581cb3..fb6845a4 100644 --- a/docs/articles/index.html +++ b/docs/articles/index.html @@ -84,7 +84,7 @@ AMR (for R) - 0.9.0.9022 + 0.9.0.9023 diff --git a/docs/authors.html b/docs/authors.html index a51e5b1f..d84c2e98 100644 --- a/docs/authors.html +++ b/docs/authors.html @@ -84,7 +84,7 @@ AMR (for R) - 0.9.0.9022 + 0.9.0.9023 diff --git a/docs/index.html b/docs/index.html index 07524c09..a5e387f9 100644 --- a/docs/index.html +++ b/docs/index.html @@ -45,7 +45,7 @@ AMR (for R) - 0.9.0.9022 + 0.9.0.9023 @@ -187,9 +187,9 @@
-
+

18 October 2019
METHODS PAPER PREPRINTED
@@ -265,7 +265,7 @@ A methods paper about this package has been preprinted at bioRxiv (DOI: 10.1101/

Latest released version

This package is available here on the official R network (CRAN), which has a peer-reviewed submission process. Install this package in R from CRAN by using the command:

- +

It will be downloaded and installed automatically. For RStudio, click on the menu Tools > Install Packages… and then type in “AMR” and press Install.

Note: Not all functions on this website may be available in this latest release. To use all functions and data sets mentioned on this website, install the latest development version.

@@ -273,8 +273,8 @@ A methods paper about this package has been preprinted at bioRxiv (DOI: 10.1101/

Latest development version

The latest and unpublished development version can be installed with (precaution: may be unstable):

-
install.packages("devtools")
-devtools::install_gitlab("msberends/AMR")
+
install.packages("devtools")
+devtools::install_gitlab("msberends/AMR")
@@ -298,9 +298,9 @@ A methods paper about this package has been preprinted at bioRxiv (DOI: 10.1101/

NOTE: The WHOCC copyright does not allow use for commercial purposes, unlike any other info from this package. See https://www.whocc.no/copyright_disclaimer/.

Read more about the data from WHOCC in our manual.

-
+

-WHONET / EARS-Net

+WHONET / EARS-Net

We support WHONET and EARS-Net data. Exported files from WHONET can be imported into R and can be analysed easily using this package. For education purposes, we created an example data set WHONET with the exact same structure as a WHONET export file. Furthermore, this package also contains a data set antibiotics with all EARS-Net antibiotic abbreviations, and knows almost all WHONET abbreviations for microorganisms. When using WHONET data as input for analysis, all input parameters will be set automatically.

Read our tutorial about how to work with WHONET data here.

diff --git a/docs/news/index.html b/docs/news/index.html index ffc0f023..b50a563c 100644 --- a/docs/news/index.html +++ b/docs/news/index.html @@ -84,7 +84,7 @@ AMR (for R) - 0.9.0.9022 + 0.9.0.9023
@@ -231,41 +231,42 @@
-
+

-AMR 0.9.0.9022 Unreleased +AMR 0.9.0.9023 Unreleased

-
+

-Last updated: 10-Feb-2020 +Last updated: 14-Feb-2020

New

@@ -292,7 +293,7 @@
  • Changes to the antibiotics data set (thanks to Peter Dutey):
  • @@ -304,13 +305,14 @@
    • Add a CITATION file
    • Full support for the upcoming R 4.0
    • +
    • Removed unnecessary AMR:: calls
    -
    +

    -AMR 0.9.0 2019-11-29 +AMR 0.9.0 2019-11-29

    @@ -320,9 +322,9 @@
    • If you were dependent on the old Enterobacteriaceae family e.g. by using in your code:

      -
      if (mo_family(somebugs) == "Enterobacteriaceae") ...
      +
      if (mo_family(somebugs) == "Enterobacteriaceae") ...

      then please adjust this to:

      -
      if (mo_order(somebugs) == "Enterobacterales") ...
      +
      if (mo_order(somebugs) == "Enterobacterales") ...
    @@ -334,14 +336,15 @@

    -
    +

    -AMR 0.8.0 2019-10-15 +AMR 0.8.0 2019-10-15

    @@ -417,23 +420,25 @@
    • Determination of first isolates now excludes all ‘unknown’ microorganisms at default, i.e. microbial code "UNKNOWN". They can be included with the new parameter include_unknown:

      -
      first_isolate(..., include_unknown = TRUE)
      -For WHONET users, this means that all records/isolates with organism code "con" (contamination) will be excluded at default, since as.mo("con") = "UNKNOWN". The function always shows a note with the number of ‘unknown’ microorganisms that were included or excluded.
    • +
      first_isolate(..., include_unknown = TRUE)
      +

      For WHONET users, this means that all records/isolates with organism code "con" (contamination) will be excluded at default, since as.mo("con") = "UNKNOWN". The function always shows a note with the number of ‘unknown’ microorganisms that were included or excluded.

      +
    • For code consistency, classes ab and mo will now be preserved in any subsetting or assignment. For the sake of data integrity, this means that invalid assignments will now result in NA:

      - -This is important, because a value like "testvalue" could never be understood by e.g. mo_name(), although the class would suggest a valid microbial code.
    • -
    • Function freq() has moved to a new package, clean (CRAN link), since creating frequency tables actually does not fit the scope of this package. The freq() function still works, since it is re-exported from the clean package (which will be installed automatically upon updating this AMR package).
    • +
      # how it works in base R:
      +x <- factor("A")
      +x[1] <- "B"
      +#> Warning message:
      +#> invalid factor level, NA generated
      +
      +# how it now works similarly for classes 'mo' and 'ab':
      +x <- as.mo("E. coli")
      +x[1] <- "testvalue"
      +#> Warning message:
      +#> invalid microorganism code, NA generated
      +

      This is important, because a value like "testvalue" could never be understood by e.g. mo_name(), although the class would suggest a valid microbial code.

      + +
    • Function freq() has moved to a new package, clean (CRAN link), since creating frequency tables actually does not fit the scope of this package. The freq() function still works, since it is re-exported from the clean package (which will be installed automatically upon updating this AMR package).

    • Renamed data set septic_patients to example_isolates

    @@ -443,55 +448,56 @@ This is important, because a value like "testvalue" could never be
    @@ -521,7 +527,7 @@ Since this is a major change, usage of the old also_single_tested w
  • Added more informative errors and warnings
  • Printed info now distinguishes between added and changes values
  • -
  • Using Verbose mode (i.e. eucast_rules(..., verbose = TRUE)) returns more informative and readable output
  • +
  • Using Verbose mode (i.e. eucast_rules(..., verbose = TRUE)) returns more informative and readable output
  • Using factors as input now adds missing factors levels when the function changes antibiotic results
  • @@ -558,9 +564,9 @@ Since this is a major change, usage of the old also_single_tested w
    -
    +

    -AMR 0.7.1 2019-06-23 +AMR 0.7.1 2019-06-23

    @@ -568,14 +574,14 @@ Since this is a major change, usage of the old also_single_tested w

    All these lead to the microbial ID of E. coli:

    - +
    as.mo("UPEC")
    +# B_ESCHR_COL
    +mo_name("UPEC")
    +# "Escherichia coli"
    +mo_gramstain("EHEC")
    +# "Gram-negative"
    -
  • Function mo_info() as an analogy to ab_info(). The mo_info() prints a list with the full taxonomy, authors, and the URL to the online database of a microorganism
  • +
  • Function mo_info() as an analogy to ab_info(). The mo_info() prints a list with the full taxonomy, authors, and the URL to the online database of a microorganism

  • Function mo_synonyms() to get all previously accepted taxonomic names of a microorganism

  • @@ -639,9 +645,9 @@ Since this is a major change, usage of the old also_single_tested w
    -
    +

    -AMR 0.7.0 2019-06-03 +AMR 0.7.0 2019-06-03

    @@ -657,73 +663,73 @@ Since this is a major change, usage of the old also_single_tested w

    Changed

      -
    • Fixed a critical bug in first_isolate() where missing species would lead to incorrect FALSEs. This bug was not present in AMR v0.5.0, but was in v0.6.0 and v0.6.1.
    • -
    • Fixed a bug in eucast_rules() where antibiotics from WHONET software would not be recognised
    • -
    • Completely reworked the antibiotics data set: +
    • Fixed a critical bug in first_isolate() where missing species would lead to incorrect FALSEs. This bug was not present in AMR v0.5.0, but was in v0.6.0 and v0.6.1.

    • +
    • Fixed a bug in eucast_rules() where antibiotics from WHONET software would not be recognised

    • +
    • +

      Completely reworked the antibiotics data set:

        -
      • All entries now have 3 different identifiers: +
      • +

        All entries now have 3 different identifiers:

        • Column ab contains a human readable EARS-Net code, used by ECDC and WHO/WHONET - this is the primary identifier used in this package
        • Column atc contains the ATC code, used by WHO/WHOCC
        • Column cid contains the CID code (Compound ID), used by PubChem
      • -
      • Based on the Compound ID, almost 5,000 official brand names have been added from many different countries
      • -
      • All references to antibiotics in our package now use EARS-Net codes, like AMX for amoxicillin
      • -
      • Functions atc_certe, ab_umcg and atc_trivial_nl have been removed
      • -
      • All atc_* functions are superceded by ab_* functions
      • +
      • Based on the Compound ID, almost 5,000 official brand names have been added from many different countries

      • +
      • All references to antibiotics in our package now use EARS-Net codes, like AMX for amoxicillin

      • +
      • Functions atc_certe, ab_umcg and atc_trivial_nl have been removed

      • +
      • All atc_* functions are superceded by ab_* functions

      • All output will be translated by using an included translation file which can be viewed here.

        -Please create an issue in one of our repositories if you want additions in this file.
      • +

        Please create an issue in one of our repositories if you want additions in this file.

        +
    • -
    • Improvements to plotting AMR results with ggplot_rsi(): +
    • +

      Improvements to plotting AMR results with ggplot_rsi():

      • New parameter colours to set the bar colours
      • New parameters title, subtitle, caption, x.title and y.title to set titles and axis descriptions
    • -
    • Improved intelligence of looking up antibiotic columns in a data set using guess_ab_col() -
    • -
    • Added ~5,000 more old taxonomic names to the microorganisms.old data set, which leads to better results finding when using the as.mo() function
    • -
    • This package now honours the new EUCAST insight (2019) that S and I are but classified as susceptible, where I is defined as ‘increased exposure’ and not ‘intermediate’ anymore. For functions like portion_df() and count_df() this means that their new parameter combine_SI is TRUE at default. Our plotting function ggplot_rsi() also reflects this change since it uses count_df() internally.
    • -
    • The age() function gained a new parameter exact to determine ages with decimals
    • -
    • Removed deprecated functions guess_mo(), guess_atc(), EUCAST_rules(), interpretive_reading(), rsi() -
    • -
    • Frequency tables (freq()): +
    • Improved intelligence of looking up antibiotic columns in a data set using guess_ab_col()

    • +
    • Added ~5,000 more old taxonomic names to the microorganisms.old data set, which leads to better results finding when using the as.mo() function

    • +
    • This package now honours the new EUCAST insight (2019) that S and I are but classified as susceptible, where I is defined as ‘increased exposure’ and not ‘intermediate’ anymore. For functions like portion_df() and count_df() this means that their new parameter combine_SI is TRUE at default. Our plotting function ggplot_rsi() also reflects this change since it uses count_df() internally.

    • +
    • The age() function gained a new parameter exact to determine ages with decimals

    • +
    • Removed deprecated functions guess_mo(), guess_atc(), EUCAST_rules(), interpretive_reading(), rsi()

    • +
    • +

      Frequency tables (freq()):

    • Removed all hardcoded EUCAST rules and replaced them with a new reference file which can be viewed here.

      -Please create an issue in one of our repositories if you want changes in this file.
    • -
    • Added ceftazidim intrinsic resistance to Streptococci +

      Please create an issue in one of our repositories if you want changes in this file.

    • -
    • Changed default settings for age_groups(), to let groups of fives and tens end with 100+ instead of 120+
    • -
    • Fix for freq() for when all values are NA -
    • -
    • Fix for first_isolate() for when dates are missing
    • -
    • Improved speed of guess_ab_col() -
    • -
    • Function as.mo() now gently interprets any number of whitespace characters (like tabs) as one space
    • -
    • Function as.mo() now returns UNKNOWN for "con" (WHONET ID of ‘contamination’) and returns NA for "xxx"(WHONET ID of ‘no growth’)
    • -
    • Small algorithm fix for as.mo() -
    • -
    • Removed viruses from data set microorganisms.codes and cleaned it up
    • +
    • Added ceftazidim intrinsic resistance to Streptococci

    • +
    • Changed default settings for age_groups(), to let groups of fives and tens end with 100+ instead of 120+

    • +
    • Fix for freq() for when all values are NA

    • +
    • Fix for first_isolate() for when dates are missing

    • +
    • Improved speed of guess_ab_col()

    • +
    • Function as.mo() now gently interprets any number of whitespace characters (like tabs) as one space

    • +
    • Function as.mo() now returns UNKNOWN for "con" (WHONET ID of ‘contamination’) and returns NA for "xxx"(WHONET ID of ‘no growth’)

    • +
    • Small algorithm fix for as.mo()

    • +
    • Removed viruses from data set microorganisms.codes and cleaned it up

    • Fix for mo_shortname() where species would not be determined correctly

    @@ -736,9 +742,9 @@ Please +

    -AMR 0.6.1 2019-03-29 +AMR 0.6.1 2019-03-29

    @@ -750,9 +756,9 @@ Please +

    -AMR 0.6.0 2019-03-27 +AMR 0.6.0 2019-03-27

    New website!

    We’ve got a new website: https://msberends.gitlab.io/AMR (built with the great pkgdown)

    @@ -764,23 +770,25 @@ Please New

      +
    • BREAKING: removed deprecated functions, parameters and references to ‘bactid’. Use as.mo() to identify an MO code.

    • -BREAKING: removed deprecated functions, parameters and references to ‘bactid’. Use as.mo() to identify an MO code.
    • -
    • Catalogue of Life as a new taxonomic source for data about microorganisms, which also contains all ITIS data we used previously. The microorganisms data set now contains: +

      Catalogue of Life as a new taxonomic source for data about microorganisms, which also contains all ITIS data we used previously. The microorganisms data set now contains:

        -
      • All ~55,000 (sub)species from the kingdoms of Archaea, Bacteria and Protozoa
      • -
      • All ~3,000 (sub)species from these orders of the kingdom of Fungi: Eurotiales, Onygenales, Pneumocystales, Saccharomycetales and Schizosaccharomycetales (covering at least like all species of Aspergillus, Candida, Pneumocystis, Saccharomyces and Trichophyton)
      • -
      • All ~2,000 (sub)species from ~100 other relevant genera, from the kingdoms of Animalia and Plantae (like Strongyloides and Taenia)
      • -
      • All ~15,000 previously accepted names of included (sub)species that have been taxonomically renamed
      • +
      • All ~55,000 (sub)species from the kingdoms of Archaea, Bacteria and Protozoa

      • +
      • All ~3,000 (sub)species from these orders of the kingdom of Fungi: Eurotiales, Onygenales, Pneumocystales, Saccharomycetales and Schizosaccharomycetales (covering at least like all species of Aspergillus, Candida, Pneumocystis, Saccharomyces and Trichophyton)

      • +
      • All ~2,000 (sub)species from ~100 other relevant genera, from the kingdoms of Animalia and Plantae (like Strongyloides and Taenia)

      • +
      • All ~15,000 previously accepted names of included (sub)species that have been taxonomically renamed

      • The responsible author(s) and year of scientific publication

        -This data is updated annually - check the included version with the new function catalogue_of_life_version().
      • -
      • Due to this change, some mo codes changed (e.g. Streptococcus changed from B_STRPTC to B_STRPT). A translation table is used internally to support older microorganism IDs, so users will not notice this difference.
      • -
      • New function mo_rank() for the taxonomic rank (genus, species, infraspecies, etc.)
      • -
      • New function mo_url() to get the direct URL of a species from the Catalogue of Life
      • +

        This data is updated annually - check the included version with the new function catalogue_of_life_version().

        + +
      • Due to this change, some mo codes changed (e.g. Streptococcus changed from B_STRPTC to B_STRPT). A translation table is used internally to support older microorganism IDs, so users will not notice this difference.

      • +
      • New function mo_rank() for the taxonomic rank (genus, species, infraspecies, etc.)

      • +
      • New function mo_url() to get the direct URL of a species from the Catalogue of Life

    • -
    • Support for data from WHONET and EARS-Net (European Antimicrobial Resistance Surveillance Network): +
    • +

      Support for data from WHONET and EARS-Net (European Antimicrobial Resistance Surveillance Network):

    @@ -868,45 +876,44 @@ These functions use as.atc() internally. The old atc_property
    • Now handles incorrect spelling, like i instead of y and f instead of ph:

      - +
      # mo_fullname() uses as.mo() internally
      +
      +mo_fullname("Sthafilokockus aaureuz")
      +#> [1] "Staphylococcus aureus"
      +
      +mo_fullname("S. klossi")
      +#> [1] "Staphylococcus kloosii"
    • Uncertainty of the algorithm is now divided into four levels, 0 to 3, where the default allow_uncertain = TRUE is equal to uncertainty level 2. Run ?as.mo for more info about these levels.

      -
      # equal:
      -as.mo(..., allow_uncertain = TRUE)
      -as.mo(..., allow_uncertain = 2)
      -
      -# also equal:
      -as.mo(..., allow_uncertain = FALSE)
      -as.mo(..., allow_uncertain = 0)
      -Using as.mo(..., allow_uncertain = 3) could lead to very unreliable results.
    • -
    • Implemented the latest publication of Becker et al. (2019), for categorising coagulase-negative Staphylococci +
      # equal:
      +as.mo(..., allow_uncertain = TRUE)
      +as.mo(..., allow_uncertain = 2)
      +
      +# also equal:
      +as.mo(..., allow_uncertain = FALSE)
      +as.mo(..., allow_uncertain = 0)
      +

      Using as.mo(..., allow_uncertain = 3) could lead to very unreliable results.

    • -
    • All microbial IDs that found are now saved to a local file ~/.Rhistory_mo. Use the new function clean_mo_history() to delete this file, which resets the algorithms.
    • +
    • Implemented the latest publication of Becker et al. (2019), for categorising coagulase-negative Staphylococci

    • +
    • All microbial IDs that found are now saved to a local file ~/.Rhistory_mo. Use the new function clean_mo_history() to delete this file, which resets the algorithms.

    • Incoercible results will now be considered ‘unknown’, MO code UNKNOWN. On foreign systems, properties of these will be translated to all languages already previously supported: German, Dutch, French, Italian, Spanish and Portuguese:

      - +
      mo_genus("qwerty", language = "es")
      +# Warning: 
      +# one unique value (^= 100.0%) could not be coerced and is considered 'unknown': "qwerty". Use mo_failures() to review it.
      +#> [1] "(género desconocido)"
    • -
    • Fix for vector containing only empty values
    • -
    • Finds better results when input is in other languages
    • -
    • Better handling for subspecies
    • -
    • Better handling for Salmonellae, especially the ‘city like’ serovars like Salmonella London -
    • -
    • Understanding of highly virulent E. coli strains like EIEC, EPEC and STEC
    • -
    • There will be looked for uncertain results at default - these results will be returned with an informative warning
    • -
    • Manual (help page) now contains more info about the algorithms
    • -
    • Progress bar will be shown when it takes more than 3 seconds to get results
    • -
    • Support for formatted console text
    • -
    • Console will return the percentage of uncoercable input
    • +
    • Fix for vector containing only empty values

    • +
    • Finds better results when input is in other languages

    • +
    • Better handling for subspecies

    • +
    • Better handling for Salmonellae, especially the ‘city like’ serovars like Salmonella London

    • +
    • Understanding of highly virulent E. coli strains like EIEC, EPEC and STEC

    • +
    • There will be looked for uncertain results at default - these results will be returned with an informative warning

    • +
    • Manual (help page) now contains more info about the algorithms

    • +
    • Progress bar will be shown when it takes more than 3 seconds to get results

    • +
    • Support for formatted console text

    • +
    • Console will return the percentage of uncoercable input

  • Function first_isolate(): @@ -940,31 +947,29 @@ Using as.mo(..., allow_uncertain = 3)
  • Support for tidyverse quasiquotation! Now you can create frequency tables of function outcomes:

    - +
    # Determine genus of microorganisms (mo) in `septic_patients` data set:
    +# OLD WAY
    +septic_patients %>%
    +  mutate(genus = mo_genus(mo)) %>%
    +  freq(genus)
    +# NEW WAY
    +septic_patients %>% 
    +  freq(mo_genus(mo))
    +
    +# Even supports grouping variables:
    +septic_patients %>%
    +  group_by(gender) %>% 
    +  freq(mo_genus(mo))
  • -
  • Header info is now available as a list, with the header function
  • -
  • The parameter header is now set to TRUE at default, even for markdown
  • -
  • Added header info for class mo to show unique count of families, genera and species
  • -
  • Now honours the decimal.mark setting, which just like format defaults to getOption("OutDec") -
  • -
  • The new big.mark parameter will at default be "," when decimal.mark = "." and "." otherwise
  • -
  • Fix for header text where all observations are NA -
  • -
  • New parameter droplevels to exclude empty factor levels when input is a factor
  • -
  • Factor levels will be in header when present in input data (maximum of 5)
  • -
  • Fix for using select() on frequency tables
  • +
  • Header info is now available as a list, with the header function

  • +
  • The parameter header is now set to TRUE at default, even for markdown

  • +
  • Added header info for class mo to show unique count of families, genera and species

  • +
  • Now honours the decimal.mark setting, which just like format defaults to getOption("OutDec")

  • +
  • The new big.mark parameter will at default be "," when decimal.mark = "." and "." otherwise

  • +
  • Fix for header text where all observations are NA

  • +
  • New parameter droplevels to exclude empty factor levels when input is a factor

  • +
  • Factor levels will be in header when present in input data (maximum of 5)

  • +
  • Fix for using select() on frequency tables

  • Function scale_y_percent() now contains the limits parameter
  • @@ -983,9 +988,9 @@ Using as.mo(..., allow_uncertain = 3)
    -
    +

    -AMR 0.5.0 2018-11-30 +AMR 0.5.0 2018-11-30

    @@ -1005,11 +1010,10 @@ Using as.mo(..., allow_uncertain = 3) Changed

      -
    • Functions MDRO, BRMO, MRGN and EUCAST_exceptional_phenotypes were renamed to mdro, brmo, mrgn and eucast_exceptional_phenotypes -
    • +
    • Functions MDRO, BRMO, MRGN and EUCAST_exceptional_phenotypes were renamed to mdro, brmo, mrgn and eucast_exceptional_phenotypes

    • +
    • EUCAST_rules was renamed to eucast_rules, the old function still exists as a deprecated function

    • -EUCAST_rules was renamed to eucast_rules, the old function still exists as a deprecated function
    • -
    • Big changes to the eucast_rules function: +

      Big changes to the eucast_rules function:

      • Now also applies rules from the EUCAST ‘Breakpoint tables for bacteria’, version 8.1, 2018, http://www.eucast.org/clinical_breakpoints/ (see Source of the function)
      • New parameter rules to specify which rules should be applied (expert rules, breakpoints, others or all)
      • @@ -1021,61 +1025,55 @@ Using as.mo(..., allow_uncertain = 3)Small fixes to EUCAST clinical breakpoint rules
    • -
    • Added column kingdom to the microorganisms data set, and function mo_kingdom to look up values
    • -
    • Tremendous speed improvement for as.mo (and subsequently all mo_* functions), as empty values wil be ignored a priori -
    • -
    • Fewer than 3 characters as input for as.mo will return NA
    • +
    • Added column kingdom to the microorganisms data set, and function mo_kingdom to look up values

    • +
    • Tremendous speed improvement for as.mo (and subsequently all mo_* functions), as empty values wil be ignored a priori

    • +
    • Fewer than 3 characters as input for as.mo will return NA

    • Function as.mo (and all mo_* wrappers) now supports genus abbreviations with “species” attached

      -
      as.mo("E. species")        # B_ESCHR
      -mo_fullname("E. spp.")     # "Escherichia species"
      -as.mo("S. spp")            # B_STPHY
      -mo_fullname("S. species")  # "Staphylococcus species"
      +
      as.mo("E. species")        # B_ESCHR
      +mo_fullname("E. spp.")     # "Escherichia species"
      +as.mo("S. spp")            # B_STPHY
      +mo_fullname("S. species")  # "Staphylococcus species"
    • -
    • Added parameter combine_IR (TRUE/FALSE) to functions portion_df and count_df, to indicate that all values of I and R must be merged into one, so the output only consists of S vs. IR (susceptible vs. non-susceptible)
    • -
    • Fix for portion_*(..., as_percent = TRUE) when minimal number of isolates would not be met
    • -
    • Added parameter also_single_tested for portion_* and count_* functions to also include cases where not all antibiotics were tested but at least one of the tested antibiotics includes the target antimicribial interpretation, see ?portion -
    • -
    • Using portion_* functions now throws a warning when total available isolate is below parameter minimum -
    • -
    • Functions as.mo, as.rsi, as.mic, as.atc and freq will not set package name as attribute anymore
    • -
    • Frequency tables - freq(): +
    • Added parameter combine_IR (TRUE/FALSE) to functions portion_df and count_df, to indicate that all values of I and R must be merged into one, so the output only consists of S vs. IR (susceptible vs. non-susceptible)

    • +
    • Fix for portion_*(..., as_percent = TRUE) when minimal number of isolates would not be met

    • +
    • Added parameter also_single_tested for portion_* and count_* functions to also include cases where not all antibiotics were tested but at least one of the tested antibiotics includes the target antimicribial interpretation, see ?portion

    • +
    • Using portion_* functions now throws a warning when total available isolate is below parameter minimum

    • +
    • Functions as.mo, as.rsi, as.mic, as.atc and freq will not set package name as attribute anymore

    • +
    • +

      Frequency tables - freq():

      • Support for grouping variables, test with:

        -
        septic_patients %>% 
        -  group_by(hospital_id) %>% 
        -  freq(gender)
        +
        septic_patients %>% 
        +  group_by(hospital_id) %>% 
        +  freq(gender)
      • Support for (un)selecting columns:

        -
        septic_patients %>% 
        -  freq(hospital_id) %>% 
        -  select(-count, -cum_count) # only get item, percent, cum_percent
        +
        septic_patients %>% 
        +  freq(hospital_id) %>% 
        +  select(-count, -cum_count) # only get item, percent, cum_percent
      • -
      • Check for hms::is.hms -
      • -
      • Now prints in markdown at default in non-interactive sessions
      • -
      • No longer adds the factor level column and sorts factors on count again
      • -
      • Support for class difftime -
      • -
      • New parameter na, to choose which character to print for empty values
      • -
      • New parameter header to turn the header info off (default when markdown = TRUE)
      • -
      • New parameter title to manually setbthe title of the frequency table
      • +
      • Check for hms::is.hms

      • +
      • Now prints in markdown at default in non-interactive sessions

      • +
      • No longer adds the factor level column and sorts factors on count again

      • +
      • Support for class difftime

      • +
      • New parameter na, to choose which character to print for empty values

      • +
      • New parameter header to turn the header info off (default when markdown = TRUE)

      • +
      • New parameter title to manually setbthe title of the frequency table

    • +
    • first_isolate now tries to find columns to use as input when parameters are left blank

    • +
    • Improvements for MDRO algorithm (function mdro)

    • +
    • Data set septic_patients is now a data.frame, not a tibble anymore

    • +
    • Removed diacritics from all authors (columns microorganisms$ref and microorganisms.old$ref) to comply with CRAN policy to only allow ASCII characters

    • +
    • Fix for mo_property not working properly

    • +
    • Fix for eucast_rules where some Streptococci would become ceftazidime R in EUCAST rule 4.5

    • +
    • Support for named vectors of class mo, useful for top_freq()

    • +
    • ggplot_rsi and scale_y_percent have breaks parameter

    • -first_isolate now tries to find columns to use as input when parameters are left blank
    • -
    • Improvements for MDRO algorithm (function mdro)
    • -
    • Data set septic_patients is now a data.frame, not a tibble anymore
    • -
    • Removed diacritics from all authors (columns microorganisms$ref and microorganisms.old$ref) to comply with CRAN policy to only allow ASCII characters
    • -
    • Fix for mo_property not working properly
    • -
    • Fix for eucast_rules where some Streptococci would become ceftazidime R in EUCAST rule 4.5
    • -
    • Support for named vectors of class mo, useful for top_freq() -
    • -
    • -ggplot_rsi and scale_y_percent have breaks parameter
    • -
    • AI improvements for as.mo: +

      AI improvements for as.mo:

    • -
    • Fix for join functions
    • -
    • Speed improvement for is.rsi.eligible, now 15-20 times faster
    • -
    • In g.test, when sum(x) is below 1000 or any of the expected values is below 5, Fisher’s Exact Test will be suggested
    • -
    • -ab_name will try to fall back on as.atc when no results are found
    • -
    • Removed the addin to view data sets
    • +
    • Fix for join functions

    • +
    • Speed improvement for is.rsi.eligible, now 15-20 times faster

    • +
    • In g.test, when sum(x) is below 1000 or any of the expected values is below 5, Fisher’s Exact Test will be suggested

    • +
    • ab_name will try to fall back on as.atc when no results are found

    • +
    • Removed the addin to view data sets

    • Percentages will now will rounded more logically (e.g. in freq function)

    @@ -1110,16 +1107,17 @@ Using as.mo(..., allow_uncertain = 3)
    -
    +

    -AMR 0.4.0 2018-10-01 +AMR 0.4.0 2018-10-01

    New

      -
    • The data set microorganisms now contains all microbial taxonomic data from ITIS (kingdoms Bacteria, Fungi and Protozoa), the Integrated Taxonomy Information System, available via https://itis.gov. The data set now contains more than 18,000 microorganisms with all known bacteria, fungi and protozoa according ITIS with genus, species, subspecies, family, order, class, phylum and subkingdom. The new data set microorganisms.old contains all previously known taxonomic names from those kingdoms.
    • -
    • New functions based on the existing function mo_property: +
    • The data set microorganisms now contains all microbial taxonomic data from ITIS (kingdoms Bacteria, Fungi and Protozoa), the Integrated Taxonomy Information System, available via https://itis.gov. The data set now contains more than 18,000 microorganisms with all known bacteria, fungi and protozoa according ITIS with genus, species, subspecies, family, order, class, phylum and subkingdom. The new data set microorganisms.old contains all previously known taxonomic names from those kingdoms.

    • +
    • +

      New functions based on the existing function mo_property:

      • Taxonomic names: mo_phylum, mo_class, mo_order, mo_family, mo_genus, mo_species, mo_subspecies
      • @@ -1131,43 +1129,44 @@ Using as.mo(..., allow_uncertain = 3)

      They also come with support for German, Dutch, French, Italian, Spanish and Portuguese:

      -
      mo_gramstain("E. coli")
      -# [1] "Gram negative"
      -mo_gramstain("E. coli", language = "de") # German
      -# [1] "Gramnegativ"
      -mo_gramstain("E. coli", language = "es") # Spanish
      -# [1] "Gram negativo"
      -mo_fullname("S. group A", language = "pt") # Portuguese
      -# [1] "Streptococcus grupo A"
      +
      mo_gramstain("E. coli")
      +# [1] "Gram negative"
      +mo_gramstain("E. coli", language = "de") # German
      +# [1] "Gramnegativ"
      +mo_gramstain("E. coli", language = "es") # Spanish
      +# [1] "Gram negativo"
      +mo_fullname("S. group A", language = "pt") # Portuguese
      +# [1] "Streptococcus grupo A"

      Furthermore, former taxonomic names will give a note about the current taxonomic name:

      - +
      mo_gramstain("Esc blattae")
      +# Note: 'Escherichia blattae' (Burgess et al., 1973) was renamed 'Shimwellia blattae' (Priest and Barker, 2010)
      +# [1] "Gram negative"
    • -
    • Functions count_R, count_IR, count_I, count_SI and count_S to selectively count resistant or susceptible isolates +
    • +

      Functions count_R, count_IR, count_I, count_SI and count_S to selectively count resistant or susceptible isolates

      • Extra function count_df (which works like portion_df) to get all counts of S, I and R of a data set with antibiotic columns, with support for grouped variables
    • -
    • Function is.rsi.eligible to check for columns that have valid antimicrobial results, but do not have the rsi class yet. Transform the columns of your raw data with: data %>% mutate_if(is.rsi.eligible, as.rsi) -
    • +
    • Function is.rsi.eligible to check for columns that have valid antimicrobial results, but do not have the rsi class yet. Transform the columns of your raw data with: data %>% mutate_if(is.rsi.eligible, as.rsi)

    • Functions as.mo and is.mo as replacements for as.bactid and is.bactid (since the microoganisms data set not only contains bacteria). These last two functions are deprecated and will be removed in a future release. The as.mo function determines microbial IDs using intelligent rules:

      - +
      as.mo("E. coli")
      +# [1] B_ESCHR_COL
      +as.mo("MRSA")
      +# [1] B_STPHY_AUR
      +as.mo("S group A")
      +# [1] B_STRPTC_GRA

      And with great speed too - on a quite regular Linux server from 2007 it takes us less than 0.02 seconds to transform 25,000 items:

      - +
      thousands_of_E_colis <- rep("E. coli", 25000)
      +microbenchmark::microbenchmark(as.mo(thousands_of_E_colis), unit = "s")
      +# Unit: seconds
      +#         min       median         max  neval
      +#  0.01817717  0.01843957  0.03878077    100
    • -
    • Added parameter reference_df for as.mo, so users can supply their own microbial IDs, name or codes as a reference table
    • -
    • Renamed all previous references to bactid to mo, like: +
    • Added parameter reference_df for as.mo, so users can supply their own microbial IDs, name or codes as a reference table

    • +
    • +

      Renamed all previous references to bactid to mo, like:

      • Column names inputs of EUCAST_rules, first_isolate and key_antibiotics
      • @@ -1176,12 +1175,11 @@ Using as.mo(..., allow_uncertain = 3)All old syntaxes will still work with this version, but will throw warnings
    • -
    • Function labels_rsi_count to print datalabels on a RSI ggplot2 model
    • +
    • Function labels_rsi_count to print datalabels on a RSI ggplot2 model

    • Functions as.atc and is.atc to transform/look up antibiotic ATC codes as defined by the WHO. The existing function guess_atc is now an alias of as.atc.

    • -
    • Function ab_property and its aliases: ab_name, ab_tradenames, ab_certe, ab_umcg and ab_trivial_nl -
    • -
    • Introduction to AMR as a vignette
    • -
    • Removed clipboard functions as it violated the CRAN policy
    • +
    • Function ab_property and its aliases: ab_name, ab_tradenames, ab_certe, ab_umcg and ab_trivial_nl

    • +
    • Introduction to AMR as a vignette

    • +
    • Removed clipboard functions as it violated the CRAN policy

    • Renamed septic_patients$sex to septic_patients$gender

    @@ -1189,51 +1187,48 @@ Using as.mo(..., allow_uncertain = 3) Changed
      -
    • Added three antimicrobial agents to the antibiotics data set: Terbinafine (D01BA02), Rifaximin (A07AA11) and Isoconazole (D01AC05)
    • +
    • Added three antimicrobial agents to the antibiotics data set: Terbinafine (D01BA02), Rifaximin (A07AA11) and Isoconazole (D01AC05)

    • Added 163 trade names to the antibiotics data set, it now contains 298 different trade names in total, e.g.:

      -
      ab_official("Bactroban")
      -# [1] "Mupirocin"
      -ab_name(c("Bactroban", "Amoxil", "Zithromax", "Floxapen"))
      -# [1] "Mupirocin" "Amoxicillin" "Azithromycin" "Flucloxacillin"
      -ab_atc(c("Bactroban", "Amoxil", "Zithromax", "Floxapen"))
      -# [1] "R01AX06" "J01CA04" "J01FA10" "J01CF05"
      -
    • -
    • For first_isolate, rows will be ignored when there’s no species available
    • -
    • Function ratio is now deprecated and will be removed in a future release, as it is not really the scope of this package
    • -
    • Fix for as.mic for values ending in zeroes after a real number
    • -
    • Small fix where B. fragilis would not be found in the microorganisms.umcg data set
    • -
    • Added prevalence column to the microorganisms data set
    • -
    • Added parameters minimum and as_percent to portion_df +
      ab_official("Bactroban")
      +# [1] "Mupirocin"
      +ab_name(c("Bactroban", "Amoxil", "Zithromax", "Floxapen"))
      +# [1] "Mupirocin" "Amoxicillin" "Azithromycin" "Flucloxacillin"
      +ab_atc(c("Bactroban", "Amoxil", "Zithromax", "Floxapen"))
      +# [1] "R01AX06" "J01CA04" "J01FA10" "J01CF05"
    • +
    • For first_isolate, rows will be ignored when there’s no species available

    • +
    • Function ratio is now deprecated and will be removed in a future release, as it is not really the scope of this package

    • +
    • Fix for as.mic for values ending in zeroes after a real number

    • +
    • Small fix where B. fragilis would not be found in the microorganisms.umcg data set

    • +
    • Added prevalence column to the microorganisms data set

    • +
    • Added parameters minimum and as_percent to portion_df

    • Support for quasiquotation in the functions series count_* and portions_*, and n_rsi. This allows to check for more than 2 vectors or columns.

      - -
    • -
    • Edited ggplot_rsi and geom_rsi so they can cope with count_df. The new fun parameter has value portion_df at default, but can be set to count_df.
    • -
    • Fix for ggplot_rsi when the ggplot2 package was not loaded
    • -
    • Added datalabels function labels_rsi_count to ggplot_rsi -
    • -
    • Added possibility to set any parameter to geom_rsi (and ggplot_rsi) so you can set your own preferences
    • -
    • Fix for joins, where predefined suffices would not be honoured
    • -
    • Added parameter quote to the freq function
    • -
    • Added generic function diff for frequency tables
    • -
    • Added longest en shortest character length in the frequency table (freq) header of class character +
      septic_patients %>% select(amox, cipr) %>% count_IR()
      +# which is the same as:
      +septic_patients %>% count_IR(amox, cipr)
      +
      +septic_patients %>% portion_S(amcl)
      +septic_patients %>% portion_S(amcl, gent)
      +septic_patients %>% portion_S(amcl, gent, pita)
    • +
    • Edited ggplot_rsi and geom_rsi so they can cope with count_df. The new fun parameter has value portion_df at default, but can be set to count_df.

    • +
    • Fix for ggplot_rsi when the ggplot2 package was not loaded

    • +
    • Added datalabels function labels_rsi_count to ggplot_rsi

    • +
    • Added possibility to set any parameter to geom_rsi (and ggplot_rsi) so you can set your own preferences

    • +
    • Fix for joins, where predefined suffices would not be honoured

    • +
    • Added parameter quote to the freq function

    • +
    • Added generic function diff for frequency tables

    • +
    • Added longest en shortest character length in the frequency table (freq) header of class character

    • Support for types (classes) list and matrix for freq

      -
      my_matrix = with(septic_patients, matrix(c(age, gender), ncol = 2))
      -freq(my_matrix)
      +
      my_matrix = with(septic_patients, matrix(c(age, gender), ncol = 2))
      +freq(my_matrix)

      For lists, subsetting is possible:

      -
      my_list = list(age = septic_patients$age, gender = septic_patients$gender)
      -my_list %>% freq(age)
      -my_list %>% freq(gender)
      +
      my_list = list(age = septic_patients$age, gender = septic_patients$gender)
      +my_list %>% freq(age)
      +my_list %>% freq(gender)
    @@ -1245,9 +1240,9 @@ Using as.mo(..., allow_uncertain = 3)
    -
    +

    -AMR 0.3.0 2018-08-14 +AMR 0.3.0 2018-08-14

    @@ -1352,7 +1347,7 @@ Using as.mo(..., allow_uncertain = 3) -
  • Now possible to coerce MIC values with a space between operator and value, i.e. as.mic("<= 0.002") now works
  • +
  • Now possible to coerce MIC values with a space between operator and value, i.e. as.mic("<= 0.002") now works
  • Classes rsi and mic do not add the attribute package.version anymore
  • Added "groups" option for atc_property(..., property). It will return a vector of the ATC hierarchy as defined by the WHO. The new function atc_groups is a convenient wrapper around this.
  • Build-in host check for atc_property as it requires the host set by url to be responsive
  • @@ -1382,9 +1377,9 @@ Using as.mo(..., allow_uncertain = 3)

    -
    +

    -AMR 0.2.0 2018-05-03 +AMR 0.2.0 2018-05-03

    @@ -1440,9 +1435,9 @@ Using as.mo(..., allow_uncertain = 3)

    -
    +

    -AMR 0.1.1 2018-03-14 +AMR 0.1.1 2018-03-14

    -
    +

    -AMR 0.1.0 2018-02-22 +AMR 0.1.0 2018-02-22

    diff --git a/docs/pkgdown.yml b/docs/pkgdown.yml index e03af2b0..484ba8a9 100644 --- a/docs/pkgdown.yml +++ b/docs/pkgdown.yml @@ -1,4 +1,4 @@ -pandoc: 2.3.1 +pandoc: 2.7.3 pkgdown: 1.4.1 pkgdown_sha: ~ articles: diff --git a/docs/reference/as.rsi.html b/docs/reference/as.rsi.html index f141868f..3291dbf3 100644 --- a/docs/reference/as.rsi.html +++ b/docs/reference/as.rsi.html @@ -85,7 +85,7 @@ AMR (for R) - 0.9.0.9016 + 0.9.0.9023
    @@ -273,7 +273,7 @@ guideline -

    defaults to the latest included EUCAST guideline, run unique(AMR::rsi_translation$guideline) for all options

    +

    defaults to the latest included EUCAST guideline, run unique(rsi_translation$guideline) for all options

    col_mo @@ -290,7 +290,7 @@

    Ordered factor with new class rsi

    Details

    -

    Run unique(AMR::rsi_translation$guideline) for a list of all supported guidelines. The repository of this package contains this machine readable version of these guidelines.

    +

    Run unique(rsi_translation$guideline) for a list of all supported guidelines. The repository of this package contains this machine readable version of these guidelines.

    These guidelines are machine readable, since .

    After using as.rsi(), you can use eucast_rules() to (1) apply inferred susceptibility and resistance based on results of other antimicrobials and (2) apply intrinsic resistance based on taxonomic properties of a microorganism.

    The function is.rsi.eligible() returns TRUE when a columns contains at most 5% invalid antimicrobial interpretations (not S and/or I and/or R), and FALSE otherwise. The threshold of 5% can be set with the threshold parameter.

    @@ -335,11 +335,12 @@ The lifecycle of this function is stable# interpret MIC values as.rsi(x = as.mic(2), mo = as.mo("S. pneumoniae"), - ab = "AMX", + ab = "AMP", guideline = "EUCAST") -as.rsi(x = as.mic(4), - mo = as.mo("S. pneumoniae"), - ab = "AMX", + +as.rsi(x = as.disk(18), + mo = "Strep pneu", # `mo` will be coerced with as.mo() + ab = "ampicillin", # and `ab` with as.ab() guideline = "EUCAST") plot(rsi_data) # for percentages diff --git a/docs/reference/filter_ab_class.html b/docs/reference/filter_ab_class.html index da27ee30..f02365f1 100644 --- a/docs/reference/filter_ab_class.html +++ b/docs/reference/filter_ab_class.html @@ -85,7 +85,7 @@ AMR (for R) - 0.9.0.9013 + 0.9.0.9023
    @@ -272,7 +272,7 @@ ab_class -

    an antimicrobial class, like "carbapenems", as can be found in AMR::antibiotics$group

    +

    an antimicrobial class, like "carbapenems", as can be found in antibiotics$group

    result diff --git a/docs/reference/index.html b/docs/reference/index.html index b9aa66b4..6deb39c9 100644 --- a/docs/reference/index.html +++ b/docs/reference/index.html @@ -84,7 +84,7 @@ AMR (for R) - 0.9.0.9022 + 0.9.0.9023
    diff --git a/docs/reference/like.html b/docs/reference/like.html index c0c7c353..042a044e 100644 --- a/docs/reference/like.html +++ b/docs/reference/like.html @@ -85,7 +85,7 @@ AMR (for R) - 0.9.0.9013 + 0.9.0.9023
    @@ -296,15 +296,15 @@ The lifecycle of this function is stable# also supports multiple patterns, length must be equal to x a <- c("Test case", "Something different", "Yet another thing") -b <- c("case", "diff", "yet") +b <- c( "case", "diff", "yet") a %like% b #> TRUE TRUE TRUE # get frequencies of bacteria whose name start with 'Ent' or 'ent' library(dplyr) example_isolates %>% - filter(mo_genus(mo) %like% '^ent') %>% - freq(mo_fullname(mo)) + filter(mo_name(mo) %like% '^ent') %>% + freq(mo_genus(mo))