diff --git a/DESCRIPTION b/DESCRIPTION index 2f0ff16c..893113e9 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,5 +1,5 @@ Package: AMR -Version: 1.7.1.9073 +Version: 1.7.1.9074 Date: 2021-12-14 Title: Antimicrobial Resistance Data Analysis Description: Functions to simplify and standardise antimicrobial resistance (AMR) diff --git a/NEWS.md b/NEWS.md index 6026bb6c..a48f2ccc 100755 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -# `AMR` 1.7.1.9073 +# `AMR` 1.7.1.9074 ## Last updated: 14 December 2021 All functions in this package are now all considered to be stable. Updates to the AMR interpretation rules (such as by EUCAST and CLSI), the microbial taxonomy, and the antibiotic dosages will all be updated every 6 to 12 months from now on. @@ -61,6 +61,7 @@ All functions in this package are now all considered to be stable. Updates to th * Fix for legends created with `scale_rsi_colours()` when using `ggplot2` v3.3.4 or higher (this is ggplot2 bug 4511, soon to be fixed) * Fix for minor translation errors * Fix for the MIC interpretation of *Morganellaceae* (such as *Morganella* and *Proteus*) when using the EUCAST 2021 guideline +* Improved algorithm of `as.mo()` * Improved algorithm for generating random MICs with `random_mic()` * Improved plot legends for MICs and disk diffusion values * Improved speed of `as.ab()` and all `ab_*()` functions @@ -731,7 +732,7 @@ This software is now out of beta and considered stable. Nonetheless, this packag * Added support for *Blastocystis* * Added support for 5,000 new fungi * Added support for unknown yeasts and fungi - * Changed most microorganism IDs to improve readability. For example, the old code `B_ENTRC_FAE` could have been both *E. faecalis* and *E. faecium*. Its new code is `B_ENTRC_FCLS` and *E. faecium* has become `B_ENTRC_FACM`. Also, the Latin character æ (ae) is now preserved at the start of each genus and species abbreviation. For example, the old code for *Aerococcus urinae* was `B_ARCCC_NAE`. This is now `B_AERCC_URIN`. + * Changed most microorganism IDs to improve readability. For example, the old code `B_ENTRC_FAE` could have been both *E. faecalis* and *E. faecium*. Its new code is `B_ENTRC_FCLS` and *E. faecium* has become `B_ENTRC_FACM`. Also, the Latin character ae is now preserved at the start of each genus and species abbreviation. For example, the old code for *Aerococcus urinae* was `B_ARCCC_NAE`. This is now `B_AERCC_URIN`. **IMPORTANT:** Old microorganism IDs are still supported, but support will be dropped in a future version. Use `as.mo()` on your old codes to transform them to the new format. Using functions from the `mo_*` family (like `mo_name()` and `mo_gramstain()`) on old codes, will throw a warning. * More intelligent guessing for `as.ab()`, including bidirectional language support * Added support for the German national guideline (3MRGN/4MRGN) in the `mdro()` function, to determine multi-drug resistant organisms @@ -789,7 +790,7 @@ This software is now out of beta and considered stable. Nonetheless, this packag * EIEC (Entero-Invasive *E. coli*) * EPEC (Entero-Pathogenic *E. coli*) * ETEC (Entero-Toxigenic *E. coli*) - * NMEC (Neonatal Meningitis‐causing *E. coli*) + * NMEC (Neonatal Meningitis-causing *E. coli*) * STEC (Shiga-toxin producing *E. coli*) * UPEC (Uropathogenic *E. coli*) @@ -1015,13 +1016,7 @@ We've got a new website: [https://msberends.gitlab.io/AMR](https://msberends.git 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* * 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: - ```r - 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)" - ``` + * 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. * Fix for vector containing only empty values * Finds better results when input is in other languages * Better handling for subspecies @@ -1297,7 +1292,7 @@ We've got a new website: [https://msberends.gitlab.io/AMR](https://msberends.git * New Becker classification for *Staphylococcus* to categorise them into Coagulase Negative *Staphylococci* (CoNS) and Coagulase Positve *Staphylococci* (CoPS) * New Lancefield classification for *Streptococcus* to categorise them into Lancefield groups * For convience, new descriptive statistical functions `kurtosis` and `skewness` that are lacking in base R - they are generic functions and have support for vectors, data.frames and matrices -* Function `g.test` to perform the Χ2 distributed [*G*-test](https://en.wikipedia.org/wiki/G-test), which use is the same as `chisq.test` +* Function `g.test` to perform the X2 distributed [*G*-test](https://en.wikipedia.org/wiki/G-test), which use is the same as `chisq.test` * ~~Function `ratio` to transform a vector of values to a preset ratio~~ * ~~For example: `ratio(c(10, 500, 10), ratio = "1:2:1")` would return `130, 260, 130`~~ * Support for Addins menu in RStudio to quickly insert `%in%` or `%like%` (and give them keyboard shortcuts), or to view the datasets that come with this package diff --git a/R/aa_globals.R b/R/aa_globals.R index a5efbd7c..ba333651 100755 --- a/R/aa_globals.R +++ b/R/aa_globals.R @@ -109,6 +109,7 @@ globalVariables(c(".rowid", "old_name", "pattern", "R", + "rank_index", "reference.rule", "reference.rule_group", "reference.version", diff --git a/R/data.R b/R/data.R index d03c24c2..0eb8ea0a 100755 --- a/R/data.R +++ b/R/data.R @@ -132,8 +132,8 @@ #' List of Prokaryotic names with Standing in Nomenclature (`r CATALOGUE_OF_LIFE$yearmonth_LPSN`) as currently implemented in this `AMR` package: #' #' * Parte, A.C., Sarda Carbasse, J., Meier-Kolthoff, J.P., Reimer, L.C. and Goker, M. (2020). List of Prokaryotic names with Standing in Nomenclature (LPSN) moves to the DSMZ. International Journal of Systematic and Evolutionary Microbiology, 70, 5607-5612; \doi{10.1099/ijsem.0.004332} -#' * Parte, A.C. (2018). LPSN — List of Prokaryotic names with Standing in Nomenclature (bacterio.net), 20 years on. International Journal of Systematic and Evolutionary Microbiology, 68, 1825-1829; \doi{10.1099/ijsem.0.002786} -#' * Parte, A.C. (2014). LPSN — List of Prokaryotic names with Standing in Nomenclature. Nucleic Acids Research, 42, Issue D1, D613–D616; \doi{10.1093/nar/gkt1111} +#' * Parte, A.C. (2018). LPSN - List of Prokaryotic names with Standing in Nomenclature (bacterio.net), 20 years on. International Journal of Systematic and Evolutionary Microbiology, 68, 1825-1829; \doi{10.1099/ijsem.0.002786} +#' * Parte, A.C. (2014). LPSN - List of Prokaryotic names with Standing in Nomenclature. Nucleic Acids Research, 42, Issue D1, D613-D616; \doi{10.1093/nar/gkt1111} #' * Euzeby, J.P. (1997). List of Bacterial Names with Standing in Nomenclature: a Folder Available on the Internet. International Journal of Systematic Bacteriology, 47, 590-592; \doi{10.1099/00207713-47-2-590} #' #' `r SNOMED_VERSION$current_source` as currently implemented in this `AMR` package: @@ -155,7 +155,7 @@ #' - `prevalence`\cr Prevalence of the microorganism, see [as.mo()] #' @source Catalogue of Life: Annual Checklist (public online taxonomic database), (check included annual version with [catalogue_of_life_version()]). #' -#' Parte, A.C. (2018). LPSN — List of Prokaryotic names with Standing in Nomenclature (bacterio.net), 20 years on. International Journal of Systematic and Evolutionary Microbiology, 68, 1825-1829; \doi{10.1099/ijsem.0.002786} +#' Parte, A.C. (2018). LPSN - List of Prokaryotic names with Standing in Nomenclature (bacterio.net), 20 years on. International Journal of Systematic and Evolutionary Microbiology, 68, 1825-1829; \doi{10.1099/ijsem.0.002786} #' @inheritSection AMR Reference Data Publicly Available #' @inheritSection AMR Read more on Our Website! #' @seealso [as.mo()] [mo_property()] [microorganisms] @@ -271,15 +271,13 @@ #' @inheritSection AMR Reference Data Publicly Available #' @inheritSection AMR Read more on Our Website! #' @examples -#' subset(intrinsic_resistant, -#' antibiotic == "Vancomycin" & microorganism %like% "Enterococcus")$microorganism -#' #> [1] "Enterococcus casseliflavus" "Enterococcus gallinarum" -#' #' \donttest{ #' if (require("dplyr")) { #' intrinsic_resistant %>% -#' filter(antibiotic == "Vancomycin" & microorganism %like% "Enterococcus") %>% -#' pull(microorganism) +#' mutate(mo = mo_name(mo), +#' ab = ab_name(mo)) +#' filter(ab == "Vancomycin" & mo %like% "Enterococcus") %>% +#' pull(mo) #' #> [1] "Enterococcus casseliflavus" "Enterococcus gallinarum" #' } #' } diff --git a/R/first_isolate.R b/R/first_isolate.R index d75962a3..91c4116b 100755 --- a/R/first_isolate.R +++ b/R/first_isolate.R @@ -125,7 +125,7 @@ #' #' - **M39 Analysis and Presentation of Cumulative Antimicrobial Susceptibility Test Data, 4th Edition**, 2014, *Clinical and Laboratory Standards Institute (CLSI)*. . #' -#' - Hindler JF and Stelling J (2007). **Analysis and Presentation of Cumulative Antibiograms: A New Consensus Guideline from the Clinical and Laboratory Standards Institute.** Clinical Infectious Diseases, 44(6), 867–873. \doi{10.1086/511864} +#' - Hindler JF and Stelling J (2007). **Analysis and Presentation of Cumulative Antibiograms: A New Consensus Guideline from the Clinical and Laboratory Standards Institute.** Clinical Infectious Diseases, 44(6), 867-873. \doi{10.1086/511864} #' @inheritSection AMR Read more on Our Website! #' @examples #' # `example_isolates` is a data set available in the AMR package. diff --git a/R/mo.R b/R/mo.R index 9db79acb..fe928f2f 100755 --- a/R/mo.R +++ b/R/mo.R @@ -103,10 +103,10 @@ #' @inheritSection catalogue_of_life Catalogue of Life # (source as a section here, so it can be inherited by other man pages:) #' @section Source: -#' 1. Becker K *et al.* **Coagulase-Negative Staphylococci**. 2014. Clin Microbiol Rev. 27(4): 870–926; \doi{10.1128/CMR.00109-13} +#' 1. Becker K *et al.* **Coagulase-Negative Staphylococci**. 2014. Clin Microbiol Rev. 27(4): 870-926; \doi{10.1128/CMR.00109-13} #' 2. Becker K *et al.* **Implications of identifying the recently defined members of the *S. aureus* complex, *S. argenteus* and *S. schweitzeri*: A position paper of members of the ESCMID Study Group for staphylococci and Staphylococcal Diseases (ESGS).** 2019. Clin Microbiol Infect; \doi{10.1016/j.cmi.2019.02.028} #' 3. Becker K *et al.* **Emergence of coagulase-negative staphylococci** 2020. Expert Rev Anti Infect Ther. 18(4):349-366; \doi{10.1080/14787210.2020.1730813} -#' 4. Lancefield RC **A serological differentiation of human and other groups of hemolytic streptococci**. 1933. J Exp Med. 57(4): 571–95; \doi{10.1084/jem.57.4.571} +#' 4. Lancefield RC **A serological differentiation of human and other groups of hemolytic streptococci**. 1933. J Exp Med. 57(4): 571-95; \doi{10.1084/jem.57.4.571} #' 5. `r gsub("{year}", CATALOGUE_OF_LIFE$year, CATALOGUE_OF_LIFE$version, fixed = TRUE)`, #' 6. List of Prokaryotic names with Standing in Nomenclature (`r CATALOGUE_OF_LIFE$yearmonth_LPSN`), \doi{10.1099/ijsem.0.004332} #' 7. `r SNOMED_VERSION$current_source`, retrieved from the `r SNOMED_VERSION$title`, OID `r SNOMED_VERSION$current_oid`, version `r SNOMED_VERSION$current_version`; url: <`r SNOMED_VERSION$url`> @@ -486,8 +486,7 @@ exec_as.mo <- function(x, } # remove spp and species - x <- gsub(" +(spp.?|ssp.?|sp.? |ss ?.?|subsp.?|subspecies|biovar |serovar |species)", " ", x, ignore.case = TRUE, perl = TRUE) - x <- gsub("( spp?.?| ss |subsp.?|subspecies|biovar|serovar|species)", "", x, ignore.case = TRUE, perl = TRUE) + x <- gsub("(^| )[ .]*(spp|ssp|ss|sp|subsp|subspecies|biovar|biotype|serovar|species)[ .]*( |$)", "", x, ignore.case = TRUE, perl = TRUE) x <- strip_whitespace(x, dyslexia_mode) x_backup <- x @@ -614,6 +613,8 @@ exec_as.mo <- function(x, on.exit(close(progress)) } + xx <<- x_backup[!already_known] + for (i in which(!already_known)) { if (initial_search == TRUE) { @@ -754,7 +755,7 @@ exec_as.mo <- function(x, # - EIEC (Entero-Invasive E. coli) # - EPEC (Entero-Pathogenic E. coli) # - ETEC (Entero-Toxigenic E. coli) - # - NMEC (Neonatal Meningitis‐causing E. coli) + # - NMEC (Neonatal Meningitis-causing E. coli) # - STEC (Shiga-toxin producing E. coli) # - UPEC (Uropathogenic E. coli) if (toupper(x_backup_without_spp[i]) %in% c("AIEC", "ATEC", "DAEC", "EAEC", "EHEC", "EIEC", "EPEC", "ETEC", "NMEC", "STEC", "UPEC") diff --git a/data-raw/AMR_latest.tar.gz b/data-raw/AMR_latest.tar.gz index 2de5b061..d60b2a50 100644 Binary files a/data-raw/AMR_latest.tar.gz and b/data-raw/AMR_latest.tar.gz differ diff --git a/data-raw/reproduction_of_rsi_translation.R b/data-raw/reproduction_of_rsi_translation.R index a0802de7..34665730 100644 --- a/data-raw/reproduction_of_rsi_translation.R +++ b/data-raw/reproduction_of_rsi_translation.R @@ -128,6 +128,10 @@ rsi_translation[which(rsi_translation$breakpoint_R == 257), "breakpoint_R"] <- m rsi_translation[which(rsi_translation$breakpoint_R == 513), "breakpoint_R"] <- m[which(m == 512) + 1] rsi_translation[which(rsi_translation$breakpoint_R == 1025), "breakpoint_R"] <- m[which(m == 1024) + 1] +# Greek symbols and EM dash symbols are not allowed by CRAN, so replace them with ASCII: +rsi_translation$disk_dose <- gsub("μ", "u", rsi_translation$disk_dose, fixed = TRUE) +rsi_translation$disk_dose <- gsub("–", "-", rsi_translation$disk_dose, fixed = TRUE) + # save to package usethis::use_data(rsi_translation, overwrite = TRUE) rm(rsi_translation) diff --git a/data-raw/rsi.md5 b/data-raw/rsi.md5 index 2aa0f0c1..e2d6b112 100644 --- a/data-raw/rsi.md5 +++ b/data-raw/rsi.md5 @@ -1 +1 @@ -0ee01887dda2f9f829a0f1f60196cd4e +d8083b68d4e492ea8e87c1eae4da4196 diff --git a/data-raw/rsi_translation.dta b/data-raw/rsi_translation.dta index f481ed57..8cb4c0cf 100644 Binary files a/data-raw/rsi_translation.dta and b/data-raw/rsi_translation.dta differ diff --git a/data-raw/rsi_translation.rds b/data-raw/rsi_translation.rds index 8d94b600..3fc5e284 100644 Binary files a/data-raw/rsi_translation.rds and b/data-raw/rsi_translation.rds differ diff --git a/data-raw/rsi_translation.sas b/data-raw/rsi_translation.sas index 9e90aa06..4a99f14a 100644 Binary files a/data-raw/rsi_translation.sas and b/data-raw/rsi_translation.sas differ diff --git a/data-raw/rsi_translation.sav b/data-raw/rsi_translation.sav index 6b8d1824..c1769665 100644 Binary files a/data-raw/rsi_translation.sav and b/data-raw/rsi_translation.sav differ diff --git a/data-raw/rsi_translation.txt b/data-raw/rsi_translation.txt index 3baacbed..35de5f95 100644 --- a/data-raw/rsi_translation.txt +++ b/data-raw/rsi_translation.txt @@ -11,7 +11,7 @@ "EUCAST 2021" "DISK" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 16 15 TRUE "EUCAST 2021" "MIC" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 8 16 FALSE "EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 32 64 TRUE -"EUCAST 2021" "DISK" "Burkholderia pseudomallei" 2 "Amoxicillin/clavulanic acid" "B. pseudomallei" "20μg/10μg" 50 21 FALSE +"EUCAST 2021" "DISK" "Burkholderia pseudomallei" 2 "Amoxicillin/clavulanic acid" "B. pseudomallei" "20ug/10ug" 50 21 FALSE "EUCAST 2021" "MIC" "Burkholderia pseudomallei" 2 "Amoxicillin/clavulanic acid" "B. pseudomallei" 0.001 16 FALSE "EUCAST 2021" "MIC" "Enterococcus" 3 "Amoxicillin/clavulanic acid" "Enterococcus" 4 16 FALSE "EUCAST 2021" "DISK" "IV" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "H. influenzae" "2-1" 15 14 FALSE @@ -97,9 +97,9 @@ "EUCAST 2021" "MIC" "(unknown name)" 6 "Ceftobiprole" "PK/PD" 4 8 FALSE "EUCAST 2021" "DISK" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" "10" 22 18 FALSE "EUCAST 2021" "MIC" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2021" "DISK" "Aeromonas" 3 "Ceftazidime" "Aeromonas" "10μg" 24 20 FALSE +"EUCAST 2021" "DISK" "Aeromonas" 3 "Ceftazidime" "Aeromonas" "10ug" 24 20 FALSE "EUCAST 2021" "MIC" "Aeromonas" 3 "Ceftazidime" "Aeromonas" 1 8 FALSE -"EUCAST 2021" "DISK" "Burkholderia pseudomallei" 2 "Ceftazidime" "B. pseudomallei" "10μg" 50 17 FALSE +"EUCAST 2021" "DISK" "Burkholderia pseudomallei" 2 "Ceftazidime" "B. pseudomallei" "10ug" 50 17 FALSE "EUCAST 2021" "MIC" "Burkholderia pseudomallei" 2 "Ceftazidime" "B. pseudomallei" 0.001 16 FALSE "EUCAST 2021" "DISK" "Pseudomonas" 3 "Ceftazidime" "Pseudo" "10" 50 16 FALSE "EUCAST 2021" "MIC" "Pseudomonas" 3 "Ceftazidime" "Pseudo" 0.001 16 FALSE @@ -117,7 +117,7 @@ "EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" 16 32 TRUE "EUCAST 2021" "DISK" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" "30" 17 16 FALSE "EUCAST 2021" "MIC" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2021" "DISK" "Burkholderia pseudomallei" 2 "Chloramphenicol" "B. pseudomallei" "30μg" 50 21 FALSE +"EUCAST 2021" "DISK" "Burkholderia pseudomallei" 2 "Chloramphenicol" "B. pseudomallei" "30ug" 50 21 FALSE "EUCAST 2021" "MIC" "Burkholderia pseudomallei" 2 "Chloramphenicol" "B. pseudomallei" 0.001 16 FALSE "EUCAST 2021" "DISK" "Haemophilus" 3 "Chloramphenicol" "H. influenzae" "30" 28 27 FALSE "EUCAST 2021" "MIC" "Haemophilus" 3 "Chloramphenicol" "H. influenzae" 2 4 FALSE @@ -134,13 +134,13 @@ "EUCAST 2021" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." 0.001 2 FALSE "EUCAST 2021" "DISK" "Aerococcus" 3 "Ciprofloxacin" "Aerococcus" 21 20 FALSE "EUCAST 2021" "MIC" "Aerococcus" 3 "Ciprofloxacin" "Aerococcus" 2 4 FALSE -"EUCAST 2021" "DISK" "Aeromonas" 3 "Ciprofloxacin" "Aeromonas" "5μg" 27 23 FALSE +"EUCAST 2021" "DISK" "Aeromonas" 3 "Ciprofloxacin" "Aeromonas" "5ug" 27 23 FALSE "EUCAST 2021" "MIC" "Aeromonas" 3 "Ciprofloxacin" "Aeromonas" 0.25 1 FALSE -"EUCAST 2021" "DISK" "Bacillus" 3 "Ciprofloxacin" "Bacillus sp." "5μg" 50 22 FALSE +"EUCAST 2021" "DISK" "Bacillus" 3 "Ciprofloxacin" "Bacillus sp." "5ug" 50 22 FALSE "EUCAST 2021" "MIC" "Bacillus" 3 "Ciprofloxacin" "Bacillus sp." 0.001 1 FALSE -"EUCAST 2021" "DISK" "Campylobacter coli" 2 "Ciprofloxacin" "C. jejuni, C. coli" "5μg" 50 25 FALSE +"EUCAST 2021" "DISK" "Campylobacter coli" 2 "Ciprofloxacin" "C. jejuni, C. coli" "5ug" 50 25 FALSE "EUCAST 2021" "MIC" "Campylobacter coli" 2 "Ciprofloxacin" "C. jejuni, C. coli" 0.001 1 FALSE -"EUCAST 2021" "DISK" "Campylobacter jejuni jejuni" 1 "Ciprofloxacin" "C. jejuni, C. coli" "5μg" 50 25 FALSE +"EUCAST 2021" "DISK" "Campylobacter jejuni jejuni" 1 "Ciprofloxacin" "C. jejuni, C. coli" "5ug" 50 25 FALSE "EUCAST 2021" "MIC" "Campylobacter jejuni jejuni" 1 "Ciprofloxacin" "C. jejuni, C. coli" 0.001 1 FALSE "EUCAST 2021" "DISK" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." "5" 50 24 FALSE "EUCAST 2021" "MIC" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." 0.001 2 FALSE @@ -164,7 +164,7 @@ "EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Ciprofloxacin" "Staphs" "5" 50 20 FALSE "EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Ciprofloxacin" "Staphs" 0.001 2 FALSE "EUCAST 2021" "MIC" "(unknown name)" 6 "Ciprofloxacin" "PK/PD" 0.25 1 FALSE -"EUCAST 2021" "DISK" "Bacillus" 3 "Clindamycin" "Bacillus sp." "2μg" 17 16 FALSE +"EUCAST 2021" "DISK" "Bacillus" 3 "Clindamycin" "Bacillus sp." "2ug" 17 16 FALSE "EUCAST 2021" "MIC" "Bacillus" 3 "Clindamycin" "Bacillus sp." 1 2 FALSE "EUCAST 2021" "DISK" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." "2" 20 19 FALSE "EUCAST 2021" "MIC" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." 0.5 1 FALSE @@ -292,9 +292,9 @@ "EUCAST 2021" "MIC" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" 1 4 FALSE "EUCAST 2021" "DISK" "Acinetobacter" 3 "Doripenem" "Acinetobacter spp." "10" 50 21 FALSE "EUCAST 2021" "MIC" "Acinetobacter" 3 "Doripenem" "Acinetobacter spp." 0.001 4 FALSE -"EUCAST 2021" "DISK" "Haemophilus" 3 "Doripenem" "H. influenzae" "10μg" 23 22 FALSE +"EUCAST 2021" "DISK" "Haemophilus" 3 "Doripenem" "H. influenzae" "10ug" 23 22 FALSE "EUCAST 2021" "MIC" "Haemophilus" 3 "Doripenem" "H. influenzae" 1 2 FALSE -"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Doripenem" "M. catarrhalis" "10μg" 30 29 FALSE +"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Doripenem" "M. catarrhalis" "10ug" 30 29 FALSE "EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Doripenem" "M. catarrhalis" 1 2 FALSE "EUCAST 2021" "DISK" "UTI" "Pseudomonas" 3 "Doripenem" "Pseudo" "10" 50 21 TRUE "EUCAST 2021" "MIC" "UTI" "Pseudomonas" 3 "Doripenem" "Pseudo" 0.001 4 TRUE @@ -313,17 +313,17 @@ "EUCAST 2021" "MIC" "Enterococcus faecium" 2 "Eravacycline" "Enterococcus" 0.125 0.25 FALSE "EUCAST 2021" "DISK" "Enterococcus faecalis" 2 "Eravacycline" "Enterococcus" "20" 22 21 FALSE "EUCAST 2021" "MIC" "Enterococcus faecalis" 2 "Eravacycline" "Enterococcus" 0.125 0.25 FALSE -"EUCAST 2021" "DISK" "Escherichia coli" 2 "Eravacycline" "Enterobacteriaceae" "20μg" 17 16 FALSE +"EUCAST 2021" "DISK" "Escherichia coli" 2 "Eravacycline" "Enterobacteriaceae" "20ug" 17 16 FALSE "EUCAST 2021" "MIC" "Escherichia coli" 2 "Eravacycline" "Enterobacteriaceae" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Eravacycline" "Staphs" "20μg" 20 19 FALSE +"EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Eravacycline" "Staphs" "20ug" 20 19 FALSE "EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Eravacycline" "Staphs" 0.25 0.5 FALSE -"EUCAST 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Eravacycline" "Viridans strept" "20μg" 17 16 FALSE +"EUCAST 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Eravacycline" "Viridans strept" "20ug" 17 16 FALSE "EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Eravacycline" "Viridans strept" 0.125 0.25 FALSE -"EUCAST 2021" "DISK" "Bacillus" 3 "Erythromycin" "Bacillus sp." "15μg" 24 23 FALSE +"EUCAST 2021" "DISK" "Bacillus" 3 "Erythromycin" "Bacillus sp." "15ug" 24 23 FALSE "EUCAST 2021" "MIC" "Bacillus" 3 "Erythromycin" "Bacillus sp." 0.5 1 FALSE "EUCAST 2021" "DISK" "Campylobacter coli" 2 "Erythromycin" "C. jejuni, C. coli" "15" 24 23 FALSE "EUCAST 2021" "MIC" "Campylobacter coli" 2 "Erythromycin" "C. jejuni, C. coli" 8 16 FALSE -"EUCAST 2021" "DISK" "Campylobacter jejuni jejuni" 1 "Erythromycin" "C. jejuni, C. coli" "15μg" 20 19 FALSE +"EUCAST 2021" "DISK" "Campylobacter jejuni jejuni" 1 "Erythromycin" "C. jejuni, C. coli" "15ug" 20 19 FALSE "EUCAST 2021" "MIC" "Campylobacter jejuni jejuni" 1 "Erythromycin" "C. jejuni, C. coli" 4 8 FALSE "EUCAST 2021" "MIC" "Haemophilus" 3 "Erythromycin" "H. influenzae" 16 32 FALSE "EUCAST 2021" "DISK" "Kingella kingae" 2 "Erythromycin" "Kingella" 20 19 FALSE @@ -353,7 +353,7 @@ "EUCAST 2021" "MIC" "Pseudomonas aeruginosa" 2 "Cefiderocol" "Pseudo" 2 4 FALSE "EUCAST 2021" "DISK" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" "30" 27 23 FALSE "EUCAST 2021" "MIC" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2021" "DISK" "Aeromonas" 3 "Cefepime" "Aeromonas" "30μg" 27 23 FALSE +"EUCAST 2021" "DISK" "Aeromonas" 3 "Cefepime" "Aeromonas" "30ug" 27 23 FALSE "EUCAST 2021" "MIC" "Aeromonas" 3 "Cefepime" "Aeromonas" 1 8 FALSE "EUCAST 2021" "DISK" "Haemophilus" 3 "Cefepime" "H. influenzae" "30" 28 27 FALSE "EUCAST 2021" "MIC" "Haemophilus" 3 "Cefepime" "H. influenzae" 0.25 0.5 FALSE @@ -383,7 +383,7 @@ "EUCAST 2021" "MIC" "Clostridioides difficile" 2 "Fusidic acid" "C. difficile" 2 2048 FALSE "EUCAST 2021" "DISK" "Staphylococcus" 3 "Fusidic acid" "Staphs" "10" 24 23 FALSE "EUCAST 2021" "MIC" "Staphylococcus" 3 "Fusidic acid" "Staphs" 1 2 FALSE -"EUCAST 2021" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30μg" 8 7 FALSE +"EUCAST 2021" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30ug" 8 7 FALSE "EUCAST 2021" "MIC" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" 128 160 FALSE "EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin-high" "Viridans strept" 128 160 FALSE "EUCAST 2021" "DISK" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10" 17 16 FALSE @@ -394,7 +394,7 @@ "EUCAST 2021" "DISK" "UTI" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." "10" 17 16 TRUE "EUCAST 2021" "MIC" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 8 FALSE "EUCAST 2021" "MIC" "UTI" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 8 TRUE -"EUCAST 2021" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30μg" 8 7 FALSE +"EUCAST 2021" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30ug" 8 7 FALSE "EUCAST 2021" "MIC" "Enterococcus" 3 "Gentamicin" "Enterococcus" 128 160 FALSE "EUCAST 2021" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" "10" 22 21 FALSE "EUCAST 2021" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" 1 2 FALSE @@ -413,9 +413,9 @@ "EUCAST 2021" "MIC" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" 2 8 FALSE "EUCAST 2021" "DISK" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." "10" 24 20 FALSE "EUCAST 2021" "MIC" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." 2 8 FALSE -"EUCAST 2021" "DISK" "Bacillus" 3 "Imipenem" "Bacillus sp." "10μg" 30 29 FALSE +"EUCAST 2021" "DISK" "Bacillus" 3 "Imipenem" "Bacillus sp." "10ug" 30 29 FALSE "EUCAST 2021" "MIC" "Bacillus" 3 "Imipenem" "Bacillus sp." 0.5 1 FALSE -"EUCAST 2021" "DISK" "Burkholderia pseudomallei" 2 "Imipenem" "B. pseudomallei" "10μg" 29 28 FALSE +"EUCAST 2021" "DISK" "Burkholderia pseudomallei" 2 "Imipenem" "B. pseudomallei" "10ug" 29 28 FALSE "EUCAST 2021" "MIC" "Burkholderia pseudomallei" 2 "Imipenem" "B. pseudomallei" 2 4 FALSE "EUCAST 2021" "DISK" "Enterococcus" 3 "Imipenem" "Enterococcus" "10" 50 20 FALSE "EUCAST 2021" "MIC" "Enterococcus" 3 "Imipenem" "Enterococcus" 0.001 8 FALSE @@ -452,11 +452,11 @@ "EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Kanamycin" "Staphs" "30" 18 17 FALSE "EUCAST 2021" "DISK" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" "30" 14 13 TRUE "EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" 16 32 TRUE -"EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Lefamulin" "Staphs" "5μg" 23 22 FALSE +"EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Lefamulin" "Staphs" "5ug" 23 22 FALSE "EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Lefamulin" "Staphs" 0.25 0.5 FALSE -"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Lefamulin" "S. pneumoniae" "5μg" 12 11 FALSE +"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Lefamulin" "S. pneumoniae" "5ug" 12 11 FALSE "EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Lefamulin" "S. pneumoniae" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Bacillus" 3 "Linezolid" "Bacillus sp." "10μg" 22 21 FALSE +"EUCAST 2021" "DISK" "Bacillus" 3 "Linezolid" "Bacillus sp." "10ug" 22 21 FALSE "EUCAST 2021" "MIC" "Bacillus" 3 "Linezolid" "Bacillus sp." 2 4 FALSE "EUCAST 2021" "DISK" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." "10" 25 24 FALSE "EUCAST 2021" "MIC" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." 2 4 FALSE @@ -474,9 +474,9 @@ "EUCAST 2021" "DISK" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." "5" 23 19 FALSE "EUCAST 2021" "MIC" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." 0.5 2 FALSE "EUCAST 2021" "MIC" "Aerococcus" 3 "Levofloxacin" "Aerococcus" 2 4 FALSE -"EUCAST 2021" "DISK" "Aeromonas" 3 "Levofloxacin" "Aeromonas" "5μg" 27 23 FALSE +"EUCAST 2021" "DISK" "Aeromonas" 3 "Levofloxacin" "Aeromonas" "5ug" 27 23 FALSE "EUCAST 2021" "MIC" "Aeromonas" 3 "Levofloxacin" "Aeromonas" 0.5 2 FALSE -"EUCAST 2021" "DISK" "Bacillus" 3 "Levofloxacin" "Bacillus sp." "5μg" 50 22 FALSE +"EUCAST 2021" "DISK" "Bacillus" 3 "Levofloxacin" "Bacillus sp." "5ug" 50 22 FALSE "EUCAST 2021" "MIC" "Bacillus" 3 "Levofloxacin" "Bacillus sp." 0.001 2 FALSE "EUCAST 2021" "DISK" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" "5" 15 14 TRUE "EUCAST 2021" "MIC" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" 4 8 TRUE @@ -516,9 +516,9 @@ "EUCAST 2021" "DISK" "Meningitis" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" "10" 22 21 FALSE "EUCAST 2021" "MIC" "Non-meningitis" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" 2 16 FALSE "EUCAST 2021" "MIC" "Meningitis" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" 2 4 FALSE -"EUCAST 2021" "DISK" "Achromobacter denitrificans" 2 "Meropenem" "A. xylosoxidans" "10μg" 26 19 FALSE +"EUCAST 2021" "DISK" "Achromobacter denitrificans" 2 "Meropenem" "A. xylosoxidans" "10ug" 26 19 FALSE "EUCAST 2021" "MIC" "Achromobacter denitrificans" 2 "Meropenem" "A. xylosoxidans" 1 8 FALSE -"EUCAST 2021" "DISK" "Achromobacter xylosoxidans" 2 "Meropenem" "A. xylosoxidans" "10μg" 26 19 FALSE +"EUCAST 2021" "DISK" "Achromobacter xylosoxidans" 2 "Meropenem" "A. xylosoxidans" "10ug" 26 19 FALSE "EUCAST 2021" "MIC" "Achromobacter xylosoxidans" 2 "Meropenem" "A. xylosoxidans" 1 8 FALSE "EUCAST 2021" "DISK" "Non-meningitis" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." "10" 21 14 FALSE "EUCAST 2021" "DISK" "Meningitis" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." "10" 21 20 FALSE @@ -526,9 +526,9 @@ "EUCAST 2021" "MIC" "Meningitis" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." 2 4 FALSE "EUCAST 2021" "DISK" "Aerococcus" 3 "Meropenem" "Aerococcus" 31 30 FALSE "EUCAST 2021" "MIC" "Aerococcus" 3 "Meropenem" "Aerococcus" 0.25 0.5 FALSE -"EUCAST 2021" "DISK" "Bacillus" 3 "Meropenem" "Bacillus sp." "10μg" 25 24 FALSE +"EUCAST 2021" "DISK" "Bacillus" 3 "Meropenem" "Bacillus sp." "10ug" 25 24 FALSE "EUCAST 2021" "MIC" "Bacillus" 3 "Meropenem" "Bacillus sp." 0.25 0.5 FALSE -"EUCAST 2021" "DISK" "Burkholderia pseudomallei" 2 "Meropenem" "B. pseudomallei" "10μg" 24 23 FALSE +"EUCAST 2021" "DISK" "Burkholderia pseudomallei" 2 "Meropenem" "B. pseudomallei" "10ug" 24 23 FALSE "EUCAST 2021" "MIC" "Burkholderia pseudomallei" 2 "Meropenem" "B. pseudomallei" 2 4 FALSE "EUCAST 2021" "DISK" "Non-meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" "10" 20 19 FALSE "EUCAST 2021" "MIC" "Non-meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" 2 4 FALSE @@ -606,7 +606,7 @@ "EUCAST 2021" "DISK" "UTI" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" "10" 22 21 TRUE "EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" 0.5 1 TRUE "EUCAST 2021" "DISK" "Aerococcus" 3 "Norfloxacin" "Aerococcus" 17 16 FALSE -"EUCAST 2021" "DISK" "Screen" "Bacillus" 3 "Norfloxacin" "Bacillus sp." "10μg" 21 20 FALSE +"EUCAST 2021" "DISK" "Screen" "Bacillus" 3 "Norfloxacin" "Bacillus sp." "10ug" 21 20 FALSE "EUCAST 2021" "DISK" "Screen" "Enterococcus" 3 "Norfloxacin" "Enterococcus" "10" 12 11 FALSE "EUCAST 2021" "DISK" "Screen" "Staphylococcus" 3 "Norfloxacin" "Staphs" "10" 17 6 FALSE "EUCAST 2021" "DISK" "Screen" "Streptococcus" 3 "Norfloxacin" "Strep A, B, C, G" "10" 12 6 FALSE @@ -700,51 +700,51 @@ "EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" "M. catarrhalis" 1 2 FALSE "EUCAST 2021" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "PK/PD" 2 16 FALSE "EUCAST 2021" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "N. gonorrhoeae" 64 128 FALSE -"EUCAST 2021" "DISK" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" "300μg" 14 13 FALSE +"EUCAST 2021" "DISK" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" "300ug" 14 13 FALSE "EUCAST 2021" "MIC" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" 512 1024 FALSE -"EUCAST 2021" "DISK" "Enterococcus" 3 "Streptoduocin" "Enterococcus" "300μg" 14 13 FALSE +"EUCAST 2021" "DISK" "Enterococcus" 3 "Streptoduocin" "Enterococcus" "300ug" 14 13 FALSE "EUCAST 2021" "MIC" "Enterococcus" 3 "Streptoduocin" "Enterococcus" 512 1024 FALSE -"EUCAST 2021" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25μg/23.75μg" 14 10 FALSE +"EUCAST 2021" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25ug/23.75ug" 14 10 FALSE "EUCAST 2021" "MIC" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2021" "DISK" "Achromobacter denitrificans" 2 "Trimethoprim/sulfamethoxazole" "A. xylosoxidans" "1.25μg/23.75μg" 26 25 FALSE +"EUCAST 2021" "DISK" "Achromobacter denitrificans" 2 "Trimethoprim/sulfamethoxazole" "A. xylosoxidans" "1.25ug/23.75ug" 26 25 FALSE "EUCAST 2021" "MIC" "Achromobacter denitrificans" 2 "Trimethoprim/sulfamethoxazole" "A. xylosoxidans" 0.125 0.25 FALSE -"EUCAST 2021" "DISK" "Achromobacter xylosoxidans" 2 "Trimethoprim/sulfamethoxazole" "A. xylosoxidans" "1.25μg/23.75μg" 26 25 FALSE +"EUCAST 2021" "DISK" "Achromobacter xylosoxidans" 2 "Trimethoprim/sulfamethoxazole" "A. xylosoxidans" "1.25ug/23.75ug" 26 25 FALSE "EUCAST 2021" "MIC" "Achromobacter xylosoxidans" 2 "Trimethoprim/sulfamethoxazole" "A. xylosoxidans" 0.125 0.25 FALSE -"EUCAST 2021" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25μg/23.75μg" 14 10 FALSE +"EUCAST 2021" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25ug/23.75ug" 14 10 FALSE "EUCAST 2021" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 8 FALSE -"EUCAST 2021" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "Aeromonas" "1.25μg/23.75μg" 19 15 FALSE +"EUCAST 2021" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "Aeromonas" "1.25ug/23.75ug" 19 15 FALSE "EUCAST 2021" "MIC" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "Aeromonas" 2 8 FALSE -"EUCAST 2021" "DISK" "Burkholderia pseudomallei" 2 "Trimethoprim/sulfamethoxazole" "B. pseudomallei" "1.25μg/23.75μg" 50 16 FALSE +"EUCAST 2021" "DISK" "Burkholderia pseudomallei" 2 "Trimethoprim/sulfamethoxazole" "B. pseudomallei" "1.25ug/23.75ug" 50 16 FALSE "EUCAST 2021" "MIC" "Burkholderia pseudomallei" 2 "Trimethoprim/sulfamethoxazole" "B. pseudomallei" 0.001 8 FALSE -"EUCAST 2021" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25μg/23.75μg" 50 20 FALSE +"EUCAST 2021" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25ug/23.75ug" 50 20 FALSE "EUCAST 2021" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 2 FALSE -"EUCAST 2021" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" "1.25μg/23.75μg" 23 19 FALSE +"EUCAST 2021" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" "1.25ug/23.75ug" 23 19 FALSE "EUCAST 2021" "MIC" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" 0.5 2 FALSE "EUCAST 2021" "DISK" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 28 27 FALSE "EUCAST 2021" "MIC" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 0.25 0.5 FALSE -"EUCAST 2021" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "L. monocytogenes" "1.25μg/23.75μg" 29 28 FALSE +"EUCAST 2021" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "L. monocytogenes" "1.25ug/23.75ug" 29 28 FALSE "EUCAST 2021" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "L. monocytogenes" 0.064 0.12 FALSE -"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" 0.5 2 FALSE -"EUCAST 2021" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25μg/23.75μg" 23 22 FALSE +"EUCAST 2021" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25ug/23.75ug" 23 22 FALSE "EUCAST 2021" "MIC" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.5 FALSE -"EUCAST 2021" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25μg/23.75μg" 50 15 FALSE +"EUCAST 2021" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25ug/23.75ug" 50 15 FALSE "EUCAST 2021" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 0.001 8 FALSE -"EUCAST 2021" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25μg/23.75μg" 17 13 FALSE +"EUCAST 2021" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25ug/23.75ug" 17 13 FALSE "EUCAST 2021" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" 2 8 FALSE -"EUCAST 2021" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2021" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2021" "MIC" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "S. pneumoniae" "1.25μg/23.75μg" 13 9 FALSE +"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "S. pneumoniae" "1.25ug/23.75ug" 13 9 FALSE "EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "S. pneumoniae" 1 4 FALSE "EUCAST 2021" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" "75-10" 23 19 FALSE "EUCAST 2021" "MIC" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 32 FALSE "EUCAST 2021" "DISK" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" "75-10" 50 17 FALSE "EUCAST 2021" "MIC" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" 0.001 32 FALSE "EUCAST 2021" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "PK/PD" 8 32 FALSE -"EUCAST 2021" "DISK" "Screen" "Burkholderia pseudomallei" 2 "Tetracycline" "B. pseudomallei" "30μg" 50 22 FALSE -"EUCAST 2021" "DISK" "Campylobacter coli" 2 "Tetracycline" "C. jejuni, C. coli" "30μg" 30 29 FALSE +"EUCAST 2021" "DISK" "Screen" "Burkholderia pseudomallei" 2 "Tetracycline" "B. pseudomallei" "30ug" 50 22 FALSE +"EUCAST 2021" "DISK" "Campylobacter coli" 2 "Tetracycline" "C. jejuni, C. coli" "30ug" 30 29 FALSE "EUCAST 2021" "MIC" "Campylobacter coli" 2 "Tetracycline" "C. jejuni, C. coli" 2 4 FALSE -"EUCAST 2021" "DISK" "Campylobacter jejuni jejuni" 1 "Tetracycline" "C. jejuni, C. coli" "30μg" 30 29 FALSE +"EUCAST 2021" "DISK" "Campylobacter jejuni jejuni" 1 "Tetracycline" "C. jejuni, C. coli" "30ug" 30 29 FALSE "EUCAST 2021" "MIC" "Campylobacter jejuni jejuni" 1 "Tetracycline" "C. jejuni, C. coli" 2 4 FALSE "EUCAST 2021" "DISK" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." "30" 24 23 FALSE "EUCAST 2021" "MIC" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." 2 4 FALSE @@ -847,15 +847,15 @@ "EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Tobramycin" "Staphs" "10" 18 17 FALSE "EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Tobramycin" "Staphs" 1 2 FALSE "EUCAST 2021" "MIC" "(unknown name)" 6 "Tobramycin" "PK/PD" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Staphylococcus" 3 "Tedizolid" "Staphs" "2μg" 21 20 FALSE +"EUCAST 2021" "DISK" "Staphylococcus" 3 "Tedizolid" "Staphs" "2ug" 21 20 FALSE "EUCAST 2021" "MIC" "Staphylococcus" 3 "Tedizolid" "Staphs" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Streptococcus" 3 "Tedizolid" "Strep A, B, C, G" "2μg" 18 17 FALSE +"EUCAST 2021" "DISK" "Streptococcus" 3 "Tedizolid" "Strep A, B, C, G" "2ug" 18 17 FALSE "EUCAST 2021" "MIC" "Streptococcus" 3 "Tedizolid" "Strep A, B, C, G" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Streptococcus anginosus" 2 "Tedizolid" "Viridans strept" "2μg" 18 17 FALSE +"EUCAST 2021" "DISK" "Streptococcus anginosus" 2 "Tedizolid" "Viridans strept" "2ug" 18 17 FALSE "EUCAST 2021" "MIC" "Streptococcus anginosus" 2 "Tedizolid" "Viridans strept" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Streptococcus constellatus" 2 "Tedizolid" "Viridans strept" "2μg" 18 17 FALSE +"EUCAST 2021" "DISK" "Streptococcus constellatus" 2 "Tedizolid" "Viridans strept" "2ug" 18 17 FALSE "EUCAST 2021" "MIC" "Streptococcus constellatus" 2 "Tedizolid" "Viridans strept" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Streptococcus intermedius" 2 "Tedizolid" "Viridans strept" "2μg" 18 17 FALSE +"EUCAST 2021" "DISK" "Streptococcus intermedius" 2 "Tedizolid" "Viridans strept" "2ug" 18 17 FALSE "EUCAST 2021" "MIC" "Streptococcus intermedius" 2 "Tedizolid" "Viridans strept" 0.5 1 FALSE "EUCAST 2021" "DISK" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" "30-6" 20 19 FALSE "EUCAST 2021" "MIC" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" 8 16 FALSE @@ -870,7 +870,7 @@ "EUCAST 2021" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "PK/PD" 4 32 FALSE "EUCAST 2021" "DISK" "Aerococcus" 3 "Vancomycin" "Aerococcus" 16 15 FALSE "EUCAST 2021" "MIC" "Aerococcus" 3 "Vancomycin" "Aerococcus" 1 2 FALSE -"EUCAST 2021" "DISK" "Bacillus" 3 "Vancomycin" "Bacillus sp." "5μg" 10 9 FALSE +"EUCAST 2021" "DISK" "Bacillus" 3 "Vancomycin" "Bacillus sp." "5ug" 10 9 FALSE "EUCAST 2021" "MIC" "Bacillus" 3 "Vancomycin" "Bacillus sp." 2 4 FALSE "EUCAST 2021" "MIC" "Clostridioides difficile" 2 "Vancomycin" "C. difficile" 2 4 FALSE "EUCAST 2021" "DISK" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." "5" 17 16 FALSE @@ -902,7 +902,7 @@ "EUCAST 2020" "DISK" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 16 15 TRUE "EUCAST 2020" "MIC" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 8 16 FALSE "EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 32 64 TRUE -"EUCAST 2020" "DISK" "Burkholderia pseudomallei" 2 "Amoxicillin/clavulanic acid" "B. pseudomallei" "20μg/10μg" 50 21 FALSE +"EUCAST 2020" "DISK" "Burkholderia pseudomallei" 2 "Amoxicillin/clavulanic acid" "B. pseudomallei" "20ug/10ug" 50 21 FALSE "EUCAST 2020" "MIC" "Burkholderia pseudomallei" 2 "Amoxicillin/clavulanic acid" "B. pseudomallei" 0.001 16 FALSE "EUCAST 2020" "MIC" "Enterococcus" 3 "Amoxicillin/clavulanic acid" "Enterococcus" 4 16 FALSE "EUCAST 2020" "DISK" "IV" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "H. influenzae" "2-1" 15 14 FALSE @@ -986,9 +986,9 @@ "EUCAST 2020" "MIC" "(unknown name)" 6 "Ceftobiprole" "PK/PD" 4 8 FALSE "EUCAST 2020" "DISK" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" "10" 22 18 FALSE "EUCAST 2020" "MIC" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2020" "DISK" "Aeromonas" 3 "Ceftazidime" "Aeromonas" "10μg" 24 20 FALSE +"EUCAST 2020" "DISK" "Aeromonas" 3 "Ceftazidime" "Aeromonas" "10ug" 24 20 FALSE "EUCAST 2020" "MIC" "Aeromonas" 3 "Ceftazidime" "Aeromonas" 1 8 FALSE -"EUCAST 2020" "DISK" "Burkholderia pseudomallei" 2 "Ceftazidime" "B. pseudomallei" "10μg" 50 17 FALSE +"EUCAST 2020" "DISK" "Burkholderia pseudomallei" 2 "Ceftazidime" "B. pseudomallei" "10ug" 50 17 FALSE "EUCAST 2020" "MIC" "Burkholderia pseudomallei" 2 "Ceftazidime" "B. pseudomallei" 0.001 16 FALSE "EUCAST 2020" "DISK" "Pseudomonas" 3 "Ceftazidime" "Pseudo" "10" 50 16 FALSE "EUCAST 2020" "MIC" "Pseudomonas" 3 "Ceftazidime" "Pseudo" 0.001 16 FALSE @@ -1006,7 +1006,7 @@ "EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" 16 32 TRUE "EUCAST 2020" "DISK" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" "30" 17 16 FALSE "EUCAST 2020" "MIC" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2020" "DISK" "Burkholderia pseudomallei" 2 "Chloramphenicol" "B. pseudomallei" "30μg" 50 21 FALSE +"EUCAST 2020" "DISK" "Burkholderia pseudomallei" 2 "Chloramphenicol" "B. pseudomallei" "30ug" 50 21 FALSE "EUCAST 2020" "MIC" "Burkholderia pseudomallei" 2 "Chloramphenicol" "B. pseudomallei" 0.001 16 FALSE "EUCAST 2020" "DISK" "Haemophilus" 3 "Chloramphenicol" "H. influenzae" "30" 28 27 FALSE "EUCAST 2020" "MIC" "Haemophilus" 3 "Chloramphenicol" "H. influenzae" 2 4 FALSE @@ -1025,13 +1025,13 @@ "EUCAST 2020" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." 0.001 2 FALSE "EUCAST 2020" "DISK" "Aerococcus" 3 "Ciprofloxacin" "Aerococcus" 21 20 FALSE "EUCAST 2020" "MIC" "Aerococcus" 3 "Ciprofloxacin" "Aerococcus" 2 4 FALSE -"EUCAST 2020" "DISK" "Aeromonas" 3 "Ciprofloxacin" "Aeromonas" "5μg" 27 23 FALSE +"EUCAST 2020" "DISK" "Aeromonas" 3 "Ciprofloxacin" "Aeromonas" "5ug" 27 23 FALSE "EUCAST 2020" "MIC" "Aeromonas" 3 "Ciprofloxacin" "Aeromonas" 0.25 1 FALSE "EUCAST 2020" "DISK" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" "5" 26 25 FALSE "EUCAST 2020" "MIC" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" 0.5 1 FALSE -"EUCAST 2020" "DISK" "Campylobacter coli" 2 "Ciprofloxacin" "Campylobacter jejuni and coli" "5μg" 26 25 FALSE +"EUCAST 2020" "DISK" "Campylobacter coli" 2 "Ciprofloxacin" "Campylobacter jejuni and coli" "5ug" 26 25 FALSE "EUCAST 2020" "MIC" "Campylobacter coli" 2 "Ciprofloxacin" "Campylobacter jejuni and coli" 0.5 1 FALSE -"EUCAST 2020" "DISK" "Campylobacter jejuni jejuni" 1 "Ciprofloxacin" "Campylobacter jejuni and coli" "5μg" 26 25 FALSE +"EUCAST 2020" "DISK" "Campylobacter jejuni jejuni" 1 "Ciprofloxacin" "Campylobacter jejuni and coli" "5ug" 26 25 FALSE "EUCAST 2020" "MIC" "Campylobacter jejuni jejuni" 1 "Ciprofloxacin" "Campylobacter jejuni and coli" 0.5 1 FALSE "EUCAST 2020" "DISK" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." "5" 25 24 FALSE "EUCAST 2020" "MIC" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." 1 2 FALSE @@ -1183,16 +1183,16 @@ "EUCAST 2020" "MIC" "Enterococcus faecium" 2 "Eravacycline" "Enterococcus" 0.125 0.25 FALSE "EUCAST 2020" "DISK" "Enterococcus faecalis" 2 "Eravacycline" "Enterococcus" "20" 22 21 FALSE "EUCAST 2020" "MIC" "Enterococcus faecalis" 2 "Eravacycline" "Enterococcus" 0.125 0.25 FALSE -"EUCAST 2020" "DISK" "Escherichia coli" 2 "Eravacycline" "Enterobacteriaceae" "20μg" 17 16 FALSE +"EUCAST 2020" "DISK" "Escherichia coli" 2 "Eravacycline" "Enterobacteriaceae" "20ug" 17 16 FALSE "EUCAST 2020" "MIC" "Escherichia coli" 2 "Eravacycline" "Enterobacteriaceae" 0.5 1 FALSE -"EUCAST 2020" "DISK" "Staphylococcus aureus aureus" 1 "Eravacycline" "Staphs" "20μg" 20 19 FALSE +"EUCAST 2020" "DISK" "Staphylococcus aureus aureus" 1 "Eravacycline" "Staphs" "20ug" 20 19 FALSE "EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Eravacycline" "Staphs" 0.25 0.5 FALSE "EUCAST 2020" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Eravacycline" "Staphs" 0.25 0.5 FALSE -"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Eravacycline" "Viridans strept" "20μg" 17 16 FALSE +"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Eravacycline" "Viridans strept" "20ug" 17 16 FALSE "EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Eravacycline" "Viridans strept" 0.125 0.25 FALSE "EUCAST 2020" "DISK" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" "15" 24 23 FALSE "EUCAST 2020" "MIC" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" 8 16 FALSE -"EUCAST 2020" "DISK" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" "15μg" 20 19 FALSE +"EUCAST 2020" "DISK" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" "15ug" 20 19 FALSE "EUCAST 2020" "MIC" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" 4 8 FALSE "EUCAST 2020" "MIC" "Haemophilus" 3 "Erythromycin" "H. influenzae" 16 32 FALSE "EUCAST 2020" "DISK" "Kingella kingae" 2 "Erythromycin" "Kingella" 20 19 FALSE @@ -1218,7 +1218,7 @@ "EUCAST 2020" "MIC" "(unknown name)" 6 "Ertapenem" "PK/PD" 0.5 2 FALSE "EUCAST 2020" "DISK" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" "30" 27 23 FALSE "EUCAST 2020" "MIC" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2020" "DISK" "Aeromonas" 3 "Cefepime" "Aeromonas" "30μg" 27 23 FALSE +"EUCAST 2020" "DISK" "Aeromonas" 3 "Cefepime" "Aeromonas" "30ug" 27 23 FALSE "EUCAST 2020" "MIC" "Aeromonas" 3 "Cefepime" "Aeromonas" 1 8 FALSE "EUCAST 2020" "DISK" "Haemophilus" 3 "Cefepime" "H. influenzae" "30" 28 27 FALSE "EUCAST 2020" "MIC" "Haemophilus" 3 "Cefepime" "H. influenzae" 0.25 0.5 FALSE @@ -1251,7 +1251,7 @@ "EUCAST 2020" "MIC" "Clostridioides difficile" 2 "Fusidic acid" "C. difficile" 2 2048 FALSE "EUCAST 2020" "DISK" "Staphylococcus" 3 "Fusidic acid" "Staphs" "10" 24 23 FALSE "EUCAST 2020" "MIC" "Staphylococcus" 3 "Fusidic acid" "Staphs" 1 2 FALSE -"EUCAST 2020" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30μg" 8 7 FALSE +"EUCAST 2020" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30ug" 8 7 FALSE "EUCAST 2020" "MIC" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" 128 160 FALSE "EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin-high" "Viridans strept" 128 160 FALSE "EUCAST 2020" "DISK" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10" 17 16 FALSE @@ -1262,7 +1262,7 @@ "EUCAST 2020" "DISK" "UTI" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." "10" 17 16 TRUE "EUCAST 2020" "MIC" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 8 FALSE "EUCAST 2020" "MIC" "UTI" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 8 TRUE -"EUCAST 2020" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30μg" 8 7 FALSE +"EUCAST 2020" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30ug" 8 7 FALSE "EUCAST 2020" "MIC" "Enterococcus" 3 "Gentamicin" "Enterococcus" 128 160 FALSE "EUCAST 2020" "DISK" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" "10" 18 17 FALSE "EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" 1 2 FALSE @@ -1279,7 +1279,7 @@ "EUCAST 2020" "MIC" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" 2 8 FALSE "EUCAST 2020" "DISK" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." "10" 24 20 FALSE "EUCAST 2020" "MIC" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." 2 8 FALSE -"EUCAST 2020" "DISK" "Burkholderia pseudomallei" 2 "Imipenem" "B. pseudomallei" "10μg" 29 28 FALSE +"EUCAST 2020" "DISK" "Burkholderia pseudomallei" 2 "Imipenem" "B. pseudomallei" "10ug" 29 28 FALSE "EUCAST 2020" "MIC" "Burkholderia pseudomallei" 2 "Imipenem" "B. pseudomallei" 2 4 FALSE "EUCAST 2020" "DISK" "Enterococcus" 3 "Imipenem" "Enterococcus" "10" 50 20 FALSE "EUCAST 2020" "MIC" "Enterococcus" 3 "Imipenem" "Enterococcus" 0.001 8 FALSE @@ -1330,7 +1330,7 @@ "EUCAST 2020" "DISK" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." "5" 23 19 FALSE "EUCAST 2020" "MIC" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." 0.5 2 FALSE "EUCAST 2020" "MIC" "Aerococcus" 3 "Levofloxacin" "Aerococcus" 2 4 FALSE -"EUCAST 2020" "DISK" "Aeromonas" 3 "Levofloxacin" "Aeromonas" "5μg" 27 23 FALSE +"EUCAST 2020" "DISK" "Aeromonas" 3 "Levofloxacin" "Aeromonas" "5ug" 27 23 FALSE "EUCAST 2020" "MIC" "Aeromonas" 3 "Levofloxacin" "Aeromonas" 0.5 2 FALSE "EUCAST 2020" "DISK" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" "5" 15 14 TRUE "EUCAST 2020" "MIC" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" 4 8 TRUE @@ -1362,7 +1362,7 @@ "EUCAST 2020" "MIC" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." 2 16 FALSE "EUCAST 2020" "DISK" "Aerococcus" 3 "Meropenem" "Aerococcus" 31 30 FALSE "EUCAST 2020" "MIC" "Aerococcus" 3 "Meropenem" "Aerococcus" 0.25 0.5 FALSE -"EUCAST 2020" "DISK" "Burkholderia pseudomallei" 2 "Meropenem" "B. pseudomallei" "10μg" 24 23 FALSE +"EUCAST 2020" "DISK" "Burkholderia pseudomallei" 2 "Meropenem" "B. pseudomallei" "10ug" 24 23 FALSE "EUCAST 2020" "MIC" "Burkholderia pseudomallei" 2 "Meropenem" "B. pseudomallei" 2 4 FALSE "EUCAST 2020" "DISK" "Non-meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" "10" 20 19 FALSE "EUCAST 2020" "MIC" "Non-meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" 2 4 FALSE @@ -1535,49 +1535,49 @@ "EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" "M. catarrhalis" 1 2 FALSE "EUCAST 2020" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "PK/PD" 2 16 FALSE "EUCAST 2020" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "N. gonorrhoeae" 64 128 FALSE -"EUCAST 2020" "DISK" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" "300μg" 14 13 FALSE +"EUCAST 2020" "DISK" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" "300ug" 14 13 FALSE "EUCAST 2020" "MIC" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" 512 1024 FALSE -"EUCAST 2020" "DISK" "Enterococcus" 3 "Streptoduocin" "Enterococcus" "300μg" 14 13 FALSE +"EUCAST 2020" "DISK" "Enterococcus" 3 "Streptoduocin" "Enterococcus" "300ug" 14 13 FALSE "EUCAST 2020" "MIC" "Enterococcus" 3 "Streptoduocin" "Enterococcus" 512 1024 FALSE -"EUCAST 2020" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25μg/23.75μg" 14 10 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25ug/23.75ug" 14 10 FALSE "EUCAST 2020" "MIC" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2020" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25μg/23.75μg" 14 10 FALSE +"EUCAST 2020" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25ug/23.75ug" 14 10 FALSE "EUCAST 2020" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 8 FALSE -"EUCAST 2020" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "Aeromonas" "1.25μg/23.75μg" 19 15 FALSE +"EUCAST 2020" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "Aeromonas" "1.25ug/23.75ug" 19 15 FALSE "EUCAST 2020" "MIC" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "Aeromonas" 2 8 FALSE -"EUCAST 2020" "DISK" "Burkholderia pseudomallei" 2 "Trimethoprim/sulfamethoxazole" "B. pseudomallei" "1.25μg/23.75μg" 50 16 FALSE +"EUCAST 2020" "DISK" "Burkholderia pseudomallei" 2 "Trimethoprim/sulfamethoxazole" "B. pseudomallei" "1.25ug/23.75ug" 50 16 FALSE "EUCAST 2020" "MIC" "Burkholderia pseudomallei" 2 "Trimethoprim/sulfamethoxazole" "B. pseudomallei" 0.001 8 FALSE -"EUCAST 2020" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25μg/23.75μg" 50 20 FALSE +"EUCAST 2020" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25ug/23.75ug" 50 20 FALSE "EUCAST 2020" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 2 FALSE -"EUCAST 2020" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" "1.25μg/23.75μg" 23 19 FALSE +"EUCAST 2020" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" "1.25ug/23.75ug" 23 19 FALSE "EUCAST 2020" "MIC" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" 0.5 2 FALSE "EUCAST 2020" "DISK" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 28 27 FALSE "EUCAST 2020" "MIC" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 0.25 0.5 FALSE -"EUCAST 2020" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" "1.25μg/23.75μg" 29 28 FALSE +"EUCAST 2020" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" "1.25ug/23.75ug" 29 28 FALSE "EUCAST 2020" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" 0.064 0.12 FALSE -"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" 0.5 2 FALSE -"EUCAST 2020" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25μg/23.75μg" 23 22 FALSE +"EUCAST 2020" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25ug/23.75ug" 23 22 FALSE "EUCAST 2020" "MIC" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.5 FALSE -"EUCAST 2020" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25μg/23.75μg" 50 15 FALSE +"EUCAST 2020" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25ug/23.75ug" 50 15 FALSE "EUCAST 2020" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 0.001 8 FALSE -"EUCAST 2020" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25μg/23.75μg" 17 13 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25ug/23.75ug" 17 13 FALSE "EUCAST 2020" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" 2 8 FALSE -"EUCAST 2020" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2020" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2020" "MIC" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25μg/23.75μg" 13 9 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25ug/23.75ug" 13 9 FALSE "EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" 1 4 FALSE "EUCAST 2020" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" "75-10" 23 19 FALSE "EUCAST 2020" "MIC" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 32 FALSE "EUCAST 2020" "DISK" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" "75-10" 50 17 FALSE "EUCAST 2020" "MIC" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" 0.001 32 FALSE "EUCAST 2020" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "PK/PD" 8 32 FALSE -"EUCAST 2020" "DISK" "Screen" "Burkholderia pseudomallei" 2 "Tetracycline" "B. pseudomallei" "30μg" 50 22 FALSE +"EUCAST 2020" "DISK" "Screen" "Burkholderia pseudomallei" 2 "Tetracycline" "B. pseudomallei" "30ug" 50 22 FALSE "EUCAST 2020" "DISK" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" "30" 30 29 FALSE "EUCAST 2020" "MIC" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" 2 4 FALSE -"EUCAST 2020" "DISK" "Campylobacter coli" 2 "Tetracycline" "Campylobacter jejuni and coli" "30μg" 30 29 FALSE +"EUCAST 2020" "DISK" "Campylobacter coli" 2 "Tetracycline" "Campylobacter jejuni and coli" "30ug" 30 29 FALSE "EUCAST 2020" "MIC" "Campylobacter coli" 2 "Tetracycline" "Campylobacter jejuni and coli" 2 4 FALSE -"EUCAST 2020" "DISK" "Campylobacter jejuni jejuni" 1 "Tetracycline" "Campylobacter jejuni and coli" "30μg" 30 29 FALSE +"EUCAST 2020" "DISK" "Campylobacter jejuni jejuni" 1 "Tetracycline" "Campylobacter jejuni and coli" "30ug" 30 29 FALSE "EUCAST 2020" "MIC" "Campylobacter jejuni jejuni" 1 "Tetracycline" "Campylobacter jejuni and coli" 2 4 FALSE "EUCAST 2020" "DISK" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." "30" 24 23 FALSE "EUCAST 2020" "MIC" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." 2 4 FALSE @@ -1660,15 +1660,15 @@ "EUCAST 2020" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" "10" 22 21 FALSE "EUCAST 2020" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" 1 2 FALSE "EUCAST 2020" "MIC" "(unknown name)" 6 "Tobramycin" "PK/PD" 0.5 1 FALSE -"EUCAST 2020" "DISK" "Staphylococcus" 3 "Tedizolid" "Staphs" "2μg" 21 20 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" 3 "Tedizolid" "Staphs" "2ug" 21 20 FALSE "EUCAST 2020" "MIC" "Staphylococcus" 3 "Tedizolid" "Staphs" 0.5 1 FALSE -"EUCAST 2020" "DISK" "Streptococcus" 3 "Tedizolid" "Strep A, B, C, G" "2μg" 18 17 FALSE +"EUCAST 2020" "DISK" "Streptococcus" 3 "Tedizolid" "Strep A, B, C, G" "2ug" 18 17 FALSE "EUCAST 2020" "MIC" "Streptococcus" 3 "Tedizolid" "Strep A, B, C, G" 0.5 1 FALSE -"EUCAST 2020" "DISK" "Streptococcus anginosus" 2 "Tedizolid" "Viridans strept" "2μg" 18 17 FALSE +"EUCAST 2020" "DISK" "Streptococcus anginosus" 2 "Tedizolid" "Viridans strept" "2ug" 18 17 FALSE "EUCAST 2020" "MIC" "Streptococcus anginosus" 2 "Tedizolid" "Viridans strept" 0.25 0.5 FALSE -"EUCAST 2020" "DISK" "Streptococcus constellatus" 2 "Tedizolid" "Viridans strept" "2μg" 18 17 FALSE +"EUCAST 2020" "DISK" "Streptococcus constellatus" 2 "Tedizolid" "Viridans strept" "2ug" 18 17 FALSE "EUCAST 2020" "MIC" "Streptococcus constellatus" 2 "Tedizolid" "Viridans strept" 0.25 0.5 FALSE -"EUCAST 2020" "DISK" "Streptococcus intermedius" 2 "Tedizolid" "Viridans strept" "2μg" 18 17 FALSE +"EUCAST 2020" "DISK" "Streptococcus intermedius" 2 "Tedizolid" "Viridans strept" "2ug" 18 17 FALSE "EUCAST 2020" "MIC" "Streptococcus intermedius" 2 "Tedizolid" "Viridans strept" 0.25 0.5 FALSE "EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Tedizolid" "Viridans strept" 0.25 0.5 FALSE "EUCAST 2020" "DISK" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" "30-6" 20 16 FALSE @@ -1782,7 +1782,7 @@ "EUCAST 2019" "MIC" "(unknown name)" 6 "Ceftobiprole" "PK/PD" 4 8 FALSE "EUCAST 2019" "DISK" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" "10" 22 18 FALSE "EUCAST 2019" "MIC" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2019" "DISK" "Aeromonas" 3 "Ceftazidime" "Aeromonas" "10μg" 24 20 FALSE +"EUCAST 2019" "DISK" "Aeromonas" 3 "Ceftazidime" "Aeromonas" "10ug" 24 20 FALSE "EUCAST 2019" "MIC" "Aeromonas" 3 "Ceftazidime" "Aeromonas" 1 8 FALSE "EUCAST 2019" "DISK" "Pseudomonas" 3 "Ceftazidime" "Pseudo" "10" 17 16 FALSE "EUCAST 2019" "MIC" "Pseudomonas" 3 "Ceftazidime" "Pseudo" 8 16 FALSE @@ -1817,7 +1817,7 @@ "EUCAST 2019" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." 0.064 2 FALSE "EUCAST 2019" "DISK" "Aerococcus" 3 "Ciprofloxacin" "Aerococcus" 21 20 FALSE "EUCAST 2019" "MIC" "Aerococcus" 3 "Ciprofloxacin" "Aerococcus" 2 4 FALSE -"EUCAST 2019" "DISK" "Aeromonas" 3 "Ciprofloxacin" "Aeromonas" "5μg" 27 23 FALSE +"EUCAST 2019" "DISK" "Aeromonas" 3 "Ciprofloxacin" "Aeromonas" "5ug" 27 23 FALSE "EUCAST 2019" "MIC" "Aeromonas" 3 "Ciprofloxacin" "Aeromonas" 0.25 1 FALSE "EUCAST 2019" "DISK" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" "5" 26 25 FALSE "EUCAST 2019" "MIC" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" 0.5 1 FALSE @@ -1989,7 +1989,7 @@ "EUCAST 2019" "MIC" "(unknown name)" 6 "Ertapenem" "PK/PD" 0.5 2 FALSE "EUCAST 2019" "DISK" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" "30" 27 23 FALSE "EUCAST 2019" "MIC" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2019" "DISK" "Aeromonas" 3 "Cefepime" "Aeromonas" "30μg" 27 23 FALSE +"EUCAST 2019" "DISK" "Aeromonas" 3 "Cefepime" "Aeromonas" "30ug" 27 23 FALSE "EUCAST 2019" "MIC" "Aeromonas" 3 "Cefepime" "Aeromonas" 1 8 FALSE "EUCAST 2019" "DISK" "Haemophilus" 3 "Cefepime" "H. influenzae" "30" 28 27 FALSE "EUCAST 2019" "MIC" "Haemophilus" 3 "Cefepime" "H. influenzae" 0.25 0.5 FALSE @@ -2022,7 +2022,7 @@ "EUCAST 2019" "MIC" "Clostridioides difficile" 2 "Fusidic acid" "C. difficile" 2 2048 FALSE "EUCAST 2019" "DISK" "Staphylococcus" 3 "Fusidic acid" "Staphs" "10" 24 23 FALSE "EUCAST 2019" "MIC" "Staphylococcus" 3 "Fusidic acid" "Staphs" 1 2 FALSE -"EUCAST 2019" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30μg" 8 7 FALSE +"EUCAST 2019" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30ug" 8 7 FALSE "EUCAST 2019" "MIC" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" 128 160 FALSE "EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin-high" "Viridans strept" 128 160 FALSE "EUCAST 2019" "DISK" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10" 17 13 FALSE @@ -2031,7 +2031,7 @@ "EUCAST 2019" "MIC" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 8 FALSE "EUCAST 2019" "DISK" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." "10" 23 22 FALSE "EUCAST 2019" "MIC" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." 1 2 FALSE -"EUCAST 2019" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30μg" 8 7 FALSE +"EUCAST 2019" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30ug" 8 7 FALSE "EUCAST 2019" "MIC" "Enterococcus" 3 "Gentamicin" "Enterococcus" 128 160 FALSE "EUCAST 2019" "DISK" "Pseudomonas" 3 "Gentamicin" "Pseudo" "10" 15 14 FALSE "EUCAST 2019" "MIC" "Pseudomonas" 3 "Gentamicin" "Pseudo" 4 8 FALSE @@ -2094,7 +2094,7 @@ "EUCAST 2019" "DISK" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." "5" 23 19 FALSE "EUCAST 2019" "MIC" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." 0.5 2 FALSE "EUCAST 2019" "MIC" "Aerococcus" 3 "Levofloxacin" "Aerococcus" 2 4 FALSE -"EUCAST 2019" "DISK" "Aeromonas" 3 "Levofloxacin" "Aeromonas" "5μg" 27 23 FALSE +"EUCAST 2019" "DISK" "Aeromonas" 3 "Levofloxacin" "Aeromonas" "5ug" 27 23 FALSE "EUCAST 2019" "MIC" "Aeromonas" 3 "Levofloxacin" "Aeromonas" 0.5 2 FALSE "EUCAST 2019" "DISK" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" "5" 15 14 TRUE "EUCAST 2019" "MIC" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" 4 8 TRUE @@ -2303,35 +2303,35 @@ "EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" "M. catarrhalis" 1 2 FALSE "EUCAST 2019" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "PK/PD" 2 16 FALSE "EUCAST 2019" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "N. gonorrhoeae" 64 128 FALSE -"EUCAST 2019" "DISK" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" "300μg" 14 13 FALSE +"EUCAST 2019" "DISK" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" "300ug" 14 13 FALSE "EUCAST 2019" "MIC" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" 512 1024 FALSE -"EUCAST 2019" "DISK" "Enterococcus" 3 "Streptoduocin" "Enterococcus" "300μg" 14 13 FALSE +"EUCAST 2019" "DISK" "Enterococcus" 3 "Streptoduocin" "Enterococcus" "300ug" 14 13 FALSE "EUCAST 2019" "MIC" "Enterococcus" 3 "Streptoduocin" "Enterococcus" 512 1024 FALSE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25μg/23.75μg" 14 10 FALSE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25ug/23.75ug" 14 10 FALSE "EUCAST 2019" "MIC" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2019" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25μg/23.75μg" 14 10 FALSE +"EUCAST 2019" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25ug/23.75ug" 14 10 FALSE "EUCAST 2019" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 8 FALSE -"EUCAST 2019" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "Aeromonas" "1.25μg/23.75μg" 19 15 FALSE +"EUCAST 2019" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "Aeromonas" "1.25ug/23.75ug" 19 15 FALSE "EUCAST 2019" "MIC" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "Aeromonas" 2 8 FALSE -"EUCAST 2019" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25μg/23.75μg" 50 20 FALSE +"EUCAST 2019" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25ug/23.75ug" 50 20 FALSE "EUCAST 2019" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 2 FALSE -"EUCAST 2019" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" "1.25μg/23.75μg" 23 19 FALSE +"EUCAST 2019" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" "1.25ug/23.75ug" 23 19 FALSE "EUCAST 2019" "MIC" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" 0.5 2 FALSE "EUCAST 2019" "DISK" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 28 27 FALSE "EUCAST 2019" "MIC" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 0.25 0.5 FALSE -"EUCAST 2019" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" "1.25μg/23.75μg" 29 28 FALSE +"EUCAST 2019" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" "1.25ug/23.75ug" 29 28 FALSE "EUCAST 2019" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" 0.064 0.12 FALSE -"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" 0.5 2 FALSE -"EUCAST 2019" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25μg/23.75μg" 23 22 FALSE +"EUCAST 2019" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25ug/23.75ug" 23 22 FALSE "EUCAST 2019" "MIC" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.5 FALSE -"EUCAST 2019" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25μg/23.75μg" 16 15 FALSE +"EUCAST 2019" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25ug/23.75ug" 16 15 FALSE "EUCAST 2019" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 4 8 FALSE -"EUCAST 2019" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25μg/23.75μg" 17 13 FALSE +"EUCAST 2019" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25ug/23.75ug" 17 13 FALSE "EUCAST 2019" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" 2 8 FALSE -"EUCAST 2019" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2019" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2019" "MIC" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25μg/23.75μg" 13 9 FALSE +"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25ug/23.75ug" 13 9 FALSE "EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" 1 4 FALSE "EUCAST 2019" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" "75-10" 23 19 FALSE "EUCAST 2019" "MIC" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 32 FALSE @@ -2521,7 +2521,7 @@ "EUCAST 2018" "MIC" "(unknown name)" 6 "Ceftobiprole" "PK/PD" 4 8 FALSE "EUCAST 2018" "DISK" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" "10" 22 18 FALSE "EUCAST 2018" "MIC" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2018" "DISK" "Aeromonas" 3 "Ceftazidime" "Aeromonas" "10μg" 24 20 FALSE +"EUCAST 2018" "DISK" "Aeromonas" 3 "Ceftazidime" "Aeromonas" "10ug" 24 20 FALSE "EUCAST 2018" "MIC" "Aeromonas" 3 "Ceftazidime" "Aeromonas" 1 8 FALSE "EUCAST 2018" "DISK" "Pseudomonas" 3 "Ceftazidime" "Pseudo" "10" 17 16 FALSE "EUCAST 2018" "MIC" "Pseudomonas" 3 "Ceftazidime" "Pseudo" 8 16 FALSE @@ -2556,7 +2556,7 @@ "EUCAST 2018" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." 1 2 FALSE "EUCAST 2018" "DISK" "Aerococcus" 3 "Ciprofloxacin" "Aerococcus" 21 20 FALSE "EUCAST 2018" "MIC" "Aerococcus" 3 "Ciprofloxacin" "Aerococcus" 2 4 FALSE -"EUCAST 2018" "DISK" "Aeromonas" 3 "Ciprofloxacin" "Aeromonas" "5μg" 27 23 FALSE +"EUCAST 2018" "DISK" "Aeromonas" 3 "Ciprofloxacin" "Aeromonas" "5ug" 27 23 FALSE "EUCAST 2018" "MIC" "Aeromonas" 3 "Ciprofloxacin" "Aeromonas" 0.25 1 FALSE "EUCAST 2018" "DISK" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" "5" 26 25 FALSE "EUCAST 2018" "MIC" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" 0.5 1 FALSE @@ -2736,7 +2736,7 @@ "EUCAST 2018" "MIC" "(unknown name)" 6 "Ertapenem" "PK/PD" 0.5 2 FALSE "EUCAST 2018" "DISK" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" "30" 27 23 FALSE "EUCAST 2018" "MIC" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2018" "DISK" "Aeromonas" 3 "Cefepime" "Aeromonas" "30μg" 27 23 FALSE +"EUCAST 2018" "DISK" "Aeromonas" 3 "Cefepime" "Aeromonas" "30ug" 27 23 FALSE "EUCAST 2018" "MIC" "Aeromonas" 3 "Cefepime" "Aeromonas" 1 8 FALSE "EUCAST 2018" "MIC" "Haemophilus" 3 "Cefepime" "H. influenzae" 0.25 0.5 FALSE "EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Cefepime" "H. influenzae" "30" 28 27 FALSE @@ -2768,7 +2768,7 @@ "EUCAST 2018" "MIC" "Clostridioides difficile" 2 "Fusidic acid" "C. difficile" 2 2048 FALSE "EUCAST 2018" "DISK" "Staphylococcus" 3 "Fusidic acid" "Staphs" "10" 24 23 FALSE "EUCAST 2018" "MIC" "Staphylococcus" 3 "Fusidic acid" "Staphs" 1 2 FALSE -"EUCAST 2018" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30μg" 8 7 FALSE +"EUCAST 2018" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30ug" 8 7 FALSE "EUCAST 2018" "MIC" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" 128 160 FALSE "EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin-high" "Viridans strept" 128 160 FALSE "EUCAST 2018" "DISK" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10" 17 13 FALSE @@ -2777,7 +2777,7 @@ "EUCAST 2018" "MIC" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 8 FALSE "EUCAST 2018" "DISK" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." "10" 23 22 FALSE "EUCAST 2018" "MIC" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." 1 2 FALSE -"EUCAST 2018" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30μg" 8 7 FALSE +"EUCAST 2018" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30ug" 8 7 FALSE "EUCAST 2018" "MIC" "Enterococcus" 3 "Gentamicin" "Enterococcus" 128 160 FALSE "EUCAST 2018" "DISK" "Pseudomonas" 3 "Gentamicin" "Pseudo" "10" 15 14 FALSE "EUCAST 2018" "MIC" "Pseudomonas" 3 "Gentamicin" "Pseudo" 4 8 FALSE @@ -2826,7 +2826,7 @@ "EUCAST 2018" "DISK" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." "5" 23 19 FALSE "EUCAST 2018" "MIC" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." 0.5 2 FALSE "EUCAST 2018" "MIC" "Aerococcus" 3 "Levofloxacin" "Aerococcus" 2 4 FALSE -"EUCAST 2018" "DISK" "Aeromonas" 3 "Levofloxacin" "Aeromonas" "5μg" 27 23 FALSE +"EUCAST 2018" "DISK" "Aeromonas" 3 "Levofloxacin" "Aeromonas" "5ug" 27 23 FALSE "EUCAST 2018" "MIC" "Aeromonas" 3 "Levofloxacin" "Aeromonas" 0.5 2 FALSE "EUCAST 2018" "DISK" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" "5" 15 14 TRUE "EUCAST 2018" "MIC" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" 4 8 TRUE @@ -3031,35 +3031,35 @@ "EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" "M. catarrhalis" 1 2 FALSE "EUCAST 2018" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "PK/PD" 2 16 FALSE "EUCAST 2018" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "N. gonorrhoeae" 64 128 FALSE -"EUCAST 2018" "DISK" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" "300μg" 14 13 FALSE +"EUCAST 2018" "DISK" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" "300ug" 14 13 FALSE "EUCAST 2018" "MIC" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" 512 1024 FALSE -"EUCAST 2018" "DISK" "Enterococcus" 3 "Streptoduocin" "Enterococcus" "300μg" 14 13 FALSE +"EUCAST 2018" "DISK" "Enterococcus" 3 "Streptoduocin" "Enterococcus" "300ug" 14 13 FALSE "EUCAST 2018" "MIC" "Enterococcus" 3 "Streptoduocin" "Enterococcus" 512 1024 FALSE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25μg/23.75μg" 14 10 FALSE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25ug/23.75ug" 14 10 FALSE "EUCAST 2018" "MIC" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2018" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25μg/23.75μg" 14 10 FALSE +"EUCAST 2018" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25ug/23.75ug" 14 10 FALSE "EUCAST 2018" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 8 FALSE -"EUCAST 2018" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "Aeromonas" "1.25μg/23.75μg" 19 15 FALSE +"EUCAST 2018" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "Aeromonas" "1.25ug/23.75ug" 19 15 FALSE "EUCAST 2018" "MIC" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "Aeromonas" 2 8 FALSE -"EUCAST 2018" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25μg/23.75μg" 50 20 FALSE +"EUCAST 2018" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25ug/23.75ug" 50 20 FALSE "EUCAST 2018" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 2 FALSE "EUCAST 2018" "MIC" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" 0.5 2 FALSE -"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H. influenzae" "1.25μg/23.75μg" 23 19 FALSE +"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H. influenzae" "1.25ug/23.75ug" 23 19 FALSE "EUCAST 2018" "DISK" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 28 27 FALSE "EUCAST 2018" "MIC" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 0.25 0.5 FALSE -"EUCAST 2018" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" "1.25μg/23.75μg" 29 28 FALSE +"EUCAST 2018" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" "1.25ug/23.75ug" 29 28 FALSE "EUCAST 2018" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" 0.064 0.12 FALSE -"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" 0.5 2 FALSE -"EUCAST 2018" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25μg/23.75μg" 23 22 FALSE +"EUCAST 2018" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25ug/23.75ug" 23 22 FALSE "EUCAST 2018" "MIC" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.5 FALSE -"EUCAST 2018" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25μg/23.75μg" 16 15 FALSE +"EUCAST 2018" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25ug/23.75ug" 16 15 FALSE "EUCAST 2018" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 4 8 FALSE -"EUCAST 2018" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25μg/23.75μg" 17 13 FALSE +"EUCAST 2018" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25ug/23.75ug" 17 13 FALSE "EUCAST 2018" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" 2 8 FALSE -"EUCAST 2018" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2018" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2018" "MIC" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" 1 4 FALSE "EUCAST 2018" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" "75-10" 23 19 FALSE "EUCAST 2018" "MIC" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 32 FALSE @@ -3485,7 +3485,7 @@ "EUCAST 2017" "MIC" "Clostridioides difficile" 2 "Fusidic acid" "C. difficile" 2 2048 FALSE "EUCAST 2017" "DISK" "Staphylococcus" 3 "Fusidic acid" "Staphs" "10" 24 23 FALSE "EUCAST 2017" "MIC" "Staphylococcus" 3 "Fusidic acid" "Staphs" 1 2 FALSE -"EUCAST 2017" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30μg" 8 7 FALSE +"EUCAST 2017" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30ug" 8 7 FALSE "EUCAST 2017" "MIC" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" 128 160 FALSE "EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin-high" "Viridans strept" 128 160 FALSE "EUCAST 2017" "DISK" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10" 17 13 FALSE @@ -3494,7 +3494,7 @@ "EUCAST 2017" "MIC" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 8 FALSE "EUCAST 2017" "DISK" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." "10" 23 22 FALSE "EUCAST 2017" "MIC" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." 1 2 FALSE -"EUCAST 2017" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30μg" 8 7 FALSE +"EUCAST 2017" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30ug" 8 7 FALSE "EUCAST 2017" "MIC" "Enterococcus" 3 "Gentamicin" "Enterococcus" 128 160 FALSE "EUCAST 2017" "DISK" "Pseudomonas" 3 "Gentamicin" "Pseudo" "10" 15 14 FALSE "EUCAST 2017" "MIC" "Pseudomonas" 3 "Gentamicin" "Pseudo" 4 8 FALSE @@ -3747,33 +3747,33 @@ "EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" "M. catarrhalis" 1 2 FALSE "EUCAST 2017" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "PK/PD" 2 16 FALSE "EUCAST 2017" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "N. gonorrhoeae" 64 128 FALSE -"EUCAST 2017" "DISK" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" "300μg" 14 13 FALSE +"EUCAST 2017" "DISK" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" "300ug" 14 13 FALSE "EUCAST 2017" "MIC" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" 512 1024 FALSE -"EUCAST 2017" "DISK" "Enterococcus" 3 "Streptoduocin" "Enterococcus" "300μg" 14 13 FALSE +"EUCAST 2017" "DISK" "Enterococcus" 3 "Streptoduocin" "Enterococcus" "300ug" 14 13 FALSE "EUCAST 2017" "MIC" "Enterococcus" 3 "Streptoduocin" "Enterococcus" 512 1024 FALSE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25μg/23.75μg" 14 10 FALSE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25ug/23.75ug" 14 10 FALSE "EUCAST 2017" "MIC" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2017" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25μg/23.75μg" 14 10 FALSE +"EUCAST 2017" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25ug/23.75ug" 14 10 FALSE "EUCAST 2017" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 8 FALSE -"EUCAST 2017" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25μg/23.75μg" 50 20 FALSE +"EUCAST 2017" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25ug/23.75ug" 50 20 FALSE "EUCAST 2017" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 2 FALSE "EUCAST 2017" "MIC" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" 0.5 2 FALSE -"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H. influenzae" "1.25μg/23.75μg" 23 19 FALSE +"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H. influenzae" "1.25ug/23.75ug" 23 19 FALSE "EUCAST 2017" "DISK" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 28 27 FALSE "EUCAST 2017" "MIC" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 0.25 0.5 FALSE -"EUCAST 2017" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" "1.25μg/23.75μg" 29 28 FALSE +"EUCAST 2017" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" "1.25ug/23.75ug" 29 28 FALSE "EUCAST 2017" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" 0.064 0.12 FALSE -"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" 0.5 2 FALSE -"EUCAST 2017" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25μg/23.75μg" 23 22 FALSE +"EUCAST 2017" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25ug/23.75ug" 23 22 FALSE "EUCAST 2017" "MIC" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.5 FALSE -"EUCAST 2017" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25μg/23.75μg" 16 15 FALSE +"EUCAST 2017" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25ug/23.75ug" 16 15 FALSE "EUCAST 2017" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 4 8 FALSE -"EUCAST 2017" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25μg/23.75μg" 17 13 FALSE +"EUCAST 2017" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25ug/23.75ug" 17 13 FALSE "EUCAST 2017" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" 2 8 FALSE -"EUCAST 2017" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2017" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2017" "MIC" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" 1 4 FALSE "EUCAST 2017" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" "75-10" 23 22 FALSE "EUCAST 2017" "MIC" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 32 FALSE @@ -4170,7 +4170,7 @@ "EUCAST 2016" "MIC" "Clostridioides difficile" 2 "Fusidic acid" "C. difficile" 2 2048 FALSE "EUCAST 2016" "DISK" "Staphylococcus" 3 "Fusidic acid" "Staphs" "10" 24 23 FALSE "EUCAST 2016" "MIC" "Staphylococcus" 3 "Fusidic acid" "Staphs" 1 2 FALSE -"EUCAST 2016" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30μg" 8 7 FALSE +"EUCAST 2016" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30ug" 8 7 FALSE "EUCAST 2016" "MIC" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" 128 160 FALSE "EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin-high" "Viridans strept" 128 160 FALSE "EUCAST 2016" "DISK" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10" 17 13 FALSE @@ -4179,7 +4179,7 @@ "EUCAST 2016" "MIC" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 8 FALSE "EUCAST 2016" "DISK" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." "10" 23 22 FALSE "EUCAST 2016" "MIC" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." 1 2 FALSE -"EUCAST 2016" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30μg" 8 7 FALSE +"EUCAST 2016" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30ug" 8 7 FALSE "EUCAST 2016" "MIC" "Enterococcus" 3 "Gentamicin" "Enterococcus" 128 160 FALSE "EUCAST 2016" "DISK" "Pseudomonas" 3 "Gentamicin" "Pseudo" "10" 15 14 FALSE "EUCAST 2016" "MIC" "Pseudomonas" 3 "Gentamicin" "Pseudo" 4 8 FALSE @@ -4404,31 +4404,31 @@ "EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" "M. catarrhalis" 1 2 FALSE "EUCAST 2016" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "PK/PD" 2 16 FALSE "EUCAST 2016" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "N. gonorrhoeae" 64 128 FALSE -"EUCAST 2016" "DISK" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" "300μg" 14 13 FALSE +"EUCAST 2016" "DISK" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" "300ug" 14 13 FALSE "EUCAST 2016" "MIC" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" 512 1024 FALSE -"EUCAST 2016" "DISK" "Enterococcus" 3 "Streptoduocin" "Enterococcus" "300μg" 14 13 FALSE +"EUCAST 2016" "DISK" "Enterococcus" 3 "Streptoduocin" "Enterococcus" "300ug" 14 13 FALSE "EUCAST 2016" "MIC" "Enterococcus" 3 "Streptoduocin" "Enterococcus" 512 1024 FALSE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25μg/23.75μg" 16 12 FALSE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25ug/23.75ug" 16 12 FALSE "EUCAST 2016" "MIC" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2016" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25μg/23.75μg" 16 12 FALSE +"EUCAST 2016" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25ug/23.75ug" 16 12 FALSE "EUCAST 2016" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 8 FALSE -"EUCAST 2016" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25μg/23.75μg" 50 20 FALSE +"EUCAST 2016" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25ug/23.75ug" 50 20 FALSE "EUCAST 2016" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 2 FALSE "EUCAST 2016" "MIC" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" 0.5 2 FALSE -"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H. influenzae" "1.25μg/23.75μg" 23 19 FALSE -"EUCAST 2016" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" "1.25μg/23.75μg" 29 28 FALSE +"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H. influenzae" "1.25ug/23.75ug" 23 19 FALSE +"EUCAST 2016" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" "1.25ug/23.75ug" 29 28 FALSE "EUCAST 2016" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" 0.064 0.12 FALSE -"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" 0.5 2 FALSE -"EUCAST 2016" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25μg/23.75μg" 23 22 FALSE +"EUCAST 2016" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25ug/23.75ug" 23 22 FALSE "EUCAST 2016" "MIC" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.5 FALSE -"EUCAST 2016" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25μg/23.75μg" 16 15 FALSE +"EUCAST 2016" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25ug/23.75ug" 16 15 FALSE "EUCAST 2016" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 4 8 FALSE -"EUCAST 2016" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25μg/23.75μg" 17 13 FALSE +"EUCAST 2016" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25ug/23.75ug" 17 13 FALSE "EUCAST 2016" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" 2 8 FALSE -"EUCAST 2016" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2016" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2016" "MIC" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" 1 4 FALSE "EUCAST 2016" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" "75-10" 23 22 FALSE "EUCAST 2016" "MIC" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 32 FALSE @@ -4810,7 +4810,7 @@ "EUCAST 2015" "MIC" "Clostridioides difficile" 2 "Fusidic acid" "C. difficile" 2 2048 FALSE "EUCAST 2015" "DISK" "Staphylococcus" 3 "Fusidic acid" "Staphs" "10" 24 23 FALSE "EUCAST 2015" "MIC" "Staphylococcus" 3 "Fusidic acid" "Staphs" 1 2 FALSE -"EUCAST 2015" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30μg" 8 7 FALSE +"EUCAST 2015" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30ug" 8 7 FALSE "EUCAST 2015" "MIC" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" 128 160 FALSE "EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin-high" "Viridans strept" 128 160 FALSE "EUCAST 2015" "DISK" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10" 17 13 FALSE @@ -4819,7 +4819,7 @@ "EUCAST 2015" "MIC" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 8 FALSE "EUCAST 2015" "DISK" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." "10" 23 22 FALSE "EUCAST 2015" "MIC" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." 1 2 FALSE -"EUCAST 2015" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30μg" 8 7 FALSE +"EUCAST 2015" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30ug" 8 7 FALSE "EUCAST 2015" "MIC" "Enterococcus" 3 "Gentamicin" "Enterococcus" 128 160 FALSE "EUCAST 2015" "DISK" "Pseudomonas" 3 "Gentamicin" "Pseudo" "10" 15 14 FALSE "EUCAST 2015" "MIC" "Pseudomonas" 3 "Gentamicin" "Pseudo" 4 8 FALSE @@ -5038,27 +5038,27 @@ "EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" "M. cattharalis" 1 2 FALSE "EUCAST 2015" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "PK/PD" 2 16 FALSE "EUCAST 2015" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "N. gonorrhoeae" 64 128 FALSE -"EUCAST 2015" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25μg/23.75μg" 16 12 FALSE +"EUCAST 2015" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25ug/23.75ug" 16 12 FALSE "EUCAST 2015" "MIC" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2015" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25μg/23.75μg" 16 12 FALSE +"EUCAST 2015" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25ug/23.75ug" 16 12 FALSE "EUCAST 2015" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 8 FALSE -"EUCAST 2015" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25μg/23.75μg" 50 20 FALSE +"EUCAST 2015" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25ug/23.75ug" 50 20 FALSE "EUCAST 2015" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 2 FALSE -"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H. influenaza" "1.25μg/23.75μg" 23 19 FALSE +"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H. influenaza" "1.25ug/23.75ug" 23 19 FALSE "EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H. influenaza" 0.5 2 FALSE -"EUCAST 2015" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" "1.25μg/23.75μg" 29 28 FALSE +"EUCAST 2015" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" "1.25ug/23.75ug" 29 28 FALSE "EUCAST 2015" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" 0.064 0.12 FALSE -"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. cattharalis" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. cattharalis" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. cattharalis" 0.5 2 FALSE -"EUCAST 2015" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25μg/23.75μg" 23 22 FALSE +"EUCAST 2015" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25ug/23.75ug" 23 22 FALSE "EUCAST 2015" "MIC" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.5 FALSE -"EUCAST 2015" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25μg/23.75μg" 16 15 FALSE +"EUCAST 2015" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25ug/23.75ug" 16 15 FALSE "EUCAST 2015" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 4 8 FALSE -"EUCAST 2015" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25μg/23.75μg" 17 13 FALSE +"EUCAST 2015" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25ug/23.75ug" 17 13 FALSE "EUCAST 2015" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" 2 8 FALSE -"EUCAST 2015" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2015" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2015" "MIC" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" 1 4 FALSE "EUCAST 2015" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" "75-10" 23 22 FALSE "EUCAST 2015" "MIC" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 32 FALSE @@ -5436,7 +5436,7 @@ "EUCAST 2014" "MIC" "Clostridioides difficile" 2 "Fusidic acid" "C. difficile" 2 2048 FALSE "EUCAST 2014" "DISK" "Staphylococcus" 3 "Fusidic acid" "Staphs" "10" 24 23 FALSE "EUCAST 2014" "MIC" "Staphylococcus" 3 "Fusidic acid" "Staphs" 1 2 FALSE -"EUCAST 2014" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30μg" 8 7 FALSE +"EUCAST 2014" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30ug" 8 7 FALSE "EUCAST 2014" "MIC" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" 128 160 FALSE "EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin-high" "Viridans strept" 128 160 FALSE "EUCAST 2014" "DISK" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10" 17 13 FALSE @@ -5445,7 +5445,7 @@ "EUCAST 2014" "MIC" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 8 FALSE "EUCAST 2014" "DISK" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." "10" 23 22 FALSE "EUCAST 2014" "MIC" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." 1 2 FALSE -"EUCAST 2014" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30μg" 8 7 FALSE +"EUCAST 2014" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30ug" 8 7 FALSE "EUCAST 2014" "MIC" "Enterococcus" 3 "Gentamicin" "Enterococcus" 128 160 FALSE "EUCAST 2014" "DISK" "Pseudomonas" 3 "Gentamicin" "Pseudo" "10" 15 14 FALSE "EUCAST 2014" "MIC" "Pseudomonas" 3 "Gentamicin" "Pseudo" 4 8 FALSE @@ -5661,27 +5661,27 @@ "EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" "M. cattharalis" 1 2 FALSE "EUCAST 2014" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "PK/PD" 2 16 FALSE "EUCAST 2014" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "N. gonorrhoeae" 64 128 FALSE -"EUCAST 2014" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25μg/23.75μg" 16 12 FALSE +"EUCAST 2014" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25ug/23.75ug" 16 12 FALSE "EUCAST 2014" "MIC" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2014" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25μg/23.75μg" 16 12 FALSE +"EUCAST 2014" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25ug/23.75ug" 16 12 FALSE "EUCAST 2014" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 8 FALSE -"EUCAST 2014" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25μg/23.75μg" 50 20 FALSE +"EUCAST 2014" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25ug/23.75ug" 50 20 FALSE "EUCAST 2014" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 2 FALSE -"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H. influenaza" "1.25μg/23.75μg" 23 19 FALSE +"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H. influenaza" "1.25ug/23.75ug" 23 19 FALSE "EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H. influenaza" 0.5 2 FALSE -"EUCAST 2014" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" "1.25μg/23.75μg" 29 28 FALSE +"EUCAST 2014" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" "1.25ug/23.75ug" 29 28 FALSE "EUCAST 2014" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" 0.064 0.12 FALSE -"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. cattharalis" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. cattharalis" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. cattharalis" 0.5 2 FALSE -"EUCAST 2014" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25μg/23.75μg" 23 22 FALSE +"EUCAST 2014" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25ug/23.75ug" 23 22 FALSE "EUCAST 2014" "MIC" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.5 FALSE -"EUCAST 2014" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25μg/23.75μg" 16 15 FALSE +"EUCAST 2014" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25ug/23.75ug" 16 15 FALSE "EUCAST 2014" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 4 8 FALSE -"EUCAST 2014" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25μg/23.75μg" 17 13 FALSE +"EUCAST 2014" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25ug/23.75ug" 17 13 FALSE "EUCAST 2014" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" 2 8 FALSE -"EUCAST 2014" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2014" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2014" "MIC" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" 1 4 FALSE "EUCAST 2014" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" "75-10" 23 22 FALSE "EUCAST 2014" "MIC" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 32 FALSE @@ -5787,41 +5787,41 @@ "EUCAST 2013" "MIC" "Candida parapsilosis" 2 "Amphotericin B" "Candida" 1 2 FALSE "EUCAST 2013" "MIC" "Candida tropicalis" 2 "Amphotericin B" "Candida" 1 2 FALSE "EUCAST 2013" "MIC" "Pichia" 3 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20/10μg" 17 16 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20/10ug" 17 16 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 8 16 FALSE "EUCAST 2013" "MIC" "Enterococcus" 3 "Amoxicillin/clavulanic acid" "Enterococcus" 4 16 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" "H.influenzae" "2/1μg" 15 14 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" "H.influenzae" "2/1ug" 15 14 FALSE "EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" "H.influenzae" 2 4 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M.catarrhalis" "2/1μg" 19 18 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M.catarrhalis" "2/1ug" 19 18 FALSE "EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M.catarrhalis" 1 2 FALSE -"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella" "2/1μg" 15 14 FALSE +"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella" "2/1ug" 15 14 FALSE "EUCAST 2013" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella" 1 2 FALSE "EUCAST 2013" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" 2 16 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" "30μg" 16 12 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" "30ug" 16 12 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2013" "DISK" "Acinetobacter" 3 "Amikacin" "Acinetob" "30μg" 18 14 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" 3 "Amikacin" "Acinetob" "30ug" 18 14 FALSE "EUCAST 2013" "MIC" "Acinetobacter" 3 "Amikacin" "Acinetob" 8 32 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Amikacin" "Pseud" "30μg" 18 14 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Amikacin" "Pseud" "30ug" 18 14 FALSE "EUCAST 2013" "MIC" "Pseudomonas" 3 "Amikacin" "Pseud" 8 32 FALSE -"EUCAST 2013" "DISK" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" "30μg" 18 15 FALSE +"EUCAST 2013" "DISK" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" "30ug" 18 15 FALSE "EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" 8 32 FALSE -"EUCAST 2013" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" "30μg" 22 18 FALSE +"EUCAST 2013" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" "30ug" 22 18 FALSE "EUCAST 2013" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" 8 32 FALSE "EUCAST 2013" "MIC" "(unknown name)" 6 "Amikacin" 8 32 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" "10μg" 14 13 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" "10ug" 14 13 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2013" "DISK" "Enterococcus" 3 "Ampicillin" "Enterococcus" "2μg" 10 7 FALSE +"EUCAST 2013" "DISK" "Enterococcus" 3 "Ampicillin" "Enterococcus" "2ug" 10 7 FALSE "EUCAST 2013" "MIC" "Enterococcus" 3 "Ampicillin" "Enterococcus" 4 16 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Ampicillin" "H.influenzae" "2μg" 16 15 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Ampicillin" "H.influenzae" "2ug" 16 15 FALSE "EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Ampicillin" "H.influenzae" 1 2 FALSE -"EUCAST 2013" "DISK" "Listeria monocytogenes" 2 "Ampicillin" "Listeria" "2μg" 16 15 FALSE +"EUCAST 2013" "DISK" "Listeria monocytogenes" 2 "Ampicillin" "Listeria" "2ug" 16 15 FALSE "EUCAST 2013" "MIC" "Listeria monocytogenes" 2 "Ampicillin" "Listeria" 1 2 FALSE "EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Ampicillin" "N.meningitidis" 0.125 2 FALSE -"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Ampicillin" "Pasteurella" "2μg" 17 16 FALSE +"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Ampicillin" "Pasteurella" "2ug" 17 16 FALSE "EUCAST 2013" "MIC" "Pasteurella multocida multocida" 1 "Ampicillin" "Pasteurella" 1 2 FALSE -"EUCAST 2013" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Ampicillin" "Staphs" "2μg" 15 14 FALSE +"EUCAST 2013" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Ampicillin" "Staphs" "2ug" 15 14 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Ampicillin" "Pneumo" 0.5 4 FALSE -"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" "2μg" 21 14 FALSE +"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" "2ug" 21 14 FALSE "EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" 0.5 4 FALSE "EUCAST 2013" "MIC" "(unknown name)" 6 "Ampicillin" 2 16 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Amoxicillin" "Enterobacteriaceae" 8 16 FALSE @@ -5837,9 +5837,9 @@ "EUCAST 2013" "MIC" "Candida krusei" 2 "Anidulafungin" "Candida" 0.064 0.12 FALSE "EUCAST 2013" "MIC" "Candida tropicalis" 2 "Anidulafungin" "Candida" 0.064 0.12 FALSE "EUCAST 2013" "MIC" "Pichia" 3 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" "30μg" 24 20 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" "30ug" 24 20 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Aztreonam" "Pseud" "30μg" 50 15 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Aztreonam" "Pseud" "30ug" 50 15 FALSE "EUCAST 2013" "MIC" "Pseudomonas" 3 "Aztreonam" "Pseud" 1 32 FALSE "EUCAST 2013" "MIC" "(unknown name)" 6 "Aztreonam" 4 16 FALSE "EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Azithromycin" "H.influenzae" 0.125 8 FALSE @@ -5848,65 +5848,65 @@ "EUCAST 2013" "MIC" "Staphylococcus" 3 "Azithromycin" "Staphs" 1 4 FALSE "EUCAST 2013" "MIC" "Streptococcus" 3 "Azithromycin" "Strept A,B,C,G" 0.25 1 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" "10μg" 22 18 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" "10ug" 22 18 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Ceftazidime" "Pseud" "10μg" 16 15 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Ceftazidime" "Pseud" "10ug" 16 15 FALSE "EUCAST 2013" "MIC" "Pseudomonas" 3 "Ceftazidime" "Pseud" 8 16 FALSE "EUCAST 2013" "MIC" "(unknown name)" 6 "Ceftazidime" 4 16 FALSE "EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Cefaclor" "H.influenzae" 0.5 1 FALSE "EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Cefaclor" "M.catarrhalis" 0.125 0.25 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" "30μg" 50 27 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" "30ug" 50 27 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" 0.032 1 FALSE -"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" "5μg" 17 16 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" "5ug" 17 16 TRUE "EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Cefixime" "H.influenzae" "5μg" 25 24 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Cefixime" "H.influenzae" "5ug" 25 24 FALSE "EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Cefixime" "H.influenzae" 0.125 0.25 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Cefixime" "M.catarrhalis" "5μg" 21 17 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Cefixime" "M.catarrhalis" "5ug" 21 17 FALSE "EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Cefixime" "M.catarrhalis" 0.5 2 FALSE "EUCAST 2013" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" "N.gonorrhoeae" 0.125 0.25 FALSE -"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" "30μg" 12 11 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" "30ug" 12 11 TRUE "EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" 16 32 TRUE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" "30μg" 17 16 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" "30ug" 17 16 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Chloramphenicol" "H.influenzae" "30μg" 28 27 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Chloramphenicol" "H.influenzae" "30ug" 28 27 FALSE "EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Chloramphenicol" "H.influenzae" 2 4 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Chloramphenicol" "M.catarrhalis" "30μg" 30 29 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Chloramphenicol" "M.catarrhalis" "30ug" 30 29 FALSE "EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" "M.catarrhalis" 2 4 FALSE "EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Chloramphenicol" "N.meningitidis" 2 8 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Staphs" "30μg" 18 17 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Staphs" "30ug" 18 17 FALSE "EUCAST 2013" "MIC" "Staphylococcus" 3 "Chloramphenicol" "Staphs" 8 16 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Chloramphenicol" "Strept A,B,C,G" "30μg" 19 18 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Chloramphenicol" "Strept A,B,C,G" "30ug" 19 18 FALSE "EUCAST 2013" "MIC" "Streptococcus" 3 "Chloramphenicol" "Strept A,B,C,G" 8 16 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" "30μg" 21 20 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" "30ug" 21 20 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" 8 16 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" "5μg" 22 18 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" "5ug" 22 18 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Acinetob" "5μg" 21 20 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Acinetob" "5ug" 21 20 FALSE "EUCAST 2013" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Acinetob" 1 2 FALSE -"EUCAST 2013" "DISK" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter" "5μg" 26 25 FALSE +"EUCAST 2013" "DISK" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter" "5ug" 26 25 FALSE "EUCAST 2013" "MIC" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter" 0.5 1 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Ciprofloxacin" "H.influenzae" "5μg" 26 25 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Ciprofloxacin" "H.influenzae" "5ug" 26 25 FALSE "EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Ciprofloxacin" "H.influenzae" 0.5 1 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M.catarrhalis" "5μg" 23 22 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M.catarrhalis" "5ug" 23 22 FALSE "EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M.catarrhalis" 0.5 1 FALSE "EUCAST 2013" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "N.gonorrhoeae" 0.032 0.12 FALSE "EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" "N.meningitidis" 0.032 0.12 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Ciprofloxacin" "Pseud" "5μg" 25 21 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Ciprofloxacin" "Pseud" "5ug" 25 21 FALSE "EUCAST 2013" "MIC" "Pseudomonas" 3 "Ciprofloxacin" "Pseud" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella" "5μg" 27 26 FALSE +"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella" "5ug" 27 26 FALSE "EUCAST 2013" "MIC" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella" 0.064 0.12 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Staphs" "5μg" 20 19 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Staphs" "5ug" 20 19 FALSE "EUCAST 2013" "MIC" "Staphylococcus" 3 "Ciprofloxacin" "Staphs" 1 2 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Ciprofloxacin" "Pneumo" "5μg" 50 15 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Ciprofloxacin" "Pneumo" "5ug" 50 15 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Ciprofloxacin" "Pneumo" 0.125 4 FALSE "EUCAST 2013" "MIC" "(unknown name)" 6 "Ciprofloxacin" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Clindamycin" "Staphs" "2μg" 22 18 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Clindamycin" "Staphs" "2ug" 22 18 FALSE "EUCAST 2013" "MIC" "Staphylococcus" 3 "Clindamycin" "Staphs" 0.25 1 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Clindamycin" "Strept A,B,C,G" "2μg" 17 16 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Clindamycin" "Strept A,B,C,G" "2ug" 17 16 FALSE "EUCAST 2013" "MIC" "Streptococcus" 3 "Clindamycin" "Strept A,B,C,G" 0.5 1 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" "2μg" 19 18 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" "2ug" 19 18 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" 0.5 1 FALSE -"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" "2μg" 19 18 FALSE +"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" "2ug" 19 18 FALSE "EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" 0.5 1 FALSE "EUCAST 2013" "MIC" "Helicobacter pylori" 2 "Clarithromycin" "H.pylori" 0.25 1 FALSE "EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Clarithromycin" "H.influenzae" 1 64 FALSE @@ -5917,66 +5917,66 @@ "EUCAST 2013" "MIC" "Enterobacterales" 5 "Colistin" "Enterobacteriaceae" 2 4 FALSE "EUCAST 2013" "MIC" "Acinetobacter" 3 "Colistin" "Acinetob" 2 4 FALSE "EUCAST 2013" "MIC" "Pseudomonas" 3 "Colistin" "Pseud" 4 8 FALSE -"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" "10μg" 21 20 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" "10ug" 21 20 TRUE "EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Cefpodoxime" "H.influenzae" "10μg" 26 22 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Cefpodoxime" "H.influenzae" "10ug" 26 22 FALSE "EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Cefpodoxime" "H.influenzae" 0.25 1 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" "Pneumo" 0.25 1 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" "5μg" 23 22 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" "5ug" 23 22 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" 0.5 1 FALSE "EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Ceftaroline" "H.influenzae" 0.032 0.06 FALSE -"EUCAST 2013" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" "5μg" 20 19 FALSE +"EUCAST 2013" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" "5ug" 20 19 FALSE "EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" 1 2 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Ceftaroline" "Pneumo" 0.25 0.5 FALSE "EUCAST 2013" "MIC" "(unknown name)" 6 "Ceftaroline" 0.5 1 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" "30μg" 23 19 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" "30ug" 23 19 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Ceftriaxone" "H.influenzae" "30μg" 30 29 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Ceftriaxone" "H.influenzae" "30ug" 30 29 FALSE "EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Ceftriaxone" "H.influenzae" 0.125 0.25 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Ceftriaxone" "M.catarrhalis" "30μg" 24 20 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Ceftriaxone" "M.catarrhalis" "30ug" 24 20 FALSE "EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" "M.catarrhalis" 1 4 FALSE "EUCAST 2013" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "N.gonorrhoeae" 0.125 0.25 FALSE "EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" "N.meningitidis" 0.125 0.25 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Pneumo" 0.5 4 FALSE -"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" "30μg" 27 26 FALSE +"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" "30ug" 27 26 FALSE "EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" 0.5 1 FALSE "EUCAST 2013" "MIC" "(unknown name)" 6 "Ceftriaxone" 1 4 FALSE -"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" "30μg" 23 22 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" "30ug" 23 22 TRUE "EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Ceftibuten" "H.influenzae" "30μg" 25 24 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Ceftibuten" "H.influenzae" "30ug" 25 24 FALSE "EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Ceftibuten" "H.influenzae" 1 2 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" "5μg" 20 16 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" "5ug" 20 16 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Cefotaxime" "H.influenzae" "5μg" 26 25 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Cefotaxime" "H.influenzae" "5ug" 26 25 FALSE "EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Cefotaxime" "H.influenzae" 0.125 0.25 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Cefotaxime" "M.catarrhalis" "5μg" 20 16 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Cefotaxime" "M.catarrhalis" "5ug" 20 16 FALSE "EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" "M.catarrhalis" 1 4 FALSE "EUCAST 2013" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" "N.gonorrhoeae" 0.125 0.25 FALSE "EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" "N.meningitidis" 0.125 0.25 FALSE -"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella" "5μg" 26 25 FALSE +"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella" "5ug" 26 25 FALSE "EUCAST 2013" "MIC" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella" 0.032 0.06 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Cefotaxime" "Pneumo" 0.5 4 FALSE -"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" "5μg" 23 22 FALSE +"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" "5ug" 23 22 FALSE "EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" 0.5 1 FALSE "EUCAST 2013" "MIC" "(unknown name)" 6 "Cefotaxime" 1 4 FALSE -"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Cefuroxime axetil" "Enterobacteriaceae" "30μg" 18 17 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Cefuroxime axetil" "Enterobacteriaceae" "30ug" 18 17 TRUE "EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacterales" 5 "Cefuroxime axetil" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Cefuroxime axetil" "H.influenzae" "30μg" 50 25 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Cefuroxime axetil" "H.influenzae" "30ug" 50 25 FALSE "EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Cefuroxime axetil" "H.influenzae" 0.125 2 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Cefuroxime axetil" "M.catarrhalis" "30μg" 50 20 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Cefuroxime axetil" "M.catarrhalis" "30ug" 50 20 FALSE "EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Cefuroxime axetil" "M.catarrhalis" 0.125 8 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Cefuroxime axetil" "Pneumo" 0.25 1 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30μg" 18 17 FALSE -"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30μg" 18 17 TRUE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30ug" 18 17 FALSE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30ug" 18 17 TRUE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 16 FALSE "EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Cefuroxime" "H.influenzae" "30μg" 26 24 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Cefuroxime" "H.influenzae" "30ug" 26 24 FALSE "EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Cefuroxime" "H.influenzae" 1 4 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Cefuroxime" "M.catarrhalis" "30μg" 21 17 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Cefuroxime" "M.catarrhalis" "30ug" 21 17 FALSE "EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Cefuroxime" "M.catarrhalis" 4 16 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.5 2 FALSE "EUCAST 2013" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.25 1 FALSE -"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" "30μg" 26 25 FALSE +"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" "30ug" 26 25 FALSE "EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" 0.5 1 FALSE "EUCAST 2013" "MIC" "(unknown name)" 6 "Cefuroxime" 4 16 FALSE "EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefazolin" "Viridans strept" 0.5 1 FALSE @@ -5984,15 +5984,15 @@ "EUCAST 2013" "MIC" "Clostridioides difficile" 2 "Daptomycin" "C.difficile" 4 2048 FALSE "EUCAST 2013" "MIC" "Staphylococcus" 3 "Daptomycin" "Staphs" 1 2 FALSE "EUCAST 2013" "MIC" "Streptococcus" 3 "Daptomycin" "Strept A,B,C,G" 1 2 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" "10μg" 24 17 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" "10ug" 24 17 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2013" "DISK" "Acinetobacter" 3 "Doripenem" "Acinetob" "10μg" 21 14 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" 3 "Doripenem" "Acinetob" "10ug" 21 14 FALSE "EUCAST 2013" "MIC" "Acinetobacter" 3 "Doripenem" "Acinetob" 1 8 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Doripenem" "H.influenzae" "10μg" 20 19 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Doripenem" "H.influenzae" "10ug" 20 19 FALSE "EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Doripenem" "H.influenzae" 1 2 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Doripenem" "M.catarrhalis" "10μg" 30 29 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Doripenem" "M.catarrhalis" "10ug" 30 29 FALSE "EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Doripenem" "M.catarrhalis" 1 2 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Doripenem" "Pseud" "10μg" 25 18 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Doripenem" "Pseud" "10ug" 25 18 FALSE "EUCAST 2013" "MIC" "Pseudomonas" 3 "Doripenem" "Pseud" 1 8 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" "Pneumo" 1 2 FALSE "EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" "Viridans strept" 1 2 FALSE @@ -6003,216 +6003,216 @@ "EUCAST 2013" "MIC" "Staphylococcus" 3 "Doxycycline" "Staphs" 1 4 FALSE "EUCAST 2013" "MIC" "Streptococcus" 3 "Doxycycline" "Strept A,B,C,G" 1 4 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" "Pneumo" 1 4 FALSE -"EUCAST 2013" "DISK" "Campylobacter coli" 2 "Erythromycin" "Campylobacter" "15μg" 24 23 FALSE +"EUCAST 2013" "DISK" "Campylobacter coli" 2 "Erythromycin" "Campylobacter" "15ug" 24 23 FALSE "EUCAST 2013" "MIC" "Campylobacter coli" 2 "Erythromycin" "Campylobacter" 8 16 FALSE -"EUCAST 2013" "DISK" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter" "15μg" 20 19 FALSE +"EUCAST 2013" "DISK" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter" "15ug" 20 19 FALSE "EUCAST 2013" "MIC" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter" 4 8 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Erythromycin" "H.influenzae" "15μg" 50 9 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Erythromycin" "H.influenzae" "15ug" 50 9 FALSE "EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Erythromycin" "H.influenzae" 0.5 32 FALSE -"EUCAST 2013" "DISK" "Listeria monocytogenes" 2 "Erythromycin" "Listeria" "15μg" 25 24 FALSE +"EUCAST 2013" "DISK" "Listeria monocytogenes" 2 "Erythromycin" "Listeria" "15ug" 25 24 FALSE "EUCAST 2013" "MIC" "Listeria monocytogenes" 2 "Erythromycin" "Listeria" 1 2 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M.catarrhalis" "15μg" 23 19 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M.catarrhalis" "15ug" 23 19 FALSE "EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" "M.catarrhalis" 0.25 1 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Erythromycin" "Staphs" "15μg" 21 17 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Erythromycin" "Staphs" "15ug" 21 17 FALSE "EUCAST 2013" "MIC" "Staphylococcus" 3 "Erythromycin" "Staphs" 1 4 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Erythromycin" "Strept A,B,C,G" "15μg" 21 17 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Erythromycin" "Strept A,B,C,G" "15ug" 21 17 FALSE "EUCAST 2013" "MIC" "Streptococcus" 3 "Erythromycin" "Strept A,B,C,G" 0.25 1 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" "15μg" 22 18 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" "15ug" 22 18 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" "10μg" 25 21 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" "10ug" 25 21 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Ertapenem" "H.influenzae" "10μg" 20 19 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Ertapenem" "H.influenzae" "10ug" 20 19 FALSE "EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Ertapenem" "H.influenzae" 0.5 1 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Ertapenem" "M.catarrhalis" "10μg" 29 28 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Ertapenem" "M.catarrhalis" "10ug" 29 28 FALSE "EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Ertapenem" "M.catarrhalis" 0.5 1 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" "Pneumo" 0.5 1 FALSE "EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "Viridans strept" 0.5 1 FALSE "EUCAST 2013" "MIC" "(unknown name)" 6 "Ertapenem" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" "30μg" 24 20 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" "30ug" 24 20 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Cefepime" "H.influenzae" "30μg" 27 26 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Cefepime" "H.influenzae" "30ug" 27 26 FALSE "EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Cefepime" "H.influenzae" 0.25 0.5 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Cefepime" "M.catarrhalis" "30μg" 20 19 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Cefepime" "M.catarrhalis" "30ug" 20 19 FALSE "EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Cefepime" "M.catarrhalis" 4 8 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Cefepime" "Pseud" "30μg" 18 17 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Cefepime" "Pseud" "30ug" 18 17 FALSE "EUCAST 2013" "MIC" "Pseudomonas" 3 "Cefepime" "Pseud" 8 16 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Cefepime" "Pneumo" 1 4 FALSE -"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" "30μg" 25 24 FALSE +"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" "30ug" 25 24 FALSE "EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" 0.5 1 FALSE "EUCAST 2013" "MIC" "(unknown name)" 6 "Cefepime" 4 16 FALSE "EUCAST 2013" "MIC" "Candida" 3 "Fluconazole" "Candida" 2 8 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 64 FALSE "EUCAST 2013" "MIC" "Staphylococcus" 3 "Fosfomycin" "Staphs" 32 64 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Cefoxitin" "Enterobacteriaceae" "30μg" 19 18 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Cefoxitin" "Enterobacteriaceae" "30ug" 19 18 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Cefoxitin" "Enterobacteriaceae" 8 2048 FALSE -"EUCAST 2013" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Staphs" "30μg" 22 21 FALSE +"EUCAST 2013" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Staphs" "30ug" 22 21 FALSE "EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Staphs" 4 8 FALSE -"EUCAST 2013" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Cefoxitin" "Staphs" "30μg" 25 24 FALSE -"EUCAST 2013" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Staphs" "30μg" 22 21 FALSE +"EUCAST 2013" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Cefoxitin" "Staphs" "30ug" 25 24 FALSE +"EUCAST 2013" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Staphs" "30ug" 22 21 FALSE "EUCAST 2013" "MIC" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Staphs" 4 8 FALSE -"EUCAST 2013" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Cefoxitin" "Staphs" "30μg" 22 21 FALSE +"EUCAST 2013" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Cefoxitin" "Staphs" "30ug" 22 21 FALSE "EUCAST 2013" "MIC" "Clostridioides difficile" 2 "Fusidic acid" "C.difficile" 2 2048 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Fusidic acid" "Staphs" "10μg" 24 23 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Fusidic acid" "Staphs" "10ug" 24 23 FALSE "EUCAST 2013" "MIC" "Staphylococcus" 3 "Fusidic acid" "Staphs" 1 2 FALSE -"EUCAST 2013" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30μg" 8 7 FALSE +"EUCAST 2013" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30ug" 8 7 FALSE "EUCAST 2013" "MIC" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" 128 160 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10μg" 17 13 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10ug" 17 13 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2013" "DISK" "Acinetobacter" 3 "Gentamicin" "Acinetob" "10μg" 17 16 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" 3 "Gentamicin" "Acinetob" "10ug" 17 16 FALSE "EUCAST 2013" "MIC" "Acinetobacter" 3 "Gentamicin" "Acinetob" 4 8 FALSE -"EUCAST 2013" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30μg" 8 7 FALSE +"EUCAST 2013" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30ug" 8 7 FALSE "EUCAST 2013" "MIC" "Enterococcus" 3 "Gentamicin" "Enterococcus" 128 160 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Gentamicin" "Pseud" "10μg" 15 14 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Gentamicin" "Pseud" "10ug" 15 14 FALSE "EUCAST 2013" "MIC" "Pseudomonas" 3 "Gentamicin" "Pseud" 4 8 FALSE -"EUCAST 2013" "DISK" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" "10μg" 18 17 FALSE +"EUCAST 2013" "DISK" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" "10ug" 18 17 FALSE "EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" 1 2 FALSE -"EUCAST 2013" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" "10μg" 22 21 FALSE +"EUCAST 2013" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" "10ug" 22 21 FALSE "EUCAST 2013" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" 1 2 FALSE "EUCAST 2013" "MIC" "(unknown name)" 6 "Gentamicin" 2 8 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" "10μg" 22 15 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" "10ug" 22 15 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" 2 16 FALSE -"EUCAST 2013" "DISK" "Acinetobacter" 3 "Imipenem" "Acinetob" "10μg" 23 16 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" 3 "Imipenem" "Acinetob" "10ug" 23 16 FALSE "EUCAST 2013" "MIC" "Acinetobacter" 3 "Imipenem" "Acinetob" 2 16 FALSE -"EUCAST 2013" "DISK" "Enterococcus" 3 "Imipenem" "Enterococcus" "10μg" 21 17 FALSE +"EUCAST 2013" "DISK" "Enterococcus" 3 "Imipenem" "Enterococcus" "10ug" 21 17 FALSE "EUCAST 2013" "MIC" "Enterococcus" 3 "Imipenem" "Enterococcus" 4 16 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Imipenem" "H.influenzae" "10μg" 20 19 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Imipenem" "H.influenzae" "10ug" 20 19 FALSE "EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Imipenem" "H.influenzae" 2 4 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Imipenem" "M.catarrhalis" "10μg" 29 28 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Imipenem" "M.catarrhalis" "10ug" 29 28 FALSE "EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Imipenem" "M.catarrhalis" 2 4 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Imipenem" "Pseud" "10μg" 20 16 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Imipenem" "Pseud" "10ug" 20 16 FALSE "EUCAST 2013" "MIC" "Pseudomonas" 3 "Imipenem" "Pseud" 4 16 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" "Pneumo" 2 4 FALSE "EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Imipenem" "Viridans strept" 2 4 FALSE "EUCAST 2013" "MIC" "(unknown name)" 6 "Imipenem" 2 16 FALSE "EUCAST 2013" "MIC" "Aspergillus" 3 "Itraconazole" "Aspergillus" 1 4 FALSE -"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" "30μg" 14 13 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" "30ug" 14 13 TRUE "EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" 16 32 TRUE -"EUCAST 2013" "DISK" "Enterococcus" 3 "Linezolid" "Enterococcus" "10μg" 19 18 FALSE +"EUCAST 2013" "DISK" "Enterococcus" 3 "Linezolid" "Enterococcus" "10ug" 19 18 FALSE "EUCAST 2013" "MIC" "Enterococcus" 3 "Linezolid" "Enterococcus" 4 8 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Linezolid" "Staphs" "10μg" 19 18 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Linezolid" "Staphs" "10ug" 19 18 FALSE "EUCAST 2013" "MIC" "Staphylococcus" 3 "Linezolid" "Staphs" 4 8 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Linezolid" "Strept A,B,C,G" "10μg" 19 15 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Linezolid" "Strept A,B,C,G" "10ug" 19 15 FALSE "EUCAST 2013" "MIC" "Streptococcus" 3 "Linezolid" "Strept A,B,C,G" 2 8 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" "10μg" 22 18 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" "10ug" 22 18 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" 2 8 FALSE "EUCAST 2013" "MIC" "(unknown name)" 6 "Linezolid" 2 8 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" "5μg" 22 18 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" "5ug" 22 18 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2013" "DISK" "Acinetobacter" 3 "Levofloxacin" "Acinetob" "5μg" 21 17 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" 3 "Levofloxacin" "Acinetob" "5ug" 21 17 FALSE "EUCAST 2013" "MIC" "Acinetobacter" 3 "Levofloxacin" "Acinetob" 1 4 FALSE "EUCAST 2013" "MIC" "Helicobacter pylori" 2 "Levofloxacin" "H.pylori" 1 2 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Levofloxacin" "H.influenzae" "5μg" 26 25 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Levofloxacin" "H.influenzae" "5ug" 26 25 FALSE "EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Levofloxacin" "H.influenzae" 1 2 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Levofloxacin" "M.catarrhalis" "5μg" 23 22 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Levofloxacin" "M.catarrhalis" "5ug" 23 22 FALSE "EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" "M.catarrhalis" 1 2 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Levofloxacin" "Pseud" "5μg" 20 16 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Levofloxacin" "Pseud" "5ug" 20 16 FALSE "EUCAST 2013" "MIC" "Pseudomonas" 3 "Levofloxacin" "Pseud" 1 4 FALSE -"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella" "5μg" 27 26 FALSE +"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella" "5ug" 27 26 FALSE "EUCAST 2013" "MIC" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella" 0.064 0.12 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Levofloxacin" "Staphs" "5μg" 22 18 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Levofloxacin" "Staphs" "5ug" 22 18 FALSE "EUCAST 2013" "MIC" "Staphylococcus" 3 "Levofloxacin" "Staphs" 1 4 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Levofloxacin" "Strept A,B,C,G" "5μg" 18 14 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Levofloxacin" "Strept A,B,C,G" "5ug" 18 14 FALSE "EUCAST 2013" "MIC" "Streptococcus" 3 "Levofloxacin" "Strept A,B,C,G" 1 4 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" "5μg" 17 16 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" "5ug" 17 16 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" 2 4 FALSE "EUCAST 2013" "MIC" "(unknown name)" 6 "Levofloxacin" 1 4 FALSE -"EUCAST 2013" "DISK" "Urinary tract infect" "Escherichia coli" 2 "Mecillinam" "Enterobacteriaceae" "10μg" 15 14 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Escherichia coli" 2 "Mecillinam" "Enterobacteriaceae" "10ug" 15 14 TRUE "EUCAST 2013" "MIC" "Urinary tract infect" "Escherichia coli" 2 "Mecillinam" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2013" "DISK" "Urinary tract infect" "Klebsiella pneumoniae pneumoniae" 1 "Mecillinam" "Enterobacteriaceae" "10μg" 15 14 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Klebsiella pneumoniae pneumoniae" 1 "Mecillinam" "Enterobacteriaceae" "10ug" 15 14 TRUE "EUCAST 2013" "MIC" "Urinary tract infect" "Klebsiella pneumoniae pneumoniae" 1 "Mecillinam" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2013" "DISK" "Urinary tract infect" "Proteus mirabilis" 2 "Mecillinam" "Enterobacteriaceae" "10μg" 15 14 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Proteus mirabilis" 2 "Mecillinam" "Enterobacteriaceae" "10ug" 15 14 TRUE "EUCAST 2013" "MIC" "Urinary tract infect" "Proteus mirabilis" 2 "Mecillinam" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" "10μg" 22 15 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" "10ug" 22 15 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" 2 16 FALSE -"EUCAST 2013" "DISK" "Acinetobacter" 3 "Meropenem" "Acinetob" "10μg" 21 14 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" 3 "Meropenem" "Acinetob" "10ug" 21 14 FALSE "EUCAST 2013" "MIC" "Acinetobacter" 3 "Meropenem" "Acinetob" 2 16 FALSE -"EUCAST 2013" "DISK" "Nonmeningitis" "Haemophilus influenzae" 2 "Meropenem" "H.influenzae" "10μg" 20 19 FALSE +"EUCAST 2013" "DISK" "Nonmeningitis" "Haemophilus influenzae" 2 "Meropenem" "H.influenzae" "10ug" 20 19 FALSE "EUCAST 2013" "MIC" "Nonmeningitis" "Haemophilus influenzae" 2 "Meropenem" "H.influenzae" 2 4 FALSE "EUCAST 2013" "MIC" "Meningitis" "Haemophilus influenzae" 2 "Meropenem" "H.influenzae" 0.25 2 FALSE -"EUCAST 2013" "DISK" "Listeria monocytogenes" 2 "Meropenem" "Listeria" "10μg" 26 25 FALSE +"EUCAST 2013" "DISK" "Listeria monocytogenes" 2 "Meropenem" "Listeria" "10ug" 26 25 FALSE "EUCAST 2013" "MIC" "Listeria monocytogenes" 2 "Meropenem" "Listeria" 0.25 0.5 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Meropenem" "M.catarrhalis" "10μg" 33 32 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Meropenem" "M.catarrhalis" "10ug" 33 32 FALSE "EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Meropenem" "M.catarrhalis" 2 4 FALSE "EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Meropenem" "N.meningitidis" 0.25 0.5 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Meropenem" "Pseud" "10μg" 24 17 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Meropenem" "Pseud" "10ug" 24 17 FALSE "EUCAST 2013" "MIC" "Pseudomonas" 3 "Meropenem" "Pseud" 2 16 FALSE "EUCAST 2013" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 0.25 2 FALSE "EUCAST 2013" "MIC" "Nonmeningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 2 4 FALSE "EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "Viridans strept" 2 4 FALSE "EUCAST 2013" "MIC" "(unknown name)" 6 "Meropenem" 2 16 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" "5μg" 20 16 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" "5ug" 20 16 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" 0.5 2 FALSE "EUCAST 2013" "MIC" "Clostridioides difficile" 2 "Moxifloxacin" "C.difficile" 4 2048 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Moxifloxacin" "H.influenzae" "5μg" 25 24 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Moxifloxacin" "H.influenzae" "5ug" 25 24 FALSE "EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Moxifloxacin" "H.influenzae" 0.5 1 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Moxifloxacin" "M.catarrhalis" "5μg" 23 22 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Moxifloxacin" "M.catarrhalis" "5ug" 23 22 FALSE "EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Moxifloxacin" "M.catarrhalis" 0.5 1 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Staphs" "5μg" 24 20 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Staphs" "5ug" 24 20 FALSE "EUCAST 2013" "MIC" "Staphylococcus" 3 "Moxifloxacin" "Staphs" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Moxifloxacin" "Strept A,B,C,G" "5μg" 18 14 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Moxifloxacin" "Strept A,B,C,G" "5ug" 18 14 FALSE "EUCAST 2013" "MIC" "Streptococcus" 3 "Moxifloxacin" "Strept A,B,C,G" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" "5μg" 22 21 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" "5ug" 22 21 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" 0.5 1 FALSE "EUCAST 2013" "MIC" "(unknown name)" 6 "Moxifloxacin" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Minocycline" "H.influenzae" "30μg" 24 20 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Minocycline" "H.influenzae" "30ug" 24 20 FALSE "EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Minocycline" "H.influenzae" 1 4 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Minocycline" "M.catarrhalis" "30μg" 25 21 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Minocycline" "M.catarrhalis" "30ug" 25 21 FALSE "EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Minocycline" "M.catarrhalis" 1 4 FALSE "EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Minocycline" "N.meningitidis" 1 4 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Minocycline" "Staphs" "30μg" 23 19 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Minocycline" "Staphs" "30ug" 23 19 FALSE "EUCAST 2013" "MIC" "Staphylococcus" 3 "Minocycline" "Staphs" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Minocycline" "Strept A,B,C,G" "30μg" 23 19 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Minocycline" "Strept A,B,C,G" "30ug" 23 19 FALSE "EUCAST 2013" "MIC" "Streptococcus" 3 "Minocycline" "Strept A,B,C,G" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" "30μg" 24 20 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" "30ug" 24 20 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" 0.5 2 FALSE "EUCAST 2013" "MIC" "Clostridioides difficile" 2 "Metronidazole" "C.difficile" 2 4 FALSE "EUCAST 2013" "MIC" "Helicobacter pylori" 2 "Metronidazole" "H.pylori" 8 16 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Mupirocin" "Staphs" "200μg" 30 17 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Mupirocin" "Staphs" "200ug" 30 17 FALSE "EUCAST 2013" "MIC" "Staphylococcus" 3 "Mupirocin" "Staphs" 1 512 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Nalidixic acid" "H.influenzae" "30μg" 23 6 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Nalidixic acid" "M.catarrhalis" "30μg" 23 6 FALSE -"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Nalidixic acid" "Pasteurella" "30μg" 23 6 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" "10μg" 15 11 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Nalidixic acid" "H.influenzae" "30ug" 23 6 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Nalidixic acid" "M.catarrhalis" "30ug" 23 6 FALSE +"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Nalidixic acid" "Pasteurella" "30ug" 23 6 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" "10ug" 15 11 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2013" "DISK" "Acinetobacter" 3 "Netilmicin" "Acinetob" "10μg" 16 15 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" 3 "Netilmicin" "Acinetob" "10ug" 16 15 FALSE "EUCAST 2013" "MIC" "Acinetobacter" 3 "Netilmicin" "Acinetob" 4 8 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Netilmicin" "Pseud" "10μg" 12 11 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Netilmicin" "Pseud" "10ug" 12 11 FALSE "EUCAST 2013" "MIC" "Pseudomonas" 3 "Netilmicin" "Pseud" 4 8 FALSE -"EUCAST 2013" "DISK" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" "10μg" 18 17 FALSE +"EUCAST 2013" "DISK" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" "10ug" 18 17 FALSE "EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" 1 2 FALSE -"EUCAST 2013" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" "10μg" 22 21 FALSE +"EUCAST 2013" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" "10ug" 22 21 FALSE "EUCAST 2013" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" 1 2 FALSE "EUCAST 2013" "MIC" "(unknown name)" 6 "Netilmicin" 2 8 FALSE -"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" "100μg" 11 10 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" "100ug" 11 10 TRUE "EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" 64 128 TRUE -"EUCAST 2013" "DISK" "Urinary tract infect" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" "100μg" 15 14 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" "100ug" 15 14 TRUE "EUCAST 2013" "MIC" "Urinary tract infect" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" 64 128 TRUE -"EUCAST 2013" "DISK" "Urinary tract infect" "Staphylococcus saprophyticus saprophyticus" 1 "Nitrofurantoin" "Staphs" "100μg" 13 12 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Staphylococcus saprophyticus saprophyticus" 1 "Nitrofurantoin" "Staphs" "100ug" 13 12 TRUE "EUCAST 2013" "MIC" "Urinary tract infect" "Staphylococcus saprophyticus saprophyticus" 1 "Nitrofurantoin" "Staphs" 64 128 TRUE -"EUCAST 2013" "DISK" "Urinary tract infect" "Streptococcus group B" 2 "Nitrofurantoin" "Strept A,B,C,G" "100μg" 15 14 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Streptococcus group B" 2 "Nitrofurantoin" "Strept A,B,C,G" "100ug" 15 14 TRUE "EUCAST 2013" "MIC" "Urinary tract infect" "Streptococcus group B" 2 "Nitrofurantoin" "Strept A,B,C,G" 64 128 TRUE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" "10μg" 22 18 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" "10ug" 22 18 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Norfloxacin" "Staphs" "10μg" 17 6 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Norfloxacin" "Strept A,B,C,G" "10μg" 12 6 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Norfloxacin" "Pneumo" "10μg" 12 6 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Norfloxacin" "Staphs" "10ug" 17 6 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Norfloxacin" "Strept A,B,C,G" "10ug" 12 6 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Norfloxacin" "Pneumo" "10ug" 12 6 FALSE "EUCAST 2013" "MIC" "(unknown name)" 6 "Norfloxacin" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" "5μg" 22 18 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" "5ug" 22 18 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Ofloxacin" "H.influenzae" "5μg" 23 22 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Ofloxacin" "H.influenzae" "5ug" 23 22 FALSE "EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Ofloxacin" "H.influenzae" 0.5 1 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Ofloxacin" "M.catarrhalis" "5μg" 25 24 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Ofloxacin" "M.catarrhalis" "5ug" 25 24 FALSE "EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Ofloxacin" "M.catarrhalis" 0.5 1 FALSE "EUCAST 2013" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" "N.gonorrhoeae" 0.125 0.5 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Ofloxacin" "Staphs" "5μg" 20 19 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Ofloxacin" "Staphs" "5ug" 20 19 FALSE "EUCAST 2013" "MIC" "Staphylococcus" 3 "Ofloxacin" "Staphs" 1 2 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Pneumo" "5μg" 50 12 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Pneumo" "5ug" 50 12 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Ofloxacin" "Pneumo" 0.125 8 FALSE "EUCAST 2013" "MIC" "(unknown name)" 6 "Ofloxacin" 0.5 2 FALSE "EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Oxacillin" "Staphs" 2 4 FALSE "EUCAST 2013" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Oxacillin" "Staphs" 0.25 0.5 FALSE "EUCAST 2013" "MIC" "Staphylococcus lugdunensis" 2 "Oxacillin" "Staphs" 2 4 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "Pneumo" "1μg" 20 6 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "Pneumo" "1ug" 20 6 FALSE "EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Benzylpenicillin" "H.influenzae" "1unit" 12 6 FALSE "EUCAST 2013" "DISK" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria" "1unit" 13 12 FALSE "EUCAST 2013" "MIC" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria" 1 2 FALSE @@ -6229,192 +6229,192 @@ "EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1unit" 18 11 FALSE "EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" 0.25 4 FALSE "EUCAST 2013" "MIC" "(unknown name)" 6 "Benzylpenicillin" 0.25 4 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" "30μg" 20 16 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" "30ug" 20 16 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Piperacillin" "Pseud" "30μg" 19 18 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Piperacillin" "Pseud" "30ug" 19 18 FALSE "EUCAST 2013" "MIC" "Pseudomonas" 3 "Piperacillin" "Pseud" 16 32 FALSE "EUCAST 2013" "MIC" "(unknown name)" 6 "Piperacillin" 4 32 FALSE "EUCAST 2013" "MIC" "Aspergillus" 3 "Posaconazole" "Aspergillus" 0.125 0.25 FALSE "EUCAST 2013" "MIC" "Candida albicans" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE "EUCAST 2013" "MIC" "Candida parapsilosis" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE "EUCAST 2013" "MIC" "Candida tropicalis" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2013" "DISK" "Enterococcus faecium" 2 "Quinupristin/dalfopristin" "Enterococcus" "15μg" 22 19 FALSE +"EUCAST 2013" "DISK" "Enterococcus faecium" 2 "Quinupristin/dalfopristin" "Enterococcus" "15ug" 22 19 FALSE "EUCAST 2013" "MIC" "Enterococcus faecium" 2 "Quinupristin/dalfopristin" "Enterococcus" 1 8 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" "15μg" 21 17 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" "15ug" 21 17 FALSE "EUCAST 2013" "MIC" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" 1 4 FALSE "EUCAST 2013" "MIC" "Clostridioides difficile" 2 "Rifampicin" "C.difficile" 0.004 2048 FALSE "EUCAST 2013" "MIC" "Helicobacter pylori" 2 "Rifampicin" "H.pylori" 1 2 FALSE -"EUCAST 2013" "DISK" "Prophylaxis" "Haemophilus influenzae" 2 "Rifampicin" "H.influenzae" "5μg" 18 17 FALSE +"EUCAST 2013" "DISK" "Prophylaxis" "Haemophilus influenzae" 2 "Rifampicin" "H.influenzae" "5ug" 18 17 FALSE "EUCAST 2013" "MIC" "Prophylaxis" "Haemophilus influenzae" 2 "Rifampicin" "H.influenzae" 1 2 FALSE "EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Rifampicin" "N.meningitidis" 0.25 0.5 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Rifampicin" "Staphs" "5μg" 26 22 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Rifampicin" "Staphs" "5ug" 26 22 FALSE "EUCAST 2013" "MIC" "Staphylococcus" 3 "Rifampicin" "Staphs" 0.064 1 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Rifampicin" "Strept A,B,C,G" "5μg" 21 14 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Rifampicin" "Strept A,B,C,G" "5ug" 21 14 FALSE "EUCAST 2013" "MIC" "Streptococcus" 3 "Rifampicin" "Strept A,B,C,G" 0.064 1 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" "5μg" 22 16 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" "5ug" 22 16 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" 0.064 1 FALSE "EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Roxithromycin" "H.influenzae" 1 32 FALSE "EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Roxithromycin" "M.catarrhalis" 0.5 2 FALSE "EUCAST 2013" "MIC" "Staphylococcus" 3 "Roxithromycin" "Staphs" 1 4 FALSE "EUCAST 2013" "MIC" "Streptococcus" 3 "Roxithromycin" "Strept A,B,C,G" 0.5 2 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Roxithromycin" "Pneumo" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" "10/10μg" 14 13 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" "10/10ug" 14 13 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" 8 16 FALSE "EUCAST 2013" "MIC" "Enterococcus" 3 "Ampicillin/sulbactam" "Enterococcus" 4 16 FALSE "EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Ampicillin/sulbactam" "H.influenzae" 1 2 FALSE "EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" "M.catarrhalis" 1 2 FALSE "EUCAST 2013" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" 2 16 FALSE "EUCAST 2013" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "N.gonorrhoeae" 64 128 FALSE -"EUCAST 2013" "DISK" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" "300μg" 19 18 FALSE +"EUCAST 2013" "DISK" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" "300ug" 19 18 FALSE "EUCAST 2013" "MIC" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" 512 560 FALSE -"EUCAST 2013" "DISK" "Enterococcus" 3 "Streptoduocin" "Enterococcus" "300μg" 19 18 FALSE +"EUCAST 2013" "DISK" "Enterococcus" 3 "Streptoduocin" "Enterococcus" "300ug" 19 18 FALSE "EUCAST 2013" "MIC" "Enterococcus" 3 "Streptoduocin" "Enterococcus" 512 560 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25μg/23.75μg" 16 12 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25ug/23.75ug" 16 12 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2013" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetob" "1.25μg/23.75μg" 16 12 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetob" "1.25ug/23.75ug" 16 12 FALSE "EUCAST 2013" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetob" 2 8 FALSE -"EUCAST 2013" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25μg/23.75μg" 50 20 FALSE +"EUCAST 2013" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25ug/23.75ug" 50 20 FALSE "EUCAST 2013" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 2 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H.influenzae" "1.25μg/23.75μg" 23 19 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H.influenzae" "1.25ug/23.75ug" 23 19 FALSE "EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H.influenzae" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria" "1.25μg/23.75μg" 29 28 FALSE +"EUCAST 2013" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria" "1.25ug/23.75ug" 29 28 FALSE "EUCAST 2013" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria" 0.064 0.12 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M.catarrhalis" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M.catarrhalis" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M.catarrhalis" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella" "1.25μg/23.75μg" 23 22 FALSE +"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella" "1.25ug/23.75ug" 23 22 FALSE "EUCAST 2013" "MIC" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella" 0.25 0.5 FALSE -"EUCAST 2013" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "S.maltophilia" "1.25μg/23.75μg" 16 15 FALSE +"EUCAST 2013" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "S.maltophilia" "1.25ug/23.75ug" 16 15 FALSE "EUCAST 2013" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "S.maltophilia" 4 8 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25μg/23.75μg" 17 13 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25ug/23.75ug" 17 13 FALSE "EUCAST 2013" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" 2 8 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strept A,B,C,G" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strept A,B,C,G" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2013" "MIC" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strept A,B,C,G" 1 4 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" 1 4 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" "75/10μg" 23 22 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" "75/10ug" 23 22 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseud" "75/10μg" 17 16 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseud" "75/10ug" 17 16 FALSE "EUCAST 2013" "MIC" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseud" 16 32 FALSE "EUCAST 2013" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" 8 32 FALSE -"EUCAST 2013" "DISK" "Campylobacter" 3 "Tetracycline" "Campylobacter" "30μg" 30 29 FALSE +"EUCAST 2013" "DISK" "Campylobacter" 3 "Tetracycline" "Campylobacter" "30ug" 30 29 FALSE "EUCAST 2013" "MIC" "Campylobacter" 3 "Tetracycline" "Campylobacter" 2 4 FALSE "EUCAST 2013" "MIC" "Helicobacter pylori" 2 "Tetracycline" "H.pylori" 1 2 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Tetracycline" "H.influenzae" "30μg" 25 21 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Tetracycline" "H.influenzae" "30ug" 25 21 FALSE "EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Tetracycline" "H.influenzae" 1 4 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M.catarrhalis" "30μg" 28 24 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M.catarrhalis" "30ug" 28 24 FALSE "EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" "M.catarrhalis" 1 4 FALSE "EUCAST 2013" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" "N.gonorrhoeae" 0.5 2 FALSE "EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Tetracycline" "N.meningitidis" 1 4 FALSE -"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Tetracycline" "Pasteurella" "30μg" 24 23 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Tetracycline" "Staphs" "30μg" 22 18 FALSE +"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Tetracycline" "Pasteurella" "30ug" 24 23 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Tetracycline" "Staphs" "30ug" 22 18 FALSE "EUCAST 2013" "MIC" "Staphylococcus" 3 "Tetracycline" "Staphs" 1 4 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Tetracycline" "Strept A,B,C,G" "30μg" 23 19 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Tetracycline" "Strept A,B,C,G" "30ug" 23 19 FALSE "EUCAST 2013" "MIC" "Streptococcus" 3 "Tetracycline" "Strept A,B,C,G" 1 4 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" "30μg" 25 21 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" "30ug" 25 21 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" 1 4 FALSE -"EUCAST 2013" "DISK" "Enterococcus" 3 "Teicoplanin" "Enterococcus" "30μg" 16 15 FALSE +"EUCAST 2013" "DISK" "Enterococcus" 3 "Teicoplanin" "Enterococcus" "30ug" 16 15 FALSE "EUCAST 2013" "MIC" "Enterococcus" 3 "Teicoplanin" "Enterococcus" 2 4 FALSE "EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Teicoplanin" "Staphs" 2 4 FALSE "EUCAST 2013" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Teicoplanin" "Staphs" 4 8 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Teicoplanin" "Strept A,B,C,G" "30μg" 15 14 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Teicoplanin" "Strept A,B,C,G" "30ug" 15 14 FALSE "EUCAST 2013" "MIC" "Streptococcus" 3 "Teicoplanin" "Strept A,B,C,G" 2 4 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" "30μg" 17 16 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" "30ug" 17 16 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" 2 4 FALSE -"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" "30μg" 16 15 FALSE +"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" "30ug" 16 15 FALSE "EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" 2 4 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" "15μg" 18 14 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" "15ug" 18 14 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" 1 4 FALSE "EUCAST 2013" "MIC" "Clostridioides difficile" 2 "Tigecycline" "C.difficile" 0.25 2048 FALSE -"EUCAST 2013" "DISK" "Enterococcus" 3 "Tigecycline" "Enterococcus" "15μg" 18 14 FALSE +"EUCAST 2013" "DISK" "Enterococcus" 3 "Tigecycline" "Enterococcus" "15ug" 18 14 FALSE "EUCAST 2013" "MIC" "Enterococcus" 3 "Tigecycline" "Enterococcus" 0.25 1 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Tigecycline" "Staphs" "15μg" 18 17 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Tigecycline" "Staphs" "15ug" 18 17 FALSE "EUCAST 2013" "MIC" "Staphylococcus" 3 "Tigecycline" "Staphs" 0.5 1 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Tigecycline" "Strept A,B,C,G" "15μg" 19 15 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Tigecycline" "Strept A,B,C,G" "15ug" 19 15 FALSE "EUCAST 2013" "MIC" "Streptococcus" 3 "Tigecycline" "Strept A,B,C,G" 0.25 1 FALSE "EUCAST 2013" "MIC" "(unknown name)" 6 "Tigecycline" 0.25 1 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" "75μg" 23 22 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" "75ug" 23 22 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Ticarcillin" "Pseud" "75μg" 17 16 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Ticarcillin" "Pseud" "75ug" 17 16 FALSE "EUCAST 2013" "MIC" "Pseudomonas" 3 "Ticarcillin" "Pseud" 16 32 FALSE "EUCAST 2013" "MIC" "(unknown name)" 6 "Ticarcillin" 8 32 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Telithromycin" "H.influenzae" "15μg" 50 11 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Telithromycin" "H.influenzae" "15ug" 50 11 FALSE "EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Telithromycin" "H.influenzae" 0.125 16 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Telithromycin" "M.catarrhalis" "15μg" 23 19 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Telithromycin" "M.catarrhalis" "15ug" 23 19 FALSE "EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Telithromycin" "M.catarrhalis" 0.25 1 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Telithromycin" "Strept A,B,C,G" "15μg" 20 16 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Telithromycin" "Strept A,B,C,G" "15ug" 20 16 FALSE "EUCAST 2013" "MIC" "Streptococcus" 3 "Telithromycin" "Strept A,B,C,G" 0.25 1 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" "15μg" 23 19 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" "15ug" 23 19 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" 0.25 1 FALSE "EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Telavancin" "Staphs" 1 2 FALSE -"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" "5μg" 18 14 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" "5ug" 18 14 TRUE "EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" 2 8 TRUE -"EUCAST 2013" "DISK" "Urinary tract infect" "Enterococcus" 3 "Trimethoprim" "Enterococcus" "5μg" 50 20 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterococcus" 3 "Trimethoprim" "Enterococcus" "5ug" 50 20 TRUE "EUCAST 2013" "MIC" "Urinary tract infect" "Enterococcus" 3 "Trimethoprim" "Enterococcus" 0.032 2 TRUE -"EUCAST 2013" "DISK" "Urinary tract infect" "Staphylococcus" 3 "Trimethoprim" "Staphs" "5μg" 17 13 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Staphylococcus" 3 "Trimethoprim" "Staphs" "5ug" 17 13 TRUE "EUCAST 2013" "MIC" "Urinary tract infect" "Staphylococcus" 3 "Trimethoprim" "Staphs" 2 8 TRUE "EUCAST 2013" "MIC" "Urinary tract infect" "Streptococcus group B" 2 "Trimethoprim" "Strept A,B,C,G" 2 4 TRUE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" "10μg" 17 13 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" "10ug" 17 13 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2013" "DISK" "Acinetobacter" 3 "Tobramycin" "Acinetob" "10μg" 17 16 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" 3 "Tobramycin" "Acinetob" "10ug" 17 16 FALSE "EUCAST 2013" "MIC" "Acinetobacter" 3 "Tobramycin" "Acinetob" 4 8 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Tobramycin" "Pseud" "10μg" 16 15 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Tobramycin" "Pseud" "10ug" 16 15 FALSE "EUCAST 2013" "MIC" "Pseudomonas" 3 "Tobramycin" "Pseud" 4 8 FALSE -"EUCAST 2013" "DISK" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" "10μg" 18 17 FALSE +"EUCAST 2013" "DISK" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" "10ug" 18 17 FALSE "EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" 1 2 FALSE -"EUCAST 2013" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" "10μg" 22 21 FALSE +"EUCAST 2013" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" "10ug" 22 21 FALSE "EUCAST 2013" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" 1 2 FALSE "EUCAST 2013" "MIC" "(unknown name)" 6 "Tobramycin" 2 8 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" "30/6μg" 20 16 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" "30/6ug" 20 16 FALSE "EUCAST 2013" "MIC" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseud" "30/6μg" 19 18 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseud" "30/6ug" 19 18 FALSE "EUCAST 2013" "MIC" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseud" 16 32 FALSE "EUCAST 2013" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" 4 32 FALSE "EUCAST 2013" "MIC" "Clostridioides difficile" 2 "Vancomycin" "C.difficile" 2 4 FALSE -"EUCAST 2013" "DISK" "Enterococcus" 3 "Vancomycin" "Enterococcus" "5μg" 12 11 FALSE +"EUCAST 2013" "DISK" "Enterococcus" 3 "Vancomycin" "Enterococcus" "5ug" 12 11 FALSE "EUCAST 2013" "MIC" "Enterococcus" 3 "Vancomycin" "Enterococcus" 4 8 FALSE "EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" "Staphs" 2 4 FALSE "EUCAST 2013" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Vancomycin" "Staphs" 4 8 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Vancomycin" "Strept A,B,C,G" "5μg" 13 12 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Vancomycin" "Strept A,B,C,G" "5ug" 13 12 FALSE "EUCAST 2013" "MIC" "Streptococcus" 3 "Vancomycin" "Strept A,B,C,G" 2 4 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" "5μg" 16 15 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" "5ug" 16 15 FALSE "EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" 2 4 FALSE -"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" "5μg" 15 14 FALSE +"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" "5ug" 15 14 FALSE "EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" 2 4 FALSE "EUCAST 2013" "MIC" "Aspergillus" 3 "Voriconazole" "Aspergillus" 1 4 FALSE "EUCAST 2013" "MIC" "Candida albicans" 2 "Voriconazole" "Candida" 0.125 0.25 FALSE "EUCAST 2013" "MIC" "Candida parapsilosis" 2 "Voriconazole" "Candida" 0.125 0.25 FALSE "EUCAST 2013" "MIC" "Candida tropicalis" 2 "Voriconazole" "Candida" 0.125 0.25 FALSE "EUCAST 2012" "MIC" "Enterococcus" 3 "Amoxicillin/clavulanic acid" 4 16 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" "2μg/1μg" 17 16 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" "2ug/1ug" 17 16 FALSE "EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" 2 4 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "2μg/1μg" 19 18 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "2ug/1ug" 19 18 FALSE "EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" 1 2 FALSE -"EUCAST 2012" "DISK" "Acinetobacter" 3 "Amikacin" "30μg" 18 14 FALSE +"EUCAST 2012" "DISK" "Acinetobacter" 3 "Amikacin" "30ug" 18 14 FALSE "EUCAST 2012" "MIC" "Acinetobacter" 3 "Amikacin" 8 32 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Amikacin" "30μg" 18 14 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Amikacin" "30ug" 18 14 FALSE "EUCAST 2012" "MIC" "Pseudomonas" 3 "Amikacin" 8 32 FALSE -"EUCAST 2012" "DISK" "Staphylococcus aureus aureus" 1 "Amikacin" "30μg" 18 15 FALSE +"EUCAST 2012" "DISK" "Staphylococcus aureus aureus" 1 "Amikacin" "30ug" 18 15 FALSE "EUCAST 2012" "MIC" "Staphylococcus aureus aureus" 1 "Amikacin" 8 32 FALSE -"EUCAST 2012" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "30μg" 22 18 FALSE +"EUCAST 2012" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "30ug" 22 18 FALSE "EUCAST 2012" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" 8 32 FALSE -"EUCAST 2012" "DISK" "Enterococcus" 3 "Ampicillin" "2μg" 10 7 FALSE +"EUCAST 2012" "DISK" "Enterococcus" 3 "Ampicillin" "2ug" 10 7 FALSE "EUCAST 2012" "MIC" "Enterococcus" 3 "Ampicillin" 4 16 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Ampicillin" "2μg" 16 15 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Ampicillin" "2ug" 16 15 FALSE "EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Ampicillin" 1 2 FALSE -"EUCAST 2012" "DISK" "Listeria monocytogenes" 2 "Ampicillin" "2μg" 16 15 FALSE +"EUCAST 2012" "DISK" "Listeria monocytogenes" 2 "Ampicillin" "2ug" 16 15 FALSE "EUCAST 2012" "MIC" "Listeria monocytogenes" 2 "Ampicillin" 1 2 FALSE "EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Ampicillin" 0.125 2 FALSE -"EUCAST 2012" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Ampicillin" "2μg" 15 14 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Ampicillin" "2μg" 23 19 FALSE +"EUCAST 2012" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Ampicillin" "2ug" 15 14 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Ampicillin" "2ug" 23 19 FALSE "EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Ampicillin" 0.5 4 FALSE -"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "2μg" 21 14 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "2ug" 21 14 FALSE "EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" 0.5 4 FALSE "EUCAST 2012" "MIC" "Enterococcus" 3 "Amoxicillin" 4 16 FALSE "EUCAST 2012" "MIC" "Helicobacter pylori" 2 "Amoxicillin" 0.125 0.25 FALSE "EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Amoxicillin" 2 4 FALSE "EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Amoxicillin" 0.125 2 FALSE "EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Amoxicillin" 0.5 4 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Aztreonam" "30μg" 50 15 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Aztreonam" "30ug" 50 15 FALSE "EUCAST 2012" "MIC" "Pseudomonas" 3 "Aztreonam" 1 32 FALSE "EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Azithromycin" 0.125 8 FALSE "EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" 0.25 1 FALSE @@ -6422,49 +6422,49 @@ "EUCAST 2012" "MIC" "Staphylococcus" 3 "Azithromycin" 1 4 FALSE "EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Azithromycin" 0.25 1 FALSE "EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" 0.25 1 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Ceftazidime" "10μg" 16 15 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Ceftazidime" "10ug" 16 15 FALSE "EUCAST 2012" "MIC" "Pseudomonas" 3 "Ceftazidime" 8 16 FALSE "EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Cefaclor" 0.5 1 FALSE "EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Cefaclor" 0.125 0.25 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Cefaclor" "30μg" 50 27 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Cefaclor" "30ug" 50 27 FALSE "EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" 0.032 1 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Cefadroxil" "5μg" 25 24 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Cefadroxil" "5ug" 25 24 FALSE "EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Cefadroxil" 0.125 0.25 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Cefadroxil" "5μg" 21 17 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Cefadroxil" "5ug" 21 17 FALSE "EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Cefadroxil" 0.5 2 FALSE "EUCAST 2012" "MIC" "Neisseria gonorrhoeae" 2 "Cefadroxil" 0.125 0.25 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Chloramphenicol" "30μg" 28 27 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Chloramphenicol" "30ug" 28 27 FALSE "EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Chloramphenicol" 2 4 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Chloramphenicol" "30μg" 30 29 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Chloramphenicol" "30ug" 30 29 FALSE "EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" 2 4 FALSE "EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Chloramphenicol" 2 8 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Chloramphenicol" "30μg" 18 17 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Chloramphenicol" "30ug" 18 17 FALSE "EUCAST 2012" "MIC" "Staphylococcus" 3 "Chloramphenicol" 8 16 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Chloramphenicol" "30μg" 21 20 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Chloramphenicol" "30ug" 21 20 FALSE "EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Chloramphenicol" 8 16 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "30μg" 21 20 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "30ug" 21 20 FALSE "EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" 8 16 FALSE -"EUCAST 2012" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "5μg" 21 20 FALSE +"EUCAST 2012" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "5ug" 21 20 FALSE "EUCAST 2012" "MIC" "Acinetobacter" 3 "Ciprofloxacin" 1 2 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Ciprofloxacin" "5μg" 26 25 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Ciprofloxacin" "5ug" 26 25 FALSE "EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Ciprofloxacin" 0.5 1 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Ciprofloxacin" "5μg" 23 22 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Ciprofloxacin" "5ug" 23 22 FALSE "EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" 0.5 1 FALSE "EUCAST 2012" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" 0.032 0.12 FALSE "EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" 0.032 0.12 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Ciprofloxacin" "5μg" 25 21 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Ciprofloxacin" "5ug" 25 21 FALSE "EUCAST 2012" "MIC" "Pseudomonas" 3 "Ciprofloxacin" 0.5 2 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "5μg" 20 19 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "5ug" 20 19 FALSE "EUCAST 2012" "MIC" "Staphylococcus" 3 "Ciprofloxacin" 1 2 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Ciprofloxacin" "5μg" 50 17 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Ciprofloxacin" "5ug" 50 17 FALSE "EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Ciprofloxacin" 0.125 4 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Clindamycin" "2μg" 22 18 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Clindamycin" "2ug" 22 18 FALSE "EUCAST 2012" "MIC" "Staphylococcus" 3 "Clindamycin" 0.25 1 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Clindamycin" "2μg" 17 16 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Clindamycin" "2ug" 17 16 FALSE "EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Clindamycin" 0.5 1 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "2μg" 19 18 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "2ug" 19 18 FALSE "EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" 0.5 1 FALSE -"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "2μg" 19 18 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "2ug" 19 18 FALSE "EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" 0.5 1 FALSE "EUCAST 2012" "MIC" "Helicobacter pylori" 2 "Clarithromycin" 0.25 1 FALSE "EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Clarithromycin" 1 64 FALSE @@ -6474,221 +6474,221 @@ "EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" 0.25 1 FALSE "EUCAST 2012" "MIC" "Acinetobacter" 3 "Colistin" 2 4 FALSE "EUCAST 2012" "MIC" "Pseudomonas" 3 "Colistin" 4 8 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Cefpodoxime" "10μg" 26 22 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Cefpodoxime" "10ug" 26 22 FALSE "EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Cefpodoxime" 0.25 1 FALSE "EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" 0.25 1 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Ceftriaxone" "30μg" 30 29 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Ceftriaxone" "30ug" 30 29 FALSE "EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Ceftriaxone" 0.125 0.25 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Ceftriaxone" "30μg" 24 20 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Ceftriaxone" "30ug" 24 20 FALSE "EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" 1 4 FALSE "EUCAST 2012" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" 0.125 0.25 FALSE "EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" 0.125 0.25 FALSE "EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Ceftriaxone" 0.5 4 FALSE -"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "30μg" 27 26 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "30ug" 27 26 FALSE "EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" 0.5 1 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Ceftibuten" "30μg" 25 24 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Ceftibuten" "30ug" 25 24 FALSE "EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Ceftibuten" 1 2 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Cefotaxime" "5μg" 26 25 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Cefotaxime" "5ug" 26 25 FALSE "EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Cefotaxime" 0.125 0.25 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Cefotaxime" "5μg" 20 16 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Cefotaxime" "5ug" 20 16 FALSE "EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" 1 4 FALSE "EUCAST 2012" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" 0.125 0.25 FALSE "EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" 0.125 0.25 FALSE "EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Cefotaxime" 0.5 4 FALSE -"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "5μg" 23 22 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "5ug" 23 22 FALSE "EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" 0.5 1 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Cefuroxime axetil" "30μg" 50 25 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Cefuroxime axetil" "30ug" 50 25 FALSE "EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Cefuroxime axetil" 0.125 2 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Cefuroxime axetil" "30μg" 50 20 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Cefuroxime axetil" "30ug" 50 20 FALSE "EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Cefuroxime axetil" 0.125 8 FALSE "EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Cefuroxime axetil" 0.25 1 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Cefuroxime" "30μg" 26 24 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Cefuroxime" "30ug" 26 24 FALSE "EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Cefuroxime" 1 4 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Cefuroxime" "30μg" 21 17 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Cefuroxime" "30ug" 21 17 FALSE "EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Cefuroxime" 4 16 FALSE "EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Cefuroxime" 0.5 2 FALSE -"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "30μg" 26 25 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "30ug" 26 25 FALSE "EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" 0.5 1 FALSE "EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefazolin" 0.5 1 FALSE "EUCAST 2012" "MIC" "Clostridioides difficile" 2 "Daptomycin" 4 2048 FALSE "EUCAST 2012" "MIC" "Staphylococcus" 3 "Daptomycin" 1 2 FALSE "EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Daptomycin" 1 2 FALSE -"EUCAST 2012" "DISK" "Acinetobacter" 3 "Doripenem" "10μg" 21 14 FALSE +"EUCAST 2012" "DISK" "Acinetobacter" 3 "Doripenem" "10ug" 21 14 FALSE "EUCAST 2012" "MIC" "Acinetobacter" 3 "Doripenem" 1 8 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Doripenem" "10μg" 20 19 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Doripenem" "10ug" 20 19 FALSE "EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Doripenem" 1 2 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Doripenem" "10μg" 30 29 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Doripenem" "10ug" 30 29 FALSE "EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Doripenem" 1 2 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Doripenem" "10μg" 25 18 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Doripenem" "10ug" 25 18 FALSE "EUCAST 2012" "MIC" "Pseudomonas" 3 "Doripenem" 1 8 FALSE "EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" 1 2 FALSE -"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" "10μg" 25 24 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" "10ug" 25 24 FALSE "EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" 1 2 FALSE "EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Doxycycline" 1 4 FALSE "EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Doxycycline" 1 4 FALSE "EUCAST 2012" "MIC" "Staphylococcus" 3 "Doxycycline" 1 4 FALSE "EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Doxycycline" 1 4 FALSE "EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" 1 4 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Erythromycin" "15μg" 50 9 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Erythromycin" "15ug" 50 9 FALSE "EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Erythromycin" 0.5 32 FALSE -"EUCAST 2012" "DISK" "Listeria monocytogenes" 2 "Erythromycin" "15μg" 25 24 FALSE +"EUCAST 2012" "DISK" "Listeria monocytogenes" 2 "Erythromycin" "15ug" 25 24 FALSE "EUCAST 2012" "MIC" "Listeria monocytogenes" 2 "Erythromycin" 1 2 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "15μg" 23 19 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "15ug" 23 19 FALSE "EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" 0.25 1 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Erythromycin" "15μg" 21 17 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Erythromycin" "15ug" 21 17 FALSE "EUCAST 2012" "MIC" "Staphylococcus" 3 "Erythromycin" 1 4 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Erythromycin" "15μg" 21 17 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Erythromycin" "15ug" 21 17 FALSE "EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Erythromycin" 0.25 1 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "15μg" 22 18 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "15ug" 22 18 FALSE "EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" 0.25 1 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Ertapenem" "10μg" 20 19 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Ertapenem" "10ug" 20 19 FALSE "EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Ertapenem" 0.5 1 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Ertapenem" "10μg" 29 28 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Ertapenem" "10ug" 29 28 FALSE "EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Ertapenem" 0.5 1 FALSE "EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" 0.5 1 FALSE -"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "10μg" 22 21 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "10ug" 22 21 FALSE "EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" 0.5 1 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Cefepime" "30μg" 27 26 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Cefepime" "30ug" 27 26 FALSE "EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Cefepime" 0.25 0.5 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Cefepime" "30μg" 20 19 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Cefepime" "30ug" 20 19 FALSE "EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Cefepime" 4 8 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Cefepime" "30μg" 18 17 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Cefepime" "30ug" 18 17 FALSE "EUCAST 2012" "MIC" "Pseudomonas" 3 "Cefepime" 8 16 FALSE "EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Cefepime" 1 4 FALSE -"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "30μg" 25 24 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "30ug" 25 24 FALSE "EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" 0.5 1 FALSE "EUCAST 2012" "MIC" "Staphylococcus" 3 "Fosfomycin" 32 64 FALSE -"EUCAST 2012" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "30μg" 22 21 FALSE +"EUCAST 2012" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "30ug" 22 21 FALSE "EUCAST 2012" "MIC" "Staphylococcus aureus aureus" 1 "Cefoxitin" 4 8 FALSE -"EUCAST 2012" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Cefoxitin" "30μg" 25 24 FALSE -"EUCAST 2012" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "30μg" 22 21 FALSE +"EUCAST 2012" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Cefoxitin" "30ug" 25 24 FALSE +"EUCAST 2012" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "30ug" 22 21 FALSE "EUCAST 2012" "MIC" "Staphylococcus lugdunensis" 2 "Cefoxitin" 4 8 FALSE "EUCAST 2012" "MIC" "Clostridioides difficile" 2 "Fusidic acid" 2 2048 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Fusidic acid" "10μg" 24 23 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Fusidic acid" "10ug" 24 23 FALSE "EUCAST 2012" "MIC" "Staphylococcus" 3 "Fusidic acid" 1 2 FALSE -"EUCAST 2012" "DISK" "Enterococcus" 3 "Gentamicin-high" "30μg" 8 7 FALSE +"EUCAST 2012" "DISK" "Enterococcus" 3 "Gentamicin-high" "30ug" 8 7 FALSE "EUCAST 2012" "MIC" "Enterococcus" 3 "Gentamicin-high" 128 160 FALSE -"EUCAST 2012" "DISK" "Acinetobacter" 3 "Gentamicin" "10μg" 17 16 FALSE +"EUCAST 2012" "DISK" "Acinetobacter" 3 "Gentamicin" "10ug" 17 16 FALSE "EUCAST 2012" "MIC" "Acinetobacter" 3 "Gentamicin" 4 8 FALSE -"EUCAST 2012" "DISK" "Enterococcus" 3 "Gentamicin" "30μg" 8 7 FALSE +"EUCAST 2012" "DISK" "Enterococcus" 3 "Gentamicin" "30ug" 8 7 FALSE "EUCAST 2012" "MIC" "Enterococcus" 3 "Gentamicin" 128 160 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Gentamicin" "10μg" 15 14 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Gentamicin" "10ug" 15 14 FALSE "EUCAST 2012" "MIC" "Pseudomonas" 3 "Gentamicin" 4 8 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Gentamicin" "10μg" 18 17 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Gentamicin" "10ug" 18 17 FALSE "EUCAST 2012" "MIC" "Staphylococcus" 3 "Gentamicin" 1 2 FALSE -"EUCAST 2012" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "10μg" 22 21 FALSE +"EUCAST 2012" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "10ug" 22 21 FALSE "EUCAST 2012" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" 1 2 FALSE -"EUCAST 2012" "DISK" "Acinetobacter" 3 "Imipenem" "10μg" 23 16 FALSE +"EUCAST 2012" "DISK" "Acinetobacter" 3 "Imipenem" "10ug" 23 16 FALSE "EUCAST 2012" "MIC" "Acinetobacter" 3 "Imipenem" 2 16 FALSE -"EUCAST 2012" "DISK" "Enterococcus" 3 "Imipenem" "10μg" 21 17 FALSE +"EUCAST 2012" "DISK" "Enterococcus" 3 "Imipenem" "10ug" 21 17 FALSE "EUCAST 2012" "MIC" "Enterococcus" 3 "Imipenem" 4 16 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Imipenem" "10μg" 20 19 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Imipenem" "10ug" 20 19 FALSE "EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Imipenem" 2 4 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Imipenem" "10μg" 29 28 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Imipenem" "10ug" 29 28 FALSE "EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Imipenem" 2 4 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Imipenem" "10μg" 20 16 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Imipenem" "10ug" 20 16 FALSE "EUCAST 2012" "MIC" "Pseudomonas" 3 "Imipenem" 4 16 FALSE "EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" 2 4 FALSE -"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Imipenem" "10μg" 30 29 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Imipenem" "10ug" 30 29 FALSE "EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Imipenem" 2 4 FALSE -"EUCAST 2012" "DISK" "Enterococcus" 3 "Linezolid" "10μg" 19 18 FALSE +"EUCAST 2012" "DISK" "Enterococcus" 3 "Linezolid" "10ug" 19 18 FALSE "EUCAST 2012" "MIC" "Enterococcus" 3 "Linezolid" 4 8 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Linezolid" "10μg" 19 18 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Linezolid" "10ug" 19 18 FALSE "EUCAST 2012" "MIC" "Staphylococcus" 3 "Linezolid" 4 8 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Linezolid" "10μg" 19 15 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Linezolid" "10ug" 19 15 FALSE "EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Linezolid" 2 8 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "10μg" 22 18 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "10ug" 22 18 FALSE "EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" 2 8 FALSE -"EUCAST 2012" "DISK" "Acinetobacter" 3 "Levofloxacin" "5μg" 21 17 FALSE +"EUCAST 2012" "DISK" "Acinetobacter" 3 "Levofloxacin" "5ug" 21 17 FALSE "EUCAST 2012" "MIC" "Acinetobacter" 3 "Levofloxacin" 1 4 FALSE "EUCAST 2012" "MIC" "Helicobacter pylori" 2 "Levofloxacin" 1 2 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Levofloxacin" "5μg" 26 25 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Levofloxacin" "5ug" 26 25 FALSE "EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Levofloxacin" 1 2 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Levofloxacin" "5μg" 23 22 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Levofloxacin" "5ug" 23 22 FALSE "EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" 1 2 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Levofloxacin" "5μg" 20 16 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Levofloxacin" "5ug" 20 16 FALSE "EUCAST 2012" "MIC" "Pseudomonas" 3 "Levofloxacin" 1 4 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Levofloxacin" "5μg" 22 18 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Levofloxacin" "5ug" 22 18 FALSE "EUCAST 2012" "MIC" "Staphylococcus" 3 "Levofloxacin" 1 4 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Levofloxacin" "5μg" 18 14 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Levofloxacin" "5ug" 18 14 FALSE "EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Levofloxacin" 1 4 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "5μg" 19 18 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "5ug" 19 18 FALSE "EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" 2 4 FALSE -"EUCAST 2012" "DISK" "Acinetobacter" 3 "Meropenem" "10μg" 21 14 FALSE +"EUCAST 2012" "DISK" "Acinetobacter" 3 "Meropenem" "10ug" 21 14 FALSE "EUCAST 2012" "MIC" "Acinetobacter" 3 "Meropenem" 2 16 FALSE -"EUCAST 2012" "DISK" "Other infections" "Haemophilus influenzae" 2 "Meropenem" "10μg" 20 19 FALSE +"EUCAST 2012" "DISK" "Other infections" "Haemophilus influenzae" 2 "Meropenem" "10ug" 20 19 FALSE "EUCAST 2012" "MIC" "Other infections" "Haemophilus influenzae" 2 "Meropenem" 2 4 FALSE "EUCAST 2012" "MIC" "Meningitis" "Haemophilus influenzae" 2 "Meropenem" 0.25 2 FALSE -"EUCAST 2012" "DISK" "Listeria monocytogenes" 2 "Meropenem" "10μg" 26 25 FALSE +"EUCAST 2012" "DISK" "Listeria monocytogenes" 2 "Meropenem" "10ug" 26 25 FALSE "EUCAST 2012" "MIC" "Listeria monocytogenes" 2 "Meropenem" 0.25 0.5 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Meropenem" "10μg" 33 32 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Meropenem" "10ug" 33 32 FALSE "EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Meropenem" 2 4 FALSE "EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Meropenem" 0.25 0.5 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Meropenem" "10μg" 24 17 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Meropenem" "10ug" 24 17 FALSE "EUCAST 2012" "MIC" "Pseudomonas" 3 "Meropenem" 2 16 FALSE "EUCAST 2012" "MIC" "Other infections" "Streptococcus pneumoniae" 2 "Meropenem" 2 4 FALSE "EUCAST 2012" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Meropenem" 0.25 2 FALSE -"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "10μg" 25 24 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "10ug" 25 24 FALSE "EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" 2 4 FALSE "EUCAST 2012" "MIC" "Clostridioides difficile" 2 "Moxifloxacin" 4 2048 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Moxifloxacin" "5μg" 25 24 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Moxifloxacin" "5ug" 25 24 FALSE "EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Moxifloxacin" 0.5 1 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Moxifloxacin" "5μg" 23 22 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Moxifloxacin" "5ug" 23 22 FALSE "EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Moxifloxacin" 0.5 1 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Moxifloxacin" "5μg" 24 20 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Moxifloxacin" "5ug" 24 20 FALSE "EUCAST 2012" "MIC" "Staphylococcus" 3 "Moxifloxacin" 0.5 2 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Moxifloxacin" "5μg" 18 14 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Moxifloxacin" "5ug" 18 14 FALSE "EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Moxifloxacin" 0.5 2 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "5μg" 22 21 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "5ug" 22 21 FALSE "EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" 0.5 1 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Minocycline" "30μg" 24 20 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Minocycline" "30ug" 24 20 FALSE "EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Minocycline" 1 4 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Minocycline" "30μg" 25 21 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Minocycline" "30ug" 25 21 FALSE "EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Minocycline" 1 4 FALSE "EUCAST 2012" "MIC" "Neisseria gonorrhoeae" 2 "Minocycline" 0.5 2 FALSE "EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Minocycline" 1 4 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Minocycline" "30μg" 23 19 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Minocycline" "30ug" 23 19 FALSE "EUCAST 2012" "MIC" "Staphylococcus" 3 "Minocycline" 0.5 2 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Minocycline" "30μg" 23 19 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Minocycline" "30ug" 23 19 FALSE "EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Minocycline" 0.5 2 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Minocycline" "30μg" 24 20 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Minocycline" "30ug" 24 20 FALSE "EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Minocycline" 0.5 2 FALSE "EUCAST 2012" "MIC" "Clostridioides difficile" 2 "Metronidazole" 2 4 FALSE "EUCAST 2012" "MIC" "Helicobacter pylori" 2 "Metronidazole" 8 16 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Mupirocin" "200μg" 30 17 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Mupirocin" "200ug" 30 17 FALSE "EUCAST 2012" "MIC" "Staphylococcus" 3 "Mupirocin" 1 512 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Nalidixic acid" "30μg" 23 22 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Nalidixic acid" "30μg" 23 22 FALSE -"EUCAST 2012" "DISK" "Acinetobacter" 3 "Netilmicin" "10μg" 16 15 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Nalidixic acid" "30ug" 23 22 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Nalidixic acid" "30ug" 23 22 FALSE +"EUCAST 2012" "DISK" "Acinetobacter" 3 "Netilmicin" "10ug" 16 15 FALSE "EUCAST 2012" "MIC" "Acinetobacter" 3 "Netilmicin" 4 8 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Netilmicin" "10μg" 12 11 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Netilmicin" "10ug" 12 11 FALSE "EUCAST 2012" "MIC" "Pseudomonas" 3 "Netilmicin" 4 8 FALSE -"EUCAST 2012" "DISK" "Staphylococcus aureus aureus" 1 "Netilmicin" "10μg" 18 17 FALSE +"EUCAST 2012" "DISK" "Staphylococcus aureus aureus" 1 "Netilmicin" "10ug" 18 17 FALSE "EUCAST 2012" "MIC" "Staphylococcus aureus aureus" 1 "Netilmicin" 1 2 FALSE -"EUCAST 2012" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "10μg" 22 21 FALSE +"EUCAST 2012" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "10ug" 22 21 FALSE "EUCAST 2012" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" 1 2 FALSE -"EUCAST 2012" "DISK" "UTI only" "Enterococcus faecalis" 2 "Nitrofurantoin" "100μg" 15 14 TRUE +"EUCAST 2012" "DISK" "UTI only" "Enterococcus faecalis" 2 "Nitrofurantoin" "100ug" 15 14 TRUE "EUCAST 2012" "MIC" "UTI only" "Enterococcus faecalis" 2 "Nitrofurantoin" 64 128 TRUE -"EUCAST 2012" "DISK" "UTI only" "Staphylococcus saprophyticus saprophyticus" 1 "Nitrofurantoin" "100μg" 13 12 TRUE +"EUCAST 2012" "DISK" "UTI only" "Staphylococcus saprophyticus saprophyticus" 1 "Nitrofurantoin" "100ug" 13 12 TRUE "EUCAST 2012" "MIC" "UTI only" "Staphylococcus saprophyticus saprophyticus" 1 "Nitrofurantoin" 64 128 TRUE -"EUCAST 2012" "DISK" "UTI only" "Streptococcus group B" 2 "Nitrofurantoin" "100μg" 15 14 TRUE +"EUCAST 2012" "DISK" "UTI only" "Streptococcus group B" 2 "Nitrofurantoin" "100ug" 15 14 TRUE "EUCAST 2012" "MIC" "UTI only" "Streptococcus group B" 2 "Nitrofurantoin" 64 128 TRUE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Norfloxacin" "10μg" 17 16 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Norfloxacin" "10μg" 12 11 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Norfloxacin" "10μg" 12 11 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Ofloxacin" "5μg" 23 22 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Norfloxacin" "10ug" 17 16 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Norfloxacin" "10ug" 12 11 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Norfloxacin" "10ug" 12 11 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Ofloxacin" "5ug" 23 22 FALSE "EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Ofloxacin" 0.5 1 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Ofloxacin" "5μg" 25 24 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Ofloxacin" "5ug" 25 24 FALSE "EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Ofloxacin" 0.5 1 FALSE "EUCAST 2012" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" 0.125 0.5 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Ofloxacin" "5μg" 20 19 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Ofloxacin" "5ug" 20 19 FALSE "EUCAST 2012" "MIC" "Staphylococcus" 3 "Ofloxacin" 1 2 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "5μg" 50 14 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "5ug" 50 14 FALSE "EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Ofloxacin" 0.125 8 FALSE "EUCAST 2012" "MIC" "Staphylococcus" 3 "Oxacillin" 0.25 0.5 FALSE "EUCAST 2012" "MIC" "Staphylococcus aureus aureus" 1 "Oxacillin" 2 4 FALSE "EUCAST 2012" "MIC" "Staphylococcus lugdunensis" 2 "Oxacillin" 2 4 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "1μg" 20 19 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "1ug" 20 19 FALSE "EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Benzylpenicillin" "1 unit" 12 11 FALSE "EUCAST 2012" "DISK" "Listeria monocytogenes" 2 "Benzylpenicillin" "1 unit" 13 12 FALSE "EUCAST 2012" "MIC" "Listeria monocytogenes" 2 "Benzylpenicillin" 1 2 FALSE @@ -6702,22 +6702,22 @@ "EUCAST 2012" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" 0.064 0.12 FALSE "EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "1 unit" 18 11 FALSE "EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" 0.25 4 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Piperacillin" "30μg" 19 18 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Piperacillin" "30ug" 19 18 FALSE "EUCAST 2012" "MIC" "Pseudomonas" 3 "Piperacillin" 16 32 FALSE -"EUCAST 2012" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "15μg" 22 19 FALSE +"EUCAST 2012" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "15ug" 22 19 FALSE "EUCAST 2012" "MIC" "Enterococcus" 3 "Quinupristin/dalfopristin" 1 8 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Quinupristin/dalfopristin" "15μg" 21 17 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Quinupristin/dalfopristin" "15ug" 21 17 FALSE "EUCAST 2012" "MIC" "Staphylococcus" 3 "Quinupristin/dalfopristin" 1 4 FALSE "EUCAST 2012" "MIC" "Clostridioides difficile" 2 "Rifampicin" 0.004 2048 FALSE "EUCAST 2012" "MIC" "Helicobacter pylori" 2 "Rifampicin" 1 2 FALSE -"EUCAST 2012" "DISK" "Prophylaxis" "Haemophilus influenzae" 2 "Rifampicin" "5μg" 18 17 FALSE +"EUCAST 2012" "DISK" "Prophylaxis" "Haemophilus influenzae" 2 "Rifampicin" "5ug" 18 17 FALSE "EUCAST 2012" "MIC" "Prophylaxis" "Haemophilus influenzae" 2 "Rifampicin" 1 2 FALSE "EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Rifampicin" 0.25 0.5 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Rifampicin" "5μg" 26 22 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Rifampicin" "5ug" 26 22 FALSE "EUCAST 2012" "MIC" "Staphylococcus" 3 "Rifampicin" 0.064 1 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Rifampicin" "5μg" 21 14 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Rifampicin" "5ug" 21 14 FALSE "EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Rifampicin" 0.064 1 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "5μg" 22 16 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "5ug" 22 16 FALSE "EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" 0.064 1 FALSE "EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Roxithromycin" 1 32 FALSE "EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Roxithromycin" 0.5 2 FALSE @@ -6729,131 +6729,131 @@ "EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" 1 2 FALSE "EUCAST 2012" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" 64 128 FALSE "EUCAST 2012" "MIC" "Enterococcus" 3 "Streptomycin-high" 512 560 FALSE -"EUCAST 2012" "DISK" "Enterococcus" 3 "Streptoduocin" "300μg" 19 18 FALSE +"EUCAST 2012" "DISK" "Enterococcus" 3 "Streptoduocin" "300ug" 19 18 FALSE "EUCAST 2012" "MIC" "Enterococcus" 3 "Streptoduocin" 512 560 FALSE -"EUCAST 2012" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "1.25μg/23.75μg" 16 12 FALSE +"EUCAST 2012" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 16 12 FALSE "EUCAST 2012" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" 2 8 FALSE -"EUCAST 2012" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "1.25μg/23.75μg" 50 20 FALSE +"EUCAST 2012" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 50 20 FALSE "EUCAST 2012" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" 0.032 2 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "1.25μg/23.75μg" 23 19 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 23 19 FALSE "EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" 0.5 2 FALSE -"EUCAST 2012" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "1.25μg/23.75μg" 29 28 FALSE +"EUCAST 2012" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 29 28 FALSE "EUCAST 2012" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" 0.064 0.12 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" 0.5 2 FALSE -"EUCAST 2012" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "1.25μg/23.75μg" 16 15 FALSE +"EUCAST 2012" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 16 15 FALSE "EUCAST 2012" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" 4 8 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "1.25μg/23.75μg" 17 13 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 17 13 FALSE "EUCAST 2012" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" 2 8 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Trimethoprim/sulfamethoxazole" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Trimethoprim/sulfamethoxazole" 1 4 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" 1 4 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "75μg/10μg" 17 16 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "75ug/10ug" 17 16 FALSE "EUCAST 2012" "MIC" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" 16 32 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Tetracycline" "30μg" 25 21 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Tetracycline" "30ug" 25 21 FALSE "EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Tetracycline" 1 4 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "30μg" 28 24 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "30ug" 28 24 FALSE "EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" 1 4 FALSE "EUCAST 2012" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" 0.5 2 FALSE "EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Tetracycline" 1 4 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Tetracycline" "30μg" 22 18 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Tetracycline" "30ug" 22 18 FALSE "EUCAST 2012" "MIC" "Staphylococcus" 3 "Tetracycline" 1 4 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Tetracycline" "30μg" 23 19 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Tetracycline" "30ug" 23 19 FALSE "EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Tetracycline" 1 4 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "30μg" 23 19 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "30ug" 23 19 FALSE "EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" 1 4 FALSE -"EUCAST 2012" "DISK" "Enterococcus" 3 "Teicoplanin" "30μg" 16 15 FALSE +"EUCAST 2012" "DISK" "Enterococcus" 3 "Teicoplanin" "30ug" 16 15 FALSE "EUCAST 2012" "MIC" "Enterococcus" 3 "Teicoplanin" 2 4 FALSE "EUCAST 2012" "MIC" "Staphylococcus aureus aureus" 1 "Teicoplanin" 2 4 FALSE "EUCAST 2012" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Teicoplanin" 4 8 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Teicoplanin" "30μg" 15 14 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Teicoplanin" "30ug" 15 14 FALSE "EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Teicoplanin" 2 4 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Teicoplanin" "30μg" 18 17 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Teicoplanin" "30ug" 18 17 FALSE "EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Teicoplanin" 2 4 FALSE -"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "30μg" 16 15 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "30ug" 16 15 FALSE "EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" 2 4 FALSE "EUCAST 2012" "MIC" "Clostridioides difficile" 2 "Tigecycline" 0.25 2048 FALSE -"EUCAST 2012" "DISK" "Enterococcus" 3 "Tigecycline" "15μg" 18 14 FALSE +"EUCAST 2012" "DISK" "Enterococcus" 3 "Tigecycline" "15ug" 18 14 FALSE "EUCAST 2012" "MIC" "Enterococcus" 3 "Tigecycline" 0.25 1 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Tigecycline" "15μg" 18 17 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Tigecycline" "15ug" 18 17 FALSE "EUCAST 2012" "MIC" "Staphylococcus" 3 "Tigecycline" 0.5 1 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Tigecycline" "15μg" 19 15 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Tigecycline" "15ug" 19 15 FALSE "EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Tigecycline" 0.25 1 FALSE "EUCAST 2012" "MIC" "Helicobacter pylori" 2 "Ticarcillin" 1 2 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Ticarcillin" "75μg" 17 16 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Ticarcillin" "75ug" 17 16 FALSE "EUCAST 2012" "MIC" "Pseudomonas" 3 "Ticarcillin" 16 32 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Telithromycin" "15μg" 50 11 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Telithromycin" "15ug" 50 11 FALSE "EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Telithromycin" 0.125 16 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Telithromycin" "15μg" 23 19 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Telithromycin" "15ug" 23 19 FALSE "EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Telithromycin" 0.25 1 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Telithromycin" "15μg" 22 18 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Telithromycin" "15ug" 22 18 FALSE "EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Telithromycin" 0.25 1 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "15μg" 25 21 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "15ug" 25 21 FALSE "EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" 0.25 1 FALSE "EUCAST 2012" "MIC" "Staphylococcus aureus aureus" 1 "Telavancin" 1 2 FALSE -"EUCAST 2012" "DISK" "UTI only" "Enterococcus" 3 "Trimethoprim" "5μg" 50 20 TRUE +"EUCAST 2012" "DISK" "UTI only" "Enterococcus" 3 "Trimethoprim" "5ug" 50 20 TRUE "EUCAST 2012" "MIC" "UTI only" "Enterococcus" 3 "Trimethoprim" 0.032 2 TRUE -"EUCAST 2012" "DISK" "UTI only" "Staphylococcus" 3 "Trimethoprim" "5μg" 17 13 TRUE +"EUCAST 2012" "DISK" "UTI only" "Staphylococcus" 3 "Trimethoprim" "5ug" 17 13 TRUE "EUCAST 2012" "MIC" "UTI only" "Staphylococcus" 3 "Trimethoprim" 2 8 TRUE "EUCAST 2012" "MIC" "UTI only" "Streptococcus group B" 2 "Trimethoprim" 2 4 TRUE -"EUCAST 2012" "DISK" "Acinetobacter" 3 "Tobramycin" "10μg" 17 16 FALSE +"EUCAST 2012" "DISK" "Acinetobacter" 3 "Tobramycin" "10ug" 17 16 FALSE "EUCAST 2012" "MIC" "Acinetobacter" 3 "Tobramycin" 4 8 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Tobramycin" "10μg" 16 15 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Tobramycin" "10ug" 16 15 FALSE "EUCAST 2012" "MIC" "Pseudomonas" 3 "Tobramycin" 4 8 FALSE -"EUCAST 2012" "DISK" "Staphylococcus aureus aureus" 1 "Tobramycin" "10μg" 18 17 FALSE +"EUCAST 2012" "DISK" "Staphylococcus aureus aureus" 1 "Tobramycin" "10ug" 18 17 FALSE "EUCAST 2012" "MIC" "Staphylococcus aureus aureus" 1 "Tobramycin" 1 2 FALSE -"EUCAST 2012" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "10μg" 22 21 FALSE +"EUCAST 2012" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "10ug" 22 21 FALSE "EUCAST 2012" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" 1 2 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Piperacillin/tazobactam" "30μg/6μg" 19 18 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Piperacillin/tazobactam" "30ug/6ug" 19 18 FALSE "EUCAST 2012" "MIC" "Pseudomonas" 3 "Piperacillin/tazobactam" 16 32 FALSE "EUCAST 2012" "MIC" "Clostridioides difficile" 2 "Vancomycin" 2 4 FALSE -"EUCAST 2012" "DISK" "Enterococcus" 3 "Vancomycin" "5μg" 12 11 FALSE +"EUCAST 2012" "DISK" "Enterococcus" 3 "Vancomycin" "5ug" 12 11 FALSE "EUCAST 2012" "MIC" "Enterococcus" 3 "Vancomycin" 4 8 FALSE "EUCAST 2012" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" 2 4 FALSE "EUCAST 2012" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Vancomycin" 4 8 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Vancomycin" "5μg" 13 12 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Vancomycin" "5ug" 13 12 FALSE "EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Vancomycin" 2 4 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "5μg" 16 15 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "5ug" 16 15 FALSE "EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" 2 4 FALSE -"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "5μg" 15 14 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "5ug" 15 14 FALSE "EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" 2 4 FALSE "EUCAST 2011" "MIC" "Enterococcus" 3 "Amoxicillin/clavulanic acid" 4 16 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" "20μg" 20 19 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" "20ug" 20 19 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" 1 2 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" 1 2 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10μg" 12 11 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10μg" 8 16 FALSE -"EUCAST 2011" "DISK" "Acinetobacter" 3 "Amikacin" "30μg" 18 14 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 12 11 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 8 16 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" 3 "Amikacin" "30ug" 18 14 FALSE "EUCAST 2011" "MIC" "Acinetobacter" 3 "Amikacin" 8 32 FALSE -"EUCAST 2011" "DISK" "Pseudomonas" 3 "Amikacin" "30μg" 18 14 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" 3 "Amikacin" "30ug" 18 14 FALSE "EUCAST 2011" "MIC" "Pseudomonas" 3 "Amikacin" 8 32 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Amikacin" "30μg" 18 14 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Amikacin" "30ug" 18 14 FALSE "EUCAST 2011" "MIC" "Staphylococcus" 3 "Amikacin" 8 32 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Amikacin" "Generic rules" "30μg" 16 12 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Amikacin" "Generic rules" "30μg" 8 32 FALSE -"EUCAST 2011" "DISK" "Enterococcus" 3 "Ampicillin" "2μg" 10 7 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 16 12 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 8 32 FALSE +"EUCAST 2011" "DISK" "Enterococcus" 3 "Ampicillin" "2ug" 10 7 FALSE "EUCAST 2011" "MIC" "Enterococcus" 3 "Ampicillin" 4 16 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Ampicillin" "2μg" 16 15 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Ampicillin" "2ug" 16 15 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Ampicillin" 1 2 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Ampicillin" 1 2 FALSE "EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Ampicillin" 0.125 2 FALSE -"EUCAST 2011" "DISK" "Streptococcus" 3 "Ampicillin" "2μg" 21 14 FALSE +"EUCAST 2011" "DISK" "Streptococcus" 3 "Ampicillin" "2ug" 21 14 FALSE "EUCAST 2011" "MIC" "Streptococcus" 3 "Ampicillin" 0.5 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Ampicillin" "2μg" 28 21 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Ampicillin" "2ug" 28 21 FALSE "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Ampicillin" 0.5 4 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Ampicillin" "Generic rules" "10μg" 12 11 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Ampicillin" "Generic rules" "2μg" 8 16 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Ampicillin" "Generic rules" "10ug" 12 11 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Ampicillin" "Generic rules" "2ug" 8 16 FALSE "EUCAST 2011" "MIC" "Enterococcus" 3 "Amoxicillin" 4 16 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Amoxicillin" 1 2 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin" 1 2 FALSE "EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Amoxicillin" 0.125 2 FALSE "EUCAST 2011" "MIC" "Streptococcus" 3 "Amoxicillin" 0.5 4 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Amoxicillin" "Generic rules" "10μg" 8 16 FALSE -"EUCAST 2011" "DISK" "Pseudomonas" 3 "Aztreonam" "30μg" 50 15 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Amoxicillin" "Generic rules" "10ug" 8 16 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" 3 "Aztreonam" "30ug" 50 15 FALSE "EUCAST 2011" "MIC" "Pseudomonas" 3 "Aztreonam" 1 32 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Aztreonam" "Generic rules" "30μg" 25 20 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Aztreonam" "Generic rules" "30μg" 1 16 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 25 20 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 1 16 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Azithromycin" 0.125 8 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" 0.5 1 FALSE "EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Azithromycin" 0.25 1 FALSE @@ -6866,68 +6866,68 @@ "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" 0.25 1 FALSE "EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Azithromycin" 0.25 1 FALSE "EUCAST 2011" "MIC" "Pseudomonas" 3 "Ceftazidime" 8 16 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Ceftazidime" "Generic rules" "10μg" 20 14 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Ceftazidime" "Generic rules" "10μg" 1 16 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Cefaclor" "30μg" 15 14 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Ceftazidime" "Generic rules" "10ug" 20 14 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Ceftazidime" "Generic rules" "10ug" 1 16 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Cefaclor" "30ug" 15 14 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Cefaclor" 0.5 1 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Cefaclor" 0.5 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Cefaclor" "30μg" 50 27 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Cefaclor" "30ug" 50 27 FALSE "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" 0.032 1 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Cefixime" "5μg" 22 21 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Cefixime" "5ug" 22 21 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Cefixime" 0.125 0.25 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Cefixime" 0.5 2 FALSE "EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" 0.125 0.25 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Cefixime" "Generic rules" "5μg" 17 16 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Cefixime" "Generic rules" "5μg" 1 2 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Cefadroxil" "Generic rules" "30μg" 12 11 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Cefadroxil" "Generic rules" "30μg" 16 32 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Chloramphenicol" "30μg" 28 24 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 17 16 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 1 2 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Cefadroxil" "Generic rules" "30ug" 12 11 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Cefadroxil" "Generic rules" "30ug" 16 32 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Chloramphenicol" "30ug" 28 24 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Chloramphenicol" 1 4 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" 1 4 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Chloramphenicol" "30μg" 18 17 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Chloramphenicol" "30ug" 18 17 FALSE "EUCAST 2011" "MIC" "Staphylococcus" 3 "Chloramphenicol" 8 16 FALSE "EUCAST 2011" "MIC" "Streptococcus group A" 2 "Chloramphenicol" 8 16 FALSE "EUCAST 2011" "MIC" "Streptococcus group B" 2 "Chloramphenicol" 8 16 FALSE "EUCAST 2011" "MIC" "Streptococcus group C" 2 "Chloramphenicol" 8 16 FALSE "EUCAST 2011" "MIC" "Streptococcus group G" 2 "Chloramphenicol" 8 16 FALSE "EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Chloramphenicol" 8 16 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "30μg" 20 19 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "30ug" 20 19 FALSE "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" 8 16 FALSE "EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Chloramphenicol" 8 16 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30μg" 17 16 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30μg" 8 16 FALSE -"EUCAST 2011" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "5μg" 21 20 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 17 16 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 8 16 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "5ug" 21 20 FALSE "EUCAST 2011" "MIC" "Acinetobacter" 3 "Ciprofloxacin" 1 2 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Ciprofloxacin" "5μg" 23 22 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Ciprofloxacin" "5ug" 23 22 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Ciprofloxacin" 0.5 1 FALSE -"EUCAST 2011" "DISK" "Moraxella catarrhalis" 2 "Ciprofloxacin" "5μg" 23 22 FALSE +"EUCAST 2011" "DISK" "Moraxella catarrhalis" 2 "Ciprofloxacin" "5ug" 23 22 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" 0.5 1 FALSE "EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" 0.032 0.06 FALSE "EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" 0.032 0.06 FALSE -"EUCAST 2011" "DISK" "Pseudomonas" 3 "Ciprofloxacin" "5μg" 25 21 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" 3 "Ciprofloxacin" "5ug" 25 21 FALSE "EUCAST 2011" "MIC" "Pseudomonas" 3 "Ciprofloxacin" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "5μg" 19 18 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "5ug" 19 18 FALSE "EUCAST 2011" "MIC" "Staphylococcus" 3 "Ciprofloxacin" 1 2 FALSE "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Ciprofloxacin" 0.125 4 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5μg" 22 18 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5μg" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Clindamycin" "2μg" 21 17 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 22 18 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 0.5 2 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Clindamycin" "2ug" 21 17 FALSE "EUCAST 2011" "MIC" "Staphylococcus" 3 "Clindamycin" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus" 3 "Clindamycin" "2μg" 19 18 FALSE +"EUCAST 2011" "DISK" "Streptococcus" 3 "Clindamycin" "2ug" 19 18 FALSE "EUCAST 2011" "MIC" "Streptococcus" 3 "Clindamycin" 0.5 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Clindamycin" "2μg" 17 16 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Clindamycin" "2ug" 17 16 FALSE "EUCAST 2011" "MIC" "Streptococcus group A" 2 "Clindamycin" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Clindamycin" "2μg" 17 16 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Clindamycin" "2ug" 17 16 FALSE "EUCAST 2011" "MIC" "Streptococcus group B" 2 "Clindamycin" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Clindamycin" "2μg" 17 16 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Clindamycin" "2ug" 17 16 FALSE "EUCAST 2011" "MIC" "Streptococcus group C" 2 "Clindamycin" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Clindamycin" "2μg" 17 16 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Clindamycin" "2ug" 17 16 FALSE "EUCAST 2011" "MIC" "Streptococcus group G" 2 "Clindamycin" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Clindamycin" "2μg" 17 16 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Clindamycin" "2ug" 17 16 FALSE "EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Clindamycin" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "2μg" 19 18 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "2ug" 19 18 FALSE "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" 0.5 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Clindamycin" "2μg" 17 16 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Clindamycin" "2ug" 17 16 FALSE "EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Clindamycin" 0.5 2 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Clarithromycin" 1 64 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" 0.25 1 FALSE @@ -6942,53 +6942,53 @@ "EUCAST 2011" "MIC" "Acinetobacter" 3 "Colistin" 2 4 FALSE "EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Colistin" 2 8 FALSE "EUCAST 2011" "MIC" "Pseudomonas" 3 "Colistin" 2 4 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Colistin" "Generic rules" "10μg" 2 4 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Cefpodoxime" "10μg" 24 20 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Colistin" "Generic rules" "10ug" 2 4 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Cefpodoxime" "10ug" 24 20 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Cefpodoxime" 0.25 1 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Cefpodoxime" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Cefpodoxime" "10μg" 28 24 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Cefpodoxime" "10ug" 28 24 FALSE "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" 0.25 1 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10μg" 21 20 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10μg" 1 2 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Ceftriaxone" "30μg" 27 26 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 21 20 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 1 2 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Ceftriaxone" "30ug" 27 26 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Ceftriaxone" 0.125 0.25 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" 1 4 FALSE "EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" 0.125 0.25 FALSE "EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" 0.125 0.25 FALSE -"EUCAST 2011" "DISK" "Streptococcus" 3 "Ceftriaxone" "30μg" 27 26 FALSE +"EUCAST 2011" "DISK" "Streptococcus" 3 "Ceftriaxone" "30ug" 27 26 FALSE "EUCAST 2011" "MIC" "Streptococcus" 3 "Ceftriaxone" 0.5 1 FALSE "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Ceftriaxone" 0.5 4 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30μg" 23 19 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30μg" 1 4 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Ceftibuten" "30μg" 24 23 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 23 19 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 1 4 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Ceftibuten" "30ug" 24 23 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Ceftibuten" 1 2 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Ceftibuten" 1 2 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30μg" 21 20 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30μg" 1 2 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Cefotaxime" "5μg" 22 21 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 21 20 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 1 2 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Cefotaxime" "5ug" 22 21 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Cefotaxime" 0.125 0.25 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" 1 4 FALSE "EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" 0.125 0.25 FALSE "EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" 0.125 0.25 FALSE -"EUCAST 2011" "DISK" "Streptococcus" 3 "Cefotaxime" "5μg" 23 22 FALSE +"EUCAST 2011" "DISK" "Streptococcus" 3 "Cefotaxime" "5ug" 23 22 FALSE "EUCAST 2011" "MIC" "Streptococcus" 3 "Cefotaxime" 0.5 1 FALSE "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Cefotaxime" 0.5 4 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Cefotaxime" "Generic rules" "5μg" 21 17 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Cefotaxime" "Generic rules" "5μg" 1 4 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Cefuroxime axetil" "30μg" 50 24 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Cefotaxime" "Generic rules" "5ug" 21 17 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Cefotaxime" "Generic rules" "5ug" 1 4 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Cefuroxime axetil" "30ug" 50 24 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Cefuroxime axetil" 0.125 2 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Cefuroxime axetil" 0.125 4 FALSE "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Cefuroxime axetil" 0.25 1 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30μg" 18 17 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30μg" 8 16 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Cefuroxime" "30μg" 25 21 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 18 17 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 8 16 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Cefuroxime" "30ug" 25 21 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Cefuroxime" 1 4 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Cefuroxime" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus" 3 "Cefuroxime" "30μg" 26 25 FALSE +"EUCAST 2011" "DISK" "Streptococcus" 3 "Cefuroxime" "30ug" 26 25 FALSE "EUCAST 2011" "MIC" "Streptococcus" 3 "Cefuroxime" 0.5 1 FALSE "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Cefuroxime" 0.5 2 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30μg" 18 17 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30μg" 8 16 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 18 17 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 8 16 FALSE "EUCAST 2011" "MIC" "Streptococcus" 3 "Cefazolin" 0.5 1 FALSE "EUCAST 2011" "MIC" "Staphylococcus" 3 "Daptomycin" 1 2 FALSE "EUCAST 2011" "MIC" "Streptococcus group A" 2 "Daptomycin" 1 2 FALSE @@ -6997,14 +6997,14 @@ "EUCAST 2011" "MIC" "Streptococcus group G" 2 "Daptomycin" 1 2 FALSE "EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Daptomycin" 1 2 FALSE "EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Daptomycin" 1 2 FALSE -"EUCAST 2011" "DISK" "Acinetobacter" 3 "Doripenem" "10μg" 21 15 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" 3 "Doripenem" "10ug" 21 15 FALSE "EUCAST 2011" "MIC" "Acinetobacter" 3 "Doripenem" 1 8 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Doripenem" "10μg" 20 19 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Doripenem" "10ug" 20 19 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Doripenem" 1 2 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Doripenem" 1 2 FALSE -"EUCAST 2011" "DISK" "Pseudomonas" 3 "Doripenem" "10μg" 22 16 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" 3 "Doripenem" "10ug" 22 16 FALSE "EUCAST 2011" "MIC" "Pseudomonas" 3 "Doripenem" 1 8 FALSE -"EUCAST 2011" "DISK" "Streptococcus" 3 "Doripenem" "10μg" 25 24 FALSE +"EUCAST 2011" "DISK" "Streptococcus" 3 "Doripenem" "10ug" 25 24 FALSE "EUCAST 2011" "MIC" "Streptococcus" 3 "Doripenem" 1 2 FALSE "EUCAST 2011" "MIC" "Streptococcus group A" 2 "Doripenem" 1 2 FALSE "EUCAST 2011" "MIC" "Streptococcus group B" 2 "Doripenem" 1 2 FALSE @@ -7013,8 +7013,8 @@ "EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Doripenem" 1 2 FALSE "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" 1 2 FALSE "EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Doripenem" 1 2 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Doripenem" "Generic rules" "10μg" 24 17 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Doripenem" "Generic rules" "10μg" 1 8 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Doripenem" "Generic rules" "10ug" 24 17 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Doripenem" "Generic rules" "10ug" 1 8 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Doxycycline" 1 4 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Doxycycline" 1 4 FALSE "EUCAST 2011" "MIC" "Staphylococcus" 3 "Doxycycline" 1 4 FALSE @@ -7025,30 +7025,30 @@ "EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Doxycycline" 1 4 FALSE "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" 1 4 FALSE "EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Doxycycline" 1 4 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Erythromycin" "15μg" 50 11 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Erythromycin" "15ug" 50 11 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Erythromycin" 0.5 32 FALSE -"EUCAST 2011" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "15μg" 21 17 FALSE +"EUCAST 2011" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "15ug" 21 17 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Erythromycin" "15μg" 21 17 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Erythromycin" "15ug" 21 17 FALSE "EUCAST 2011" "MIC" "Staphylococcus" 3 "Erythromycin" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Erythromycin" "15μg" 21 17 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Erythromycin" "15ug" 21 17 FALSE "EUCAST 2011" "MIC" "Streptococcus group A" 2 "Erythromycin" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Erythromycin" "15μg" 21 17 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Erythromycin" "15ug" 21 17 FALSE "EUCAST 2011" "MIC" "Streptococcus group B" 2 "Erythromycin" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Erythromycin" "15μg" 21 17 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Erythromycin" "15ug" 21 17 FALSE "EUCAST 2011" "MIC" "Streptococcus group C" 2 "Erythromycin" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Erythromycin" "15μg" 21 17 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Erythromycin" "15ug" 21 17 FALSE "EUCAST 2011" "MIC" "Streptococcus group G" 2 "Erythromycin" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Erythromycin" "15μg" 21 17 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Erythromycin" "15ug" 21 17 FALSE "EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Erythromycin" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "15μg" 22 18 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "15ug" 22 18 FALSE "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Erythromycin" "15μg" 21 17 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Erythromycin" "15ug" 21 17 FALSE "EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Erythromycin" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Ertapenem" "10μg" 20 19 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Ertapenem" "10ug" 20 19 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Ertapenem" 0.5 1 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Ertapenem" 0.5 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus" 3 "Ertapenem" "10μg" 22 21 FALSE +"EUCAST 2011" "DISK" "Streptococcus" 3 "Ertapenem" "10ug" 22 21 FALSE "EUCAST 2011" "MIC" "Streptococcus" 3 "Ertapenem" 0.5 1 FALSE "EUCAST 2011" "MIC" "Streptococcus group A" 2 "Ertapenem" 0.5 1 FALSE "EUCAST 2011" "MIC" "Streptococcus group B" 2 "Ertapenem" 0.5 1 FALSE @@ -7057,47 +7057,47 @@ "EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Ertapenem" 0.5 1 FALSE "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" 0.5 1 FALSE "EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Ertapenem" 0.5 1 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Ertapenem" "Generic rules" "10μg" 25 21 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Ertapenem" "Generic rules" "10μg" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Cefepime" "30μg" 25 24 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 25 21 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 0.5 2 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Cefepime" "30ug" 25 24 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Cefepime" 0.25 0.5 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Cefepime" 0.25 0.5 FALSE "EUCAST 2011" "MIC" "Pseudomonas" 3 "Cefepime" 8 16 FALSE -"EUCAST 2011" "DISK" "Streptococcus" 3 "Cefepime" "30μg" 25 24 FALSE +"EUCAST 2011" "DISK" "Streptococcus" 3 "Cefepime" "30ug" 25 24 FALSE "EUCAST 2011" "MIC" "Streptococcus" 3 "Cefepime" 0.5 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Cefepime" "30μg" 32 28 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Cefepime" "30ug" 32 28 FALSE "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Cefepime" 1 4 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Cefepime" "Generic rules" "30μg" 24 17 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Cefepime" "Generic rules" "30μg" 1 16 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 24 17 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 1 16 FALSE "EUCAST 2011" "MIC" "Pseudomonas" 3 "Fosfomycin" 32 64 FALSE "EUCAST 2011" "MIC" "Staphylococcus" 3 "Fosfomycin" 32 64 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200μg" 32 64 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Cefoxitin" "30μg" 25 24 FALSE -"EUCAST 2011" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "30μg" 22 21 FALSE -"EUCAST 2011" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "30μg" 22 21 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Fusidic acid" "10μg" 22 21 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200ug" 32 64 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Cefoxitin" "30ug" 25 24 FALSE +"EUCAST 2011" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "30ug" 22 21 FALSE +"EUCAST 2011" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "30ug" 22 21 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Fusidic acid" "10ug" 22 21 FALSE "EUCAST 2011" "MIC" "Staphylococcus" 3 "Fusidic acid" 1 2 FALSE -"EUCAST 2011" "DISK" "Enterococcus" 3 "Gentamicin-high" "30μg" 8 7 FALSE -"EUCAST 2011" "DISK" "Acinetobacter" 3 "Gentamicin" "10μg" 15 14 FALSE +"EUCAST 2011" "DISK" "Enterococcus" 3 "Gentamicin-high" "30ug" 8 7 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" 3 "Gentamicin" "10ug" 15 14 FALSE "EUCAST 2011" "MIC" "Acinetobacter" 3 "Gentamicin" 4 8 FALSE -"EUCAST 2011" "DISK" "Enterococcus" 3 "Gentamicin" "30μg" 8 7 FALSE +"EUCAST 2011" "DISK" "Enterococcus" 3 "Gentamicin" "30ug" 8 7 FALSE "EUCAST 2011" "MIC" "Enterococcus" 3 "Gentamicin" 128 256 FALSE -"EUCAST 2011" "DISK" "Pseudomonas" 3 "Gentamicin" "10μg" 15 14 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" 3 "Gentamicin" "10ug" 15 14 FALSE "EUCAST 2011" "MIC" "Pseudomonas" 3 "Gentamicin" 4 8 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Gentamicin" "10μg" 18 17 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Gentamicin" "10ug" 18 17 FALSE "EUCAST 2011" "MIC" "Staphylococcus" 3 "Gentamicin" 1 2 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Gentamicin" "Generic rules" "10μg" 17 13 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Gentamicin" "Generic rules" "10μg" 2 8 FALSE -"EUCAST 2011" "DISK" "Acinetobacter" 3 "Imipenem" "10μg" 23 16 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 17 13 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 2 8 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" 3 "Imipenem" "10ug" 23 16 FALSE "EUCAST 2011" "MIC" "Acinetobacter" 3 "Imipenem" 2 16 FALSE -"EUCAST 2011" "DISK" "Enterococcus" 3 "Imipenem" "10μg" 21 17 FALSE +"EUCAST 2011" "DISK" "Enterococcus" 3 "Imipenem" "10ug" 21 17 FALSE "EUCAST 2011" "MIC" "Enterococcus" 3 "Imipenem" 4 16 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Imipenem" "10μg" 16 15 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Imipenem" "10ug" 16 15 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Imipenem" 2 4 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Imipenem" 2 4 FALSE -"EUCAST 2011" "DISK" "Pseudomonas" 3 "Imipenem" "10μg" 20 16 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" 3 "Imipenem" "10ug" 20 16 FALSE "EUCAST 2011" "MIC" "Pseudomonas" 3 "Imipenem" 4 16 FALSE -"EUCAST 2011" "DISK" "Streptococcus" 3 "Imipenem" "10μg" 30 29 FALSE +"EUCAST 2011" "DISK" "Streptococcus" 3 "Imipenem" "10ug" 30 29 FALSE "EUCAST 2011" "MIC" "Streptococcus" 3 "Imipenem" 2 4 FALSE "EUCAST 2011" "MIC" "Streptococcus group A" 2 "Imipenem" 2 4 FALSE "EUCAST 2011" "MIC" "Streptococcus group B" 2 "Imipenem" 2 4 FALSE @@ -7106,62 +7106,62 @@ "EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Imipenem" 2 4 FALSE "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" 2 4 FALSE "EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Imipenem" 2 4 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Imipenem" "Generic rules" "10μg" 21 14 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Imipenem" "Generic rules" "10μg" 2 16 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Cephalexin" "Generic rules" "30μg" 16 32 FALSE -"EUCAST 2011" "DISK" "Enterococcus" 3 "Linezolid" "10μg" 19 18 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 21 14 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 2 16 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Cephalexin" "Generic rules" "30ug" 16 32 FALSE +"EUCAST 2011" "DISK" "Enterococcus" 3 "Linezolid" "10ug" 19 18 FALSE "EUCAST 2011" "MIC" "Enterococcus" 3 "Linezolid" 4 8 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Linezolid" "10μg" 17 16 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Linezolid" "10ug" 17 16 FALSE "EUCAST 2011" "MIC" "Staphylococcus" 3 "Linezolid" 4 8 FALSE -"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Linezolid" "10μg" 19 15 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Linezolid" "10ug" 19 15 FALSE "EUCAST 2011" "MIC" "Streptococcus group A" 2 "Linezolid" 2 8 FALSE -"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Linezolid" "10μg" 19 15 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Linezolid" "10ug" 19 15 FALSE "EUCAST 2011" "MIC" "Streptococcus group B" 2 "Linezolid" 2 8 FALSE -"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Linezolid" "10μg" 19 15 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Linezolid" "10ug" 19 15 FALSE "EUCAST 2011" "MIC" "Streptococcus group C" 2 "Linezolid" 2 8 FALSE -"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Linezolid" "10μg" 19 15 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Linezolid" "10ug" 19 15 FALSE "EUCAST 2011" "MIC" "Streptococcus group G" 2 "Linezolid" 2 8 FALSE -"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Linezolid" "10μg" 19 15 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Linezolid" "10ug" 19 15 FALSE "EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Linezolid" 2 8 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "10μg" 20 19 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "10ug" 20 19 FALSE "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" 4 8 FALSE -"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Linezolid" "10μg" 19 15 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Linezolid" "10ug" 19 15 FALSE "EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Linezolid" 2 8 FALSE -"EUCAST 2011" "DISK" "Acinetobacter" 3 "Levofloxacin" "5μg" 21 20 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" 3 "Levofloxacin" "5ug" 21 20 FALSE "EUCAST 2011" "MIC" "Acinetobacter" 3 "Levofloxacin" 1 4 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Levofloxacin" "5μg" 21 20 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Levofloxacin" "5ug" 21 20 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Levofloxacin" 1 2 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" 1 2 FALSE -"EUCAST 2011" "DISK" "Pseudomonas" 3 "Levofloxacin" "5μg" 20 16 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" 3 "Levofloxacin" "5ug" 20 16 FALSE "EUCAST 2011" "MIC" "Pseudomonas" 3 "Levofloxacin" 1 4 FALSE "EUCAST 2011" "MIC" "Staphylococcus" 3 "Levofloxacin" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Levofloxacin" "5μg" 18 14 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Levofloxacin" "5ug" 18 14 FALSE "EUCAST 2011" "MIC" "Streptococcus group A" 2 "Levofloxacin" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Levofloxacin" "5μg" 18 14 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Levofloxacin" "5ug" 18 14 FALSE "EUCAST 2011" "MIC" "Streptococcus group B" 2 "Levofloxacin" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Levofloxacin" "5μg" 18 14 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Levofloxacin" "5ug" 18 14 FALSE "EUCAST 2011" "MIC" "Streptococcus group C" 2 "Levofloxacin" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Levofloxacin" "5μg" 18 14 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Levofloxacin" "5ug" 18 14 FALSE "EUCAST 2011" "MIC" "Streptococcus group G" 2 "Levofloxacin" 1 4 FALSE -"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Levofloxacin" "5μg" 18 14 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Levofloxacin" "5ug" 18 14 FALSE "EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Levofloxacin" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "5μg" 19 18 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "5ug" 19 18 FALSE "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" 2 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Levofloxacin" "5μg" 18 14 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Levofloxacin" "5ug" 18 14 FALSE "EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Levofloxacin" 1 4 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5μg" 22 18 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5μg" 1 4 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Mecillinam" "Generic rules" "10μg" 15 14 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Mecillinam" "Generic rules" "10μg" 8 16 FALSE -"EUCAST 2011" "DISK" "Acinetobacter" 3 "Meropenem" "10μg" 21 14 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 22 18 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 1 4 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 15 14 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 8 16 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" 3 "Meropenem" "10ug" 21 14 FALSE "EUCAST 2011" "MIC" "Acinetobacter" 3 "Meropenem" 2 16 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Meropenem" "10μg" 20 19 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Meropenem" "10ug" 20 19 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Meropenem" 2 4 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Meropenem" 2 4 FALSE "EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Meropenem" 0.25 0.5 FALSE -"EUCAST 2011" "DISK" "Pseudomonas" 3 "Meropenem" "10μg" 24 17 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" 3 "Meropenem" "10ug" 24 17 FALSE "EUCAST 2011" "MIC" "Pseudomonas" 3 "Meropenem" 2 16 FALSE -"EUCAST 2011" "DISK" "Streptococcus" 3 "Meropenem" "10μg" 25 24 FALSE +"EUCAST 2011" "DISK" "Streptococcus" 3 "Meropenem" "10ug" 25 24 FALSE "EUCAST 2011" "MIC" "Streptococcus" 3 "Meropenem" 2 4 FALSE "EUCAST 2011" "MIC" "Streptococcus group A" 2 "Meropenem" 2 4 FALSE "EUCAST 2011" "MIC" "Streptococcus group B" 2 "Meropenem" 2 4 FALSE @@ -7170,29 +7170,29 @@ "EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Meropenem" 2 4 FALSE "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Meropenem" 2 4 FALSE "EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Meropenem" 2 4 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Meropenem" "Generic rules" "10μg" 22 15 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Meropenem" "Generic rules" "10μg" 2 16 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Moxifloxacin" "5μg" 23 22 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 22 15 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 2 16 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Moxifloxacin" "5ug" 23 22 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Moxifloxacin" 0.5 1 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Moxifloxacin" 0.5 1 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Moxifloxacin" "5μg" 22 18 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Moxifloxacin" "5ug" 22 18 FALSE "EUCAST 2011" "MIC" "Staphylococcus" 3 "Moxifloxacin" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Moxifloxacin" "30μg" 18 14 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Moxifloxacin" "30ug" 18 14 FALSE "EUCAST 2011" "MIC" "Streptococcus group A" 2 "Moxifloxacin" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Moxifloxacin" "5μg" 18 14 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Moxifloxacin" "5ug" 18 14 FALSE "EUCAST 2011" "MIC" "Streptococcus group B" 2 "Moxifloxacin" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Moxifloxacin" "5μg" 18 14 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Moxifloxacin" "5ug" 18 14 FALSE "EUCAST 2011" "MIC" "Streptococcus group C" 2 "Moxifloxacin" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Moxifloxacin" "5μg" 18 14 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Moxifloxacin" "5ug" 18 14 FALSE "EUCAST 2011" "MIC" "Streptococcus group G" 2 "Moxifloxacin" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Moxifloxacin" "5μg" 18 14 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Moxifloxacin" "5ug" 18 14 FALSE "EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Moxifloxacin" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "5μg" 22 21 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "5ug" 22 21 FALSE "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" 0.5 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Moxifloxacin" "5μg" 18 14 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Moxifloxacin" "5ug" 18 14 FALSE "EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Moxifloxacin" 0.5 2 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5μg" 20 16 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5μg" 0.5 2 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 20 16 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 0.5 2 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Minocycline" 1 4 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Minocycline" 1 4 FALSE "EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Minocycline" 0.5 2 FALSE @@ -7205,96 +7205,96 @@ "EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Minocycline" 0.5 2 FALSE "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Minocycline" 0.5 2 FALSE "EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Minocycline" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Nalidixic acid" "30μg" 23 22 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30μg" 16 15 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30μg" 16 32 FALSE -"EUCAST 2011" "DISK" "Acinetobacter" 3 "Netilmicin" "10μg" 15 14 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Nalidixic acid" "30ug" 23 22 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 16 15 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 16 32 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" 3 "Netilmicin" "10ug" 15 14 FALSE "EUCAST 2011" "MIC" "Acinetobacter" 3 "Netilmicin" 4 8 FALSE -"EUCAST 2011" "DISK" "Pseudomonas" 3 "Netilmicin" "10μg" 10 9 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" 3 "Netilmicin" "10ug" 10 9 FALSE "EUCAST 2011" "MIC" "Pseudomonas" 3 "Netilmicin" 4 8 FALSE "EUCAST 2011" "MIC" "Staphylococcus" 3 "Netilmicin" 1 2 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Netilmicin" "Generic rules" "10μg" 15 11 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Netilmicin" "Generic rules" "10μg" 2 8 FALSE -"EUCAST 2011" "DISK" "Enterococcus" 3 "Nitrofurantoin" "100μg" 15 14 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Netilmicin" "Generic rules" "10ug" 15 11 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Netilmicin" "Generic rules" "10ug" 2 8 FALSE +"EUCAST 2011" "DISK" "Enterococcus" 3 "Nitrofurantoin" "100ug" 15 14 FALSE "EUCAST 2011" "MIC" "Enterococcus" 3 "Nitrofurantoin" 64 128 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Nitrofurantoin" "100μg" 13 12 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Nitrofurantoin" "100ug" 13 12 FALSE "EUCAST 2011" "MIC" "Staphylococcus" 3 "Nitrofurantoin" 64 128 FALSE -"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Nitrofurantoin" "100μg" 15 14 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Nitrofurantoin" "100ug" 15 14 FALSE "EUCAST 2011" "MIC" "Streptococcus group A" 2 "Nitrofurantoin" 64 128 FALSE -"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Nitrofurantoin" "100μg" 15 14 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Nitrofurantoin" "100ug" 15 14 FALSE "EUCAST 2011" "MIC" "Streptococcus group B" 2 "Nitrofurantoin" 64 128 FALSE -"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Nitrofurantoin" "100μg" 15 14 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Nitrofurantoin" "100ug" 15 14 FALSE "EUCAST 2011" "MIC" "Streptococcus group C" 2 "Nitrofurantoin" 64 128 FALSE -"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Nitrofurantoin" "100μg" 15 14 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Nitrofurantoin" "100ug" 15 14 FALSE "EUCAST 2011" "MIC" "Streptococcus group G" 2 "Nitrofurantoin" 64 128 FALSE -"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Nitrofurantoin" "100μg" 15 14 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Nitrofurantoin" "100ug" 15 14 FALSE "EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Nitrofurantoin" 64 128 FALSE -"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Nitrofurantoin" "100μg" 15 14 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Nitrofurantoin" "100ug" 15 14 FALSE "EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Nitrofurantoin" 64 128 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100μg" 11 10 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100μg" 64 128 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Norfloxacin" "10μg" 17 16 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Norfloxacin" "10μg" 12 11 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10μg" 22 18 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10μg" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Ofloxacin" "5μg" 21 20 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100ug" 11 10 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100ug" 64 128 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Norfloxacin" "10ug" 17 16 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Norfloxacin" "10ug" 12 11 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10ug" 22 18 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10ug" 0.5 2 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Ofloxacin" "5ug" 21 20 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Ofloxacin" 0.5 1 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Ofloxacin" 0.5 1 FALSE "EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" 0.125 0.5 FALSE "EUCAST 2011" "MIC" "Staphylococcus" 3 "Ofloxacin" 1 2 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "5μg" 50 14 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "5ug" 50 14 FALSE "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Ofloxacin" 0.125 8 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5μg" 22 18 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5μg" 0.5 2 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 22 18 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 0.5 2 FALSE "EUCAST 2011" "MIC" "Staphylococcus" 3 "Oxacillin" 0.25 0.5 FALSE "EUCAST 2011" "MIC" "Staphylococcus aureus aureus" 1 "Oxacillin" 2 4 FALSE "EUCAST 2011" "MIC" "Staphylococcus lugdunensis" 2 "Oxacillin" 2 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "1μg" 18 17 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "1ug" 18 17 FALSE "EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Benzylpenicillin" 0.064 2 FALSE "EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Benzylpenicillin" 0.064 0.5 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Benzylpenicillin" "1μg" 26 25 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Benzylpenicillin" "1ug" 26 25 FALSE "EUCAST 2011" "MIC" "Staphylococcus" 3 "Benzylpenicillin" 0.125 0.25 FALSE -"EUCAST 2011" "DISK" "Streptococcus" 3 "Benzylpenicillin" "1μg" 18 11 FALSE +"EUCAST 2011" "DISK" "Streptococcus" 3 "Benzylpenicillin" "1ug" 18 11 FALSE "EUCAST 2011" "MIC" "Streptococcus" 3 "Benzylpenicillin" 0.25 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Benzylpenicillin" "1μg" 18 17 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Benzylpenicillin" "1ug" 18 17 FALSE "EUCAST 2011" "MIC" "Streptococcus group A" 2 "Benzylpenicillin" 0.25 0.5 FALSE -"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Benzylpenicillin" "1μg" 18 17 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Benzylpenicillin" "1ug" 18 17 FALSE "EUCAST 2011" "MIC" "Streptococcus group B" 2 "Benzylpenicillin" 0.25 0.5 FALSE -"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Benzylpenicillin" "1μg" 18 17 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Benzylpenicillin" "1ug" 18 17 FALSE "EUCAST 2011" "MIC" "Streptococcus group C" 2 "Benzylpenicillin" 0.25 0.5 FALSE -"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Benzylpenicillin" "1μg" 18 17 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Benzylpenicillin" "1ug" 18 17 FALSE "EUCAST 2011" "MIC" "Streptococcus group G" 2 "Benzylpenicillin" 0.25 0.5 FALSE -"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Benzylpenicillin" "1μg" 18 17 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Benzylpenicillin" "1ug" 18 17 FALSE "EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Benzylpenicillin" 0.25 0.5 FALSE "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Benzylpenicillin" 0.064 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Benzylpenicillin" "1μg" 18 17 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Benzylpenicillin" "1ug" 18 17 FALSE "EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Benzylpenicillin" 0.25 0.5 FALSE "EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Phenoxymethylpenicillin" "10" 15 14 FALSE -"EUCAST 2011" "DISK" "Pseudomonas" 3 "Piperacillin" "30μg" 19 18 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" 3 "Piperacillin" "30ug" 19 18 FALSE "EUCAST 2011" "MIC" "Pseudomonas" 3 "Piperacillin" 16 32 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Piperacillin" "Generic rules" "30μg" 18 14 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Piperacillin" "Generic rules" "30μg" 8 32 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Piperacillin" "Generic rules" "30ug" 18 14 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Piperacillin" "Generic rules" "30ug" 8 32 FALSE "EUCAST 2011" "MIC" "Enterococcus faecium" 2 "Quinupristin/dalfopristin" 1 8 FALSE "EUCAST 2011" "MIC" "Staphylococcus" 3 "Quinupristin/dalfopristin" 1 4 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Rifampicin" "5μg" 18 17 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Rifampicin" "5ug" 18 17 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Rifampicin" 0.5 1 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Rifampicin" 0.5 1 FALSE "EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Rifampicin" 0.25 0.5 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Rifampicin" "5μg" 25 21 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Rifampicin" "5ug" 25 21 FALSE "EUCAST 2011" "MIC" "Staphylococcus" 3 "Rifampicin" 0.064 0.5 FALSE -"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Rifampicin" "5μg" 21 14 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Rifampicin" "5ug" 21 14 FALSE "EUCAST 2011" "MIC" "Streptococcus group A" 2 "Rifampicin" 0.064 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Rifampicin" "5μg" 21 14 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Rifampicin" "5ug" 21 14 FALSE "EUCAST 2011" "MIC" "Streptococcus group B" 2 "Rifampicin" 0.064 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Rifampicin" "5μg" 21 14 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Rifampicin" "5ug" 21 14 FALSE "EUCAST 2011" "MIC" "Streptococcus group C" 2 "Rifampicin" 0.064 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Rifampicin" "5μg" 21 14 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Rifampicin" "5ug" 21 14 FALSE "EUCAST 2011" "MIC" "Streptococcus group G" 2 "Rifampicin" 0.064 1 FALSE -"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Rifampicin" "5μg" 21 14 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Rifampicin" "5ug" 21 14 FALSE "EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Rifampicin" 0.064 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "5μg" 22 16 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "5ug" 22 16 FALSE "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" 0.064 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Rifampicin" "5μg" 21 14 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Rifampicin" "5ug" 21 14 FALSE "EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Rifampicin" 0.064 1 FALSE "EUCAST 2011" "MIC" "Staphylococcus" 3 "Roxithromycin" 1 4 FALSE "EUCAST 2011" "MIC" "Streptococcus group A" 2 "Roxithromycin" 0.5 2 FALSE @@ -7307,60 +7307,60 @@ "EUCAST 2011" "MIC" "Enterococcus" 3 "Ampicillin/sulbactam" 4 16 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Ampicillin/sulbactam" 1 2 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" 1 2 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10μg" 8 16 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10ug" 8 16 FALSE "EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" 64 128 FALSE -"EUCAST 2011" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "1.25μg/23.75μg" 16 12 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 16 12 FALSE "EUCAST 2011" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" 2 8 FALSE -"EUCAST 2011" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "1.25μg/23.75μg" 50 20 FALSE +"EUCAST 2011" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 50 20 FALSE "EUCAST 2011" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" 0.32 2 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "1.25μg/23.75μg" 23 19 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 23 19 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2011" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" 0.5 2 FALSE "EUCAST 2011" "MIC" "Pseudomonas" 3 "Trimethoprim/sulfamethoxazole" 4 8 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "1.25μg/23.75μg" 17 13 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 17 13 FALSE "EUCAST 2011" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" 2 8 FALSE -"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Trimethoprim/sulfamethoxazole" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2011" "MIC" "Streptococcus group A" 2 "Trimethoprim/sulfamethoxazole" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Trimethoprim/sulfamethoxazole" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2011" "MIC" "Streptococcus group B" 2 "Trimethoprim/sulfamethoxazole" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Trimethoprim/sulfamethoxazole" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2011" "MIC" "Streptococcus group C" 2 "Trimethoprim/sulfamethoxazole" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Trimethoprim/sulfamethoxazole" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2011" "MIC" "Streptococcus group G" 2 "Trimethoprim/sulfamethoxazole" 1 4 FALSE -"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Trimethoprim/sulfamethoxazole" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Trimethoprim/sulfamethoxazole" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Trimethoprim/sulfamethoxazole" "1.25μg/23.75μg" 18 14 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 14 FALSE "EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Trimethoprim/sulfamethoxazole" 1 4 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75μg" 16 12 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75μg" 2 8 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 16 12 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 2 8 FALSE "EUCAST 2011" "MIC" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" 16 32 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15μg" 8 32 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Tetracycline" "30μg" 24 20 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15ug" 8 32 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Tetracycline" "30ug" 24 20 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Tetracycline" 1 4 FALSE -"EUCAST 2011" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "30μg" 28 24 FALSE +"EUCAST 2011" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "30ug" 28 24 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" 1 4 FALSE "EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" 0.5 2 FALSE "EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Tetracycline" 1 4 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Tetracycline" "30μg" 22 18 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Tetracycline" "30ug" 22 18 FALSE "EUCAST 2011" "MIC" "Staphylococcus" 3 "Tetracycline" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Tetracycline" "30μg" 23 19 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Tetracycline" "30ug" 23 19 FALSE "EUCAST 2011" "MIC" "Streptococcus group A" 2 "Tetracycline" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Tetracycline" "30μg" 23 19 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Tetracycline" "30ug" 23 19 FALSE "EUCAST 2011" "MIC" "Streptococcus group B" 2 "Tetracycline" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Tetracycline" "30μg" 23 19 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Tetracycline" "30ug" 23 19 FALSE "EUCAST 2011" "MIC" "Streptococcus group C" 2 "Tetracycline" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Tetracycline" "30μg" 23 19 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Tetracycline" "30ug" 23 19 FALSE "EUCAST 2011" "MIC" "Streptococcus group G" 2 "Tetracycline" 1 4 FALSE -"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Tetracycline" "30μg" 23 19 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Tetracycline" "30ug" 23 19 FALSE "EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Tetracycline" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "30μg" 23 19 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "30ug" 23 19 FALSE "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Tetracycline" "30μg" 23 19 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Tetracycline" "30ug" 23 19 FALSE "EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Tetracycline" 1 4 FALSE -"EUCAST 2011" "DISK" "Enterococcus" 3 "Teicoplanin" "30μg" 16 15 FALSE +"EUCAST 2011" "DISK" "Enterococcus" 3 "Teicoplanin" "30ug" 16 15 FALSE "EUCAST 2011" "MIC" "Enterococcus" 3 "Teicoplanin" 2 4 FALSE "EUCAST 2011" "MIC" "Staphylococcus" 3 "Teicoplanin" 4 8 FALSE "EUCAST 2011" "MIC" "Staphylococcus aureus aureus" 1 "Teicoplanin" 2 4 FALSE @@ -7373,27 +7373,27 @@ "EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Teicoplanin" 2 4 FALSE "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Teicoplanin" 2 4 FALSE "EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Teicoplanin" 2 4 FALSE -"EUCAST 2011" "DISK" "Enterococcus" 3 "Tigecycline" "15μg" 18 14 FALSE +"EUCAST 2011" "DISK" "Enterococcus" 3 "Tigecycline" "15ug" 18 14 FALSE "EUCAST 2011" "MIC" "Enterococcus" 3 "Tigecycline" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Tigecycline" "15μg" 18 17 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Tigecycline" "15ug" 18 17 FALSE "EUCAST 2011" "MIC" "Staphylococcus" 3 "Tigecycline" 0.5 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Tigecycline" "15μg" 19 15 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Tigecycline" "15ug" 19 15 FALSE "EUCAST 2011" "MIC" "Streptococcus group A" 2 "Tigecycline" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Tigecycline" "15μg" 19 15 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Tigecycline" "15ug" 19 15 FALSE "EUCAST 2011" "MIC" "Streptococcus group B" 2 "Tigecycline" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Tigecycline" "15μg" 19 15 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Tigecycline" "15ug" 19 15 FALSE "EUCAST 2011" "MIC" "Streptococcus group C" 2 "Tigecycline" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Tigecycline" "15μg" 19 15 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Tigecycline" "15ug" 19 15 FALSE "EUCAST 2011" "MIC" "Streptococcus group G" 2 "Tigecycline" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Tigecycline" "15μg" 19 15 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Tigecycline" "15ug" 19 15 FALSE "EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Tigecycline" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Tigecycline" "15μg" 19 15 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Tigecycline" "15ug" 19 15 FALSE "EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Tigecycline" 0.25 1 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Tigecycline" "Generic rules" "15μg" 18 14 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Tigecycline" "Generic rules" "15μg" 1 4 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Tigecycline" "Generic rules" "15ug" 18 14 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Tigecycline" "Generic rules" "15ug" 1 4 FALSE "EUCAST 2011" "MIC" "Pseudomonas" 3 "Ticarcillin" 16 32 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Ticarcillin" "Generic rules" "75μg" 23 21 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Ticarcillin" "Generic rules" "75μg" 8 32 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Ticarcillin" "Generic rules" "75ug" 23 21 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Ticarcillin" "Generic rules" "75ug" 8 32 FALSE "EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Telithromycin" 0.125 16 FALSE "EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Telithromycin" 0.25 1 FALSE "EUCAST 2011" "MIC" "Streptococcus group A" 2 "Telithromycin" 0.25 1 FALSE @@ -7403,25 +7403,25 @@ "EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Telithromycin" 0.25 1 FALSE "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" 0.25 1 FALSE "EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Telithromycin" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Enterococcus" 3 "Trimethoprim" "5μg" 50 20 FALSE +"EUCAST 2011" "DISK" "Enterococcus" 3 "Trimethoprim" "5ug" 50 20 FALSE "EUCAST 2011" "MIC" "Enterococcus" 3 "Trimethoprim" 0.32 2 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Trimethoprim" "5μg" 17 13 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Trimethoprim" "5ug" 17 13 FALSE "EUCAST 2011" "MIC" "Staphylococcus" 3 "Trimethoprim" 2 8 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5μg" 18 14 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5μg" 2 8 FALSE -"EUCAST 2011" "DISK" "Acinetobacter" 3 "Tobramycin" "10μg" 15 14 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 18 14 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 2 8 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" 3 "Tobramycin" "10ug" 15 14 FALSE "EUCAST 2011" "MIC" "Acinetobacter" 3 "Tobramycin" 4 8 FALSE -"EUCAST 2011" "DISK" "Pseudomonas" 3 "Tobramycin" "10μg" 15 14 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" 3 "Tobramycin" "10ug" 15 14 FALSE "EUCAST 2011" "MIC" "Pseudomonas" 3 "Tobramycin" 4 8 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Tobramycin" "10μg" 19 18 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Tobramycin" "10ug" 19 18 FALSE "EUCAST 2011" "MIC" "Staphylococcus" 3 "Tobramycin" 1 2 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Tobramycin" "Generic rules" "10μg" 15 11 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Tobramycin" "Generic rules" "10μg" 2 8 FALSE -"EUCAST 2011" "DISK" "Pseudomonas" 3 "Piperacillin/tazobactam" "30μg" 19 18 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 15 11 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 2 8 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" 3 "Piperacillin/tazobactam" "30ug" 19 18 FALSE "EUCAST 2011" "MIC" "Pseudomonas" 3 "Piperacillin/tazobactam" 16 32 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "30/6μg" 18 14 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "30/6μg" 8 32 FALSE -"EUCAST 2011" "DISK" "Enterococcus" 3 "Vancomycin" "5μg" 12 11 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "30/6ug" 18 14 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "30/6ug" 8 32 FALSE +"EUCAST 2011" "DISK" "Enterococcus" 3 "Vancomycin" "5ug" 12 11 FALSE "EUCAST 2011" "MIC" "Enterococcus" 3 "Vancomycin" 4 8 FALSE "EUCAST 2011" "MIC" "Staphylococcus" 3 "Vancomycin" 2 4 FALSE "EUCAST 2011" "MIC" "Streptococcus" 3 "Vancomycin" 2 4 FALSE @@ -7430,53 +7430,53 @@ "EUCAST 2011" "MIC" "Streptococcus group C" 2 "Vancomycin" 2 4 FALSE "EUCAST 2011" "MIC" "Streptococcus group G" 2 "Vancomycin" 2 4 FALSE "EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Vancomycin" 2 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "5μg" 15 14 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "5ug" 15 14 FALSE "EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" 2 4 FALSE "EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Vancomycin" 2 4 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Table 2A" "20μg/10μg" 18 13 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Table 2A" "20ug/10ug" 18 13 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Table 2A" 8 32 FALSE -"CLSI 2021" "DISK" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20μg" 18 13 FALSE +"CLSI 2021" "DISK" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE "CLSI 2021" "MIC" "Aggregatibacter" 3 "Amoxicillin/clavulanic acid" "M45 Table 9" 4 8 FALSE "CLSI 2021" "MIC" "Burkholderia pseudomallei" 2 "Amoxicillin/clavulanic acid" "M45 Table 21" 8 32 FALSE "CLSI 2021" "MIC" "Cardiobacterium" 3 "Amoxicillin/clavulanic acid" "M45 Table 9" 4 8 FALSE "CLSI 2021" "MIC" "Eikenella corrodens" 2 "Amoxicillin/clavulanic acid" "M45 Table 9" 4 8 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" "20/10μg" 20 19 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" "20/10ug" 20 19 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" 4 8 FALSE "CLSI 2021" "MIC" "Kingella" 3 "Amoxicillin/clavulanic acid" "M45 Table 9" 4 8 FALSE -"CLSI 2021" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 16" "20μg" 24 23 FALSE +"CLSI 2021" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 16" "20ug" 24 23 FALSE "CLSI 2021" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 16" 4 8 FALSE -"CLSI 2021" "DISK" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 17" "20μg" 27 6 FALSE +"CLSI 2021" "DISK" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 17" "20ug" 27 6 FALSE "CLSI 2021" "MIC" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 17" 0.5 2048 FALSE "CLSI 2021" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Amoxicillin/clavulanic acid" "Table 2G" 2 8 FALSE -"CLSI 2021" "DISK" "Vibrio" 3 "Amoxicillin/clavulanic acid" "M45 Table 20" "20μg" 18 13 FALSE +"CLSI 2021" "DISK" "Vibrio" 3 "Amoxicillin/clavulanic acid" "M45 Table 20" "20ug" 18 13 FALSE "CLSI 2021" "MIC" "Vibrio" 3 "Amoxicillin/clavulanic acid" "M45 Table 20" 8 32 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10μg" 18 13 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10μg" 8 32 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Amikacin" "Table 2A" "30μg" 17 14 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 18 13 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 8 32 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Amikacin" "Table 2A" "30ug" 17 14 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Amikacin" "Table 2A" 16 64 FALSE -"CLSI 2021" "DISK" "Acinetobacter" 3 "Amikacin" "Table 2B-2" "30μg" 17 14 FALSE +"CLSI 2021" "DISK" "Acinetobacter" 3 "Amikacin" "Table 2B-2" "30ug" 17 14 FALSE "CLSI 2021" "MIC" "Acinetobacter" 3 "Amikacin" "Table 2B-2" 16 64 FALSE -"CLSI 2021" "DISK" "Aeromonas" 3 "Amikacin" "M45 Table 2" "30μg" 17 14 FALSE +"CLSI 2021" "DISK" "Aeromonas" 3 "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE "CLSI 2021" "MIC" "Aeromonas" 3 "Amikacin" "M45 Table 3" 16 64 FALSE "CLSI 2021" "MIC" "Bacillus" 3 "Amikacin" "M45 Table 4" 16 64 FALSE "CLSI 2021" "MIC" "(unknown Gram-negatives)" 2 "Amikacin" "Table 2B-5" 16 64 FALSE -"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" "30μg" 17 14 FALSE +"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" "30ug" 17 14 FALSE "CLSI 2021" "MIC" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" 16 64 FALSE -"CLSI 2021" "DISK" "Vibrio" 3 "Amikacin" "M45 Table 20" "30μg" 17 14 FALSE +"CLSI 2021" "DISK" "Vibrio" 3 "Amikacin" "M45 Table 20" "30ug" 17 14 FALSE "CLSI 2021" "MIC" "Vibrio" 3 "Amikacin" "M45 Table 20" 16 64 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Amikacin" "Generic rules" "30μg" 17 14 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Amikacin" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Ampicillin" "Table 2A" "10μg" 17 13 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 17 14 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Ampicillin" "Table 2A" "10ug" 17 13 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Ampicillin" "Table 2A" 8 32 FALSE "CLSI 2021" "MIC" "Abiotrophia" 3 "Ampicillin" "M45 Table 1" 0.25 8 FALSE "CLSI 2021" "MIC" "Aggregatibacter" 3 "Ampicillin" "M45 Table 9" 1 4 FALSE "CLSI 2021" "MIC" "Bacillus" 3 "Ampicillin" "M45 Table 4" 0.25 0.5 FALSE "CLSI 2021" "MIC" "Cardiobacterium" 3 "Ampicillin" "M45 Table 9" 1 4 FALSE "CLSI 2021" "MIC" "Eikenella corrodens" 2 "Ampicillin" "M45 Table 9" 1 4 FALSE -"CLSI 2021" "DISK" "Enterococcus" 3 "Ampicillin" "Table 2D" "10μg" 17 16 FALSE +"CLSI 2021" "DISK" "Enterococcus" 3 "Ampicillin" "Table 2D" "10ug" 17 16 FALSE "CLSI 2021" "MIC" "Enterococcus" 3 "Ampicillin" "Table 2D" 8 16 FALSE "CLSI 2021" "MIC" "Granulicatella" 3 "Ampicillin" "M45 Table 1" 0.25 8 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Ampicillin" "Table 2E" "10μg" 22 18 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Ampicillin" "Table 2E" "10ug" 22 18 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Ampicillin" "Table 2E" 1 4 FALSE "CLSI 2021" "MIC" "Kingella" 3 "Ampicillin" "M45 Table 9" 1 4 FALSE "CLSI 2021" "MIC" "Leuconostoc" 3 "Ampicillin" "M45 Table 13" 8 2048 FALSE @@ -7485,15 +7485,15 @@ "CLSI 2021" "MIC" "Listeria monocytogenes" 2 "Ampicillin" "M45 Table 14" 2 2048 FALSE "CLSI 2021" "MIC" "Neisseria meningitidis" 2 "Ampicillin" "Table 2I" 0.125 2 FALSE "CLSI 2021" "MIC" "Pediococcus" 3 "Ampicillin" "M45 Table 18" 8 2048 FALSE -"CLSI 2021" "DISK" "Pasteurella" 3 "Ampicillin" "M45 Table 17" "10μg" 27 6 FALSE +"CLSI 2021" "DISK" "Pasteurella" 3 "Ampicillin" "M45 Table 17" "10ug" 27 6 FALSE "CLSI 2021" "MIC" "Pasteurella" 3 "Ampicillin" "M45 Table 17" 0.5 2048 FALSE -"CLSI 2021" "DISK" "Streptococcus" 3 "Ampicillin" "Table 2H-1" "10μg" 24 6 FALSE +"CLSI 2021" "DISK" "Streptococcus" 3 "Ampicillin" "Table 2H-1" "10ug" 24 6 FALSE "CLSI 2021" "MIC" "Streptococcus" 3 "Ampicillin" "Table 2H-1" 0.25 2048 FALSE "CLSI 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Table 2H-2" 0.25 8 FALSE -"CLSI 2021" "DISK" "Vibrio" 3 "Ampicillin" "M45 Table 20" "10μg" 17 13 FALSE +"CLSI 2021" "DISK" "Vibrio" 3 "Ampicillin" "M45 Table 20" "10ug" 17 13 FALSE "CLSI 2021" "MIC" "Vibrio" 3 "Ampicillin" "M45 Table 20" 8 32 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Ampicillin" "Generic rules" "10μg" 17 13 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Ampicillin" "Generic rules" "2μg" 8 32 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Ampicillin" "Generic rules" "10ug" 17 13 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Ampicillin" "Generic rules" "2ug" 8 32 FALSE "CLSI 2021" "MIC" "Bacillus anthracis" 2 "Amoxicillin" "M45 Table 21" 0.125 0.25 FALSE "CLSI 2021" "MIC" "Pasteurella" 3 "Amoxicillin" "M45 Table 17" 0.5 2048 FALSE "CLSI 2021" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Amoxicillin" "Table 2G" 2 8 FALSE @@ -7504,48 +7504,48 @@ "CLSI 2021" "MIC" "Candida tropicalis" 2 "Anidulafungin" "Table 1" 0.25 1 FALSE "CLSI 2021" "MIC" "Meyerozyma guilliermondii" 2 "Anidulafungin" "Table 1" 2 8 FALSE "CLSI 2021" "MIC" "Pichia" 3 "Anidulafungin" "Table 1" 0.25 1 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Aztreonam" "Table 2A" "30μg" 21 17 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Aztreonam" "Table 2A" "30ug" 21 17 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Aztreonam" "Table 2A" 4 16 FALSE -"CLSI 2021" "DISK" "Aeromonas" 3 "Aztreonam" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2021" "DISK" "Aeromonas" 3 "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2021" "MIC" "Aeromonas" 3 "Aztreonam" "M45 Table 3" 4 16 FALSE "CLSI 2021" "MIC" "(unknown Gram-negatives)" 2 "Aztreonam" "Table 2B-5" 8 32 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Aztreonam" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Aztreonam" "Table 2E" "30ug" 26 6 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Aztreonam" "Table 2E" 2 2048 FALSE -"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" "30μg" 22 15 FALSE +"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" "30ug" 22 15 FALSE "CLSI 2021" "MIC" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" 8 32 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Aztreonam" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Aztreonam" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Azlocillin" "Generic rules" "75μg" 18 17 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Azlocillin" "Generic rules" "75μg" 64 128 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Azlocillin" "Generic rules" "75ug" 18 17 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Azlocillin" "Generic rules" "75ug" 64 128 FALSE "CLSI 2021" "MIC" "Aggregatibacter" 3 "Azithromycin" "M45 Table 9" 4 2048 FALSE "CLSI 2021" "MIC" "Cardiobacterium" 3 "Azithromycin" "M45 Table 9" 4 2048 FALSE "CLSI 2021" "MIC" "Eikenella corrodens" 2 "Azithromycin" "M45 Table 9" 4 2048 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Azithromycin" "Table 2E" "15μg" 12 6 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Azithromycin" "Table 2E" "15ug" 12 6 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Azithromycin" "Table 2E" 4 2048 FALSE "CLSI 2021" "MIC" "Kingella" 3 "Azithromycin" "M45 Table 9" 4 2048 FALSE -"CLSI 2021" "DISK" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 16" "15μg" 26 6 FALSE +"CLSI 2021" "DISK" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 16" "15ug" 26 6 FALSE "CLSI 2021" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 16" 0.25 2048 FALSE -"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Azithromycin" "Table 2F" "15μg" 30 6 FALSE +"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Azithromycin" "Table 2F" "15ug" 30 6 FALSE "CLSI 2021" "MIC" "Neisseria gonorrhoeae" 2 "Azithromycin" "Table 2F" 1 2048 FALSE -"CLSI 2021" "DISK" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" "15μg" 20 6 FALSE +"CLSI 2021" "DISK" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" "15ug" 20 6 FALSE "CLSI 2021" "MIC" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" 2 2048 FALSE -"CLSI 2021" "DISK" "Pasteurella" 3 "Azithromycin" "M45 Table 17" "15μg" 20 6 FALSE +"CLSI 2021" "DISK" "Pasteurella" 3 "Azithromycin" "M45 Table 17" "15ug" 20 6 FALSE "CLSI 2021" "MIC" "Pasteurella" 3 "Azithromycin" "M45 Table 17" 1 2048 FALSE -"CLSI 2021" "DISK" "Shigella" 3 "Azithromycin" "Table 2A" "15μg" 16 10 FALSE +"CLSI 2021" "DISK" "Shigella" 3 "Azithromycin" "Table 2A" "15ug" 16 10 FALSE "CLSI 2021" "MIC" "Shigella" 3 "Azithromycin" "Table 2A" 8 32 FALSE -"CLSI 2021" "DISK" "Salmonella enterica" 2 "Azithromycin" "Table 2A" "15μg" 13 12 FALSE +"CLSI 2021" "DISK" "Salmonella enterica" 2 "Azithromycin" "Table 2A" "15ug" 13 12 FALSE "CLSI 2021" "MIC" "Salmonella enterica" 2 "Azithromycin" "Table 2A" 16 32 FALSE -"CLSI 2021" "DISK" "Staphylococcus" 3 "Azithromycin" "Table 2C" "15μg" 18 13 FALSE +"CLSI 2021" "DISK" "Staphylococcus" 3 "Azithromycin" "Table 2C" "15ug" 18 13 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Azithromycin" "Table 2C" 2 8 FALSE -"CLSI 2021" "DISK" "Streptococcus" 3 "Azithromycin" "Table 2H-1" "15μg" 18 13 FALSE +"CLSI 2021" "DISK" "Streptococcus" 3 "Azithromycin" "Table 2H-1" "15ug" 18 13 FALSE "CLSI 2021" "MIC" "Streptococcus" 3 "Azithromycin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" "15μg" 18 13 FALSE +"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" "15ug" 18 13 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" 0.5 2 FALSE -"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" "15μg" 18 13 FALSE +"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" "15ug" 18 13 FALSE "CLSI 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" 0.5 2 FALSE "CLSI 2021" "MIC" "Vibrio" 3 "Azithromycin" "M45 Table 20" 2 2048 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Azithromycin" "Generic rules" "15μg" 18 13 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Azithromycin" "Generic rules" "15μg" 2 8 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Azithromycin" "Generic rules" "15ug" 18 13 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Azithromycin" "Generic rules" "15ug" 2 8 FALSE "CLSI 2021" "MIC" "Candida" 3 "Caspofungin" "Table 1" 0.125 0.5 FALSE "CLSI 2021" "DISK" "Candida albicans" 2 "Caspofungin" "Table 1" 17 14 FALSE "CLSI 2021" "MIC" "Candida albicans" 2 "Caspofungin" "Table 1" 0.25 1 FALSE @@ -7559,117 +7559,117 @@ "CLSI 2021" "MIC" "Meyerozyma guilliermondii" 2 "Caspofungin" "Table 1" 2 8 FALSE "CLSI 2021" "DISK" "Pichia" 3 "Caspofungin" "Table 1" 17 14 FALSE "CLSI 2021" "MIC" "Pichia" 3 "Caspofungin" "Table 1" 0.25 1 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefetamet" "Table 2A" "10μg" 18 14 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefetamet" "Table 2A" "10ug" 18 14 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Cefetamet" "Table 2A" 4 16 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Cefetamet" "Table 2E" "10μg" 18 14 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Cefetamet" "Table 2E" "10ug" 18 14 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Cefetamet" "Table 2E" 4 16 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Cefetamet" "Generic rules" "10μg" 18 14 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Cefetamet" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Ceftazidime" "Table 2A" "30μg" 21 17 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Cefetamet" "Generic rules" "10ug" 18 14 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Cefetamet" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Ceftazidime" "Table 2A" "30ug" 21 17 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Ceftazidime" "Table 2A" 4 16 FALSE -"CLSI 2021" "DISK" "Parenteral" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" "30μg" 18 14 FALSE +"CLSI 2021" "DISK" "Parenteral" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" "30ug" 18 14 FALSE "CLSI 2021" "MIC" "Parenteral" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" 8 32 FALSE -"CLSI 2021" "DISK" "Aeromonas" 3 "Ceftazidime" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2021" "DISK" "Aeromonas" 3 "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2021" "MIC" "Aeromonas" 3 "Ceftazidime" "M45 Table 3" 4 16 FALSE -"CLSI 2021" "DISK" "Parenteral" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" "30μg" 21 17 FALSE +"CLSI 2021" "DISK" "Parenteral" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" "30ug" 21 17 FALSE "CLSI 2021" "MIC" "Parenteral" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" 8 32 FALSE "CLSI 2021" "MIC" "Burkholderia mallei" 2 "Ceftazidime" "M45 Table 21" 8 32 FALSE "CLSI 2021" "MIC" "Burkholderia pseudomallei" 2 "Ceftazidime" "M45 Table 21" 8 32 FALSE "CLSI 2021" "MIC" "Parenteral" "(unknown Gram-negatives)" 2 "Ceftazidime" "Table 2B-5" 8 32 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Ceftazidime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Ceftazidime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Ceftazidime" "Table 2E" 2 2048 FALSE "CLSI 2021" "MIC" "Moraxella catarrhalis" 2 "Ceftazidime" "M45 Table 16" 2 2048 FALSE -"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" "30μg" 18 14 FALSE +"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" "30ug" 18 14 FALSE "CLSI 2021" "MIC" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" 8 32 FALSE "CLSI 2021" "MIC" "Parenteral" "Stenotrophomonas maltophilia" 2 "Ceftazidime" "Table 2B-4" 8 32 FALSE -"CLSI 2021" "DISK" "Vibrio" 3 "Ceftazidime" "M45 Table 20" "30μg" 21 17 FALSE +"CLSI 2021" "DISK" "Vibrio" 3 "Ceftazidime" "M45 Table 20" "30ug" 21 17 FALSE "CLSI 2021" "MIC" "Vibrio" 3 "Ceftazidime" "M45 Table 20" 4 16 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefdinir" "Table 2A" "5μg" 20 16 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefdinir" "Table 2A" "5ug" 20 16 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Cefdinir" "Table 2A" 1 4 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Cefdinir" "Table 2E" "5μg" 20 6 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Cefdinir" "Table 2E" "5ug" 20 6 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Cefdinir" "Table 2E" 1 2048 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Cefdinir" "Table 2G" 0.5 2 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Cefdinir" "Generic rules" "5μg" 20 16 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Cefdinir" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefaclor" "Table 2A" "30μg" 18 14 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Cefdinir" "Generic rules" "5ug" 20 16 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Cefdinir" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefaclor" "Table 2A" "30ug" 18 14 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Cefaclor" "Table 2A" 8 32 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Cefaclor" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Cefaclor" "Table 2E" "30ug" 20 16 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Cefaclor" "Table 2E" 8 32 FALSE "CLSI 2021" "MIC" "Moraxella catarrhalis" 2 "Cefaclor" "M45 Table 16" 8 32 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" "Table 2G" 1 4 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Cefaclor" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Cefaclor" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefixime" "Table 2A" "5μg" 19 15 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Cefaclor" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Cefaclor" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefixime" "Table 2A" "5ug" 19 15 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Cefixime" "Table 2A" 1 4 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Cefixime" "Table 2E" "5μg" 21 6 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Cefixime" "Table 2E" "5ug" 21 6 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Cefixime" "Table 2E" 1 2048 FALSE -"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" "5μg" 31 6 FALSE +"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" "5ug" 31 6 FALSE "CLSI 2021" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" 0.25 2048 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Cefixime" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Cefixime" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefoperazone" "Table 2A" "75μg" 21 15 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefoperazone" "Table 2A" "75ug" 21 15 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Cefoperazone" "Table 2A" 16 64 FALSE "CLSI 2021" "MIC" "Parenteral" "(unknown Gram-negatives)" 2 "Cefoperazone" "Table 2B-5" 16 64 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75μg" 21 15 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75μg" 16 64 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Chloramphenicol" "Table 2A" "30μg" 18 12 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75ug" 21 15 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75ug" 16 64 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Chloramphenicol" "Table 2A" "30ug" 18 12 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Chloramphenicol" "Table 2A" 8 32 FALSE "CLSI 2021" "MIC" "Abiotrophia" 3 "Chloramphenicol" "M45 Table 1" 4 8 FALSE -"CLSI 2021" "DISK" "Aeromonas" 3 "Chloramphenicol" "M45 Table 2" "30μg" 18 12 FALSE +"CLSI 2021" "DISK" "Aeromonas" 3 "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE "CLSI 2021" "MIC" "Aeromonas" 3 "Chloramphenicol" "M45 Table 3" 8 32 FALSE "CLSI 2021" "MIC" "Aggregatibacter" 3 "Chloramphenicol" "M45 Table 9" 4 16 FALSE "CLSI 2021" "MIC" "Bacillus" 3 "Chloramphenicol" "M45 Table 4" 8 32 FALSE "CLSI 2021" "MIC" "Burkholderia cepacia" 2 "Chloramphenicol" "Table 2B-3" 8 32 FALSE "CLSI 2021" "MIC" "Cardiobacterium" 3 "Chloramphenicol" "M45 Table 9" 4 16 FALSE "CLSI 2021" "MIC" "Eikenella corrodens" 2 "Chloramphenicol" "M45 Table 9" 4 16 FALSE -"CLSI 2021" "DISK" "Enterococcus" 3 "Chloramphenicol" "Table 2D" "30μg" 18 12 FALSE +"CLSI 2021" "DISK" "Enterococcus" 3 "Chloramphenicol" "Table 2D" "30ug" 18 12 FALSE "CLSI 2021" "MIC" "Enterococcus" 3 "Chloramphenicol" "Table 2D" 8 32 FALSE "CLSI 2021" "MIC" "Francisella tularensis tularensis" 1 "Chloramphenicol" "M45 Table 21" 8 2048 FALSE "CLSI 2021" "MIC" "(unknown Gram-negatives)" 2 "Chloramphenicol" "Table 2B-5" 8 32 FALSE "CLSI 2021" "MIC" "Granulicatella" 3 "Chloramphenicol" "M45 Table 1" 4 8 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Chloramphenicol" "Table 2E" "30μg" 29 25 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Chloramphenicol" "Table 2E" "30ug" 29 25 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Chloramphenicol" "Table 2E" 2 8 FALSE "CLSI 2021" "MIC" "Kingella" 3 "Chloramphenicol" "M45 Table 9" 4 16 FALSE "CLSI 2021" "MIC" "Leuconostoc" 3 "Chloramphenicol" "M45 Table 13" 8 32 FALSE "CLSI 2021" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" "M45 Table 16" 2 8 FALSE -"CLSI 2021" "DISK" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" "30μg" 26 19 FALSE +"CLSI 2021" "DISK" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" "30ug" 26 19 FALSE "CLSI 2021" "MIC" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" 2 8 FALSE "CLSI 2021" "MIC" "Pediococcus" 3 "Chloramphenicol" "M45 Table 18" 8 32 FALSE -"CLSI 2021" "DISK" "Pasteurella" 3 "Chloramphenicol" "M45 Table 17" "30μg" 28 6 FALSE +"CLSI 2021" "DISK" "Pasteurella" 3 "Chloramphenicol" "M45 Table 17" "30ug" 28 6 FALSE "CLSI 2021" "MIC" "Pasteurella" 3 "Chloramphenicol" "M45 Table 17" 2 2048 FALSE "CLSI 2021" "MIC" "Stenotrophomonas maltophilia" 2 "Chloramphenicol" "Table 2B-4" 8 32 FALSE -"CLSI 2021" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" "30μg" 18 12 FALSE +"CLSI 2021" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" "30ug" 18 12 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" 8 32 FALSE -"CLSI 2021" "DISK" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" "30μg" 21 17 FALSE +"CLSI 2021" "DISK" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" "30ug" 21 17 FALSE "CLSI 2021" "MIC" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" 4 16 FALSE -"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" "30μg" 21 20 FALSE +"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" "30ug" 21 20 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" 4 8 FALSE -"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" "30μg" 21 17 FALSE +"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" "30ug" 21 17 FALSE "CLSI 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" 4 16 FALSE -"CLSI 2021" "DISK" "Vibrio" 3 "Chloramphenicol" "M45 Table 20" "30μg" 18 12 FALSE +"CLSI 2021" "DISK" "Vibrio" 3 "Chloramphenicol" "M45 Table 20" "30ug" 18 12 FALSE "CLSI 2021" "MIC" "Vibrio" 3 "Chloramphenicol" "M45 Table 20" 8 32 FALSE "CLSI 2021" "MIC" "Yersinia pestis" 2 "Chloramphenicol" "M45 Table 21" 8 32 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30μg" 18 12 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefonicid" "Table 2A" "30μg" 18 14 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 18 12 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefonicid" "Table 2A" "30ug" 18 14 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Cefonicid" "Table 2A" 8 32 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Cefonicid" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Cefonicid" "Table 2E" "30ug" 20 16 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Cefonicid" "Table 2E" 4 16 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Cefonicid" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Cefonicid" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2021" "DISK" "Urine" "Enterobacterales" 5 "Cinoxacin" "Table 2A" "100μg" 19 14 TRUE +"CLSI 2021" "DISK" "(unknown name)" 6 "Cefonicid" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Cefonicid" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2021" "DISK" "Urine" "Enterobacterales" 5 "Cinoxacin" "Table 2A" "100ug" 19 14 TRUE "CLSI 2021" "MIC" "Urine" "Enterobacterales" 5 "Cinoxacin" "Table 2A" 16 64 TRUE -"CLSI 2021" "DISK" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100μg" 19 14 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100μg" 16 64 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Ciprofloxacin" "Table 2A" "5μg" 26 21 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100ug" 19 14 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100ug" 16 64 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Ciprofloxacin" "Table 2A" "5ug" 26 21 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Ciprofloxacin" "Table 2A" 0.25 1 FALSE "CLSI 2021" "MIC" "Abiotrophia" 3 "Ciprofloxacin" "M45 Table 1" 1 4 FALSE -"CLSI 2021" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" "5μg" 21 15 FALSE +"CLSI 2021" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" "5ug" 21 15 FALSE "CLSI 2021" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" 1 4 FALSE "CLSI 2021" "MIC" "Aerococcus" 3 "Ciprofloxacin" "M45 Table 2" 1 4 FALSE -"CLSI 2021" "DISK" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 2" "5μg" 21 15 FALSE +"CLSI 2021" "DISK" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE "CLSI 2021" "MIC" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 3" 1 4 FALSE "CLSI 2021" "MIC" "Aggregatibacter" 3 "Ciprofloxacin" "M45 Table 9" 1 4 FALSE "CLSI 2021" "MIC" "Bacillus" 3 "Ciprofloxacin" "M45 Table 4" 1 4 FALSE @@ -7678,30 +7678,30 @@ "CLSI 2021" "MIC" "Campylobacter" 3 "Ciprofloxacin" "M45 Table 5" 1 4 FALSE "CLSI 2021" "MIC" "Cardiobacterium" 3 "Ciprofloxacin" "M45 Table 9" 1 4 FALSE "CLSI 2021" "MIC" "Eikenella corrodens" 2 "Ciprofloxacin" "M45 Table 9" 1 4 FALSE -"CLSI 2021" "DISK" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" "5μg" 21 15 FALSE +"CLSI 2021" "DISK" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" "5ug" 21 15 FALSE "CLSI 2021" "MIC" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" 1 4 FALSE "CLSI 2021" "MIC" "Francisella tularensis tularensis" 1 "Ciprofloxacin" "M45 Table 21" 0.5 2048 FALSE "CLSI 2021" "MIC" "(unknown Gram-negatives)" 2 "Ciprofloxacin" "Table 2B-5" 1 4 FALSE "CLSI 2021" "MIC" "Granulicatella" 3 "Ciprofloxacin" "M45 Table 1" 1 4 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" "5μg" 21 6 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" "5ug" 21 6 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" 1 2048 FALSE "CLSI 2021" "MIC" "Kingella" 3 "Ciprofloxacin" "M45 Table 9" 1 4 FALSE "CLSI 2021" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M45 Table 16" 1 2048 FALSE -"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" "5μg" 41 27 FALSE +"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" "5ug" 41 27 FALSE "CLSI 2021" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" 0.064 1 FALSE -"CLSI 2021" "DISK" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" "5μg" 35 32 FALSE +"CLSI 2021" "DISK" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" "5ug" 35 32 FALSE "CLSI 2021" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" 0.032 0.12 FALSE -"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" "5μg" 25 18 FALSE +"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" "5ug" 25 18 FALSE "CLSI 2021" "MIC" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" 0.5 2 FALSE -"CLSI 2021" "DISK" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5μg" 31 20 FALSE +"CLSI 2021" "DISK" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE "CLSI 2021" "MIC" "Salmonella" 3 "Ciprofloxacin" "Table 2A" 0.064 1 FALSE -"CLSI 2021" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" "5μg" 21 15 FALSE +"CLSI 2021" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" "5ug" 21 15 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" 1 4 FALSE -"CLSI 2021" "DISK" "Vibrio" 3 "Ciprofloxacin" "M45 Table 20" "5μg" 21 15 FALSE +"CLSI 2021" "DISK" "Vibrio" 3 "Ciprofloxacin" "M45 Table 20" "5ug" 21 15 FALSE "CLSI 2021" "MIC" "Vibrio" 3 "Ciprofloxacin" "M45 Table 20" 1 4 FALSE "CLSI 2021" "MIC" "Yersinia pestis" 2 "Ciprofloxacin" "M45 Table 21" 0.25 2048 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5μg" 26 21 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5μg" 0.25 1 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 26 21 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 0.25 1 FALSE "CLSI 2021" "MIC" "Abiotrophia" 3 "Clindamycin" "M45 Table 1" 0.25 1 FALSE "CLSI 2021" "MIC" "Bacillus" 3 "Clindamycin" "M45 Table 4" 0.5 4 FALSE "CLSI 2021" "MIC" "Gemella" 3 "Clindamycin" "M45 Table 8" 0.25 1 FALSE @@ -7711,80 +7711,80 @@ "CLSI 2021" "MIC" "Micrococcus" 3 "Clindamycin" "M45 Table 15" 0.5 4 FALSE "CLSI 2021" "MIC" "Moraxella catarrhalis" 2 "Clindamycin" "M45 Table 16" 0.5 4 FALSE "CLSI 2021" "MIC" "Paenibacillus mucilaginosus" 2 "Clindamycin" "M45 Table 19" 0.5 4 FALSE -"CLSI 2021" "DISK" "Staphylococcus" 3 "Clindamycin" "Table 2C" "2μg" 21 14 FALSE +"CLSI 2021" "DISK" "Staphylococcus" 3 "Clindamycin" "Table 2C" "2ug" 21 14 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Clindamycin" "Table 2C" 0.5 4 FALSE -"CLSI 2021" "DISK" "Streptococcus" 3 "Clindamycin" "Table 2H-1" "2μg" 19 15 FALSE +"CLSI 2021" "DISK" "Streptococcus" 3 "Clindamycin" "Table 2H-1" "2ug" 19 15 FALSE "CLSI 2021" "MIC" "Streptococcus" 3 "Clindamycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" "2μg" 19 15 FALSE +"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" "2ug" 19 15 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" 0.25 1 FALSE -"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" "2μg" 19 15 FALSE +"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" "2ug" 19 15 FALSE "CLSI 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Clindamycin" "Generic rules" "2μg" 21 14 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Clindamycin" "Generic rules" "2μg" 0.5 4 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Clindamycin" "Generic rules" "2ug" 21 14 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Clindamycin" "Generic rules" "2ug" 0.5 4 FALSE "CLSI 2021" "MIC" "Aggregatibacter" 3 "Clarithromycin" "M45 Table 9" 8 32 FALSE "CLSI 2021" "MIC" "Cardiobacterium" 3 "Clarithromycin" "M45 Table 9" 8 32 FALSE "CLSI 2021" "MIC" "Eikenella corrodens" 2 "Clarithromycin" "M45 Table 9" 8 32 FALSE "CLSI 2021" "MIC" "Helicobacter pylori" 2 "Clarithromycin" "M45 Table 10" 0.25 1 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Clarithromycin" "Table 2E" "15μg" 13 10 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Clarithromycin" "Table 2E" "15ug" 13 10 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Clarithromycin" "Table 2E" 8 32 FALSE "CLSI 2021" "MIC" "Kingella" 3 "Clarithromycin" "M45 Table 9" 8 32 FALSE -"CLSI 2021" "DISK" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 16" "15μg" 24 6 FALSE +"CLSI 2021" "DISK" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 16" "15ug" 24 6 FALSE "CLSI 2021" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 16" 1 2048 FALSE -"CLSI 2021" "DISK" "Staphylococcus" 3 "Clarithromycin" "Table 2C" "15μg" 18 13 FALSE +"CLSI 2021" "DISK" "Staphylococcus" 3 "Clarithromycin" "Table 2C" "15ug" 18 13 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Clarithromycin" "Table 2C" 2 8 FALSE -"CLSI 2021" "DISK" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" "15μg" 21 16 FALSE +"CLSI 2021" "DISK" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" "15ug" 21 16 FALSE "CLSI 2021" "MIC" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" "15μg" 21 16 FALSE +"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" "15ug" 21 16 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" 0.25 1 FALSE -"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" "15μg" 21 16 FALSE +"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" "15ug" 21 16 FALSE "CLSI 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15μg" 18 13 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15μg" 2 8 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefmetazole" "Table 2A" "30μg" 16 12 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15ug" 18 13 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15ug" 2 8 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefmetazole" "Table 2A" "30ug" 16 12 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Cefmetazole" "Table 2A" 16 64 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30μg" 16 64 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30ug" 16 64 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Colistin" "Table 2A" 0.001 4 FALSE "CLSI 2021" "MIC" "Acinetobacter" 3 "Colistin" "Table 2B-2" 0.001 4 FALSE "CLSI 2021" "MIC" "Pseudomonas aeruginosa" 2 "Colistin" "Table 2B-1" 0.001 4 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Colistin" "Generic rules" "10μg" 11 10 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Colistin" "Generic rules" "10μg" 0.001 4 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefpodoxime" "Table 2A" "10μg" 21 17 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Colistin" "Generic rules" "10ug" 11 10 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Colistin" "Generic rules" "10ug" 0.001 4 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefpodoxime" "Table 2A" "10ug" 21 17 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Cefpodoxime" "Table 2A" 2 8 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Cefpodoxime" "Table 2E" "10μg" 21 6 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Cefpodoxime" "Table 2E" "10ug" 21 6 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Cefpodoxime" "Table 2E" 2 2048 FALSE -"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" "10μg" 29 6 FALSE +"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" "10ug" 29 6 FALSE "CLSI 2021" "MIC" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" 0.5 2048 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" "Table 2G" 0.5 2 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10μg" 21 17 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefprozil" "Table 2A" "30μg" 18 14 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 21 17 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefprozil" "Table 2A" "30ug" 18 14 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Cefprozil" "Table 2A" 8 32 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Cefprozil" "Table 2E" "30μg" 18 14 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Cefprozil" "Table 2E" "30ug" 18 14 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Cefprozil" "Table 2E" 8 32 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Cefprozil" "Table 2G" 2 8 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Cefprozil" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Cefprozil" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Ceftaroline" "Table 2A" "30μg" 23 19 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Cefprozil" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Cefprozil" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Ceftaroline" "Table 2A" "30ug" 23 19 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Ceftaroline" "Table 2A" 0.5 2 FALSE -"CLSI 2021" "DISK" "Haemophilus influenzae" 2 "Ceftaroline" "Table 2E" "30μg" 30 6 FALSE +"CLSI 2021" "DISK" "Haemophilus influenzae" 2 "Ceftaroline" "Table 2E" "30ug" 30 6 FALSE "CLSI 2021" "MIC" "Haemophilus influenzae" 2 "Ceftaroline" "Table 2E" 0.5 2048 FALSE -"CLSI 2021" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Table 2C" "30μg" 25 19 FALSE +"CLSI 2021" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Table 2C" "30ug" 25 19 FALSE "CLSI 2021" "MIC" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Table 2C" 1 8 FALSE -"CLSI 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Ceftaroline" "Table 2C" "30μg" 25 19 FALSE +"CLSI 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Ceftaroline" "Table 2C" "30ug" 25 19 FALSE "CLSI 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Ceftaroline" "Table 2C" 1 8 FALSE -"CLSI 2021" "DISK" "Streptococcus" 3 "Ceftaroline" "Table 2H-1" "30μg" 26 6 FALSE +"CLSI 2021" "DISK" "Streptococcus" 3 "Ceftaroline" "Table 2H-1" "30ug" 26 6 FALSE "CLSI 2021" "MIC" "Streptococcus" 3 "Ceftaroline" "Table 2H-1" 0.5 2048 FALSE "CLSI 2021" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Ceftaroline" "Table 2G" 0.5 2048 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30μg" 0.5 2 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Ceftriaxone" "Table 2A" "30μg" 23 19 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30ug" 0.5 2 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Ceftriaxone" "Table 2A" "30ug" 23 19 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Ceftriaxone" "Table 2A" 1 4 FALSE "CLSI 2021" "MIC" "Abiotrophia" 3 "Ceftriaxone" "M45 Table 1" 1 4 FALSE -"CLSI 2021" "DISK" "Parenteral" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" "30μg" 21 13 FALSE +"CLSI 2021" "DISK" "Parenteral" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" "30ug" 21 13 FALSE "CLSI 2021" "MIC" "Parenteral" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" 8 64 FALSE "CLSI 2021" "MIC" "Aerococcus" 3 "Ceftriaxone" "M45 Table 2" 1 4 FALSE -"CLSI 2021" "DISK" "Aeromonas" 3 "Ceftriaxone" "M45 Table 2" "30μg" 23 19 FALSE +"CLSI 2021" "DISK" "Aeromonas" 3 "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE "CLSI 2021" "MIC" "Aeromonas" 3 "Ceftriaxone" "M45 Table 3" 1 4 FALSE "CLSI 2021" "MIC" "Aggregatibacter" 3 "Ceftriaxone" "M45 Table 9" 2 2048 FALSE "CLSI 2021" "MIC" "Cardiobacterium" 3 "Ceftriaxone" "M45 Table 9" 2 2048 FALSE @@ -7792,44 +7792,44 @@ "CLSI 2021" "MIC" "Gemella" 3 "Ceftriaxone" "M45 Table 8" 1 4 FALSE "CLSI 2021" "MIC" "Parenteral" "(unknown Gram-negatives)" 2 "Ceftriaxone" "Table 2B-5" 8 64 FALSE "CLSI 2021" "MIC" "Granulicatella" 3 "Ceftriaxone" "M45 Table 1" 1 4 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Ceftriaxone" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Ceftriaxone" "Table 2E" "30ug" 26 6 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Ceftriaxone" "Table 2E" 2 2048 FALSE "CLSI 2021" "MIC" "Kingella" 3 "Ceftriaxone" "M45 Table 9" 2 2048 FALSE "CLSI 2021" "MIC" "Lactococcus" 3 "Ceftriaxone" "M45 Table 12" 1 4 FALSE "CLSI 2021" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" "M45 Table 16" 2 2048 FALSE -"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" "30μg" 35 6 FALSE +"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" "30ug" 35 6 FALSE "CLSI 2021" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" 0.25 2048 FALSE -"CLSI 2021" "DISK" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" "30μg" 34 6 FALSE +"CLSI 2021" "DISK" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" "30ug" 34 6 FALSE "CLSI 2021" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" 0.125 2048 FALSE -"CLSI 2021" "DISK" "Pasteurella" 3 "Ceftriaxone" "M45 Table 17" "30μg" 34 6 FALSE +"CLSI 2021" "DISK" "Pasteurella" 3 "Ceftriaxone" "M45 Table 17" "30ug" 34 6 FALSE "CLSI 2021" "MIC" "Pasteurella" 3 "Ceftriaxone" "M45 Table 17" 0.125 2048 FALSE -"CLSI 2021" "DISK" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2021" "DISK" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2021" "MIC" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" 0.5 2048 FALSE "CLSI 2021" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Table 2G" 0.5 2 FALSE "CLSI 2021" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Table 2G" 1 4 FALSE -"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" "30μg" 27 24 FALSE +"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" "30ug" 27 24 FALSE "CLSI 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" 1 4 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30μg" 1 4 FALSE -"CLSI 2021" "DISK" "Urine" "Enterobacterales" 5 "Ceftibuten" "Table 2A" "30μg" 21 17 TRUE +"CLSI 2021" "DISK" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 1 4 FALSE +"CLSI 2021" "DISK" "Urine" "Enterobacterales" 5 "Ceftibuten" "Table 2A" "30ug" 21 17 TRUE "CLSI 2021" "MIC" "Urine" "Enterobacterales" 5 "Ceftibuten" "Table 2A" 8 32 TRUE -"CLSI 2021" "DISK" "Haemophilus" 3 "Ceftibuten" "Table 2E" "30μg" 28 6 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Ceftibuten" "Table 2E" "30ug" 28 6 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Ceftibuten" "Table 2E" 2 2048 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefotetan" "Table 2A" "30μg" 16 12 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefotetan" "Table 2A" "30ug" 16 12 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Cefotetan" "Table 2A" 16 64 FALSE -"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" "30μg" 26 19 FALSE +"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" "30ug" 26 19 FALSE "CLSI 2021" "MIC" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" 2 8 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Cefotetan" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Cefotetan" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefotaxime" "Table 2A" "30μg" 26 22 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Cefotetan" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Cefotetan" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefotaxime" "Table 2A" "30ug" 26 22 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Cefotaxime" "Table 2A" 1 4 FALSE "CLSI 2021" "MIC" "Abiotrophia" 3 "Cefotaxime" "M45 Table 1" 1 4 FALSE -"CLSI 2021" "DISK" "Parenteral" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" "30μg" 23 14 FALSE +"CLSI 2021" "DISK" "Parenteral" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" "30ug" 23 14 FALSE "CLSI 2021" "MIC" "Parenteral" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" 8 64 FALSE "CLSI 2021" "MIC" "Aerococcus" 3 "Cefotaxime" "M45 Table 2" 1 4 FALSE -"CLSI 2021" "DISK" "Aeromonas" 3 "Cefotaxime" "M45 Table 2" "30μg" 26 22 FALSE +"CLSI 2021" "DISK" "Aeromonas" 3 "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE "CLSI 2021" "MIC" "Aeromonas" 3 "Cefotaxime" "M45 Table 3" 1 4 FALSE "CLSI 2021" "MIC" "Aggregatibacter" 3 "Cefotaxime" "M45 Table 9" 2 2048 FALSE "CLSI 2021" "MIC" "Cardiobacterium" 3 "Cefotaxime" "M45 Table 9" 2 2048 FALSE @@ -7837,74 +7837,74 @@ "CLSI 2021" "MIC" "Gemella" 3 "Cefotaxime" "M45 Table 8" 1 4 FALSE "CLSI 2021" "MIC" "Parenteral" "(unknown Gram-negatives)" 2 "Cefotaxime" "Table 2B-5" 8 64 FALSE "CLSI 2021" "MIC" "Granulicatella" 3 "Cefotaxime" "M45 Table 1" 1 4 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Cefotaxime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Cefotaxime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Cefotaxime" "Table 2E" 2 2048 FALSE "CLSI 2021" "MIC" "Kingella" 3 "Cefotaxime" "M45 Table 9" 2 2048 FALSE "CLSI 2021" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" "M45 Table 16" 2 2048 FALSE -"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" "30μg" 31 6 FALSE +"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" "30ug" 31 6 FALSE "CLSI 2021" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" 0.5 2048 FALSE -"CLSI 2021" "DISK" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" "30μg" 34 6 FALSE +"CLSI 2021" "DISK" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" "30ug" 34 6 FALSE "CLSI 2021" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" 0.125 2048 FALSE -"CLSI 2021" "DISK" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2021" "DISK" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2021" "MIC" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" 0.5 2048 FALSE "CLSI 2021" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Cefotaxime" "Table 2G" 0.5 2 FALSE "CLSI 2021" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Cefotaxime" "Table 2G" 1 4 FALSE -"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" "30μg" 28 25 FALSE +"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" "30ug" 28 25 FALSE "CLSI 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" 1 4 FALSE -"CLSI 2021" "DISK" "Vibrio" 3 "Cefotaxime" "M45 Table 20" "30μg" 26 22 FALSE +"CLSI 2021" "DISK" "Vibrio" 3 "Cefotaxime" "M45 Table 20" "30ug" 26 22 FALSE "CLSI 2021" "MIC" "Vibrio" 3 "Cefotaxime" "M45 Table 20" 1 4 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30μg" 26 22 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30μg" 1 4 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30ug" 26 22 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30ug" 1 4 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" "30ug" 20 16 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" 4 16 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Cefuroxime axetil" "Table 2G" 1 4 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30μg" 23 14 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30μg" 4 32 FALSE -"CLSI 2021" "DISK" "Parenteral" "Enterobacterales" 5 "Cefuroxime" "Table 2A" "30μg" 18 14 FALSE -"CLSI 2021" "DISK" "Oral" "Enterobacterales" 5 "Cefuroxime" "Table 2A" "30μg" 23 14 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 23 14 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 4 32 FALSE +"CLSI 2021" "DISK" "Parenteral" "Enterobacterales" 5 "Cefuroxime" "Table 2A" "30ug" 18 14 FALSE +"CLSI 2021" "DISK" "Oral" "Enterobacterales" 5 "Cefuroxime" "Table 2A" "30ug" 23 14 FALSE "CLSI 2021" "MIC" "Parenteral" "Enterobacterales" 5 "Cefuroxime" "Table 2A" 8 32 FALSE "CLSI 2021" "MIC" "Oral" "Enterobacterales" 5 "Cefuroxime" "Table 2A" 4 32 FALSE -"CLSI 2021" "DISK" "Aeromonas" 3 "Cefuroxime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2021" "DISK" "Aeromonas" 3 "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2021" "MIC" "Aeromonas" 3 "Cefuroxime" "M45 Table 3" 8 32 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Cefuroxime" "Table 2E" 4 16 FALSE "CLSI 2021" "MIC" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M45 Table 16" 4 16 FALSE "CLSI 2021" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Table 2G" 1 4 FALSE "CLSI 2021" "MIC" "Parenteral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Table 2G" 0.5 2 FALSE -"CLSI 2021" "DISK" "Vibrio" 3 "Cefuroxime" "M45 Table 20" "30μg" 18 14 FALSE +"CLSI 2021" "DISK" "Vibrio" 3 "Cefuroxime" "M45 Table 20" "30ug" 18 14 FALSE "CLSI 2021" "MIC" "Vibrio" 3 "Cefuroxime" "M45 Table 20" 8 32 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Ceftazidime/avibactam" "Table 2A" "30μg/20μg" 21 20 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Ceftazidime/avibactam" "Table 2A" "30ug/20ug" 21 20 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Ceftazidime/avibactam" "Table 2A" 8 16 FALSE "CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Ceftazidime/avibactam" "Table 2B-1" 21 20 FALSE "CLSI 2021" "MIC" "Pseudomonas aeruginosa" 2 "Ceftazidime/avibactam" "Table 2B-1" 8 16 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Ceftazidime/avibactam" "Generic rules" "30/20μg" 21 20 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Ceftazidime/avibactam" "Generic rules" "30/20μg" 8 16 FALSE -"CLSI 2021" "DISK" "Urine" "Enterobacterales" 5 "Cefazolin" "Table 2A" "30μg" 15 14 TRUE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefazolin" "Table 2A" "30μg" 23 19 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Ceftazidime/avibactam" "Generic rules" "30/20ug" 21 20 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Ceftazidime/avibactam" "Generic rules" "30/20ug" 8 16 FALSE +"CLSI 2021" "DISK" "Urine" "Enterobacterales" 5 "Cefazolin" "Table 2A" "30ug" 15 14 TRUE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefazolin" "Table 2A" "30ug" 23 19 FALSE "CLSI 2021" "MIC" "Urine" "Enterobacterales" 5 "Cefazolin" "Table 2A" 16 32 TRUE "CLSI 2021" "MIC" "Enterobacterales" 5 "Cefazolin" "Table 2A" 2 8 FALSE "CLSI 2021" "MIC" "Vibrio" 3 "Cefazolin" "M45 Table 20" 2 8 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Cefazolin" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Cefazolin" "Generic rules" "30μg" 2 8 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Table 2A" "30μg/10μg" 21 17 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Cefazolin" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Cefazolin" "Generic rules" "30ug" 2 8 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Table 2A" "30ug/10ug" 21 17 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Table 2A" 2 8 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Ceftolozane/tazobactam" "Table 2E" 0.5 2048 FALSE "CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Ceftolozane/tazobactam" "Table 2B-1" "30/10" 21 16 FALSE "CLSI 2021" "MIC" "Pseudomonas aeruginosa" 2 "Ceftolozane/tazobactam" "Table 2B-1" 4 16 FALSE "CLSI 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftolozane/tazobactam" "Table 2H-2" 8 32 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Ceftolozane/tazobactam" "Generic rules" "30/10μg" 21 17 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Ceftolozane/tazobactam" "Generic rules" "30/10μg" 2 8 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Ceftizoxime" "Table 2A" "30μg" 25 21 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Ceftolozane/tazobactam" "Generic rules" "30/10ug" 21 17 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Ceftolozane/tazobactam" "Generic rules" "30/10ug" 2 8 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Ceftizoxime" "Table 2A" "30ug" 25 21 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Ceftizoxime" "Table 2A" 1 4 FALSE "CLSI 2021" "MIC" "Parenteral" "(unknown Gram-negatives)" 2 "Ceftizoxime" "Table 2B-5" 8 64 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Ceftizoxime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Ceftizoxime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Ceftizoxime" "Table 2E" 2 2048 FALSE -"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" "30μg" 38 6 FALSE +"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" "30ug" 38 6 FALSE "CLSI 2021" "MIC" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" 0.5 2048 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30μg" 25 21 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30μg" 1 4 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30ug" 25 21 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30ug" 1 4 FALSE "CLSI 2021" "MIC" "Enterococcus faecalis" 2 "Dalbavancin" "Table 2D" 0.25 2048 FALSE "CLSI 2021" "MIC" "Staphylococcus aureus aureus" 1 "Dalbavancin" "Table 2C" 0.25 2048 FALSE "CLSI 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Dalbavancin" "Table 2C" 0.25 2048 FALSE @@ -7914,147 +7914,147 @@ "CLSI 2021" "MIC" "Enterococcus faecium" 2 "Daptomycin" "Table 2D" 0.001 8 FALSE "CLSI 2021" "MIC" "Lactobacillus" 3 "Daptomycin" "M45 Table 11" 4 2048 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Daptomycin" "Table 2C" 1 2048 FALSE -"CLSI 2021" "DISK" "Streptococcus" 3 "Daptomycin" "Table 2H-1" "30μg" 16 6 FALSE +"CLSI 2021" "DISK" "Streptococcus" 3 "Daptomycin" "Table 2H-1" "30ug" 16 6 FALSE "CLSI 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Daptomycin" "Table 2H-2" 1 2048 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Daptomycin" "Generic rules" "30μg" 1 2048 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Difloxacin" "Generic rules" "10μg" 21 17 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Difloxacin" "Generic rules" "10μg" 0.5 4 FALSE -"CLSI 2021" "DISK" "Staphylococcus" 3 "Dirithromycin" "Table 2C" "15μg" 19 15 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Daptomycin" "Generic rules" "30ug" 1 2048 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Difloxacin" "Generic rules" "10ug" 21 17 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Difloxacin" "Generic rules" "10ug" 0.5 4 FALSE +"CLSI 2021" "DISK" "Staphylococcus" 3 "Dirithromycin" "Table 2C" "15ug" 19 15 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Dirithromycin" "Table 2C" 4 8 FALSE -"CLSI 2021" "DISK" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" "15μg" 18 13 FALSE +"CLSI 2021" "DISK" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" "15ug" 18 13 FALSE "CLSI 2021" "MIC" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" "15μg" 18 13 FALSE +"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" "15ug" 18 13 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" 0.5 2 FALSE -"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" "15μg" 18 13 FALSE +"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" "15ug" 18 13 FALSE "CLSI 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" 0.5 2 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15μg" 19 15 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15μg" 2 8 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Doripenem" "Table 2A" "10μg" 23 19 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15ug" 19 15 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15ug" 2 8 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Doripenem" "Table 2A" "10ug" 23 19 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Doripenem" "Table 2A" 1 4 FALSE "CLSI 2021" "DISK" "Acinetobacter" 3 "Doripenem" "Table 2B-2" 18 14 FALSE "CLSI 2021" "MIC" "Acinetobacter" 3 "Doripenem" "Table 2B-2" 2 8 FALSE -"CLSI 2021" "DISK" "Aeromonas" 3 "Doripenem" "M45 Table 3" "10μg" 23 19 FALSE +"CLSI 2021" "DISK" "Aeromonas" 3 "Doripenem" "M45 Table 3" "10ug" 23 19 FALSE "CLSI 2021" "MIC" "Aeromonas" 3 "Doripenem" "M45 Table 3" 1 4 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Doripenem" "Table 2E" "10μg" 16 6 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Doripenem" "Table 2E" "10ug" 16 6 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Doripenem" "Table 2E" 1 2048 FALSE -"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2021" "MIC" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" 2 8 FALSE "CLSI 2021" "MIC" "Streptococcus" 3 "Doripenem" "Table 2H-1" 0.125 2048 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" "Table 2G" 1 2048 FALSE "CLSI 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" "Table 2H-2" 1 2048 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Doripenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Doripenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Doxycycline" "Table 2A" "30μg" 14 10 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Doripenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Doripenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Doxycycline" "Table 2A" "30ug" 14 10 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Doxycycline" "Table 2A" 4 16 FALSE -"CLSI 2021" "DISK" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" "30μg" 13 9 FALSE +"CLSI 2021" "DISK" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" "30ug" 13 9 FALSE "CLSI 2021" "MIC" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" 4 16 FALSE "CLSI 2021" "MIC" "Bacillus anthracis" 2 "Doxycycline" "M45 Table 21" 1 2048 FALSE "CLSI 2021" "MIC" "Brucella" 3 "Doxycycline" "M45 Table 21" 1 2048 FALSE "CLSI 2021" "MIC" "Burkholderia mallei" 2 "Doxycycline" "M45 Table 21" 4 16 FALSE "CLSI 2021" "MIC" "Burkholderia pseudomallei" 2 "Doxycycline" "M45 Table 21" 4 16 FALSE "CLSI 2021" "MIC" "Campylobacter" 3 "Doxycycline" "M45 Table 5" 2 8 FALSE -"CLSI 2021" "DISK" "Enterococcus" 3 "Doxycycline" "Table 2D" "30μg" 16 12 FALSE +"CLSI 2021" "DISK" "Enterococcus" 3 "Doxycycline" "Table 2D" "30ug" 16 12 FALSE "CLSI 2021" "MIC" "Enterococcus" 3 "Doxycycline" "Table 2D" 4 16 FALSE "CLSI 2021" "MIC" "Francisella tularensis tularensis" 1 "Doxycycline" "M45 Table 21" 4 2048 FALSE "CLSI 2021" "MIC" "(unknown Gram-negatives)" 2 "Doxycycline" "Table 2B-5" 4 16 FALSE -"CLSI 2021" "DISK" "Pasteurella" 3 "Doxycycline" "M45 Table 17" "30μg" 23 6 FALSE +"CLSI 2021" "DISK" "Pasteurella" 3 "Doxycycline" "M45 Table 17" "30ug" 23 6 FALSE "CLSI 2021" "MIC" "Pasteurella" 3 "Doxycycline" "M45 Table 17" 0.5 2048 FALSE -"CLSI 2021" "DISK" "Staphylococcus" 3 "Doxycycline" "Table 2C" "30μg" 16 12 FALSE +"CLSI 2021" "DISK" "Staphylococcus" 3 "Doxycycline" "Table 2C" "30ug" 16 12 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Doxycycline" "Table 2C" 4 16 FALSE -"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Doxycycline" "Table 2G" "30μg" 28 24 FALSE +"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Doxycycline" "Table 2G" "30ug" 28 24 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" "Table 2G" 0.25 1 FALSE "CLSI 2021" "MIC" "Yersinia pestis" 2 "Doxycycline" "M45 Table 21" 4 16 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Doxycycline" "Generic rules" "30μg" 14 10 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Doxycycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5μg" 23 16 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5μg" 0.25 2 FALSE -"CLSI 2021" "DISK" "Urine" "Enterobacterales" 5 "Enoxacin" "Table 2A" "10μg" 18 14 TRUE +"CLSI 2021" "DISK" "(unknown name)" 6 "Doxycycline" "Generic rules" "30ug" 14 10 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Doxycycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5ug" 23 16 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5ug" 0.25 2 FALSE +"CLSI 2021" "DISK" "Urine" "Enterobacterales" 5 "Enoxacin" "Table 2A" "10ug" 18 14 TRUE "CLSI 2021" "MIC" "Urine" "Enterobacterales" 5 "Enoxacin" "Table 2A" 2 8 TRUE -"CLSI 2021" "DISK" "Urine" "Staphylococcus" 3 "Enoxacin" "Table 2C" "10μg" 18 14 TRUE +"CLSI 2021" "DISK" "Urine" "Staphylococcus" 3 "Enoxacin" "Table 2C" "10ug" 18 14 TRUE "CLSI 2021" "MIC" "Urine" "Staphylococcus" 3 "Enoxacin" "Table 2C" 2 8 TRUE -"CLSI 2021" "DISK" "(unknown name)" 6 "Enoxacin" "Generic rules" "10μg" 18 14 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Enoxacin" "Generic rules" "10μg" 2 8 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Enoxacin" "Generic rules" "10ug" 18 14 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Enoxacin" "Generic rules" "10ug" 2 8 FALSE "CLSI 2021" "MIC" "Abiotrophia" 3 "Erythromycin" "M45 Table 1" 0.25 1 FALSE "CLSI 2021" "MIC" "Bacillus" 3 "Erythromycin" "M45 Table 4" 0.5 8 FALSE "CLSI 2021" "DISK" "Campylobacter" 3 "Erythromycin" "M45 Table 5" 16 12 FALSE "CLSI 2021" "MIC" "Campylobacter" 3 "Erythromycin" "M45 Table 5" 8 32 FALSE -"CLSI 2021" "DISK" "Enterococcus" 3 "Erythromycin" "Table 2D" "15μg" 23 13 FALSE +"CLSI 2021" "DISK" "Enterococcus" 3 "Erythromycin" "Table 2D" "15ug" 23 13 FALSE "CLSI 2021" "MIC" "Enterococcus" 3 "Erythromycin" "Table 2D" 0.5 8 FALSE "CLSI 2021" "MIC" "Gemella" 3 "Erythromycin" "M45 Table 8" 0.25 1 FALSE "CLSI 2021" "MIC" "Granulicatella" 3 "Erythromycin" "M45 Table 1" 0.25 1 FALSE "CLSI 2021" "MIC" "Lactobacillus" 3 "Erythromycin" "M45 Table 11" 0.5 8 FALSE "CLSI 2021" "MIC" "Lactococcus" 3 "Erythromycin" "M45 Table 12" 0.5 8 FALSE "CLSI 2021" "MIC" "Micrococcus" 3 "Erythromycin" "M45 Table 15" 0.5 8 FALSE -"CLSI 2021" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 16" "15μg" 21 6 FALSE +"CLSI 2021" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 16" "15ug" 21 6 FALSE "CLSI 2021" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 16" 2 2048 FALSE "CLSI 2021" "MIC" "Paenibacillus mucilaginosus" 2 "Erythromycin" "M45 Table 19" 0.5 8 FALSE -"CLSI 2021" "DISK" "Pasteurella" 3 "Erythromycin" "M45 Table 17" "15μg" 27 24 FALSE +"CLSI 2021" "DISK" "Pasteurella" 3 "Erythromycin" "M45 Table 17" "15ug" 27 24 FALSE "CLSI 2021" "MIC" "Pasteurella" 3 "Erythromycin" "M45 Table 17" 0.5 2 FALSE -"CLSI 2021" "DISK" "Staphylococcus" 3 "Erythromycin" "Table 2C" "15μg" 23 13 FALSE +"CLSI 2021" "DISK" "Staphylococcus" 3 "Erythromycin" "Table 2C" "15ug" 23 13 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Erythromycin" "Table 2C" 0.5 8 FALSE -"CLSI 2021" "DISK" "Streptococcus" 3 "Erythromycin" "Table 2H-1" "15μg" 21 15 FALSE +"CLSI 2021" "DISK" "Streptococcus" 3 "Erythromycin" "Table 2H-1" "15ug" 21 15 FALSE "CLSI 2021" "MIC" "Streptococcus" 3 "Erythromycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" "15μg" 21 15 FALSE +"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" "15ug" 21 15 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" 0.25 1 FALSE -"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" "15μg" 21 15 FALSE +"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" "15ug" 21 15 FALSE "CLSI 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Erythromycin" "Generic rules" "15μg" 23 13 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Erythromycin" "Generic rules" "15μg" 0.5 8 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Ertapenem" "Table 2A" "10μg" 22 18 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Erythromycin" "Generic rules" "15ug" 23 13 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Erythromycin" "Generic rules" "15ug" 0.5 8 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Ertapenem" "Table 2A" "10ug" 22 18 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Ertapenem" "Table 2A" 0.5 2 FALSE -"CLSI 2021" "DISK" "Aeromonas" 3 "Ertapenem" "M45 Table 2" "10μg" 19 15 FALSE +"CLSI 2021" "DISK" "Aeromonas" 3 "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE "CLSI 2021" "MIC" "Aeromonas" 3 "Ertapenem" "M45 Table 3" 0.5 2 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Ertapenem" "Table 2E" "10μg" 19 6 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Ertapenem" "Table 2E" "10ug" 19 6 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Ertapenem" "Table 2E" 0.5 2048 FALSE "CLSI 2021" "MIC" "Streptococcus" 3 "Ertapenem" "Table 2H-1" 1 2048 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" "Table 2G" 1 4 FALSE "CLSI 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "Table 2H-2" 1 2048 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Ertapenem" "Generic rules" "10μg" 22 18 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Ertapenem" "Generic rules" "10μg" 0.5 2 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefiderocol" "Table 2A" "30μg" 16 11 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 22 18 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 0.5 2 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefiderocol" "Table 2A" "30ug" 16 11 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Cefiderocol" "Table 2A" 4 16 FALSE -"CLSI 2021" "DISK" "Parenteral" "Acinetobacter" 3 "Cefiderocol" "Table 2B-2" "30μg" 15 10 FALSE +"CLSI 2021" "DISK" "Parenteral" "Acinetobacter" 3 "Cefiderocol" "Table 2B-2" "30ug" 15 10 FALSE "CLSI 2021" "MIC" "Parenteral" "Acinetobacter" 3 "Cefiderocol" "Table 2B-2" 4 16 FALSE -"CLSI 2021" "DISK" "Parenteral" "Pseudomonas aeruginosa" 2 "Cefiderocol" "Table 2B-1" "30μg" 18 12 FALSE +"CLSI 2021" "DISK" "Parenteral" "Pseudomonas aeruginosa" 2 "Cefiderocol" "Table 2B-1" "30ug" 18 12 FALSE "CLSI 2021" "MIC" "Parenteral" "Pseudomonas aeruginosa" 2 "Cefiderocol" "Table 2B-1" 4 16 FALSE -"CLSI 2021" "DISK" "Parenteral" "Stenotrophomonas maltophilia" 2 "Cefiderocol" "Table 2B-4" "30μg" 17 12 FALSE +"CLSI 2021" "DISK" "Parenteral" "Stenotrophomonas maltophilia" 2 "Cefiderocol" "Table 2B-4" "30ug" 17 12 FALSE "CLSI 2021" "MIC" "Parenteral" "Stenotrophomonas maltophilia" 2 "Cefiderocol" "Table 2B-4" 4 16 FALSE "CLSI 2021" "MIC" "(unknown name)" 6 "Cefiderocol" "Generic rules" 4 16 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefepime" "Table 2A" "30μg" 25 18 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefepime" "Table 2A" "30ug" 25 18 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Cefepime" "Table 2A" 2 16 FALSE "CLSI 2021" "MIC" "Abiotrophia" 3 "Cefepime" "M45 Table 1" 1 4 FALSE -"CLSI 2021" "DISK" "Parenteral" "Acinetobacter" 3 "Cefepime" "Table 2B-2" "30μg" 18 14 FALSE +"CLSI 2021" "DISK" "Parenteral" "Acinetobacter" 3 "Cefepime" "Table 2B-2" "30ug" 18 14 FALSE "CLSI 2021" "MIC" "Parenteral" "Acinetobacter" 3 "Cefepime" "Table 2B-2" 8 32 FALSE -"CLSI 2021" "DISK" "Aeromonas" 3 "Cefepime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2021" "DISK" "Aeromonas" 3 "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2021" "MIC" "Aeromonas" 3 "Cefepime" "M45 Table 3" 2 16 FALSE "CLSI 2021" "MIC" "Parenteral" "(unknown Gram-negatives)" 2 "Cefepime" "Table 2B-5" 8 32 FALSE "CLSI 2021" "MIC" "Granulicatella" 3 "Cefepime" "M45 Table 1" 1 4 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Cefepime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Cefepime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Cefepime" "Table 2E" 2 2048 FALSE -"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" "30μg" 31 6 FALSE +"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" "30ug" 31 6 FALSE "CLSI 2021" "MIC" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" 0.5 2048 FALSE -"CLSI 2021" "DISK" "Parenteral" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" "30μg" 18 14 FALSE +"CLSI 2021" "DISK" "Parenteral" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" "30ug" 18 14 FALSE "CLSI 2021" "MIC" "Parenteral" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" 8 32 FALSE -"CLSI 2021" "DISK" "Streptococcus" 3 "Cefepime" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2021" "DISK" "Streptococcus" 3 "Cefepime" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2021" "MIC" "Streptococcus" 3 "Cefepime" "Table 2H-1" 0.5 2048 FALSE "CLSI 2021" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Cefepime" "Table 2G" 0.5 2 FALSE "CLSI 2021" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Cefepime" "Table 2G" 1 4 FALSE -"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" "30μg" 24 21 FALSE +"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" "30ug" 24 21 FALSE "CLSI 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" 1 4 FALSE -"CLSI 2021" "DISK" "Vibrio" 3 "Cefepime" "M45 Table 20" "30μg" 25 18 FALSE +"CLSI 2021" "DISK" "Vibrio" 3 "Cefepime" "M45 Table 20" "30ug" 25 18 FALSE "CLSI 2021" "MIC" "Vibrio" 3 "Cefepime" "M45 Table 20" 2 16 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Cefepime" "Generic rules" "30μg" 25 18 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Cefepime" "Generic rules" "30μg" 2 16 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Fleroxacin" "Table 2A" "5μg" 19 15 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 25 18 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 2 16 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Fleroxacin" "Table 2A" "5ug" 19 15 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Fleroxacin" "Table 2A" 2 8 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Fleroxacin" "Table 2E" "5μg" 19 6 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Fleroxacin" "Table 2E" "5ug" 19 6 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Fleroxacin" "Table 2E" 2 2048 FALSE -"CLSI 2021" "DISK" "Staphylococcus" 3 "Fleroxacin" "Table 2C" "5μg" 19 15 FALSE +"CLSI 2021" "DISK" "Staphylococcus" 3 "Fleroxacin" "Table 2C" "5ug" 19 15 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Fleroxacin" "Table 2C" 2 8 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Florfenicol" "Generic rules" "30μg" 19 14 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Florfenicol" "Generic rules" "30μg" 2 8 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Florfenicol" "Generic rules" "30ug" 19 14 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Florfenicol" "Generic rules" "30ug" 2 8 FALSE "CLSI 2021" "DISK" "Candida" 3 "Fluconazole" "Table 1" 50 14 FALSE "CLSI 2021" "MIC" "Candida" 3 "Fluconazole" "Table 1" 0.001 64 FALSE "CLSI 2021" "DISK" "Candida albicans" 2 "Fluconazole" "Table 1" 17 13 FALSE @@ -8063,68 +8063,68 @@ "CLSI 2021" "MIC" "Candida parapsilosis" 2 "Fluconazole" "Table 1" 2 8 FALSE "CLSI 2021" "DISK" "Candida tropicalis" 2 "Fluconazole" "Table 1" 17 13 FALSE "CLSI 2021" "MIC" "Candida tropicalis" 2 "Fluconazole" "Table 1" 2 8 FALSE -"CLSI 2021" "DISK" "Enterococcus" 3 "Fosfomycin" "Table 2D" "200μg" 16 12 FALSE +"CLSI 2021" "DISK" "Enterococcus" 3 "Fosfomycin" "Table 2D" "200ug" 16 12 FALSE "CLSI 2021" "MIC" "Enterococcus" 3 "Fosfomycin" "Table 2D" 64 256 FALSE -"CLSI 2021" "DISK" "Escherichia coli" 2 "Fosfomycin" "Table 2A" "200μg" 16 12 FALSE +"CLSI 2021" "DISK" "Escherichia coli" 2 "Fosfomycin" "Table 2A" "200ug" 16 12 FALSE "CLSI 2021" "MIC" "Escherichia coli" 2 "Fosfomycin" "Table 2A" 64 256 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefoxitin" "Table 2A" "30μg" 18 14 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefoxitin" "Table 2A" "30ug" 18 14 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Cefoxitin" "Table 2A" 8 32 FALSE -"CLSI 2021" "DISK" "Aeromonas" 3 "Cefoxitin" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2021" "DISK" "Aeromonas" 3 "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2021" "MIC" "Aeromonas" 3 "Cefoxitin" "M45 Table 3" 8 32 FALSE -"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" "30μg" 28 23 FALSE +"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" "30ug" 28 23 FALSE "CLSI 2021" "MIC" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" 2 8 FALSE -"CLSI 2021" "DISK" "Staphylococcus" 3 "Cefoxitin" "Table 2C" "30μg" 25 24 FALSE -"CLSI 2021" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" "30μg" 22 21 FALSE +"CLSI 2021" "DISK" "Staphylococcus" 3 "Cefoxitin" "Table 2C" "30ug" 25 24 FALSE +"CLSI 2021" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE "CLSI 2021" "MIC" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Cefoxitin" "Table 2C" "30μg" 22 21 FALSE +"CLSI 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE "CLSI 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2021" "DISK" "Staphylococcus epidermidis" 2 "Cefoxitin" "Table 2C" "30μg" 25 24 FALSE -"CLSI 2021" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" "30μg" 22 21 FALSE +"CLSI 2021" "DISK" "Staphylococcus epidermidis" 2 "Cefoxitin" "Table 2C" "30ug" 25 24 FALSE +"CLSI 2021" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE "CLSI 2021" "MIC" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2021" "DISK" "Vibrio" 3 "Cefoxitin" "M45 Table 20" "30μg" 18 14 FALSE +"CLSI 2021" "DISK" "Vibrio" 3 "Cefoxitin" "M45 Table 20" "30ug" 18 14 FALSE "CLSI 2021" "MIC" "Vibrio" 3 "Cefoxitin" "M45 Table 20" 8 32 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Gatifloxacin" "Table 2A" "5μg" 18 14 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Gatifloxacin" "Table 2A" "5ug" 18 14 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Gatifloxacin" "Table 2A" 2 8 FALSE -"CLSI 2021" "DISK" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" "5μg" 18 14 FALSE +"CLSI 2021" "DISK" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" "5ug" 18 14 FALSE "CLSI 2021" "MIC" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" 2 8 FALSE -"CLSI 2021" "DISK" "Enterococcus" 3 "Gatifloxacin" "Table 2D" "5μg" 18 14 FALSE +"CLSI 2021" "DISK" "Enterococcus" 3 "Gatifloxacin" "Table 2D" "5ug" 18 14 FALSE "CLSI 2021" "MIC" "Enterococcus" 3 "Gatifloxacin" "Table 2D" 2 8 FALSE "CLSI 2021" "MIC" "(unknown Gram-negatives)" 2 "Gatifloxacin" "Table 2B-5" 2 8 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Gatifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Gatifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Gatifloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" "5μg" 38 33 FALSE +"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" "5ug" 38 33 FALSE "CLSI 2021" "MIC" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" 0.125 0.5 FALSE -"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" "5μg" 18 14 FALSE +"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" "5ug" 18 14 FALSE "CLSI 2021" "MIC" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" 2 8 FALSE -"CLSI 2021" "DISK" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" "10μg" 23 19 FALSE +"CLSI 2021" "DISK" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" "10ug" 23 19 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2021" "DISK" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" "5μg" 21 17 FALSE +"CLSI 2021" "DISK" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" "5ug" 21 17 FALSE "CLSI 2021" "MIC" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" 1 4 FALSE -"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" "5μg" 21 17 FALSE +"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" "5ug" 21 17 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" 1 4 FALSE -"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" "5μg" 21 17 FALSE +"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" "5ug" 21 17 FALSE "CLSI 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" 1 4 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5μg" 18 14 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2021" "DISK" "Enterococcus" 3 "Gentamicin-high" "Table 2D" "120μg" 10 6 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5ug" 18 14 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2021" "DISK" "Enterococcus" 3 "Gentamicin-high" "Table 2D" "120ug" 10 6 FALSE "CLSI 2021" "MIC" "Enterococcus" 3 "Gentamicin-high" "Table 2D" 512 560 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120μg" 10 6 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120μg" 512 560 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Gemifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120ug" 10 6 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120ug" 512 560 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Gemifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Gemifloxacin" "Table 2E" 0.125 2048 FALSE -"CLSI 2021" "DISK" "Klebsiella pneumoniae pneumoniae" 1 "Gemifloxacin" "Table 2A" "5μg" 20 15 FALSE +"CLSI 2021" "DISK" "Klebsiella pneumoniae pneumoniae" 1 "Gemifloxacin" "Table 2A" "5ug" 20 15 FALSE "CLSI 2021" "MIC" "Klebsiella pneumoniae pneumoniae" 1 "Gemifloxacin" "Table 2A" 0.25 1 FALSE -"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" "5μg" 23 19 FALSE +"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" "5ug" 23 19 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" 0.125 0.5 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5μg" 20 15 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5μg" 0.25 1 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Gentamicin" "Table 2A" "10μg" 15 12 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5ug" 20 15 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5ug" 0.25 1 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Gentamicin" "Table 2A" "10ug" 15 12 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Gentamicin" "Table 2A" 4 16 FALSE -"CLSI 2021" "DISK" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" "10μg" 15 12 FALSE +"CLSI 2021" "DISK" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" "10ug" 15 12 FALSE "CLSI 2021" "MIC" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" 4 16 FALSE -"CLSI 2021" "DISK" "Aeromonas" 3 "Gentamicin" "M45 Table 2" "10μg" 15 12 FALSE +"CLSI 2021" "DISK" "Aeromonas" 3 "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE "CLSI 2021" "MIC" "Aeromonas" 3 "Gentamicin" "M45 Table 3" 4 16 FALSE "CLSI 2021" "MIC" "Bacillus" 3 "Gentamicin" "M45 Table 4" 4 16 FALSE "CLSI 2021" "MIC" "Brucella" 3 "Gentamicin" "M45 Table 21" 4 2048 FALSE @@ -8132,41 +8132,41 @@ "CLSI 2021" "MIC" "Francisella tularensis tularensis" 1 "Gentamicin" "M45 Table 21" 4 2048 FALSE "CLSI 2021" "MIC" "(unknown Gram-negatives)" 2 "Gentamicin" "Table 2B-5" 4 16 FALSE "CLSI 2021" "MIC" "Lactobacillus" 3 "Gentamicin" "M45 Table 11" 4 16 FALSE -"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" "10μg" 15 12 FALSE +"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" "10ug" 15 12 FALSE "CLSI 2021" "MIC" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" 4 16 FALSE -"CLSI 2021" "DISK" "Staphylococcus" 3 "Gentamicin" "Table 2C" "10μg" 15 12 FALSE +"CLSI 2021" "DISK" "Staphylococcus" 3 "Gentamicin" "Table 2C" "10ug" 15 12 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Gentamicin" "Table 2C" 4 16 FALSE -"CLSI 2021" "DISK" "Vibrio" 3 "Gentamicin" "M45 Table 20" "10μg" 15 12 FALSE +"CLSI 2021" "DISK" "Vibrio" 3 "Gentamicin" "M45 Table 20" "10ug" 15 12 FALSE "CLSI 2021" "MIC" "Vibrio" 3 "Gentamicin" "M45 Table 20" 4 16 FALSE "CLSI 2021" "MIC" "Yersinia pestis" 2 "Gentamicin" "M45 Table 21" 4 16 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Gentamicin" "Generic rules" "10μg" 15 12 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Gentamicin" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Grepafloxacin" "Table 2A" "5μg" 18 14 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 15 12 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Grepafloxacin" "Table 2A" "5ug" 18 14 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Grepafloxacin" "Table 2A" 1 4 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Grepafloxacin" "Table 2E" "5μg" 24 6 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Grepafloxacin" "Table 2E" "5ug" 24 6 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Grepafloxacin" "Table 2E" 0.5 2048 FALSE -"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" "5μg" 37 27 FALSE +"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" "5ug" 37 27 FALSE "CLSI 2021" "MIC" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" 0.064 1 FALSE -"CLSI 2021" "DISK" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" "5μg" 18 14 FALSE +"CLSI 2021" "DISK" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" "5ug" 18 14 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" 1 4 FALSE -"CLSI 2021" "DISK" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" "5μg" 19 15 FALSE +"CLSI 2021" "DISK" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" "5ug" 19 15 FALSE "CLSI 2021" "MIC" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" "5μg" 19 15 FALSE +"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" "5ug" 19 15 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" 0.5 2 FALSE -"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" "5μg" 19 15 FALSE +"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" "5ug" 19 15 FALSE "CLSI 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" 0.5 2 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5μg" 18 14 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Imipenem/relebactam" "Table 2A" "10/25μg" 25 20 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5ug" 18 14 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Imipenem/relebactam" "Table 2A" "10/25ug" 25 20 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Imipenem/relebactam" "Table 2A" 1 4 FALSE -"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Imipenem/relebactam" "Table 2B-1" "10/25μg" 23 19 FALSE +"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Imipenem/relebactam" "Table 2B-1" "10/25ug" 23 19 FALSE "CLSI 2021" "MIC" "Pseudomonas aeruginosa" 2 "Imipenem/relebactam" "Table 2B-1" 2 8 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Imipenem" "Table 2A" "10μg" 23 19 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Imipenem" "Table 2A" "10ug" 23 19 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Imipenem" "Table 2A" 1 4 FALSE "CLSI 2021" "MIC" "Abiotrophia" 3 "Imipenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2021" "DISK" "Acinetobacter" 3 "Imipenem" "Table 2B-2" "10μg" 22 18 FALSE +"CLSI 2021" "DISK" "Acinetobacter" 3 "Imipenem" "Table 2B-2" "10ug" 22 18 FALSE "CLSI 2021" "MIC" "Acinetobacter" 3 "Imipenem" "Table 2B-2" 2 8 FALSE -"CLSI 2021" "DISK" "Aeromonas" 3 "Imipenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2021" "DISK" "Aeromonas" 3 "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2021" "MIC" "Aeromonas" 3 "Imipenem" "M45 Table 3" 1 4 FALSE "CLSI 2021" "MIC" "Aggregatibacter" 3 "Imipenem" "M45 Table 9" 4 16 FALSE "CLSI 2021" "MIC" "Bacillus" 3 "Imipenem" "M45 Table 4" 4 16 FALSE @@ -8176,74 +8176,74 @@ "CLSI 2021" "MIC" "Eikenella corrodens" 2 "Imipenem" "M45 Table 9" 0.5 2 FALSE "CLSI 2021" "MIC" "(unknown Gram-negatives)" 2 "Imipenem" "Table 2B-5" 4 16 FALSE "CLSI 2021" "MIC" "Granulicatella" 3 "Imipenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Imipenem" "Table 2E" "10μg" 16 6 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Imipenem" "Table 2E" "10ug" 16 6 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Imipenem" "Table 2E" 4 2048 FALSE "CLSI 2021" "MIC" "Kingella" 3 "Imipenem" "M45 Table 9" 0.5 2 FALSE "CLSI 2021" "MIC" "Lactobacillus" 3 "Imipenem" "M45 Table 11" 0.5 2 FALSE "CLSI 2021" "MIC" "Pediococcus" 3 "Imipenem" "M45 Table 18" 0.5 2048 FALSE -"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2021" "MIC" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" 2 8 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" "Table 2G" 0.125 1 FALSE -"CLSI 2021" "DISK" "Vibrio" 3 "Imipenem" "M45 Table 20" "10μg" 23 19 FALSE +"CLSI 2021" "DISK" "Vibrio" 3 "Imipenem" "M45 Table 20" "10ug" 23 19 FALSE "CLSI 2021" "MIC" "Vibrio" 3 "Imipenem" "M45 Table 20" 1 4 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Imipenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Imipenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Kanamycin" "Table 2A" "30μg" 18 13 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Kanamycin" "Table 2A" "30ug" 18 13 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Kanamycin" "Table 2A" 16 64 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Kanamycin" "Generic rules" "30μg" 18 13 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Kanamycin" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Lefamulin" "Table 2E" "20μg" 17 6 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Kanamycin" "Generic rules" "30ug" 18 13 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Kanamycin" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Lefamulin" "Table 2E" "20ug" 17 6 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Lefamulin" "Table 2E" 2 2048 FALSE -"CLSI 2021" "DISK" "Staphylococcus aureus aureus" 1 "Lefamulin" "Table 2C" "20μg" 23 6 FALSE +"CLSI 2021" "DISK" "Staphylococcus aureus aureus" 1 "Lefamulin" "Table 2C" "20ug" 23 6 FALSE "CLSI 2021" "MIC" "Staphylococcus aureus aureus" 1 "Lefamulin" "Table 2C" 0.25 2048 FALSE -"CLSI 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Lefamulin" "Table 2C" "20μg" 23 6 FALSE +"CLSI 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Lefamulin" "Table 2C" "20ug" 23 6 FALSE "CLSI 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Lefamulin" "Table 2C" 0.25 2048 FALSE -"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Lefamulin" "Table 2G" "20μg" 17 6 FALSE +"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Lefamulin" "Table 2G" "20ug" 17 6 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Lefamulin" "Table 2G" 0.5 2048 FALSE "CLSI 2021" "MIC" "Aerococcus" 3 "Linezolid" "M45 Table 2" 2 2048 FALSE -"CLSI 2021" "DISK" "Enterococcus" 3 "Linezolid" "Table 2D" "30μg" 23 20 FALSE +"CLSI 2021" "DISK" "Enterococcus" 3 "Linezolid" "Table 2D" "30ug" 23 20 FALSE "CLSI 2021" "MIC" "Enterococcus" 3 "Linezolid" "Table 2D" 2 8 FALSE "CLSI 2021" "MIC" "Lactobacillus" 3 "Linezolid" "M45 Table 11" 4 2048 FALSE -"CLSI 2021" "DISK" "Staphylococcus" 3 "Linezolid" "Table 2C" "30μg" 21 20 FALSE +"CLSI 2021" "DISK" "Staphylococcus" 3 "Linezolid" "Table 2C" "30ug" 21 20 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Linezolid" "Table 2C" 4 8 FALSE -"CLSI 2021" "DISK" "Streptococcus" 3 "Linezolid" "Table 2H-1" "30μg" 21 6 FALSE +"CLSI 2021" "DISK" "Streptococcus" 3 "Linezolid" "Table 2H-1" "30ug" 21 6 FALSE "CLSI 2021" "MIC" "Streptococcus" 3 "Linezolid" "Table 2H-1" 2 2048 FALSE -"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" "30μg" 21 6 FALSE +"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" "30ug" 21 6 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" 2 2048 FALSE -"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" "30μg" 21 6 FALSE +"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" "30ug" 21 6 FALSE "CLSI 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" 2 2048 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Linezolid" "Generic rules" "30μg" 21 20 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Linezolid" "Generic rules" "30μg" 4 8 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Lomefloxacin" "Table 2A" "10μg" 22 18 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Linezolid" "Generic rules" "30ug" 21 20 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Linezolid" "Generic rules" "30ug" 4 8 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Lomefloxacin" "Table 2A" "10ug" 22 18 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Lomefloxacin" "Table 2A" 2 8 FALSE "CLSI 2021" "MIC" "(unknown Gram-negatives)" 2 "Lomefloxacin" "Table 2B-5" 2 8 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Lomefloxacin" "Table 2E" "10μg" 22 6 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Lomefloxacin" "Table 2E" "10ug" 22 6 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Lomefloxacin" "Table 2E" 2 2048 FALSE -"CLSI 2021" "DISK" "Urine" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" "10μg" 22 18 TRUE +"CLSI 2021" "DISK" "Urine" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" "10ug" 22 18 TRUE "CLSI 2021" "MIC" "Urine" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" 2 8 TRUE -"CLSI 2021" "DISK" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" "10μg" 22 18 FALSE +"CLSI 2021" "DISK" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" "10ug" 22 18 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" 2 8 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10μg" 22 18 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Loracarbef" "Table 2A" "30μg" 18 14 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10ug" 22 18 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Loracarbef" "Table 2A" "30ug" 18 14 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Loracarbef" "Table 2A" 8 32 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Loracarbef" "Table 2E" "30μg" 19 15 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Loracarbef" "Table 2E" "30ug" 19 15 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Loracarbef" "Table 2E" 8 32 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Loracarbef" "Table 2G" 2 8 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Loracarbef" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Loracarbef" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Latamoxef" "Table 2A" "30μg" 23 14 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Loracarbef" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Loracarbef" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Latamoxef" "Table 2A" "30ug" 23 14 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Latamoxef" "Table 2A" 8 64 FALSE "CLSI 2021" "MIC" "Parenteral" "(unknown Gram-negatives)" 2 "Latamoxef" "Table 2B-5" 8 64 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Latamoxef" "Generic rules" "30μg" 23 14 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Latamoxef" "Generic rules" "30μg" 8 64 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Levofloxacin" "Table 2A" "5μg" 21 16 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Latamoxef" "Generic rules" "30ug" 23 14 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Latamoxef" "Generic rules" "30ug" 8 64 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Levofloxacin" "Table 2A" "5ug" 21 16 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Levofloxacin" "Table 2A" 0.5 2 FALSE "CLSI 2021" "MIC" "Abiotrophia" 3 "Levofloxacin" "M45 Table 1" 2 8 FALSE -"CLSI 2021" "DISK" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" "5μg" 17 13 FALSE +"CLSI 2021" "DISK" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" "5ug" 17 13 FALSE "CLSI 2021" "MIC" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" 2 8 FALSE "CLSI 2021" "MIC" "Aerococcus" 3 "Levofloxacin" "M45 Table 2" 2 8 FALSE -"CLSI 2021" "DISK" "Aeromonas" 3 "Levofloxacin" "M45 Table 2" "5μg" 17 13 FALSE +"CLSI 2021" "DISK" "Aeromonas" 3 "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE "CLSI 2021" "MIC" "Aeromonas" 3 "Levofloxacin" "M45 Table 3" 2 4 FALSE "CLSI 2021" "MIC" "Aggregatibacter" 3 "Levofloxacin" "M45 Table 9" 2 8 FALSE "CLSI 2021" "MIC" "Bacillus" 3 "Levofloxacin" "M45 Table 4" 2 8 FALSE @@ -8251,100 +8251,100 @@ "CLSI 2021" "MIC" "Burkholderia cepacia" 2 "Levofloxacin" "Table 2B-3" 2 8 FALSE "CLSI 2021" "MIC" "Cardiobacterium" 3 "Levofloxacin" "M45 Table 9" 2 8 FALSE "CLSI 2021" "MIC" "Eikenella corrodens" 2 "Levofloxacin" "M45 Table 9" 2 8 FALSE -"CLSI 2021" "DISK" "Enterococcus" 3 "Levofloxacin" "Table 2D" "5μg" 17 13 FALSE +"CLSI 2021" "DISK" "Enterococcus" 3 "Levofloxacin" "Table 2D" "5ug" 17 13 FALSE "CLSI 2021" "MIC" "Enterococcus" 3 "Levofloxacin" "Table 2D" 2 8 FALSE "CLSI 2021" "MIC" "Francisella tularensis tularensis" 1 "Levofloxacin" "M45 Table 21" 0.5 2048 FALSE "CLSI 2021" "MIC" "Gemella" 3 "Levofloxacin" "M45 Table 8" 2 8 FALSE "CLSI 2021" "MIC" "(unknown Gram-negatives)" 2 "Levofloxacin" "Table 2B-5" 2 8 FALSE "CLSI 2021" "MIC" "Granulicatella" 3 "Levofloxacin" "M45 Table 1" 2 8 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Levofloxacin" "Table 2E" "5μg" 17 6 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Levofloxacin" "Table 2E" "5ug" 17 6 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Levofloxacin" "Table 2E" 2 2048 FALSE "CLSI 2021" "MIC" "Kingella" 3 "Levofloxacin" "M45 Table 9" 2 8 FALSE "CLSI 2021" "MIC" "Lactococcus" 3 "Levofloxacin" "M45 Table 12" 2 8 FALSE "CLSI 2021" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" "M45 Table 16" 2 2048 FALSE "CLSI 2021" "MIC" "Neisseria meningitidis" 2 "Levofloxacin" "Table 2I" 0.032 0.12 FALSE "CLSI 2021" "MIC" "Paenibacillus mucilaginosus" 2 "Levofloxacin" "M45 Table 19" 1 4 FALSE -"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" "5μg" 22 14 FALSE +"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" "5ug" 22 14 FALSE "CLSI 2021" "MIC" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" 1 4 FALSE -"CLSI 2021" "DISK" "Pasteurella" 3 "Levofloxacin" "M45 Table 17" "5μg" 28 6 FALSE +"CLSI 2021" "DISK" "Pasteurella" 3 "Levofloxacin" "M45 Table 17" "5ug" 28 6 FALSE "CLSI 2021" "MIC" "Pasteurella" 3 "Levofloxacin" "M45 Table 17" 0.064 2048 FALSE "CLSI 2021" "MIC" "Extraintestinal" "Salmonella" 3 "Levofloxacin" "Table 2A" 0.125 2 FALSE -"CLSI 2021" "DISK" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" "75μg" 17 13 FALSE +"CLSI 2021" "DISK" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" "75ug" 17 13 FALSE "CLSI 2021" "MIC" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" 2 8 FALSE -"CLSI 2021" "DISK" "Staphylococcus" 3 "Levofloxacin" "Table 2C" "10μg" 19 15 FALSE +"CLSI 2021" "DISK" "Staphylococcus" 3 "Levofloxacin" "Table 2C" "10ug" 19 15 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Levofloxacin" "Table 2C" 1 4 FALSE -"CLSI 2021" "DISK" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" "5μg" 17 13 FALSE +"CLSI 2021" "DISK" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" "5ug" 17 13 FALSE "CLSI 2021" "MIC" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" 2 8 FALSE -"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" "5μg" 17 13 FALSE +"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" "5ug" 17 13 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" 2 8 FALSE -"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" "5μg" 17 13 FALSE +"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" "5ug" 17 13 FALSE "CLSI 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" 2 8 FALSE -"CLSI 2021" "DISK" "Vibrio" 3 "Levofloxacin" "M45 Table 20" "5μg" 17 13 FALSE +"CLSI 2021" "DISK" "Vibrio" 3 "Levofloxacin" "M45 Table 20" "5ug" 17 13 FALSE "CLSI 2021" "MIC" "Vibrio" 3 "Levofloxacin" "M45 Table 20" 2 8 FALSE "CLSI 2021" "MIC" "Yersinia pestis" 2 "Levofloxacin" "M45 Table 21" 0.25 2048 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5μg" 21 16 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5μg" 0.5 2 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefamandole" "Table 2A" "30μg" 18 14 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 21 16 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 0.5 2 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Cefamandole" "Table 2A" "30ug" 18 14 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Cefamandole" "Table 2A" 8 32 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Cefamandole" "Table 2E" 4 16 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Cefamandole" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Cefamandole" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Marbofloxacin" "Generic rules" "5μg" 20 14 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Marbofloxacin" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2021" "DISK" "Urine" "Escherichia coli" 2 "Mecillinam" "Table 2A" "10μg" 15 11 TRUE +"CLSI 2021" "DISK" "(unknown name)" 6 "Cefamandole" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Cefamandole" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Marbofloxacin" "Generic rules" "5ug" 20 14 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Marbofloxacin" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2021" "DISK" "Urine" "Escherichia coli" 2 "Mecillinam" "Table 2A" "10ug" 15 11 TRUE "CLSI 2021" "MIC" "Urine" "Escherichia coli" 2 "Mecillinam" "Table 2A" 8 32 TRUE -"CLSI 2021" "DISK" "(unknown name)" 6 "Mecillinam" "Generic rules" "10μg" 15 11 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Mecillinam" "Generic rules" "10μg" 8 32 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Meropenem" "Table 2A" "10μg" 23 19 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 15 11 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 8 32 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Meropenem" "Table 2A" "10ug" 23 19 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Meropenem" "Table 2A" 1 4 FALSE "CLSI 2021" "MIC" "Abiotrophia" 3 "Meropenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2021" "DISK" "Acinetobacter" 3 "Meropenem" "Table 2B-2" "10μg" 18 14 FALSE +"CLSI 2021" "DISK" "Acinetobacter" 3 "Meropenem" "Table 2B-2" "10ug" 18 14 FALSE "CLSI 2021" "MIC" "Acinetobacter" 3 "Meropenem" "Table 2B-2" 2 8 FALSE "CLSI 2021" "MIC" "Aerococcus" 3 "Meropenem" "M45 Table 2" 0.5 2048 FALSE -"CLSI 2021" "DISK" "Aeromonas" 3 "Meropenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2021" "DISK" "Aeromonas" 3 "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2021" "MIC" "Aeromonas" 3 "Meropenem" "M45 Table 3" 1 4 FALSE "CLSI 2021" "MIC" "Aggregatibacter" 3 "Meropenem" "M45 Table 9" 4 16 FALSE "CLSI 2021" "MIC" "Bacillus" 3 "Meropenem" "M45 Table 4" 4 16 FALSE -"CLSI 2021" "DISK" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" "10μg" 20 15 FALSE +"CLSI 2021" "DISK" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" "10ug" 20 15 FALSE "CLSI 2021" "MIC" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" 4 16 FALSE "CLSI 2021" "MIC" "Cardiobacterium" 3 "Meropenem" "M45 Table 9" 0.5 2 FALSE "CLSI 2021" "MIC" "Eikenella corrodens" 2 "Meropenem" "M45 Table 9" 0.5 2 FALSE "CLSI 2021" "MIC" "Gemella" 3 "Meropenem" "M45 Table 8" 0.5 2 FALSE "CLSI 2021" "MIC" "(unknown Gram-negatives)" 2 "Meropenem" "Table 2B-5" 4 16 FALSE "CLSI 2021" "MIC" "Granulicatella" 3 "Meropenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Meropenem" "Table 2E" "10μg" 20 6 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Meropenem" "Table 2E" "10ug" 20 6 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Meropenem" "Table 2E" 0.5 2048 FALSE "CLSI 2021" "MIC" "Kingella" 3 "Meropenem" "M45 Table 9" 0.5 2 FALSE "CLSI 2021" "MIC" "Lactobacillus" 3 "Meropenem" "M45 Table 11" 1 4 FALSE "CLSI 2021" "MIC" "Lactococcus" 3 "Meropenem" "M45 Table 12" 0.25 1 FALSE "CLSI 2021" "MIC" "Listeria monocytogenes" 2 "Meropenem" "M45 Table 14" 0.25 2048 FALSE -"CLSI 2021" "DISK" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" "10μg" 30 6 FALSE +"CLSI 2021" "DISK" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" "10ug" 30 6 FALSE "CLSI 2021" "MIC" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" 0.25 2048 FALSE -"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2021" "MIC" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" 2 8 FALSE "CLSI 2021" "MIC" "Streptococcus" 3 "Meropenem" "Table 2H-1" 0.5 2048 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Meropenem" "Table 2G" 0.25 1 FALSE "CLSI 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "Table 2H-2" 0.5 2048 FALSE -"CLSI 2021" "DISK" "Vibrio" 3 "Meropenem" "M45 Table 20" "10μg" 23 19 FALSE +"CLSI 2021" "DISK" "Vibrio" 3 "Meropenem" "M45 Table 20" "10ug" 23 19 FALSE "CLSI 2021" "MIC" "Vibrio" 3 "Meropenem" "M45 Table 20" 1 4 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Meropenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Meropenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Methicillin" "Generic rules" "5μg" 14 9 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Methicillin" "Generic rules" "5μg" 8 16 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Meropenem/vaborbactam" "Table 2A" "20μg/10μg" 18 14 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Methicillin" "Generic rules" "5ug" 14 9 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Methicillin" "Generic rules" "5ug" 8 16 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Meropenem/vaborbactam" "Table 2A" "20ug/10ug" 18 14 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Meropenem/vaborbactam" "Table 2A" 4 16 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Meropenem/vaborbactam" "Generic rules" "20/10μg" 18 14 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Meropenem/vaborbactam" "Generic rules" "20/10μg" 4 16 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Moxifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Meropenem/vaborbactam" "Generic rules" "20/10ug" 18 14 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Meropenem/vaborbactam" "Generic rules" "20/10ug" 4 16 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Moxifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Moxifloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2021" "DISK" "Pasteurella" 3 "Moxifloxacin" "M45 Table 17" "5μg" 28 6 FALSE +"CLSI 2021" "DISK" "Pasteurella" 3 "Moxifloxacin" "M45 Table 17" "5ug" 28 6 FALSE "CLSI 2021" "MIC" "Pasteurella" 3 "Moxifloxacin" "M45 Table 17" 0.064 2048 FALSE -"CLSI 2021" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" "5μg" 24 20 FALSE +"CLSI 2021" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" "5ug" 24 20 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" "5μg" 18 14 FALSE +"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" "5ug" 18 14 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" 1 4 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5μg" 24 20 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5μg" 0.5 2 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 24 20 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 0.5 2 FALSE "CLSI 2021" "DISK" "Candida" 3 "Micafungin" "Table 1" 30 27 FALSE "CLSI 2021" "MIC" "Candida" 3 "Micafungin" "Table 1" 0.064 0.25 FALSE "CLSI 2021" "DISK" "Candida albicans" 2 "Micafungin" "Table 1" 22 19 FALSE @@ -8359,79 +8359,79 @@ "CLSI 2021" "MIC" "Meyerozyma guilliermondii" 2 "Micafungin" "Table 1" 2 8 FALSE "CLSI 2021" "DISK" "Pichia" 3 "Micafungin" "Table 1" 22 19 FALSE "CLSI 2021" "MIC" "Pichia" 3 "Micafungin" "Table 1" 0.25 1 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Minocycline" "Table 2A" "30μg" 16 12 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Minocycline" "Table 2A" "30ug" 16 12 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Minocycline" "Table 2A" 4 16 FALSE -"CLSI 2021" "DISK" "Acinetobacter" 3 "Minocycline" "Table 2B-2" "30μg" 16 12 FALSE +"CLSI 2021" "DISK" "Acinetobacter" 3 "Minocycline" "Table 2B-2" "30ug" 16 12 FALSE "CLSI 2021" "MIC" "Acinetobacter" 3 "Minocycline" "Table 2B-2" 4 16 FALSE -"CLSI 2021" "DISK" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" "30μg" 19 14 FALSE +"CLSI 2021" "DISK" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" "30ug" 19 14 FALSE "CLSI 2021" "MIC" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" 4 16 FALSE -"CLSI 2021" "DISK" "Enterococcus" 3 "Minocycline" "Table 2D" "30μg" 19 14 FALSE +"CLSI 2021" "DISK" "Enterococcus" 3 "Minocycline" "Table 2D" "30ug" 19 14 FALSE "CLSI 2021" "MIC" "Enterococcus" 3 "Minocycline" "Table 2D" 4 16 FALSE "CLSI 2021" "MIC" "(unknown Gram-negatives)" 2 "Minocycline" "Table 2B-5" 4 16 FALSE "CLSI 2021" "MIC" "Leuconostoc" 3 "Minocycline" "M45 Table 13" 4 16 FALSE -"CLSI 2021" "DISK" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" "30μg" 26 6 FALSE +"CLSI 2021" "DISK" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" "30ug" 26 6 FALSE "CLSI 2021" "MIC" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" 2 2048 FALSE -"CLSI 2021" "DISK" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" "30μg" 19 14 FALSE +"CLSI 2021" "DISK" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" "30ug" 19 14 FALSE "CLSI 2021" "MIC" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" 4 16 FALSE -"CLSI 2021" "DISK" "Staphylococcus" 3 "Minocycline" "Table 2C" "30μg" 19 14 FALSE +"CLSI 2021" "DISK" "Staphylococcus" 3 "Minocycline" "Table 2C" "30ug" 19 14 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Minocycline" "Table 2C" 4 16 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Minocycline" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Minocycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Nafcillin" "Generic rules" "1μg" 13 10 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Nafcillin" "Generic rules" "1μg" 2 4 FALSE -"CLSI 2021" "DISK" "Urine" "Enterobacterales" 5 "Nalidixic acid" "Table 2A" "30μg" 19 13 TRUE +"CLSI 2021" "DISK" "(unknown name)" 6 "Minocycline" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Minocycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Nafcillin" "Generic rules" "1ug" 13 10 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Nafcillin" "Generic rules" "1ug" 2 4 FALSE +"CLSI 2021" "DISK" "Urine" "Enterobacterales" 5 "Nalidixic acid" "Table 2A" "30ug" 19 13 TRUE "CLSI 2021" "MIC" "Urine" "Enterobacterales" 5 "Nalidixic acid" "Table 2A" 16 32 TRUE -"CLSI 2021" "DISK" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" "30μg" 26 25 FALSE +"CLSI 2021" "DISK" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" "30ug" 26 25 FALSE "CLSI 2021" "MIC" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" 4 8 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30μg" 19 13 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30μg" 16 32 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Netilmicin" "Table 2A" "30μg" 15 12 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 19 13 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 16 32 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Netilmicin" "Table 2A" "30ug" 15 12 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Netilmicin" "Table 2A" 8 32 FALSE "CLSI 2021" "MIC" "Acinetobacter" 3 "Netilmicin" "Table 2B-2" 8 32 FALSE "CLSI 2021" "MIC" "(unknown Gram-negatives)" 2 "Netilmicin" "Table 2B-5" 8 32 FALSE -"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" "30μg" 15 12 FALSE +"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" "30ug" 15 12 FALSE "CLSI 2021" "MIC" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" 8 32 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Netilmicin" "Generic rules" "30μg" 15 12 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Netilmicin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Nitrofurantoin" "Table 2A" "300μg" 17 14 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Netilmicin" "Generic rules" "30ug" 15 12 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Netilmicin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Nitrofurantoin" "Table 2A" "300ug" 17 14 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Nitrofurantoin" "Table 2A" 32 128 FALSE -"CLSI 2021" "DISK" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" "300μg" 17 14 FALSE +"CLSI 2021" "DISK" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" "300ug" 17 14 FALSE "CLSI 2021" "MIC" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" 32 128 FALSE -"CLSI 2021" "DISK" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" "300μg" 17 14 FALSE +"CLSI 2021" "DISK" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" "300ug" 17 14 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" 32 128 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "300μg" 17 14 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100μg" 32 128 FALSE -"CLSI 2021" "DISK" "Urine" "Enterobacterales" 5 "Norfloxacin" "Table 2A" "10μg" 17 12 TRUE +"CLSI 2021" "DISK" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "300ug" 17 14 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100ug" 32 128 FALSE +"CLSI 2021" "DISK" "Urine" "Enterobacterales" 5 "Norfloxacin" "Table 2A" "10ug" 17 12 TRUE "CLSI 2021" "MIC" "Urine" "Enterobacterales" 5 "Norfloxacin" "Table 2A" 4 16 TRUE -"CLSI 2021" "DISK" "Urine" "Enterococcus" 3 "Norfloxacin" "Table 2D" "10μg" 17 12 TRUE +"CLSI 2021" "DISK" "Urine" "Enterococcus" 3 "Norfloxacin" "Table 2D" "10ug" 17 12 TRUE "CLSI 2021" "MIC" "Urine" "Enterococcus" 3 "Norfloxacin" "Table 2D" 4 16 TRUE "CLSI 2021" "MIC" "Urine" "(unknown Gram-negatives)" 2 "Norfloxacin" "Table 2B-5" 4 16 TRUE -"CLSI 2021" "DISK" "Urine" "Pseudomonas aeruginosa" 2 "Norfloxacin" "Table 2B-1" "10μg" 17 12 TRUE +"CLSI 2021" "DISK" "Urine" "Pseudomonas aeruginosa" 2 "Norfloxacin" "Table 2B-1" "10ug" 17 12 TRUE "CLSI 2021" "MIC" "Urine" "Pseudomonas aeruginosa" 2 "Norfloxacin" "Table 2B-1" 4 16 TRUE -"CLSI 2021" "DISK" "Urine" "Staphylococcus" 3 "Norfloxacin" "Table 2C" "10μg" 17 12 TRUE +"CLSI 2021" "DISK" "Urine" "Staphylococcus" 3 "Norfloxacin" "Table 2C" "10ug" 17 12 TRUE "CLSI 2021" "MIC" "Urine" "Staphylococcus" 3 "Norfloxacin" "Table 2C" 4 16 TRUE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Ofloxacin" "Table 2A" "5μg" 16 12 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Ofloxacin" "Table 2A" "5ug" 16 12 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Ofloxacin" "Table 2A" 2 8 FALSE "CLSI 2021" "MIC" "(unknown Gram-negatives)" 2 "Ofloxacin" "Table 2B-5" 2 8 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Ofloxacin" "Table 2E" "5μg" 16 6 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Ofloxacin" "Table 2E" "5ug" 16 6 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Ofloxacin" "Table 2E" 2 2048 FALSE -"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" "5μg" 16 12 FALSE +"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" "5ug" 16 12 FALSE "CLSI 2021" "MIC" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" 2 8 FALSE "CLSI 2021" "MIC" "Extraintestinal" "Salmonella" 3 "Ofloxacin" "Table 2A" 0.125 2 FALSE -"CLSI 2021" "DISK" "Staphylococcus" 3 "Ofloxacin" "Table 2C" "5μg" 18 14 FALSE +"CLSI 2021" "DISK" "Staphylococcus" 3 "Ofloxacin" "Table 2C" "5ug" 18 14 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Ofloxacin" "Table 2C" 1 4 FALSE -"CLSI 2021" "DISK" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" "5μg" 16 12 FALSE +"CLSI 2021" "DISK" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" "5ug" 16 12 FALSE "CLSI 2021" "MIC" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" 2 8 FALSE -"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" "5μg" 16 12 FALSE +"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" "5ug" 16 12 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" 2 8 FALSE -"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" "5μg" 16 12 FALSE +"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" "5ug" 16 12 FALSE "CLSI 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" 2 8 FALSE -"CLSI 2021" "DISK" "Vibrio" 3 "Ofloxacin" "M45 Table 20" "5μg" 16 12 FALSE +"CLSI 2021" "DISK" "Vibrio" 3 "Ofloxacin" "M45 Table 20" "5ug" 16 12 FALSE "CLSI 2021" "MIC" "Vibrio" 3 "Ofloxacin" "M45 Table 20" 2 8 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5μg" 16 12 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10μg" 23 17 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10μg" 1 8 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 16 12 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10ug" 23 17 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10ug" 1 8 FALSE "CLSI 2021" "MIC" "Enterococcus" 3 "Oritavancin" "Table 2D" 0.125 2048 FALSE "CLSI 2021" "MIC" "Staphylococcus aureus aureus" 1 "Oritavancin" "Table 2C" 0.125 2048 FALSE "CLSI 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Oritavancin" "Table 2C" 0.125 2048 FALSE @@ -8440,16 +8440,16 @@ "CLSI 2021" "MIC" "Staphylococcus" 3 "Oxacillin" "Table 2C" 0.5 1 FALSE "CLSI 2021" "MIC" "Staphylococcus aureus aureus" 1 "Oxacillin" "Table 2C" 2 4 FALSE "CLSI 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Oxacillin" "Table 2C" 2 4 FALSE -"CLSI 2021" "DISK" "Staphylococcus epidermidis" 2 "Oxacillin" "Table 2C" "1μg" 18 17 FALSE +"CLSI 2021" "DISK" "Staphylococcus epidermidis" 2 "Oxacillin" "Table 2C" "1ug" 18 17 FALSE "CLSI 2021" "MIC" "Staphylococcus epidermidis" 2 "Oxacillin" "Table 2C" 0.5 1 FALSE "CLSI 2021" "MIC" "Staphylococcus lugdunensis" 2 "Oxacillin" "Table 2C" 2 4 FALSE -"CLSI 2021" "DISK" "Staphylococcus pseudintermedius" 2 "Oxacillin" "Table 2C" "1μg" 18 17 FALSE +"CLSI 2021" "DISK" "Staphylococcus pseudintermedius" 2 "Oxacillin" "Table 2C" "1ug" 18 17 FALSE "CLSI 2021" "MIC" "Staphylococcus pseudintermedius" 2 "Oxacillin" "Table 2C" 0.5 1 FALSE -"CLSI 2021" "DISK" "Staphylococcus schleiferi" 2 "Oxacillin" "Table 2C" "1μg" 18 17 FALSE +"CLSI 2021" "DISK" "Staphylococcus schleiferi" 2 "Oxacillin" "Table 2C" "1ug" 18 17 FALSE "CLSI 2021" "MIC" "Staphylococcus schleiferi" 2 "Oxacillin" "Table 2C" 0.5 1 FALSE -"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "Table 2G" "1μg" 20 6 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Oxacillin" "Generic rules" "1μg" 0.25 0.5 FALSE -"CLSI 2021" "DISK" "Salmonella" 3 "Pefloxacin" "Table 2A" "5μg" 24 23 FALSE +"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "Table 2G" "1ug" 20 6 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Oxacillin" "Generic rules" "1ug" 0.25 0.5 FALSE +"CLSI 2021" "DISK" "Salmonella" 3 "Pefloxacin" "Table 2A" "5ug" 24 23 FALSE "CLSI 2021" "MIC" "Abiotrophia" 3 "Benzylpenicillin" "M45 Table 1" 0.125 4 FALSE "CLSI 2021" "MIC" "Aerococcus" 3 "Benzylpenicillin" "M45 Table 2" 0.125 4 FALSE "CLSI 2021" "MIC" "Aggregatibacter" 3 "Benzylpenicillin" "M45 Table 9" 1 4 FALSE @@ -8474,7 +8474,7 @@ "CLSI 2021" "MIC" "Paenibacillus mucilaginosus" 2 "Benzylpenicillin" "M45 Table 19" 0.125 4 FALSE "CLSI 2021" "DISK" "Pasteurella" 3 "Benzylpenicillin" "M45 Table 17" "10 Units" 25 6 FALSE "CLSI 2021" "MIC" "Pasteurella" 3 "Benzylpenicillin" "M45 Table 17" 0.5 2048 FALSE -"CLSI 2021" "DISK" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" "10μg" 29 28 FALSE +"CLSI 2021" "DISK" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" "10ug" 29 28 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" 0.125 0.25 FALSE "CLSI 2021" "DISK" "Streptococcus" 3 "Benzylpenicillin" "Table 2H-1" "10units" 24 6 FALSE "CLSI 2021" "MIC" "Streptococcus" 3 "Benzylpenicillin" "Table 2H-1" 0.125 2048 FALSE @@ -8485,176 +8485,176 @@ "CLSI 2021" "DISK" "(unknown name)" 6 "Benzylpenicillin" "Generic rules" "10units" 29 28 FALSE "CLSI 2021" "MIC" "(unknown name)" 6 "Benzylpenicillin" "Generic rules" "10units" 0.125 0.25 FALSE "CLSI 2021" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Phenoxymethylpenicillin" "Table 2G" 0.064 2 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Piperacillin" "Table 2A" "100μg" 21 17 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Piperacillin" "Table 2A" "100ug" 21 17 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Piperacillin" "Table 2A" 16 128 FALSE -"CLSI 2021" "DISK" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" "100μg" 21 17 FALSE +"CLSI 2021" "DISK" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" "100ug" 21 17 FALSE "CLSI 2021" "MIC" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" 16 128 FALSE "CLSI 2021" "MIC" "(unknown Gram-negatives)" 2 "Piperacillin" "Table 2B-5" 16 128 FALSE -"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" "100μg" 21 14 FALSE +"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" "100ug" 21 14 FALSE "CLSI 2021" "MIC" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" 16 128 FALSE -"CLSI 2021" "DISK" "Vibrio" 3 "Piperacillin" "M45 Table 20" "100μg" 21 17 FALSE +"CLSI 2021" "DISK" "Vibrio" 3 "Piperacillin" "M45 Table 20" "100ug" 21 17 FALSE "CLSI 2021" "MIC" "Vibrio" 3 "Piperacillin" "M45 Table 20" 16 128 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Piperacillin" "Generic rules" "100μg" 21 17 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Piperacillin" "Generic rules" "100μg" 16 128 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Piperacillin" "Generic rules" "100ug" 21 17 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Piperacillin" "Generic rules" "100ug" 16 128 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Polymyxin B" "Table 2A" 0.001 4 FALSE "CLSI 2021" "MIC" "Acinetobacter" 3 "Polymyxin B" "Table 2B-2" 0.001 4 FALSE "CLSI 2021" "MIC" "Pseudomonas aeruginosa" 2 "Polymyxin B" "Table 2B-1" 0.001 8 FALSE "CLSI 2021" "DISK" "(unknown name)" 6 "Polymyxin B" "Generic rules" "300units" 12 11 FALSE "CLSI 2021" "MIC" "(unknown name)" 6 "Polymyxin B" "Generic rules" "300units" 2 8 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30μg" 18 14 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30μg" 1 4 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2μg" 13 12 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2μg" 2 4 FALSE -"CLSI 2021" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" "15μg" 19 15 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30ug" 18 14 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30ug" 1 4 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2ug" 13 12 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2ug" 2 4 FALSE +"CLSI 2021" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" "15ug" 19 15 FALSE "CLSI 2021" "MIC" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" 1 4 FALSE -"CLSI 2021" "DISK" "Staphylococcus aureus aureus" 1 "Quinupristin/dalfopristin" "Table 2C" "15μg" 19 15 FALSE +"CLSI 2021" "DISK" "Staphylococcus aureus aureus" 1 "Quinupristin/dalfopristin" "Table 2C" "15ug" 19 15 FALSE "CLSI 2021" "MIC" "Staphylococcus aureus aureus" 1 "Quinupristin/dalfopristin" "Table 2C" 1 4 FALSE -"CLSI 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Quinupristin/dalfopristin" "Table 2C" "15μg" 19 15 FALSE +"CLSI 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Quinupristin/dalfopristin" "Table 2C" "15ug" 19 15 FALSE "CLSI 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Quinupristin/dalfopristin" "Table 2C" 1 4 FALSE -"CLSI 2021" "DISK" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" "15μg" 19 15 FALSE +"CLSI 2021" "DISK" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" "15ug" 19 15 FALSE "CLSI 2021" "MIC" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" 1 4 FALSE -"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" "15μg" 19 15 FALSE +"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" "15ug" 19 15 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" 1 4 FALSE -"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" "15μg" 19 15 FALSE +"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" "15ug" 19 15 FALSE "CLSI 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" 1 4 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15μg" 19 15 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15μg" 1 4 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15ug" 19 15 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15ug" 1 4 FALSE "CLSI 2021" "MIC" "Aggregatibacter" 3 "Rifampicin" "M45 Table 9" 1 4 FALSE "CLSI 2021" "MIC" "Bacillus" 3 "Rifampicin" "M45 Table 4" 1 4 FALSE "CLSI 2021" "MIC" "Cardiobacterium" 3 "Rifampicin" "M45 Table 9" 1 4 FALSE "CLSI 2021" "MIC" "Eikenella corrodens" 2 "Rifampicin" "M45 Table 9" 1 4 FALSE -"CLSI 2021" "DISK" "Enterococcus" 3 "Rifampicin" "Table 2D" "5μg" 20 16 FALSE +"CLSI 2021" "DISK" "Enterococcus" 3 "Rifampicin" "Table 2D" "5ug" 20 16 FALSE "CLSI 2021" "MIC" "Enterococcus" 3 "Rifampicin" "Table 2D" 1 4 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Rifampicin" "Table 2E" "5μg" 20 16 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Rifampicin" "Table 2E" "5ug" 20 16 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Rifampicin" "Table 2E" 1 4 FALSE "CLSI 2021" "MIC" "Kingella" 3 "Rifampicin" "M45 Table 9" 1 4 FALSE "CLSI 2021" "MIC" "Moraxella catarrhalis" 2 "Rifampicin" "M45 Table 16" 1 4 FALSE -"CLSI 2021" "DISK" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" "5μg" 25 19 FALSE +"CLSI 2021" "DISK" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" "5ug" 25 19 FALSE "CLSI 2021" "MIC" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" 0.5 2 FALSE -"CLSI 2021" "DISK" "Staphylococcus" 3 "Rifampicin" "Table 2C" "5μg" 20 16 FALSE +"CLSI 2021" "DISK" "Staphylococcus" 3 "Rifampicin" "Table 2C" "5ug" 20 16 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Rifampicin" "Table 2C" 1 4 FALSE -"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" "5μg" 19 16 FALSE +"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" "5ug" 19 16 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" 1 4 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Rifampicin" "Generic rules" "5μg" 20 16 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Rifampicin" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Ampicillin/sulbactam" "Table 2A" "10μg/10μg" 15 11 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Rifampicin" "Generic rules" "5ug" 20 16 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Rifampicin" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Ampicillin/sulbactam" "Table 2A" "10ug/10ug" 15 11 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Ampicillin/sulbactam" "Table 2A" 16 32 FALSE -"CLSI 2021" "DISK" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" "10μg" 15 11 FALSE +"CLSI 2021" "DISK" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" "10ug" 15 11 FALSE "CLSI 2021" "MIC" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" 8 32 FALSE -"CLSI 2021" "DISK" "Aeromonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10μg" 15 11 FALSE +"CLSI 2021" "DISK" "Aeromonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE "CLSI 2021" "MIC" "Aggregatibacter" 3 "Ampicillin/sulbactam" "M45 Table 9" 2 4 FALSE "CLSI 2021" "MIC" "Cardiobacterium" 3 "Ampicillin/sulbactam" "M45 Table 9" 2 4 FALSE "CLSI 2021" "MIC" "Eikenella corrodens" 2 "Ampicillin/sulbactam" "M45 Table 9" 2 4 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" "10/10μg" 20 19 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" "10/10ug" 20 19 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" 2 4 FALSE "CLSI 2021" "MIC" "Kingella" 3 "Ampicillin/sulbactam" "M45 Table 9" 2 4 FALSE -"CLSI 2021" "DISK" "Vibrio" 3 "Ampicillin/sulbactam" "M45 Table 20" "10μg" 15 11 FALSE +"CLSI 2021" "DISK" "Vibrio" 3 "Ampicillin/sulbactam" "M45 Table 20" "10ug" 15 11 FALSE "CLSI 2021" "MIC" "Vibrio" 3 "Ampicillin/sulbactam" "M45 Table 20" 8 32 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10μg" 15 11 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10μg" 8 32 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300μg" 256 512 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Sulfamethoxazole" "Table 2A" "200 – 300μg" 17 12 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10ug" 15 11 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10ug" 8 32 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300ug" 256 512 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Sulfamethoxazole" "Table 2A" "200 - 300ug" 17 12 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Sulfamethoxazole" "Table 2A" 256 512 FALSE "CLSI 2021" "MIC" "(unknown Gram-negatives)" 2 "Sulfamethoxazole" "Table 2B-5" 256 512 FALSE "CLSI 2021" "MIC" "Neisseria meningitidis" 2 "Sulfamethoxazole" "Table 2I" 2 8 FALSE -"CLSI 2021" "DISK" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" "200-300μg" 17 12 FALSE +"CLSI 2021" "DISK" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" "200-300ug" 17 12 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" 256 512 FALSE -"CLSI 2021" "DISK" "Vibrio" 3 "Sulfamethoxazole" "M45 Table 20" "200μg" 17 12 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300μg" 256 512 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Sulfisoxazole" "Table 2A" "200 – 300μg" 17 12 FALSE +"CLSI 2021" "DISK" "Vibrio" 3 "Sulfamethoxazole" "M45 Table 20" "200ug" 17 12 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300ug" 256 512 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Sulfisoxazole" "Table 2A" "200 - 300ug" 17 12 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Sulfisoxazole" "Table 2A" 256 512 FALSE "CLSI 2021" "MIC" "(unknown Gram-negatives)" 2 "Sulfisoxazole" "Table 2B-5" 256 512 FALSE "CLSI 2021" "MIC" "Neisseria meningitidis" 2 "Sulfisoxazole" "Table 2I" 2 8 FALSE -"CLSI 2021" "DISK" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" "200-300μg" 17 12 FALSE +"CLSI 2021" "DISK" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" "200-300ug" 17 12 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" 256 512 FALSE -"CLSI 2021" "DISK" "Vibrio" 3 "Sulfisoxazole" "M45 Table 20" "200μg" 17 12 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300μg" 256 512 FALSE -"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" "100μg" 18 14 FALSE +"CLSI 2021" "DISK" "Vibrio" 3 "Sulfisoxazole" "M45 Table 20" "200ug" 17 12 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300ug" 256 512 FALSE +"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" "100ug" 18 14 FALSE "CLSI 2021" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" 32 128 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Sparfloxacin" "Table 2E" 0.25 2048 FALSE -"CLSI 2021" "DISK" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" "5μg" 19 15 FALSE +"CLSI 2021" "DISK" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" "5ug" 19 15 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" "5μg" 19 15 FALSE +"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" "5ug" 19 15 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" 0.5 2 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5μg" 0.5 2 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Sulfonamide" "Table 2A" "200 – 300μg" 17 12 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5ug" 0.5 2 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Sulfonamide" "Table 2A" "200 - 300ug" 17 12 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Sulfonamide" "Table 2A" 256 512 FALSE "CLSI 2021" "MIC" "(unknown Gram-negatives)" 2 "Sulfonamide" "Table 2B-5" 256 512 FALSE "CLSI 2021" "MIC" "Neisseria meningitidis" 2 "Sulfonamide" "Table 2I" 2 8 FALSE -"CLSI 2021" "DISK" "Staphylococcus" 3 "Sulfonamide" "Table 2C" "200μg" 17 12 FALSE +"CLSI 2021" "DISK" "Staphylococcus" 3 "Sulfonamide" "Table 2C" "200ug" 17 12 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Sulfonamide" "Table 2C" 256 512 FALSE -"CLSI 2021" "DISK" "Vibrio" 3 "Sulfonamide" "M45 Table 20" "200μg" 17 12 FALSE +"CLSI 2021" "DISK" "Vibrio" 3 "Sulfonamide" "M45 Table 20" "200ug" 17 12 FALSE "CLSI 2021" "MIC" "Vibrio" 3 "Sulfonamide" "M45 Table 20" 256 512 FALSE -"CLSI 2021" "DISK" "Enterococcus" 3 "Streptomycin-high" "Table 2D" "300μg" 10 6 FALSE +"CLSI 2021" "DISK" "Enterococcus" 3 "Streptomycin-high" "Table 2D" "300ug" 10 6 FALSE "CLSI 2021" "MIC" "Enterococcus" 3 "Streptomycin-high" "Table 2D" 1024 2048 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300μg" 10 6 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300μg" 1024 2048 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Streptoduocin" "Table 2A" "10μg" 15 11 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300ug" 10 6 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300ug" 1024 2048 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Streptoduocin" "Table 2A" "10ug" 15 11 FALSE "CLSI 2021" "MIC" "Brucella" 3 "Streptoduocin" "M45 Table 21" 8 2048 FALSE "CLSI 2021" "MIC" "Enterococcus" 3 "Streptoduocin" "Table 2D" 1024 2048 FALSE "CLSI 2021" "MIC" "Francisella tularensis tularensis" 1 "Streptoduocin" "M45 Table 21" 8 2048 FALSE "CLSI 2021" "MIC" "Yersinia pestis" 2 "Streptoduocin" "M45 Table 21" 4 16 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Streptomycin" "Generic rules" "10μg" 15 11 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Table 2A" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Streptomycin" "Generic rules" "10ug" 15 11 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Table 2A" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Table 2A" 2 4 FALSE -"CLSI 2021" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2021" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2021" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" 2 4 FALSE "CLSI 2021" "MIC" "Aerococcus" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE -"CLSI 2021" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2021" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2021" "MIC" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 3" 2 4 FALSE "CLSI 2021" "MIC" "Aggregatibacter" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 9" 0.5 4 FALSE "CLSI 2021" "MIC" "Bacillus" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 4" 2 4 FALSE "CLSI 2021" "MIC" "Brucella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 21" 2 2048 FALSE -"CLSI 2021" "DISK" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2021" "DISK" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2021" "MIC" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" 2 4 FALSE "CLSI 2021" "MIC" "Burkholderia pseudomallei" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 21" 2 4 FALSE "CLSI 2021" "MIC" "Cardiobacterium" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 9" 0.5 4 FALSE "CLSI 2021" "MIC" "Eikenella corrodens" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 9" 0.5 4 FALSE "CLSI 2021" "MIC" "(unknown Gram-negatives)" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-5" 2 4 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" "1.25μg/23.75μg" 15 10 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" "1.25ug/23.75ug" 15 10 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" 0.5 4 FALSE "CLSI 2021" "MIC" "Kingella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 9" 0.5 4 FALSE "CLSI 2021" "MIC" "Lactococcus" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 12" 2 4 FALSE "CLSI 2021" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 14" 0.5 2048 FALSE -"CLSI 2021" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 16" "1.25μg/23.75μg" 13 10 FALSE +"CLSI 2021" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 16" "1.25ug/23.75ug" 13 10 FALSE "CLSI 2021" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 16" 0.5 4 FALSE -"CLSI 2021" "DISK" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" "1.25μg/23.75μg" 30 25 FALSE +"CLSI 2021" "DISK" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" "1.25ug/23.75ug" 30 25 FALSE "CLSI 2021" "MIC" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" 0.125 0.5 FALSE "CLSI 2021" "MIC" "Paenibacillus mucilaginosus" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 19" 2 4 FALSE -"CLSI 2021" "DISK" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 17" "1.25μg/23.75μg" 24 6 FALSE +"CLSI 2021" "DISK" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 17" "1.25ug/23.75ug" 24 6 FALSE "CLSI 2021" "MIC" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 17" 0.5 2048 FALSE -"CLSI 2021" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" "30μg" 16 10 FALSE +"CLSI 2021" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" "30ug" 16 10 FALSE "CLSI 2021" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" 2 4 FALSE -"CLSI 2021" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2021" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" 2 4 FALSE -"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" "1.25μg/23.75μg" 19 15 FALSE +"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" "1.25ug/23.75ug" 19 15 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" 0.5 4 FALSE -"CLSI 2021" "DISK" "Vibrio" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 20" "1.25μg" 16 10 FALSE +"CLSI 2021" "DISK" "Vibrio" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 20" "1.25ug" 16 10 FALSE "CLSI 2021" "MIC" "Vibrio" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 20" 2 4 FALSE "CLSI 2021" "MIC" "Yersinia pestis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 21" 2 4 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75μg" 16 10 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75μg" 2 4 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Table 2A" "75μg/10μg" 20 14 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 16 10 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 2 4 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Table 2A" "75ug/10ug" 20 14 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Table 2A" 16 128 FALSE -"CLSI 2021" "DISK" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" "75μg" 20 14 FALSE +"CLSI 2021" "DISK" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" "75ug" 20 14 FALSE "CLSI 2021" "MIC" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" 16 128 FALSE "CLSI 2021" "MIC" "Burkholderia cepacia" 2 "Ticarcillin/clavulanic acid" "Table 2B-3" 16 128 FALSE "CLSI 2021" "MIC" "(unknown Gram-negatives)" 2 "Ticarcillin/clavulanic acid" "Table 2B-5" 16 128 FALSE -"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" "75μg" 24 15 FALSE +"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" "75ug" 24 15 FALSE "CLSI 2021" "MIC" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" 16 128 FALSE "CLSI 2021" "MIC" "Stenotrophomonas maltophilia" 2 "Ticarcillin/clavulanic acid" "Table 2B-4" 16 128 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15μg" 20 14 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15μg" 16 128 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Tetracycline" "Table 2A" "30μg" 15 11 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15ug" 20 14 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15ug" 16 128 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Tetracycline" "Table 2A" "30ug" 15 11 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Tetracycline" "Table 2A" 4 16 FALSE -"CLSI 2021" "DISK" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" "30μg" 15 11 FALSE +"CLSI 2021" "DISK" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" "30ug" 15 11 FALSE "CLSI 2021" "MIC" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" 4 16 FALSE "CLSI 2021" "MIC" "Aerococcus" 3 "Tetracycline" "M45 Table 2" 2 8 FALSE -"CLSI 2021" "DISK" "Aeromonas" 3 "Tetracycline" "M45 Table 2" "30μg" 15 11 FALSE +"CLSI 2021" "DISK" "Aeromonas" 3 "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE "CLSI 2021" "MIC" "Aeromonas" 3 "Tetracycline" "M45 Table 3" 4 16 FALSE "CLSI 2021" "MIC" "Aggregatibacter" 3 "Tetracycline" "M45 Table 9" 2 8 FALSE "CLSI 2021" "MIC" "Bacillus" 3 "Tetracycline" "M45 Table 4" 4 16 FALSE @@ -8665,105 +8665,105 @@ "CLSI 2021" "MIC" "Campylobacter" 3 "Tetracycline" "M45 Table 5" 4 16 FALSE "CLSI 2021" "MIC" "Cardiobacterium" 3 "Tetracycline" "M45 Table 9" 2 8 FALSE "CLSI 2021" "MIC" "Eikenella corrodens" 2 "Tetracycline" "M45 Table 9" 2 8 FALSE -"CLSI 2021" "DISK" "Enterococcus" 3 "Tetracycline" "Table 2D" "30μg" 19 14 FALSE +"CLSI 2021" "DISK" "Enterococcus" 3 "Tetracycline" "Table 2D" "30ug" 19 14 FALSE "CLSI 2021" "MIC" "Enterococcus" 3 "Tetracycline" "Table 2D" 4 16 FALSE "CLSI 2021" "MIC" "Francisella tularensis tularensis" 1 "Tetracycline" "M45 Table 21" 4 2048 FALSE "CLSI 2021" "MIC" "(unknown Gram-negatives)" 2 "Tetracycline" "Table 2B-5" 4 16 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Tetracycline" "Table 2E" "30μg" 29 25 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Tetracycline" "Table 2E" "30ug" 29 25 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Tetracycline" "Table 2E" 2 8 FALSE "CLSI 2021" "MIC" "Kingella" 3 "Tetracycline" "M45 Table 9" 2 8 FALSE "CLSI 2021" "MIC" "Lactococcus" 3 "Tetracycline" "M45 Table 12" 2 8 FALSE -"CLSI 2021" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 16" "30μg" 29 24 FALSE +"CLSI 2021" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 16" "30ug" 29 24 FALSE "CLSI 2021" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 16" 2 8 FALSE -"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" "30μg" 38 30 FALSE +"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" "30ug" 38 30 FALSE "CLSI 2021" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" 0.25 2 FALSE -"CLSI 2021" "DISK" "Pasteurella" 3 "Tetracycline" "M45 Table 17" "30μg" 23 6 FALSE +"CLSI 2021" "DISK" "Pasteurella" 3 "Tetracycline" "M45 Table 17" "30ug" 23 6 FALSE "CLSI 2021" "MIC" "Pasteurella" 3 "Tetracycline" "M45 Table 17" 1 2048 FALSE -"CLSI 2021" "DISK" "Staphylococcus" 3 "Tetracycline" "Table 2C" "30μg" 19 14 FALSE +"CLSI 2021" "DISK" "Staphylococcus" 3 "Tetracycline" "Table 2C" "30ug" 19 14 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Tetracycline" "Table 2C" 4 16 FALSE -"CLSI 2021" "DISK" "Streptococcus" 3 "Tetracycline" "Table 2H-1" "30μg" 23 18 FALSE +"CLSI 2021" "DISK" "Streptococcus" 3 "Tetracycline" "Table 2H-1" "30ug" 23 18 FALSE "CLSI 2021" "MIC" "Streptococcus" 3 "Tetracycline" "Table 2H-1" 2 8 FALSE -"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" "30μg" 28 24 FALSE +"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" "30ug" 28 24 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" 1 4 FALSE -"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" "30μg" 23 18 FALSE +"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" "30ug" 23 18 FALSE "CLSI 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" 2 8 FALSE -"CLSI 2021" "DISK" "Vibrio" 3 "Tetracycline" "M45 Table 20" "30μg" 15 11 FALSE +"CLSI 2021" "DISK" "Vibrio" 3 "Tetracycline" "M45 Table 20" "30ug" 15 11 FALSE "CLSI 2021" "MIC" "Vibrio" 3 "Tetracycline" "M45 Table 20" 4 16 FALSE "CLSI 2021" "MIC" "Yersinia pestis" 2 "Tetracycline" "M45 Table 21" 4 16 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Tetracycline" "Generic rules" "30μg" 15 11 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Tetracycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2021" "DISK" "Enterococcus" 3 "Teicoplanin" "Table 2D" "30μg" 14 10 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Tetracycline" "Generic rules" "30ug" 15 11 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Tetracycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2021" "DISK" "Enterococcus" 3 "Teicoplanin" "Table 2D" "30ug" 14 10 FALSE "CLSI 2021" "MIC" "Enterococcus" 3 "Teicoplanin" "Table 2D" 8 32 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Teicoplanin" "Table 2C" 8 32 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30μg" 14 10 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Tiamulin" "Generic rules" "30μg" 9 8 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Tiamulin" "Generic rules" "30μg" 16 32 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15μg" 14 10 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15μg" 8 32 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30μg" 2 8 FALSE -"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" "15μg" 19 15 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30ug" 14 10 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Tiamulin" "Generic rules" "30ug" 9 8 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Tiamulin" "Generic rules" "30ug" 16 32 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15ug" 14 10 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15ug" 8 32 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30ug" 2 8 FALSE +"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" "15ug" 19 15 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" 1 4 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Telithromycin" "Generic rules" "15μg" 22 18 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Telithromycin" "Generic rules" "15μg" 1 4 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Telithromycin" "Generic rules" "15ug" 22 18 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Telithromycin" "Generic rules" "15ug" 1 4 FALSE "CLSI 2021" "MIC" "Enterococcus" 3 "Telavancin" "Table 2D" 0.125 2048 FALSE "CLSI 2021" "MIC" "Staphylococcus aureus aureus" 1 "Telavancin" "Table 2C" 0.125 2048 FALSE "CLSI 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Telavancin" "Table 2C" 0.125 2048 FALSE "CLSI 2021" "MIC" "Streptococcus" 3 "Telavancin" "Table 2H-1" 0.125 2048 FALSE "CLSI 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Telavancin" "Table 2H-2" 0.125 2048 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Trimethoprim" "Table 2A" "5μg" 16 10 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Trimethoprim" "Table 2A" "5ug" 16 10 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Trimethoprim" "Table 2A" 8 16 FALSE -"CLSI 2021" "DISK" "Staphylococcus" 3 "Trimethoprim" "Table 2C" "5μg" 16 10 FALSE +"CLSI 2021" "DISK" "Staphylococcus" 3 "Trimethoprim" "Table 2C" "5ug" 16 10 FALSE "CLSI 2021" "MIC" "Staphylococcus" 3 "Trimethoprim" "Table 2C" 8 16 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5μg" 16 10 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5μg" 8 16 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Tobramycin" "Table 2A" "10μg" 15 12 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 16 10 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 8 16 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Tobramycin" "Table 2A" "10ug" 15 12 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Tobramycin" "Table 2A" 4 16 FALSE -"CLSI 2021" "DISK" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" "10μg" 15 12 FALSE +"CLSI 2021" "DISK" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" "10ug" 15 12 FALSE "CLSI 2021" "MIC" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" 4 16 FALSE "CLSI 2021" "MIC" "(unknown Gram-negatives)" 2 "Tobramycin" "Table 2B-5" 4 16 FALSE -"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" "10μg" 15 12 FALSE +"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" "10ug" 15 12 FALSE "CLSI 2021" "MIC" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" 4 16 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Tobramycin" "Generic rules" "10μg" 15 12 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Tobramycin" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Tulathromycin" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Tulathromycin" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Trovafloxacin" "Table 2E" "10μg" 22 6 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 15 12 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Tulathromycin" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Tulathromycin" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Trovafloxacin" "Table 2E" "10ug" 22 6 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Trovafloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" "10μg" 34 6 FALSE +"CLSI 2021" "DISK" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" "10ug" 34 6 FALSE "CLSI 2021" "MIC" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" 0.25 2048 FALSE -"CLSI 2021" "DISK" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" "10μg" 19 15 FALSE +"CLSI 2021" "DISK" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" "10ug" 19 15 FALSE "CLSI 2021" "MIC" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" 1 4 FALSE -"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" "10μg" 19 15 FALSE +"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" "10ug" 19 15 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" 1 4 FALSE -"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" "10μg" 19 15 FALSE +"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" "10ug" 19 15 FALSE "CLSI 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" 1 4 FALSE "CLSI 2021" "MIC" "Enterococcus" 3 "Tedizolid" "Table 2D" 0.5 2048 FALSE "CLSI 2021" "MIC" "Staphylococcus aureus aureus" 1 "Tedizolid" "Table 2C" 0.5 2 FALSE "CLSI 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Tedizolid" "Table 2C" 0.5 2 FALSE "CLSI 2021" "MIC" "Streptococcus" 3 "Tedizolid" "Table 2H-1" 0.5 2048 FALSE "CLSI 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Tedizolid" "Table 2H-2" 0.25 2048 FALSE -"CLSI 2021" "DISK" "Enterobacterales" 5 "Piperacillin/tazobactam" "Table 2A" "100μg/10μg" 21 17 FALSE +"CLSI 2021" "DISK" "Enterobacterales" 5 "Piperacillin/tazobactam" "Table 2A" "100ug/10ug" 21 17 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Piperacillin/tazobactam" "Table 2A" 16 128 FALSE -"CLSI 2021" "DISK" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" "100μg" 21 17 FALSE +"CLSI 2021" "DISK" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" "100ug" 21 17 FALSE "CLSI 2021" "MIC" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" 16 128 FALSE -"CLSI 2021" "DISK" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100μg" 21 17 FALSE +"CLSI 2021" "DISK" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE "CLSI 2021" "MIC" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 3" 16 128 FALSE "CLSI 2021" "MIC" "(unknown Gram-negatives)" 2 "Piperacillin/tazobactam" "Table 2B-5" 16 128 FALSE -"CLSI 2021" "DISK" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" "100μg" 21 6 FALSE +"CLSI 2021" "DISK" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" "100ug" 21 6 FALSE "CLSI 2021" "MIC" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" 1 2 FALSE -"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" "100μg" 21 14 FALSE +"CLSI 2021" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" "100ug" 21 14 FALSE "CLSI 2021" "MIC" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" 16 128 FALSE -"CLSI 2021" "DISK" "Vibrio" 3 "Piperacillin/tazobactam" "M45 Table 20" "100μg" 21 17 FALSE +"CLSI 2021" "DISK" "Vibrio" 3 "Piperacillin/tazobactam" "M45 Table 20" "100ug" 21 17 FALSE "CLSI 2021" "MIC" "Vibrio" 3 "Piperacillin/tazobactam" "M45 Table 20" 16 128 FALSE -"CLSI 2021" "DISK" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10μg" 21 17 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10μg" 16 128 FALSE +"CLSI 2021" "DISK" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10ug" 21 17 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10ug" 16 128 FALSE "CLSI 2021" "MIC" "Abiotrophia" 3 "Vancomycin" "M45 Table 1" 1 2048 FALSE "CLSI 2021" "MIC" "Aerococcus" 3 "Vancomycin" "M45 Table 2" 1 2048 FALSE "CLSI 2021" "MIC" "Bacillus" 3 "Vancomycin" "M45 Table 4" 4 2048 FALSE "CLSI 2021" "MIC" "Cutibacterium acnes" 2 "Vancomycin" "Table 2J-2" 2 4 FALSE -"CLSI 2021" "DISK" "Enterococcus" 3 "Vancomycin" "Table 2D" "30μg" 17 14 FALSE +"CLSI 2021" "DISK" "Enterococcus" 3 "Vancomycin" "Table 2D" "30ug" 17 14 FALSE "CLSI 2021" "MIC" "Enterococcus" 3 "Vancomycin" "Table 2D" 4 32 FALSE "CLSI 2021" "MIC" "Gemella" 3 "Vancomycin" "M45 Table 8" 1 2048 FALSE "CLSI 2021" "MIC" "Granulicatella" 3 "Vancomycin" "M45 Table 1" 1 2048 FALSE @@ -8774,13 +8774,13 @@ "CLSI 2021" "MIC" "Staphylococcus" 3 "Vancomycin" "Table 2C" 4 32 FALSE "CLSI 2021" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" "Table 2C" 2 16 FALSE "CLSI 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Vancomycin" "Table 2C" 2 16 FALSE -"CLSI 2021" "DISK" "Streptococcus" 3 "Vancomycin" "Table 2H-1" "30μg" 17 6 FALSE +"CLSI 2021" "DISK" "Streptococcus" 3 "Vancomycin" "Table 2H-1" "30ug" 17 6 FALSE "CLSI 2021" "MIC" "Streptococcus" 3 "Vancomycin" "Table 2H-1" 1 2048 FALSE -"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" "30μg" 17 6 FALSE +"CLSI 2021" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" "30ug" 17 6 FALSE "CLSI 2021" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" 1 2048 FALSE -"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" "30μg" 17 6 FALSE +"CLSI 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" "30ug" 17 6 FALSE "CLSI 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" 1 2048 FALSE -"CLSI 2021" "MIC" "(unknown name)" 6 "Vancomycin" "Generic rules" "30μg" 4 32 FALSE +"CLSI 2021" "MIC" "(unknown name)" 6 "Vancomycin" "Generic rules" "30ug" 4 32 FALSE "CLSI 2021" "MIC" "Aspergillus fumigatus" 2 "Voriconazole" "M61 Table 1" 0.5 2 FALSE "CLSI 2021" "DISK" "Candida albicans" 2 "Voriconazole" "Table 1" 17 14 FALSE "CLSI 2021" "MIC" "Candida albicans" 2 "Voriconazole" "Table 1" 0.125 1 FALSE @@ -8792,50 +8792,50 @@ "CLSI 2021" "MIC" "Candida tropicalis" 2 "Voriconazole" "Table 1" 0.125 1 FALSE "CLSI 2021" "DISK" "Pichia" 3 "Voriconazole" "Table 1" 15 12 FALSE "CLSI 2021" "MIC" "Pichia" 3 "Voriconazole" "Table 1" 0.5 2 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Table 2A" "20μg/10μg" 18 13 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Table 2A" "20ug/10ug" 18 13 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Table 2A" 8 32 FALSE -"CLSI 2020" "DISK" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20μg" 18 13 FALSE +"CLSI 2020" "DISK" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE "CLSI 2020" "MIC" "Aggregatibacter" 3 "Amoxicillin/clavulanic acid" "M45 Table 9" 4 8 FALSE "CLSI 2020" "MIC" "Burkholderia pseudomallei" 2 "Amoxicillin/clavulanic acid" "M45 Table 21" 8 32 FALSE "CLSI 2020" "MIC" "Cardiobacterium" 3 "Amoxicillin/clavulanic acid" "M45 Table 9" 4 8 FALSE "CLSI 2020" "MIC" "Eikenella corrodens" 2 "Amoxicillin/clavulanic acid" "M45 Table 9" 4 8 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" "20/10μg" 20 19 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" "20/10ug" 20 19 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" 4 8 FALSE "CLSI 2020" "MIC" "Kingella" 3 "Amoxicillin/clavulanic acid" "M45 Table 9" 4 8 FALSE -"CLSI 2020" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 16" "20μg" 24 23 FALSE +"CLSI 2020" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 16" "20ug" 24 23 FALSE "CLSI 2020" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 16" 4 8 FALSE -"CLSI 2020" "DISK" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 17" "20μg" 27 6 FALSE +"CLSI 2020" "DISK" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 17" "20ug" 27 6 FALSE "CLSI 2020" "MIC" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 17" 0.5 2048 FALSE "CLSI 2020" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Amoxicillin/clavulanic acid" "Table 2G" 2 8 FALSE -"CLSI 2020" "DISK" "Vibrio" 3 "Amoxicillin/clavulanic acid" "M45 Table 20" "20μg" 18 13 FALSE +"CLSI 2020" "DISK" "Vibrio" 3 "Amoxicillin/clavulanic acid" "M45 Table 20" "20ug" 18 13 FALSE "CLSI 2020" "MIC" "Vibrio" 3 "Amoxicillin/clavulanic acid" "M45 Table 20" 8 32 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10μg" 18 13 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10μg" 8 32 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Amikacin" "Table 2A" "30μg" 17 14 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 18 13 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 8 32 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Amikacin" "Table 2A" "30ug" 17 14 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Amikacin" "Table 2A" 16 64 FALSE -"CLSI 2020" "DISK" "Acinetobacter" 3 "Amikacin" "Table 2B-2" "30μg" 17 14 FALSE +"CLSI 2020" "DISK" "Acinetobacter" 3 "Amikacin" "Table 2B-2" "30ug" 17 14 FALSE "CLSI 2020" "MIC" "Acinetobacter" 3 "Amikacin" "Table 2B-2" 16 64 FALSE -"CLSI 2020" "DISK" "Aeromonas" 3 "Amikacin" "M45 Table 2" "30μg" 17 14 FALSE +"CLSI 2020" "DISK" "Aeromonas" 3 "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE "CLSI 2020" "MIC" "Aeromonas" 3 "Amikacin" "M45 Table 3" 16 64 FALSE "CLSI 2020" "MIC" "Bacillus" 3 "Amikacin" "M45 Table 4" 16 64 FALSE "CLSI 2020" "MIC" "(unknown Gram-negatives)" 2 "Amikacin" "Table 2B-5" 16 64 FALSE -"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" "30μg" 17 14 FALSE +"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" "30ug" 17 14 FALSE "CLSI 2020" "MIC" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" 16 64 FALSE -"CLSI 2020" "DISK" "Vibrio" 3 "Amikacin" "M45 Table 20" "30μg" 17 14 FALSE +"CLSI 2020" "DISK" "Vibrio" 3 "Amikacin" "M45 Table 20" "30ug" 17 14 FALSE "CLSI 2020" "MIC" "Vibrio" 3 "Amikacin" "M45 Table 20" 16 64 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Amikacin" "Generic rules" "30μg" 17 14 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Amikacin" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Ampicillin" "Table 2A" "10μg" 17 13 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 17 14 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Ampicillin" "Table 2A" "10ug" 17 13 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Ampicillin" "Table 2A" 8 32 FALSE "CLSI 2020" "MIC" "Abiotrophia" 3 "Ampicillin" "M45 Table 1" 0.25 8 FALSE "CLSI 2020" "MIC" "Aggregatibacter" 3 "Ampicillin" "M45 Table 9" 1 4 FALSE "CLSI 2020" "MIC" "Bacillus" 3 "Ampicillin" "M45 Table 4" 0.25 0.5 FALSE "CLSI 2020" "MIC" "Cardiobacterium" 3 "Ampicillin" "M45 Table 9" 1 4 FALSE "CLSI 2020" "MIC" "Eikenella corrodens" 2 "Ampicillin" "M45 Table 9" 1 4 FALSE -"CLSI 2020" "DISK" "Enterococcus" 3 "Ampicillin" "Table 2D" "10μg" 17 16 FALSE +"CLSI 2020" "DISK" "Enterococcus" 3 "Ampicillin" "Table 2D" "10ug" 17 16 FALSE "CLSI 2020" "MIC" "Enterococcus" 3 "Ampicillin" "Table 2D" 8 16 FALSE "CLSI 2020" "MIC" "Granulicatella" 3 "Ampicillin" "M45 Table 1" 0.25 8 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Ampicillin" "Table 2E" "10μg" 22 18 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Ampicillin" "Table 2E" "10ug" 22 18 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Ampicillin" "Table 2E" 1 4 FALSE "CLSI 2020" "MIC" "Kingella" 3 "Ampicillin" "M45 Table 9" 1 4 FALSE "CLSI 2020" "MIC" "Leuconostoc" 3 "Ampicillin" "M45 Table 13" 8 2048 FALSE @@ -8844,15 +8844,15 @@ "CLSI 2020" "MIC" "Listeria monocytogenes" 2 "Ampicillin" "M45 Table 14" 2 2048 FALSE "CLSI 2020" "MIC" "Neisseria meningitidis" 2 "Ampicillin" "Table 2I" 0.125 2 FALSE "CLSI 2020" "MIC" "Pediococcus" 3 "Ampicillin" "M45 Table 18" 8 2048 FALSE -"CLSI 2020" "DISK" "Pasteurella" 3 "Ampicillin" "M45 Table 17" "10μg" 27 6 FALSE +"CLSI 2020" "DISK" "Pasteurella" 3 "Ampicillin" "M45 Table 17" "10ug" 27 6 FALSE "CLSI 2020" "MIC" "Pasteurella" 3 "Ampicillin" "M45 Table 17" 0.5 2048 FALSE -"CLSI 2020" "DISK" "Streptococcus" 3 "Ampicillin" "Table 2H-1" "10μg" 24 6 FALSE +"CLSI 2020" "DISK" "Streptococcus" 3 "Ampicillin" "Table 2H-1" "10ug" 24 6 FALSE "CLSI 2020" "MIC" "Streptococcus" 3 "Ampicillin" "Table 2H-1" 0.25 2048 FALSE "CLSI 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Table 2H-2" 0.25 8 FALSE -"CLSI 2020" "DISK" "Vibrio" 3 "Ampicillin" "M45 Table 20" "10μg" 17 13 FALSE +"CLSI 2020" "DISK" "Vibrio" 3 "Ampicillin" "M45 Table 20" "10ug" 17 13 FALSE "CLSI 2020" "MIC" "Vibrio" 3 "Ampicillin" "M45 Table 20" 8 32 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Ampicillin" "Generic rules" "10μg" 17 13 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Ampicillin" "Generic rules" "2μg" 8 32 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Ampicillin" "Generic rules" "10ug" 17 13 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Ampicillin" "Generic rules" "2ug" 8 32 FALSE "CLSI 2020" "MIC" "Bacillus anthracis" 2 "Amoxicillin" "M45 Table 21" 0.125 0.25 FALSE "CLSI 2020" "MIC" "Pasteurella" 3 "Amoxicillin" "M45 Table 17" 0.5 2048 FALSE "CLSI 2020" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Amoxicillin" "Table 2G" 2 8 FALSE @@ -8863,45 +8863,45 @@ "CLSI 2020" "MIC" "Candida tropicalis" 2 "Anidulafungin" "Table 1" 0.25 1 FALSE "CLSI 2020" "MIC" "Meyerozyma guilliermondii" 2 "Anidulafungin" "Table 1" 2 8 FALSE "CLSI 2020" "MIC" "Pichia" 3 "Anidulafungin" "Table 1" 0.25 1 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Aztreonam" "Table 2A" "30μg" 21 17 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Aztreonam" "Table 2A" "30ug" 21 17 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Aztreonam" "Table 2A" 4 16 FALSE -"CLSI 2020" "DISK" "Aeromonas" 3 "Aztreonam" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2020" "DISK" "Aeromonas" 3 "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2020" "MIC" "Aeromonas" 3 "Aztreonam" "M45 Table 3" 4 16 FALSE "CLSI 2020" "MIC" "(unknown Gram-negatives)" 2 "Aztreonam" "Table 2B-5" 8 32 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Aztreonam" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Aztreonam" "Table 2E" "30ug" 26 6 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Aztreonam" "Table 2E" 2 2048 FALSE -"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" "30μg" 22 15 FALSE +"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" "30ug" 22 15 FALSE "CLSI 2020" "MIC" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" 8 32 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Aztreonam" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Aztreonam" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Azlocillin" "Generic rules" "75μg" 18 17 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Azlocillin" "Generic rules" "75μg" 64 128 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Azlocillin" "Generic rules" "75ug" 18 17 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Azlocillin" "Generic rules" "75ug" 64 128 FALSE "CLSI 2020" "MIC" "Aggregatibacter" 3 "Azithromycin" "M45 Table 9" 4 2048 FALSE "CLSI 2020" "MIC" "Cardiobacterium" 3 "Azithromycin" "M45 Table 9" 4 2048 FALSE "CLSI 2020" "MIC" "Eikenella corrodens" 2 "Azithromycin" "M45 Table 9" 4 2048 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Azithromycin" "Table 2E" "15μg" 12 6 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Azithromycin" "Table 2E" "15ug" 12 6 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Azithromycin" "Table 2E" 4 2048 FALSE "CLSI 2020" "MIC" "Kingella" 3 "Azithromycin" "M45 Table 9" 4 2048 FALSE -"CLSI 2020" "DISK" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 16" "15μg" 26 6 FALSE +"CLSI 2020" "DISK" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 16" "15ug" 26 6 FALSE "CLSI 2020" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 16" 0.25 2048 FALSE "CLSI 2020" "MIC" "Neisseria gonorrhoeae" 2 "Azithromycin" "Table 2F" 1 2048 FALSE -"CLSI 2020" "DISK" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" "15μg" 20 6 FALSE +"CLSI 2020" "DISK" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" "15ug" 20 6 FALSE "CLSI 2020" "MIC" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" 2 2048 FALSE -"CLSI 2020" "DISK" "Pasteurella" 3 "Azithromycin" "M45 Table 17" "15μg" 20 6 FALSE +"CLSI 2020" "DISK" "Pasteurella" 3 "Azithromycin" "M45 Table 17" "15ug" 20 6 FALSE "CLSI 2020" "MIC" "Pasteurella" 3 "Azithromycin" "M45 Table 17" 1 2048 FALSE -"CLSI 2020" "DISK" "Salmonella enterica" 2 "Azithromycin" "Table 2A" "15μg" 13 12 FALSE +"CLSI 2020" "DISK" "Salmonella enterica" 2 "Azithromycin" "Table 2A" "15ug" 13 12 FALSE "CLSI 2020" "MIC" "Salmonella enterica" 2 "Azithromycin" "Table 2A" 16 32 FALSE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Azithromycin" "Table 2C" "15μg" 18 13 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Azithromycin" "Table 2C" "15ug" 18 13 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Azithromycin" "Table 2C" 2 8 FALSE -"CLSI 2020" "DISK" "Streptococcus" 3 "Azithromycin" "Table 2H-1" "15μg" 18 13 FALSE +"CLSI 2020" "DISK" "Streptococcus" 3 "Azithromycin" "Table 2H-1" "15ug" 18 13 FALSE "CLSI 2020" "MIC" "Streptococcus" 3 "Azithromycin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" "15μg" 18 13 FALSE +"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" "15ug" 18 13 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" 0.5 2 FALSE -"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" "15μg" 18 13 FALSE +"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" "15ug" 18 13 FALSE "CLSI 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" 0.5 2 FALSE "CLSI 2020" "MIC" "Vibrio" 3 "Azithromycin" "M45 Table 20" 2 2048 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Azithromycin" "Generic rules" "15μg" 18 13 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Azithromycin" "Generic rules" "15μg" 2 8 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Azithromycin" "Generic rules" "15ug" 18 13 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Azithromycin" "Generic rules" "15ug" 2 8 FALSE "CLSI 2020" "MIC" "Candida" 3 "Caspofungin" "Table 1" 0.125 0.5 FALSE "CLSI 2020" "DISK" "Candida albicans" 2 "Caspofungin" "Table 1" 17 14 FALSE "CLSI 2020" "MIC" "Candida albicans" 2 "Caspofungin" "Table 1" 0.25 1 FALSE @@ -8915,117 +8915,117 @@ "CLSI 2020" "MIC" "Meyerozyma guilliermondii" 2 "Caspofungin" "Table 1" 2 8 FALSE "CLSI 2020" "DISK" "Pichia" 3 "Caspofungin" "Table 1" 17 14 FALSE "CLSI 2020" "MIC" "Pichia" 3 "Caspofungin" "Table 1" 0.25 1 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefetamet" "Table 2A" "10μg" 18 14 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefetamet" "Table 2A" "10ug" 18 14 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Cefetamet" "Table 2A" 4 16 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Cefetamet" "Table 2E" "10μg" 18 14 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Cefetamet" "Table 2E" "10ug" 18 14 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Cefetamet" "Table 2E" 4 16 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Cefetamet" "Generic rules" "10μg" 18 14 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Cefetamet" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Ceftazidime" "Table 2A" "30μg" 21 17 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Cefetamet" "Generic rules" "10ug" 18 14 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Cefetamet" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Ceftazidime" "Table 2A" "30ug" 21 17 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Ceftazidime" "Table 2A" 4 16 FALSE -"CLSI 2020" "DISK" "Parenteral" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" "30μg" 18 14 FALSE +"CLSI 2020" "DISK" "Parenteral" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" "30ug" 18 14 FALSE "CLSI 2020" "MIC" "Parenteral" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" 8 32 FALSE -"CLSI 2020" "DISK" "Aeromonas" 3 "Ceftazidime" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2020" "DISK" "Aeromonas" 3 "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2020" "MIC" "Aeromonas" 3 "Ceftazidime" "M45 Table 3" 4 16 FALSE -"CLSI 2020" "DISK" "Parenteral" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" "30μg" 21 17 FALSE +"CLSI 2020" "DISK" "Parenteral" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" "30ug" 21 17 FALSE "CLSI 2020" "MIC" "Parenteral" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" 8 32 FALSE "CLSI 2020" "MIC" "Burkholderia mallei" 2 "Ceftazidime" "M45 Table 21" 8 32 FALSE "CLSI 2020" "MIC" "Burkholderia pseudomallei" 2 "Ceftazidime" "M45 Table 21" 8 32 FALSE "CLSI 2020" "MIC" "Parenteral" "(unknown Gram-negatives)" 2 "Ceftazidime" "Table 2B-5" 8 32 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Ceftazidime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Ceftazidime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Ceftazidime" "Table 2E" 2 2048 FALSE "CLSI 2020" "MIC" "Moraxella catarrhalis" 2 "Ceftazidime" "M45 Table 16" 2 2048 FALSE -"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" "30μg" 18 14 FALSE +"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" "30ug" 18 14 FALSE "CLSI 2020" "MIC" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" 8 32 FALSE "CLSI 2020" "MIC" "Parenteral" "Stenotrophomonas maltophilia" 2 "Ceftazidime" "Table 2B-4" 8 32 FALSE -"CLSI 2020" "DISK" "Vibrio" 3 "Ceftazidime" "M45 Table 20" "30μg" 21 17 FALSE +"CLSI 2020" "DISK" "Vibrio" 3 "Ceftazidime" "M45 Table 20" "30ug" 21 17 FALSE "CLSI 2020" "MIC" "Vibrio" 3 "Ceftazidime" "M45 Table 20" 4 16 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefdinir" "Table 2A" "5μg" 20 16 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefdinir" "Table 2A" "5ug" 20 16 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Cefdinir" "Table 2A" 1 4 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Cefdinir" "Table 2E" "5μg" 20 6 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Cefdinir" "Table 2E" "5ug" 20 6 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Cefdinir" "Table 2E" 1 2048 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Cefdinir" "Table 2G" 0.5 2 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Cefdinir" "Generic rules" "5μg" 20 16 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Cefdinir" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefaclor" "Table 2A" "30μg" 18 14 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Cefdinir" "Generic rules" "5ug" 20 16 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Cefdinir" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefaclor" "Table 2A" "30ug" 18 14 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Cefaclor" "Table 2A" 8 32 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Cefaclor" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Cefaclor" "Table 2E" "30ug" 20 16 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Cefaclor" "Table 2E" 8 32 FALSE "CLSI 2020" "MIC" "Moraxella catarrhalis" 2 "Cefaclor" "M45 Table 16" 8 32 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" "Table 2G" 1 4 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Cefaclor" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Cefaclor" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefixime" "Table 2A" "5μg" 19 15 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Cefaclor" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Cefaclor" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefixime" "Table 2A" "5ug" 19 15 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Cefixime" "Table 2A" 1 4 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Cefixime" "Table 2E" "5μg" 21 6 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Cefixime" "Table 2E" "5ug" 21 6 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Cefixime" "Table 2E" 1 2048 FALSE -"CLSI 2020" "DISK" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" "5μg" 31 6 FALSE +"CLSI 2020" "DISK" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" "5ug" 31 6 FALSE "CLSI 2020" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" 0.25 2048 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Cefixime" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Cefixime" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefoperazone" "Table 2A" "75μg" 21 15 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefoperazone" "Table 2A" "75ug" 21 15 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Cefoperazone" "Table 2A" 16 64 FALSE "CLSI 2020" "MIC" "Parenteral" "(unknown Gram-negatives)" 2 "Cefoperazone" "Table 2B-5" 16 64 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75μg" 21 15 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75μg" 16 64 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Chloramphenicol" "Table 2A" "30μg" 18 12 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75ug" 21 15 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75ug" 16 64 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Chloramphenicol" "Table 2A" "30ug" 18 12 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Chloramphenicol" "Table 2A" 8 32 FALSE "CLSI 2020" "MIC" "Abiotrophia" 3 "Chloramphenicol" "M45 Table 1" 4 8 FALSE -"CLSI 2020" "DISK" "Aeromonas" 3 "Chloramphenicol" "M45 Table 2" "30μg" 18 12 FALSE +"CLSI 2020" "DISK" "Aeromonas" 3 "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE "CLSI 2020" "MIC" "Aeromonas" 3 "Chloramphenicol" "M45 Table 3" 8 32 FALSE "CLSI 2020" "MIC" "Aggregatibacter" 3 "Chloramphenicol" "M45 Table 9" 4 16 FALSE "CLSI 2020" "MIC" "Bacillus" 3 "Chloramphenicol" "M45 Table 4" 8 32 FALSE "CLSI 2020" "MIC" "Burkholderia cepacia" 2 "Chloramphenicol" "Table 2B-3" 8 32 FALSE "CLSI 2020" "MIC" "Cardiobacterium" 3 "Chloramphenicol" "M45 Table 9" 4 16 FALSE "CLSI 2020" "MIC" "Eikenella corrodens" 2 "Chloramphenicol" "M45 Table 9" 4 16 FALSE -"CLSI 2020" "DISK" "Enterococcus" 3 "Chloramphenicol" "Table 2D" "30μg" 18 12 FALSE +"CLSI 2020" "DISK" "Enterococcus" 3 "Chloramphenicol" "Table 2D" "30ug" 18 12 FALSE "CLSI 2020" "MIC" "Enterococcus" 3 "Chloramphenicol" "Table 2D" 8 32 FALSE "CLSI 2020" "MIC" "Francisella tularensis tularensis" 1 "Chloramphenicol" "M45 Table 21" 8 2048 FALSE "CLSI 2020" "MIC" "(unknown Gram-negatives)" 2 "Chloramphenicol" "Table 2B-5" 8 32 FALSE "CLSI 2020" "MIC" "Granulicatella" 3 "Chloramphenicol" "M45 Table 1" 4 8 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Chloramphenicol" "Table 2E" "30μg" 29 25 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Chloramphenicol" "Table 2E" "30ug" 29 25 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Chloramphenicol" "Table 2E" 2 8 FALSE "CLSI 2020" "MIC" "Kingella" 3 "Chloramphenicol" "M45 Table 9" 4 16 FALSE "CLSI 2020" "MIC" "Leuconostoc" 3 "Chloramphenicol" "M45 Table 13" 8 32 FALSE "CLSI 2020" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" "M45 Table 16" 2 8 FALSE -"CLSI 2020" "DISK" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" "30μg" 26 19 FALSE +"CLSI 2020" "DISK" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" "30ug" 26 19 FALSE "CLSI 2020" "MIC" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" 2 8 FALSE "CLSI 2020" "MIC" "Pediococcus" 3 "Chloramphenicol" "M45 Table 18" 8 32 FALSE -"CLSI 2020" "DISK" "Pasteurella" 3 "Chloramphenicol" "M45 Table 17" "30μg" 28 6 FALSE +"CLSI 2020" "DISK" "Pasteurella" 3 "Chloramphenicol" "M45 Table 17" "30ug" 28 6 FALSE "CLSI 2020" "MIC" "Pasteurella" 3 "Chloramphenicol" "M45 Table 17" 2 2048 FALSE "CLSI 2020" "MIC" "Stenotrophomonas maltophilia" 2 "Chloramphenicol" "Table 2B-4" 8 32 FALSE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" "30μg" 18 12 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" "30ug" 18 12 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" 8 32 FALSE -"CLSI 2020" "DISK" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" "30μg" 21 17 FALSE +"CLSI 2020" "DISK" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" "30ug" 21 17 FALSE "CLSI 2020" "MIC" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" 4 16 FALSE -"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" "30μg" 21 20 FALSE +"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" "30ug" 21 20 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" 4 8 FALSE -"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" "30μg" 21 17 FALSE +"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" "30ug" 21 17 FALSE "CLSI 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" 4 16 FALSE -"CLSI 2020" "DISK" "Vibrio" 3 "Chloramphenicol" "M45 Table 20" "30μg" 18 12 FALSE +"CLSI 2020" "DISK" "Vibrio" 3 "Chloramphenicol" "M45 Table 20" "30ug" 18 12 FALSE "CLSI 2020" "MIC" "Vibrio" 3 "Chloramphenicol" "M45 Table 20" 8 32 FALSE "CLSI 2020" "MIC" "Yersinia pestis" 2 "Chloramphenicol" "M45 Table 21" 8 32 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30μg" 18 12 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefonicid" "Table 2A" "30μg" 18 14 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 18 12 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefonicid" "Table 2A" "30ug" 18 14 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Cefonicid" "Table 2A" 8 32 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Cefonicid" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Cefonicid" "Table 2E" "30ug" 20 16 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Cefonicid" "Table 2E" 4 16 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Cefonicid" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Cefonicid" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2020" "DISK" "Urine" "Enterobacterales" 5 "Cinoxacin" "Table 2A" "100μg" 19 14 TRUE +"CLSI 2020" "DISK" "(unknown name)" 6 "Cefonicid" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Cefonicid" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2020" "DISK" "Urine" "Enterobacterales" 5 "Cinoxacin" "Table 2A" "100ug" 19 14 TRUE "CLSI 2020" "MIC" "Urine" "Enterobacterales" 5 "Cinoxacin" "Table 2A" 16 64 TRUE -"CLSI 2020" "DISK" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100μg" 19 14 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100μg" 16 64 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Ciprofloxacin" "Table 2A" "5μg" 26 21 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100ug" 19 14 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100ug" 16 64 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Ciprofloxacin" "Table 2A" "5ug" 26 21 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Ciprofloxacin" "Table 2A" 0.25 1 FALSE "CLSI 2020" "MIC" "Abiotrophia" 3 "Ciprofloxacin" "M45 Table 1" 1 4 FALSE -"CLSI 2020" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" "5μg" 21 15 FALSE +"CLSI 2020" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" "5ug" 21 15 FALSE "CLSI 2020" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" 1 4 FALSE "CLSI 2020" "MIC" "Aerococcus" 3 "Ciprofloxacin" "M45 Table 2" 1 4 FALSE -"CLSI 2020" "DISK" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 2" "5μg" 21 15 FALSE +"CLSI 2020" "DISK" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE "CLSI 2020" "MIC" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 3" 1 4 FALSE "CLSI 2020" "MIC" "Aggregatibacter" 3 "Ciprofloxacin" "M45 Table 9" 1 4 FALSE "CLSI 2020" "MIC" "Bacillus" 3 "Ciprofloxacin" "M45 Table 4" 1 4 FALSE @@ -9034,30 +9034,30 @@ "CLSI 2020" "MIC" "Campylobacter" 3 "Ciprofloxacin" "M45 Table 5" 1 4 FALSE "CLSI 2020" "MIC" "Cardiobacterium" 3 "Ciprofloxacin" "M45 Table 9" 1 4 FALSE "CLSI 2020" "MIC" "Eikenella corrodens" 2 "Ciprofloxacin" "M45 Table 9" 1 4 FALSE -"CLSI 2020" "DISK" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" "5μg" 21 15 FALSE +"CLSI 2020" "DISK" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" "5ug" 21 15 FALSE "CLSI 2020" "MIC" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" 1 4 FALSE "CLSI 2020" "MIC" "Francisella tularensis tularensis" 1 "Ciprofloxacin" "M45 Table 21" 0.5 2048 FALSE "CLSI 2020" "MIC" "(unknown Gram-negatives)" 2 "Ciprofloxacin" "Table 2B-5" 1 4 FALSE "CLSI 2020" "MIC" "Granulicatella" 3 "Ciprofloxacin" "M45 Table 1" 1 4 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" "5μg" 21 6 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" "5ug" 21 6 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" 1 2048 FALSE "CLSI 2020" "MIC" "Kingella" 3 "Ciprofloxacin" "M45 Table 9" 1 4 FALSE "CLSI 2020" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M45 Table 16" 1 2048 FALSE -"CLSI 2020" "DISK" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" "5μg" 41 27 FALSE +"CLSI 2020" "DISK" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" "5ug" 41 27 FALSE "CLSI 2020" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" 0.064 1 FALSE -"CLSI 2020" "DISK" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" "5μg" 35 32 FALSE +"CLSI 2020" "DISK" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" "5ug" 35 32 FALSE "CLSI 2020" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" 0.032 0.12 FALSE -"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" "5μg" 25 18 FALSE +"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" "5ug" 25 18 FALSE "CLSI 2020" "MIC" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" 0.5 2 FALSE -"CLSI 2020" "DISK" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5μg" 31 20 FALSE +"CLSI 2020" "DISK" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE "CLSI 2020" "MIC" "Salmonella" 3 "Ciprofloxacin" "Table 2A" 0.064 1 FALSE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" "5μg" 21 15 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" "5ug" 21 15 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" 1 4 FALSE -"CLSI 2020" "DISK" "Vibrio" 3 "Ciprofloxacin" "M45 Table 20" "5μg" 21 15 FALSE +"CLSI 2020" "DISK" "Vibrio" 3 "Ciprofloxacin" "M45 Table 20" "5ug" 21 15 FALSE "CLSI 2020" "MIC" "Vibrio" 3 "Ciprofloxacin" "M45 Table 20" 1 4 FALSE "CLSI 2020" "MIC" "Yersinia pestis" 2 "Ciprofloxacin" "M45 Table 21" 0.25 2048 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5μg" 26 21 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5μg" 0.25 1 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 26 21 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 0.25 1 FALSE "CLSI 2020" "MIC" "Abiotrophia" 3 "Clindamycin" "M45 Table 1" 0.25 1 FALSE "CLSI 2020" "MIC" "Bacillus" 3 "Clindamycin" "M45 Table 4" 0.5 4 FALSE "CLSI 2020" "MIC" "Gemella" 3 "Clindamycin" "M45 Table 8" 0.25 1 FALSE @@ -9067,80 +9067,80 @@ "CLSI 2020" "MIC" "Micrococcus" 3 "Clindamycin" "M45 Table 15" 0.5 4 FALSE "CLSI 2020" "MIC" "Moraxella catarrhalis" 2 "Clindamycin" "M45 Table 16" 0.5 4 FALSE "CLSI 2020" "MIC" "Paenibacillus mucilaginosus" 2 "Clindamycin" "M45 Table 19" 0.5 4 FALSE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Clindamycin" "Table 2C" "2μg" 21 14 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Clindamycin" "Table 2C" "2ug" 21 14 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Clindamycin" "Table 2C" 0.5 4 FALSE -"CLSI 2020" "DISK" "Streptococcus" 3 "Clindamycin" "Table 2H-1" "2μg" 19 15 FALSE +"CLSI 2020" "DISK" "Streptococcus" 3 "Clindamycin" "Table 2H-1" "2ug" 19 15 FALSE "CLSI 2020" "MIC" "Streptococcus" 3 "Clindamycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" "2μg" 19 15 FALSE +"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" "2ug" 19 15 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" 0.25 1 FALSE -"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" "2μg" 19 15 FALSE +"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" "2ug" 19 15 FALSE "CLSI 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Clindamycin" "Generic rules" "2μg" 21 14 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Clindamycin" "Generic rules" "2μg" 0.5 4 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Clindamycin" "Generic rules" "2ug" 21 14 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Clindamycin" "Generic rules" "2ug" 0.5 4 FALSE "CLSI 2020" "MIC" "Aggregatibacter" 3 "Clarithromycin" "M45 Table 9" 8 32 FALSE "CLSI 2020" "MIC" "Cardiobacterium" 3 "Clarithromycin" "M45 Table 9" 8 32 FALSE "CLSI 2020" "MIC" "Eikenella corrodens" 2 "Clarithromycin" "M45 Table 9" 8 32 FALSE "CLSI 2020" "MIC" "Helicobacter pylori" 2 "Clarithromycin" "M45 Table 10" 0.25 1 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Clarithromycin" "Table 2E" "15μg" 13 10 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Clarithromycin" "Table 2E" "15ug" 13 10 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Clarithromycin" "Table 2E" 8 32 FALSE "CLSI 2020" "MIC" "Kingella" 3 "Clarithromycin" "M45 Table 9" 8 32 FALSE -"CLSI 2020" "DISK" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 16" "15μg" 24 6 FALSE +"CLSI 2020" "DISK" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 16" "15ug" 24 6 FALSE "CLSI 2020" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 16" 1 2048 FALSE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Clarithromycin" "Table 2C" "15μg" 18 13 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Clarithromycin" "Table 2C" "15ug" 18 13 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Clarithromycin" "Table 2C" 2 8 FALSE -"CLSI 2020" "DISK" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" "15μg" 21 16 FALSE +"CLSI 2020" "DISK" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" "15ug" 21 16 FALSE "CLSI 2020" "MIC" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" "15μg" 21 16 FALSE +"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" "15ug" 21 16 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" 0.25 1 FALSE -"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" "15μg" 21 16 FALSE +"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" "15ug" 21 16 FALSE "CLSI 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15μg" 18 13 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15μg" 2 8 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefmetazole" "Table 2A" "30μg" 16 12 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15ug" 18 13 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15ug" 2 8 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefmetazole" "Table 2A" "30ug" 16 12 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Cefmetazole" "Table 2A" 16 64 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30μg" 16 64 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30ug" 16 64 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Colistin" "Table 2A" 0.001 4 FALSE "CLSI 2020" "MIC" "Acinetobacter" 3 "Colistin" "Table 2B-2" 0.001 4 FALSE "CLSI 2020" "MIC" "Pseudomonas aeruginosa" 2 "Colistin" "Table 2B-1" 0.001 4 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Colistin" "Generic rules" "10μg" 11 10 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Colistin" "Generic rules" "10μg" 0.001 4 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefpodoxime" "Table 2A" "10μg" 21 17 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Colistin" "Generic rules" "10ug" 11 10 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Colistin" "Generic rules" "10ug" 0.001 4 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefpodoxime" "Table 2A" "10ug" 21 17 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Cefpodoxime" "Table 2A" 2 8 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Cefpodoxime" "Table 2E" "10μg" 21 6 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Cefpodoxime" "Table 2E" "10ug" 21 6 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Cefpodoxime" "Table 2E" 2 2048 FALSE -"CLSI 2020" "DISK" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" "10μg" 29 6 FALSE +"CLSI 2020" "DISK" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" "10ug" 29 6 FALSE "CLSI 2020" "MIC" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" 0.5 2048 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" "Table 2G" 0.5 2 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10μg" 21 17 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefprozil" "Table 2A" "30μg" 18 14 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 21 17 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefprozil" "Table 2A" "30ug" 18 14 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Cefprozil" "Table 2A" 8 32 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Cefprozil" "Table 2E" "30μg" 18 14 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Cefprozil" "Table 2E" "30ug" 18 14 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Cefprozil" "Table 2E" 8 32 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Cefprozil" "Table 2G" 2 8 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Cefprozil" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Cefprozil" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Ceftaroline" "Table 2A" "30μg" 23 19 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Cefprozil" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Cefprozil" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Ceftaroline" "Table 2A" "30ug" 23 19 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Ceftaroline" "Table 2A" 0.5 2 FALSE -"CLSI 2020" "DISK" "Haemophilus influenzae" 2 "Ceftaroline" "Table 2E" "30μg" 30 6 FALSE +"CLSI 2020" "DISK" "Haemophilus influenzae" 2 "Ceftaroline" "Table 2E" "30ug" 30 6 FALSE "CLSI 2020" "MIC" "Haemophilus influenzae" 2 "Ceftaroline" "Table 2E" 0.5 2048 FALSE -"CLSI 2020" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Table 2C" "30μg" 25 19 FALSE +"CLSI 2020" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Table 2C" "30ug" 25 19 FALSE "CLSI 2020" "MIC" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Table 2C" 1 8 FALSE -"CLSI 2020" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Ceftaroline" "Table 2C" "30μg" 25 19 FALSE +"CLSI 2020" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Ceftaroline" "Table 2C" "30ug" 25 19 FALSE "CLSI 2020" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Ceftaroline" "Table 2C" 1 8 FALSE -"CLSI 2020" "DISK" "Streptococcus" 3 "Ceftaroline" "Table 2H-1" "30μg" 26 6 FALSE +"CLSI 2020" "DISK" "Streptococcus" 3 "Ceftaroline" "Table 2H-1" "30ug" 26 6 FALSE "CLSI 2020" "MIC" "Streptococcus" 3 "Ceftaroline" "Table 2H-1" 0.5 2048 FALSE "CLSI 2020" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Ceftaroline" "Table 2G" 0.5 2048 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30μg" 0.5 2 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Ceftriaxone" "Table 2A" "30μg" 23 19 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30ug" 0.5 2 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Ceftriaxone" "Table 2A" "30ug" 23 19 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Ceftriaxone" "Table 2A" 1 4 FALSE "CLSI 2020" "MIC" "Abiotrophia" 3 "Ceftriaxone" "M45 Table 1" 1 4 FALSE -"CLSI 2020" "DISK" "Parenteral" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" "30μg" 21 13 FALSE +"CLSI 2020" "DISK" "Parenteral" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" "30ug" 21 13 FALSE "CLSI 2020" "MIC" "Parenteral" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" 8 64 FALSE "CLSI 2020" "MIC" "Aerococcus" 3 "Ceftriaxone" "M45 Table 2" 1 4 FALSE -"CLSI 2020" "DISK" "Aeromonas" 3 "Ceftriaxone" "M45 Table 2" "30μg" 23 19 FALSE +"CLSI 2020" "DISK" "Aeromonas" 3 "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE "CLSI 2020" "MIC" "Aeromonas" 3 "Ceftriaxone" "M45 Table 3" 1 4 FALSE "CLSI 2020" "MIC" "Aggregatibacter" 3 "Ceftriaxone" "M45 Table 9" 2 2048 FALSE "CLSI 2020" "MIC" "Cardiobacterium" 3 "Ceftriaxone" "M45 Table 9" 2 2048 FALSE @@ -9148,44 +9148,44 @@ "CLSI 2020" "MIC" "Gemella" 3 "Ceftriaxone" "M45 Table 8" 1 4 FALSE "CLSI 2020" "MIC" "Parenteral" "(unknown Gram-negatives)" 2 "Ceftriaxone" "Table 2B-5" 8 64 FALSE "CLSI 2020" "MIC" "Granulicatella" 3 "Ceftriaxone" "M45 Table 1" 1 4 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Ceftriaxone" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Ceftriaxone" "Table 2E" "30ug" 26 6 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Ceftriaxone" "Table 2E" 2 2048 FALSE "CLSI 2020" "MIC" "Kingella" 3 "Ceftriaxone" "M45 Table 9" 2 2048 FALSE "CLSI 2020" "MIC" "Lactococcus" 3 "Ceftriaxone" "M45 Table 12" 1 4 FALSE "CLSI 2020" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" "M45 Table 16" 2 2048 FALSE -"CLSI 2020" "DISK" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" "30μg" 35 6 FALSE +"CLSI 2020" "DISK" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" "30ug" 35 6 FALSE "CLSI 2020" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" 0.25 2048 FALSE -"CLSI 2020" "DISK" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" "30μg" 34 6 FALSE +"CLSI 2020" "DISK" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" "30ug" 34 6 FALSE "CLSI 2020" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" 0.125 2048 FALSE -"CLSI 2020" "DISK" "Pasteurella" 3 "Ceftriaxone" "M45 Table 17" "30μg" 34 6 FALSE +"CLSI 2020" "DISK" "Pasteurella" 3 "Ceftriaxone" "M45 Table 17" "30ug" 34 6 FALSE "CLSI 2020" "MIC" "Pasteurella" 3 "Ceftriaxone" "M45 Table 17" 0.125 2048 FALSE -"CLSI 2020" "DISK" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2020" "DISK" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2020" "MIC" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" 0.5 2048 FALSE "CLSI 2020" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Table 2G" 0.5 2 FALSE "CLSI 2020" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Table 2G" 1 4 FALSE -"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" "30μg" 27 24 FALSE +"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" "30ug" 27 24 FALSE "CLSI 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" 1 4 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30μg" 1 4 FALSE -"CLSI 2020" "DISK" "Urine" "Enterobacterales" 5 "Ceftibuten" "Table 2A" "30μg" 21 17 TRUE +"CLSI 2020" "DISK" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 1 4 FALSE +"CLSI 2020" "DISK" "Urine" "Enterobacterales" 5 "Ceftibuten" "Table 2A" "30ug" 21 17 TRUE "CLSI 2020" "MIC" "Urine" "Enterobacterales" 5 "Ceftibuten" "Table 2A" 8 32 TRUE -"CLSI 2020" "DISK" "Haemophilus" 3 "Ceftibuten" "Table 2E" "30μg" 28 6 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Ceftibuten" "Table 2E" "30ug" 28 6 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Ceftibuten" "Table 2E" 2 2048 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefotetan" "Table 2A" "30μg" 16 12 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefotetan" "Table 2A" "30ug" 16 12 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Cefotetan" "Table 2A" 16 64 FALSE -"CLSI 2020" "DISK" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" "30μg" 26 19 FALSE +"CLSI 2020" "DISK" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" "30ug" 26 19 FALSE "CLSI 2020" "MIC" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" 2 8 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Cefotetan" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Cefotetan" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefotaxime" "Table 2A" "30μg" 26 22 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Cefotetan" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Cefotetan" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefotaxime" "Table 2A" "30ug" 26 22 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Cefotaxime" "Table 2A" 1 4 FALSE "CLSI 2020" "MIC" "Abiotrophia" 3 "Cefotaxime" "M45 Table 1" 1 4 FALSE -"CLSI 2020" "DISK" "Parenteral" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" "30μg" 23 14 FALSE +"CLSI 2020" "DISK" "Parenteral" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" "30ug" 23 14 FALSE "CLSI 2020" "MIC" "Parenteral" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" 8 64 FALSE "CLSI 2020" "MIC" "Aerococcus" 3 "Cefotaxime" "M45 Table 2" 1 4 FALSE -"CLSI 2020" "DISK" "Aeromonas" 3 "Cefotaxime" "M45 Table 2" "30μg" 26 22 FALSE +"CLSI 2020" "DISK" "Aeromonas" 3 "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE "CLSI 2020" "MIC" "Aeromonas" 3 "Cefotaxime" "M45 Table 3" 1 4 FALSE "CLSI 2020" "MIC" "Aggregatibacter" 3 "Cefotaxime" "M45 Table 9" 2 2048 FALSE "CLSI 2020" "MIC" "Cardiobacterium" 3 "Cefotaxime" "M45 Table 9" 2 2048 FALSE @@ -9193,73 +9193,73 @@ "CLSI 2020" "MIC" "Gemella" 3 "Cefotaxime" "M45 Table 8" 1 4 FALSE "CLSI 2020" "MIC" "Parenteral" "(unknown Gram-negatives)" 2 "Cefotaxime" "Table 2B-5" 8 64 FALSE "CLSI 2020" "MIC" "Granulicatella" 3 "Cefotaxime" "M45 Table 1" 1 4 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Cefotaxime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Cefotaxime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Cefotaxime" "Table 2E" 2 2048 FALSE "CLSI 2020" "MIC" "Kingella" 3 "Cefotaxime" "M45 Table 9" 2 2048 FALSE "CLSI 2020" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" "M45 Table 16" 2 2048 FALSE -"CLSI 2020" "DISK" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" "30μg" 31 6 FALSE +"CLSI 2020" "DISK" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" "30ug" 31 6 FALSE "CLSI 2020" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" 0.5 2048 FALSE -"CLSI 2020" "DISK" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" "30μg" 34 6 FALSE +"CLSI 2020" "DISK" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" "30ug" 34 6 FALSE "CLSI 2020" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" 0.125 2048 FALSE -"CLSI 2020" "DISK" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2020" "DISK" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2020" "MIC" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" 0.5 2048 FALSE "CLSI 2020" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Cefotaxime" "Table 2G" 0.5 2 FALSE "CLSI 2020" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Cefotaxime" "Table 2G" 1 4 FALSE -"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" "30μg" 28 25 FALSE +"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" "30ug" 28 25 FALSE "CLSI 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" 1 4 FALSE -"CLSI 2020" "DISK" "Vibrio" 3 "Cefotaxime" "M45 Table 20" "30μg" 26 22 FALSE +"CLSI 2020" "DISK" "Vibrio" 3 "Cefotaxime" "M45 Table 20" "30ug" 26 22 FALSE "CLSI 2020" "MIC" "Vibrio" 3 "Cefotaxime" "M45 Table 20" 1 4 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30μg" 26 22 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30μg" 1 4 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30ug" 26 22 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30ug" 1 4 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" "30ug" 20 16 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" 4 16 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Cefuroxime axetil" "Table 2G" 1 4 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30μg" 23 14 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30μg" 4 32 FALSE -"CLSI 2020" "DISK" "Parenteral" "Enterobacterales" 5 "Cefuroxime" "Table 2A" "30μg" 18 14 FALSE -"CLSI 2020" "DISK" "Oral" "Enterobacterales" 5 "Cefuroxime" "Table 2A" "30μg" 23 14 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 23 14 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 4 32 FALSE +"CLSI 2020" "DISK" "Parenteral" "Enterobacterales" 5 "Cefuroxime" "Table 2A" "30ug" 18 14 FALSE +"CLSI 2020" "DISK" "Oral" "Enterobacterales" 5 "Cefuroxime" "Table 2A" "30ug" 23 14 FALSE "CLSI 2020" "MIC" "Parenteral" "Enterobacterales" 5 "Cefuroxime" "Table 2A" 8 32 FALSE "CLSI 2020" "MIC" "Oral" "Enterobacterales" 5 "Cefuroxime" "Table 2A" 4 32 FALSE -"CLSI 2020" "DISK" "Aeromonas" 3 "Cefuroxime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2020" "DISK" "Aeromonas" 3 "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2020" "MIC" "Aeromonas" 3 "Cefuroxime" "M45 Table 3" 8 32 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Cefuroxime" "Table 2E" 4 16 FALSE "CLSI 2020" "MIC" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M45 Table 16" 4 16 FALSE "CLSI 2020" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Table 2G" 1 4 FALSE "CLSI 2020" "MIC" "Parenteral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Table 2G" 0.5 2 FALSE -"CLSI 2020" "DISK" "Vibrio" 3 "Cefuroxime" "M45 Table 20" "30μg" 18 14 FALSE +"CLSI 2020" "DISK" "Vibrio" 3 "Cefuroxime" "M45 Table 20" "30ug" 18 14 FALSE "CLSI 2020" "MIC" "Vibrio" 3 "Cefuroxime" "M45 Table 20" 8 32 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Ceftazidime/avibactam" "Table 2A" "30μg/20μg" 21 20 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Ceftazidime/avibactam" "Table 2A" "30ug/20ug" 21 20 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Ceftazidime/avibactam" "Table 2A" 8 16 FALSE "CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Ceftazidime/avibactam" "Table 2B-1" 21 20 FALSE "CLSI 2020" "MIC" "Pseudomonas aeruginosa" 2 "Ceftazidime/avibactam" "Table 2B-1" 8 16 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Ceftazidime/avibactam" "Generic rules" "30/20μg" 21 20 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Ceftazidime/avibactam" "Generic rules" "30/20μg" 8 16 FALSE -"CLSI 2020" "DISK" "Urine" "Enterobacterales" 5 "Cefazolin" "Table 2A" "30μg" 15 14 TRUE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefazolin" "Table 2A" "30μg" 23 19 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Ceftazidime/avibactam" "Generic rules" "30/20ug" 21 20 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Ceftazidime/avibactam" "Generic rules" "30/20ug" 8 16 FALSE +"CLSI 2020" "DISK" "Urine" "Enterobacterales" 5 "Cefazolin" "Table 2A" "30ug" 15 14 TRUE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefazolin" "Table 2A" "30ug" 23 19 FALSE "CLSI 2020" "MIC" "Urine" "Enterobacterales" 5 "Cefazolin" "Table 2A" 16 32 TRUE "CLSI 2020" "MIC" "Enterobacterales" 5 "Cefazolin" "Table 2A" 2 8 FALSE "CLSI 2020" "MIC" "Vibrio" 3 "Cefazolin" "M45 Table 20" 2 8 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Cefazolin" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Cefazolin" "Generic rules" "30μg" 2 8 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Table 2A" "30μg/10μg" 21 17 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Cefazolin" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Cefazolin" "Generic rules" "30ug" 2 8 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Table 2A" "30ug/10ug" 21 17 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Table 2A" 2 8 FALSE "CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Ceftolozane/tazobactam" "Table 2B-1" "30/10" 21 16 FALSE "CLSI 2020" "MIC" "Pseudomonas aeruginosa" 2 "Ceftolozane/tazobactam" "Table 2B-1" 4 16 FALSE "CLSI 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftolozane/tazobactam" "Table 2H-2" 8 32 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Ceftolozane/tazobactam" "Generic rules" "30/10μg" 21 17 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Ceftolozane/tazobactam" "Generic rules" "30/10μg" 2 8 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Ceftizoxime" "Table 2A" "30μg" 25 21 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Ceftolozane/tazobactam" "Generic rules" "30/10ug" 21 17 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Ceftolozane/tazobactam" "Generic rules" "30/10ug" 2 8 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Ceftizoxime" "Table 2A" "30ug" 25 21 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Ceftizoxime" "Table 2A" 1 4 FALSE "CLSI 2020" "MIC" "Parenteral" "(unknown Gram-negatives)" 2 "Ceftizoxime" "Table 2B-5" 8 64 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Ceftizoxime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Ceftizoxime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Ceftizoxime" "Table 2E" 2 2048 FALSE -"CLSI 2020" "DISK" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" "30μg" 38 6 FALSE +"CLSI 2020" "DISK" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" "30ug" 38 6 FALSE "CLSI 2020" "MIC" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" 0.5 2048 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30μg" 25 21 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30μg" 1 4 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30ug" 25 21 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30ug" 1 4 FALSE "CLSI 2020" "MIC" "Enterococcus faecalis" 2 "Dalbavancin" "Table 2D" 0.25 2048 FALSE "CLSI 2020" "MIC" "Staphylococcus aureus aureus" 1 "Dalbavancin" "Table 2C" 0.25 2048 FALSE "CLSI 2020" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Dalbavancin" "Table 2C" 0.25 2048 FALSE @@ -9269,151 +9269,151 @@ "CLSI 2020" "MIC" "Enterococcus faecium" 2 "Daptomycin" "Table 2D" 0.001 8 FALSE "CLSI 2020" "MIC" "Lactobacillus" 3 "Daptomycin" "M45 Table 11" 4 2048 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Daptomycin" "Table 2C" 1 2048 FALSE -"CLSI 2020" "DISK" "Streptococcus" 3 "Daptomycin" "Table 2H-1" "30μg" 16 6 FALSE +"CLSI 2020" "DISK" "Streptococcus" 3 "Daptomycin" "Table 2H-1" "30ug" 16 6 FALSE "CLSI 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Daptomycin" "Table 2H-2" 1 2048 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Daptomycin" "Generic rules" "30μg" 1 2048 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Difloxacin" "Generic rules" "10μg" 21 17 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Difloxacin" "Generic rules" "10μg" 0.5 4 FALSE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Dirithromycin" "Table 2C" "15μg" 19 15 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Daptomycin" "Generic rules" "30ug" 1 2048 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Difloxacin" "Generic rules" "10ug" 21 17 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Difloxacin" "Generic rules" "10ug" 0.5 4 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Dirithromycin" "Table 2C" "15ug" 19 15 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Dirithromycin" "Table 2C" 2 8 FALSE -"CLSI 2020" "DISK" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" "15μg" 18 13 FALSE +"CLSI 2020" "DISK" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" "15ug" 18 13 FALSE "CLSI 2020" "MIC" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" "15μg" 18 13 FALSE +"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" "15ug" 18 13 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" 0.5 2 FALSE -"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" "15μg" 18 13 FALSE +"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" "15ug" 18 13 FALSE "CLSI 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" 0.5 2 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15μg" 19 15 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15μg" 2 8 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Doripenem" "Table 2A" "10μg" 23 19 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15ug" 19 15 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15ug" 2 8 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Doripenem" "Table 2A" "10ug" 23 19 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Doripenem" "Table 2A" 1 4 FALSE "CLSI 2020" "DISK" "Acinetobacter" 3 "Doripenem" "Table 2B-2" 18 14 FALSE "CLSI 2020" "MIC" "Acinetobacter" 3 "Doripenem" "Table 2B-2" 2 8 FALSE -"CLSI 2020" "DISK" "Aeromonas" 3 "Doripenem" "M45 Table 3" "10μg" 23 19 FALSE +"CLSI 2020" "DISK" "Aeromonas" 3 "Doripenem" "M45 Table 3" "10ug" 23 19 FALSE "CLSI 2020" "MIC" "Aeromonas" 3 "Doripenem" "M45 Table 3" 1 4 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Doripenem" "Table 2E" "10μg" 16 6 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Doripenem" "Table 2E" "10ug" 16 6 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Doripenem" "Table 2E" 1 2048 FALSE -"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2020" "MIC" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" 2 8 FALSE "CLSI 2020" "MIC" "Streptococcus" 3 "Doripenem" "Table 2H-1" 0.125 2048 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" "Table 2G" 1 2048 FALSE "CLSI 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" "Table 2H-2" 1 2048 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Doripenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Doripenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Doxycycline" "Table 2A" "30μg" 14 10 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Doripenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Doripenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Doxycycline" "Table 2A" "30ug" 14 10 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Doxycycline" "Table 2A" 4 16 FALSE -"CLSI 2020" "DISK" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" "30μg" 13 9 FALSE +"CLSI 2020" "DISK" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" "30ug" 13 9 FALSE "CLSI 2020" "MIC" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" 4 16 FALSE "CLSI 2020" "MIC" "Bacillus anthracis" 2 "Doxycycline" "M45 Table 21" 1 2048 FALSE "CLSI 2020" "MIC" "Brucella" 3 "Doxycycline" "M45 Table 21" 1 2048 FALSE "CLSI 2020" "MIC" "Burkholderia mallei" 2 "Doxycycline" "M45 Table 21" 4 16 FALSE "CLSI 2020" "MIC" "Burkholderia pseudomallei" 2 "Doxycycline" "M45 Table 21" 4 16 FALSE "CLSI 2020" "MIC" "Campylobacter" 3 "Doxycycline" "M45 Table 5" 2 8 FALSE -"CLSI 2020" "DISK" "Enterococcus" 3 "Doxycycline" "Table 2D" "30μg" 16 12 FALSE +"CLSI 2020" "DISK" "Enterococcus" 3 "Doxycycline" "Table 2D" "30ug" 16 12 FALSE "CLSI 2020" "MIC" "Enterococcus" 3 "Doxycycline" "Table 2D" 4 16 FALSE "CLSI 2020" "MIC" "Francisella tularensis tularensis" 1 "Doxycycline" "M45 Table 21" 4 2048 FALSE "CLSI 2020" "MIC" "(unknown Gram-negatives)" 2 "Doxycycline" "Table 2B-5" 4 16 FALSE -"CLSI 2020" "DISK" "Pasteurella" 3 "Doxycycline" "M45 Table 17" "30μg" 23 6 FALSE +"CLSI 2020" "DISK" "Pasteurella" 3 "Doxycycline" "M45 Table 17" "30ug" 23 6 FALSE "CLSI 2020" "MIC" "Pasteurella" 3 "Doxycycline" "M45 Table 17" 0.5 2048 FALSE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Doxycycline" "Table 2C" "30μg" 16 12 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Doxycycline" "Table 2C" "30ug" 16 12 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Doxycycline" "Table 2C" 4 16 FALSE -"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Doxycycline" "Table 2G" "30μg" 28 24 FALSE +"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Doxycycline" "Table 2G" "30ug" 28 24 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" "Table 2G" 0.25 1 FALSE "CLSI 2020" "MIC" "Yersinia pestis" 2 "Doxycycline" "M45 Table 21" 4 16 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Doxycycline" "Generic rules" "30μg" 14 10 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Doxycycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2020" "DISK" "Histophilus somni" 2 "Enrofloxacin" "Vet Table" "5μg" 21 16 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Doxycycline" "Generic rules" "30ug" 14 10 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Doxycycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2020" "DISK" "Histophilus somni" 2 "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE "CLSI 2020" "MIC" "Histophilus somni" 2 "Enrofloxacin" "Vet Table" 0.25 2 FALSE -"CLSI 2020" "DISK" "Providencia heimbachae" 2 "Enrofloxacin" "Vet Table" "5μg" 21 16 FALSE -"CLSI 2020" "DISK" "Pasteurella multocida multocida" 1 "Enrofloxacin" "Vet Table" "5μg" 21 16 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5μg" 23 16 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5μg" 0.25 2 FALSE -"CLSI 2020" "DISK" "Urine" "Enterobacterales" 5 "Enoxacin" "Table 2A" "10μg" 18 14 TRUE +"CLSI 2020" "DISK" "Providencia heimbachae" 2 "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2020" "DISK" "Pasteurella multocida multocida" 1 "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5ug" 23 16 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5ug" 0.25 2 FALSE +"CLSI 2020" "DISK" "Urine" "Enterobacterales" 5 "Enoxacin" "Table 2A" "10ug" 18 14 TRUE "CLSI 2020" "MIC" "Urine" "Enterobacterales" 5 "Enoxacin" "Table 2A" 2 8 TRUE -"CLSI 2020" "DISK" "Urine" "Staphylococcus" 3 "Enoxacin" "Table 2C" "10μg" 18 14 TRUE +"CLSI 2020" "DISK" "Urine" "Staphylococcus" 3 "Enoxacin" "Table 2C" "10ug" 18 14 TRUE "CLSI 2020" "MIC" "Urine" "Staphylococcus" 3 "Enoxacin" "Table 2C" 2 8 TRUE -"CLSI 2020" "DISK" "(unknown name)" 6 "Enoxacin" "Generic rules" "10μg" 18 14 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Enoxacin" "Generic rules" "10μg" 2 8 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Enoxacin" "Generic rules" "10ug" 18 14 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Enoxacin" "Generic rules" "10ug" 2 8 FALSE "CLSI 2020" "MIC" "Abiotrophia" 3 "Erythromycin" "M45 Table 1" 0.25 1 FALSE "CLSI 2020" "MIC" "Bacillus" 3 "Erythromycin" "M45 Table 4" 0.5 8 FALSE "CLSI 2020" "DISK" "Campylobacter" 3 "Erythromycin" "M45 Table 5" 16 12 FALSE "CLSI 2020" "MIC" "Campylobacter" 3 "Erythromycin" "M45 Table 5" 8 32 FALSE -"CLSI 2020" "DISK" "Enterococcus" 3 "Erythromycin" "Table 2D" "15μg" 23 13 FALSE +"CLSI 2020" "DISK" "Enterococcus" 3 "Erythromycin" "Table 2D" "15ug" 23 13 FALSE "CLSI 2020" "MIC" "Enterococcus" 3 "Erythromycin" "Table 2D" 0.5 8 FALSE "CLSI 2020" "MIC" "Gemella" 3 "Erythromycin" "M45 Table 8" 0.25 1 FALSE "CLSI 2020" "MIC" "Granulicatella" 3 "Erythromycin" "M45 Table 1" 0.25 1 FALSE "CLSI 2020" "MIC" "Lactobacillus" 3 "Erythromycin" "M45 Table 11" 0.5 8 FALSE "CLSI 2020" "MIC" "Lactococcus" 3 "Erythromycin" "M45 Table 12" 0.5 8 FALSE "CLSI 2020" "MIC" "Micrococcus" 3 "Erythromycin" "M45 Table 15" 0.5 8 FALSE -"CLSI 2020" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 16" "15μg" 21 6 FALSE +"CLSI 2020" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 16" "15ug" 21 6 FALSE "CLSI 2020" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 16" 2 2048 FALSE "CLSI 2020" "MIC" "Paenibacillus mucilaginosus" 2 "Erythromycin" "M45 Table 19" 0.5 8 FALSE -"CLSI 2020" "DISK" "Pasteurella" 3 "Erythromycin" "M45 Table 17" "15μg" 27 24 FALSE +"CLSI 2020" "DISK" "Pasteurella" 3 "Erythromycin" "M45 Table 17" "15ug" 27 24 FALSE "CLSI 2020" "MIC" "Pasteurella" 3 "Erythromycin" "M45 Table 17" 0.5 2 FALSE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Erythromycin" "Table 2C" "15μg" 23 13 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Erythromycin" "Table 2C" "15ug" 23 13 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Erythromycin" "Table 2C" 0.5 8 FALSE -"CLSI 2020" "DISK" "Streptococcus" 3 "Erythromycin" "Table 2H-1" "15μg" 21 15 FALSE +"CLSI 2020" "DISK" "Streptococcus" 3 "Erythromycin" "Table 2H-1" "15ug" 21 15 FALSE "CLSI 2020" "MIC" "Streptococcus" 3 "Erythromycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" "15μg" 21 15 FALSE +"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" "15ug" 21 15 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" 0.25 1 FALSE -"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" "15μg" 21 15 FALSE +"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" "15ug" 21 15 FALSE "CLSI 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Erythromycin" "Generic rules" "15μg" 23 13 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Erythromycin" "Generic rules" "15μg" 0.5 8 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Ertapenem" "Table 2A" "10μg" 22 18 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Erythromycin" "Generic rules" "15ug" 23 13 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Erythromycin" "Generic rules" "15ug" 0.5 8 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Ertapenem" "Table 2A" "10ug" 22 18 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Ertapenem" "Table 2A" 0.5 2 FALSE -"CLSI 2020" "DISK" "Aeromonas" 3 "Ertapenem" "M45 Table 2" "10μg" 19 15 FALSE +"CLSI 2020" "DISK" "Aeromonas" 3 "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE "CLSI 2020" "MIC" "Aeromonas" 3 "Ertapenem" "M45 Table 3" 0.5 2 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Ertapenem" "Table 2E" "10μg" 19 6 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Ertapenem" "Table 2E" "10ug" 19 6 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Ertapenem" "Table 2E" 0.5 2048 FALSE "CLSI 2020" "MIC" "Streptococcus" 3 "Ertapenem" "Table 2H-1" 1 2048 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" "Table 2G" 1 4 FALSE "CLSI 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "Table 2H-2" 1 2048 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Ertapenem" "Generic rules" "10μg" 22 18 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Ertapenem" "Generic rules" "10μg" 0.5 2 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefiderocol" "Table 2A" "30μg" 16 11 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 22 18 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 0.5 2 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefiderocol" "Table 2A" "30ug" 16 11 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Cefiderocol" "Table 2A" 4 16 FALSE -"CLSI 2020" "DISK" "Parenteral" "Acinetobacter" 3 "Cefiderocol" "Table 2B-2" "30μg" 15 10 FALSE +"CLSI 2020" "DISK" "Parenteral" "Acinetobacter" 3 "Cefiderocol" "Table 2B-2" "30ug" 15 10 FALSE "CLSI 2020" "MIC" "Parenteral" "Acinetobacter" 3 "Cefiderocol" "Table 2B-2" 4 16 FALSE -"CLSI 2020" "DISK" "Parenteral" "Pseudomonas aeruginosa" 2 "Cefiderocol" "Table 2B-1" "30μg" 18 12 FALSE +"CLSI 2020" "DISK" "Parenteral" "Pseudomonas aeruginosa" 2 "Cefiderocol" "Table 2B-1" "30ug" 18 12 FALSE "CLSI 2020" "MIC" "Parenteral" "Pseudomonas aeruginosa" 2 "Cefiderocol" "Table 2B-1" 4 16 FALSE -"CLSI 2020" "DISK" "Parenteral" "Stenotrophomonas maltophilia" 2 "Cefiderocol" "Table 2B-4" "30μg" 17 12 FALSE +"CLSI 2020" "DISK" "Parenteral" "Stenotrophomonas maltophilia" 2 "Cefiderocol" "Table 2B-4" "30ug" 17 12 FALSE "CLSI 2020" "MIC" "Parenteral" "Stenotrophomonas maltophilia" 2 "Cefiderocol" "Table 2B-4" 4 16 FALSE "CLSI 2020" "MIC" "(unknown name)" 6 "Cefiderocol" "Generic rules" 4 16 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefepime" "Table 2A" "30μg" 25 18 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefepime" "Table 2A" "30ug" 25 18 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Cefepime" "Table 2A" 2 16 FALSE "CLSI 2020" "MIC" "Abiotrophia" 3 "Cefepime" "M45 Table 1" 1 4 FALSE -"CLSI 2020" "DISK" "Parenteral" "Acinetobacter" 3 "Cefepime" "Table 2B-2" "30μg" 18 14 FALSE +"CLSI 2020" "DISK" "Parenteral" "Acinetobacter" 3 "Cefepime" "Table 2B-2" "30ug" 18 14 FALSE "CLSI 2020" "MIC" "Parenteral" "Acinetobacter" 3 "Cefepime" "Table 2B-2" 8 32 FALSE -"CLSI 2020" "DISK" "Aeromonas" 3 "Cefepime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2020" "DISK" "Aeromonas" 3 "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2020" "MIC" "Aeromonas" 3 "Cefepime" "M45 Table 3" 2 16 FALSE "CLSI 2020" "MIC" "Parenteral" "(unknown Gram-negatives)" 2 "Cefepime" "Table 2B-5" 8 32 FALSE "CLSI 2020" "MIC" "Granulicatella" 3 "Cefepime" "M45 Table 1" 1 4 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Cefepime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Cefepime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Cefepime" "Table 2E" 2 2048 FALSE -"CLSI 2020" "DISK" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" "30μg" 31 6 FALSE +"CLSI 2020" "DISK" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" "30ug" 31 6 FALSE "CLSI 2020" "MIC" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" 0.5 2048 FALSE -"CLSI 2020" "DISK" "Parenteral" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" "30μg" 18 14 FALSE +"CLSI 2020" "DISK" "Parenteral" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" "30ug" 18 14 FALSE "CLSI 2020" "MIC" "Parenteral" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" 8 32 FALSE -"CLSI 2020" "DISK" "Streptococcus" 3 "Cefepime" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2020" "DISK" "Streptococcus" 3 "Cefepime" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2020" "MIC" "Streptococcus" 3 "Cefepime" "Table 2H-1" 0.5 2048 FALSE "CLSI 2020" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Cefepime" "Table 2G" 0.5 2 FALSE "CLSI 2020" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Cefepime" "Table 2G" 1 4 FALSE -"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" "30μg" 24 21 FALSE +"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" "30ug" 24 21 FALSE "CLSI 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" 1 4 FALSE -"CLSI 2020" "DISK" "Vibrio" 3 "Cefepime" "M45 Table 20" "30μg" 25 18 FALSE +"CLSI 2020" "DISK" "Vibrio" 3 "Cefepime" "M45 Table 20" "30ug" 25 18 FALSE "CLSI 2020" "MIC" "Vibrio" 3 "Cefepime" "M45 Table 20" 2 16 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Cefepime" "Generic rules" "30μg" 25 18 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Cefepime" "Generic rules" "30μg" 2 16 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Fleroxacin" "Table 2A" "5μg" 19 15 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 25 18 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 2 16 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Fleroxacin" "Table 2A" "5ug" 19 15 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Fleroxacin" "Table 2A" 2 8 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Fleroxacin" "Table 2E" "5μg" 19 6 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Fleroxacin" "Table 2E" "5ug" 19 6 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Fleroxacin" "Table 2E" 2 2048 FALSE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Fleroxacin" "Table 2C" "5μg" 19 15 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Fleroxacin" "Table 2C" "5ug" 19 15 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Fleroxacin" "Table 2C" 2 8 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Florfenicol" "Generic rules" "30μg" 19 14 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Florfenicol" "Generic rules" "30μg" 2 8 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Florfenicol" "Generic rules" "30ug" 19 14 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Florfenicol" "Generic rules" "30ug" 2 8 FALSE "CLSI 2020" "DISK" "Candida" 3 "Fluconazole" "Table 1" 50 14 FALSE "CLSI 2020" "MIC" "Candida" 3 "Fluconazole" "Table 1" 0.001 64 FALSE "CLSI 2020" "DISK" "Candida albicans" 2 "Fluconazole" "Table 1" 17 13 FALSE @@ -9422,68 +9422,68 @@ "CLSI 2020" "MIC" "Candida parapsilosis" 2 "Fluconazole" "Table 1" 2 8 FALSE "CLSI 2020" "DISK" "Candida tropicalis" 2 "Fluconazole" "Table 1" 17 13 FALSE "CLSI 2020" "MIC" "Candida tropicalis" 2 "Fluconazole" "Table 1" 2 8 FALSE -"CLSI 2020" "DISK" "Enterococcus" 3 "Fosfomycin" "Table 2D" "200μg" 16 12 FALSE +"CLSI 2020" "DISK" "Enterococcus" 3 "Fosfomycin" "Table 2D" "200ug" 16 12 FALSE "CLSI 2020" "MIC" "Enterococcus" 3 "Fosfomycin" "Table 2D" 64 256 FALSE -"CLSI 2020" "DISK" "Escherichia coli" 2 "Fosfomycin" "Table 2A" "200μg" 16 12 FALSE +"CLSI 2020" "DISK" "Escherichia coli" 2 "Fosfomycin" "Table 2A" "200ug" 16 12 FALSE "CLSI 2020" "MIC" "Escherichia coli" 2 "Fosfomycin" "Table 2A" 64 256 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefoxitin" "Table 2A" "30μg" 18 14 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefoxitin" "Table 2A" "30ug" 18 14 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Cefoxitin" "Table 2A" 8 32 FALSE -"CLSI 2020" "DISK" "Aeromonas" 3 "Cefoxitin" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2020" "DISK" "Aeromonas" 3 "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2020" "MIC" "Aeromonas" 3 "Cefoxitin" "M45 Table 3" 8 32 FALSE -"CLSI 2020" "DISK" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" "30μg" 28 23 FALSE +"CLSI 2020" "DISK" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" "30ug" 28 23 FALSE "CLSI 2020" "MIC" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" 2 8 FALSE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Cefoxitin" "Table 2C" "30μg" 25 24 FALSE -"CLSI 2020" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" "30μg" 22 21 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Cefoxitin" "Table 2C" "30ug" 25 24 FALSE +"CLSI 2020" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE "CLSI 2020" "MIC" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2020" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Cefoxitin" "Table 2C" "30μg" 22 21 FALSE +"CLSI 2020" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE "CLSI 2020" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2020" "DISK" "Staphylococcus epidermidis" 2 "Cefoxitin" "Table 2C" "30μg" 25 24 FALSE -"CLSI 2020" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" "30μg" 22 21 FALSE +"CLSI 2020" "DISK" "Staphylococcus epidermidis" 2 "Cefoxitin" "Table 2C" "30ug" 25 24 FALSE +"CLSI 2020" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE "CLSI 2020" "MIC" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2020" "DISK" "Vibrio" 3 "Cefoxitin" "M45 Table 20" "30μg" 18 14 FALSE +"CLSI 2020" "DISK" "Vibrio" 3 "Cefoxitin" "M45 Table 20" "30ug" 18 14 FALSE "CLSI 2020" "MIC" "Vibrio" 3 "Cefoxitin" "M45 Table 20" 8 32 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Gatifloxacin" "Table 2A" "5μg" 18 14 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Gatifloxacin" "Table 2A" "5ug" 18 14 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Gatifloxacin" "Table 2A" 2 8 FALSE -"CLSI 2020" "DISK" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" "5μg" 18 14 FALSE +"CLSI 2020" "DISK" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" "5ug" 18 14 FALSE "CLSI 2020" "MIC" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" 2 8 FALSE -"CLSI 2020" "DISK" "Enterococcus" 3 "Gatifloxacin" "Table 2D" "5μg" 18 14 FALSE +"CLSI 2020" "DISK" "Enterococcus" 3 "Gatifloxacin" "Table 2D" "5ug" 18 14 FALSE "CLSI 2020" "MIC" "Enterococcus" 3 "Gatifloxacin" "Table 2D" 2 8 FALSE "CLSI 2020" "MIC" "(unknown Gram-negatives)" 2 "Gatifloxacin" "Table 2B-5" 2 8 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Gatifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Gatifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Gatifloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2020" "DISK" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" "5μg" 38 33 FALSE +"CLSI 2020" "DISK" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" "5ug" 38 33 FALSE "CLSI 2020" "MIC" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" 0.125 0.5 FALSE -"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" "5μg" 18 14 FALSE +"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" "5ug" 18 14 FALSE "CLSI 2020" "MIC" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" 2 8 FALSE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" "10μg" 23 19 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" "10ug" 23 19 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2020" "DISK" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" "5μg" 21 17 FALSE +"CLSI 2020" "DISK" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" "5ug" 21 17 FALSE "CLSI 2020" "MIC" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" 1 4 FALSE -"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" "5μg" 21 17 FALSE +"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" "5ug" 21 17 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" 1 4 FALSE -"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" "5μg" 21 17 FALSE +"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" "5ug" 21 17 FALSE "CLSI 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" 1 4 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5μg" 18 14 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2020" "DISK" "Enterococcus" 3 "Gentamicin-high" "Table 2D" "120μg" 10 6 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5ug" 18 14 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2020" "DISK" "Enterococcus" 3 "Gentamicin-high" "Table 2D" "120ug" 10 6 FALSE "CLSI 2020" "MIC" "Enterococcus" 3 "Gentamicin-high" "Table 2D" 512 560 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120μg" 10 6 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120μg" 512 560 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Gemifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120ug" 10 6 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120ug" 512 560 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Gemifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Gemifloxacin" "Table 2E" 0.125 2048 FALSE -"CLSI 2020" "DISK" "Klebsiella pneumoniae pneumoniae" 1 "Gemifloxacin" "Table 2A" "5μg" 20 15 FALSE +"CLSI 2020" "DISK" "Klebsiella pneumoniae pneumoniae" 1 "Gemifloxacin" "Table 2A" "5ug" 20 15 FALSE "CLSI 2020" "MIC" "Klebsiella pneumoniae pneumoniae" 1 "Gemifloxacin" "Table 2A" 0.25 1 FALSE -"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" "5μg" 23 19 FALSE +"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" "5ug" 23 19 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" 0.125 0.5 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5μg" 20 15 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5μg" 0.25 1 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Gentamicin" "Table 2A" "10μg" 15 12 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5ug" 20 15 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5ug" 0.25 1 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Gentamicin" "Table 2A" "10ug" 15 12 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Gentamicin" "Table 2A" 4 16 FALSE -"CLSI 2020" "DISK" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" "10μg" 15 12 FALSE +"CLSI 2020" "DISK" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" "10ug" 15 12 FALSE "CLSI 2020" "MIC" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" 4 16 FALSE -"CLSI 2020" "DISK" "Aeromonas" 3 "Gentamicin" "M45 Table 2" "10μg" 15 12 FALSE +"CLSI 2020" "DISK" "Aeromonas" 3 "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE "CLSI 2020" "MIC" "Aeromonas" 3 "Gentamicin" "M45 Table 3" 4 16 FALSE "CLSI 2020" "MIC" "Bacillus" 3 "Gentamicin" "M45 Table 4" 4 16 FALSE "CLSI 2020" "MIC" "Brucella" 3 "Gentamicin" "M45 Table 21" 4 2048 FALSE @@ -9491,37 +9491,37 @@ "CLSI 2020" "MIC" "Francisella tularensis tularensis" 1 "Gentamicin" "M45 Table 21" 4 2048 FALSE "CLSI 2020" "MIC" "(unknown Gram-negatives)" 2 "Gentamicin" "Table 2B-5" 4 16 FALSE "CLSI 2020" "MIC" "Lactobacillus" 3 "Gentamicin" "M45 Table 11" 4 16 FALSE -"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" "10μg" 15 12 FALSE +"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" "10ug" 15 12 FALSE "CLSI 2020" "MIC" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" 4 16 FALSE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Gentamicin" "Table 2C" "10μg" 15 12 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Gentamicin" "Table 2C" "10ug" 15 12 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Gentamicin" "Table 2C" 4 16 FALSE -"CLSI 2020" "DISK" "Vibrio" 3 "Gentamicin" "M45 Table 20" "10μg" 15 12 FALSE +"CLSI 2020" "DISK" "Vibrio" 3 "Gentamicin" "M45 Table 20" "10ug" 15 12 FALSE "CLSI 2020" "MIC" "Vibrio" 3 "Gentamicin" "M45 Table 20" 4 16 FALSE "CLSI 2020" "MIC" "Yersinia pestis" 2 "Gentamicin" "M45 Table 21" 4 16 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Gentamicin" "Generic rules" "10μg" 15 12 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Gentamicin" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Grepafloxacin" "Table 2A" "5μg" 18 14 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 15 12 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Grepafloxacin" "Table 2A" "5ug" 18 14 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Grepafloxacin" "Table 2A" 1 4 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Grepafloxacin" "Table 2E" "5μg" 24 6 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Grepafloxacin" "Table 2E" "5ug" 24 6 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Grepafloxacin" "Table 2E" 0.5 2048 FALSE -"CLSI 2020" "DISK" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" "5μg" 37 27 FALSE +"CLSI 2020" "DISK" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" "5ug" 37 27 FALSE "CLSI 2020" "MIC" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" 0.064 1 FALSE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" "5μg" 18 14 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" "5ug" 18 14 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" 1 4 FALSE -"CLSI 2020" "DISK" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" "5μg" 19 15 FALSE +"CLSI 2020" "DISK" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" "5ug" 19 15 FALSE "CLSI 2020" "MIC" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" "5μg" 19 15 FALSE +"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" "5ug" 19 15 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" 0.5 2 FALSE -"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" "5μg" 19 15 FALSE +"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" "5ug" 19 15 FALSE "CLSI 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" 0.5 2 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5μg" 18 14 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Imipenem" "Table 2A" "10μg" 23 19 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5ug" 18 14 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Imipenem" "Table 2A" "10ug" 23 19 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Imipenem" "Table 2A" 1 4 FALSE "CLSI 2020" "MIC" "Abiotrophia" 3 "Imipenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2020" "DISK" "Acinetobacter" 3 "Imipenem" "Table 2B-2" "10μg" 22 18 FALSE +"CLSI 2020" "DISK" "Acinetobacter" 3 "Imipenem" "Table 2B-2" "10ug" 22 18 FALSE "CLSI 2020" "MIC" "Acinetobacter" 3 "Imipenem" "Table 2B-2" 2 8 FALSE -"CLSI 2020" "DISK" "Aeromonas" 3 "Imipenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2020" "DISK" "Aeromonas" 3 "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2020" "MIC" "Aeromonas" 3 "Imipenem" "M45 Table 3" 1 4 FALSE "CLSI 2020" "MIC" "Aggregatibacter" 3 "Imipenem" "M45 Table 9" 4 16 FALSE "CLSI 2020" "MIC" "Bacillus" 3 "Imipenem" "M45 Table 4" 4 16 FALSE @@ -9531,66 +9531,66 @@ "CLSI 2020" "MIC" "Eikenella corrodens" 2 "Imipenem" "M45 Table 9" 0.5 2 FALSE "CLSI 2020" "MIC" "(unknown Gram-negatives)" 2 "Imipenem" "Table 2B-5" 4 16 FALSE "CLSI 2020" "MIC" "Granulicatella" 3 "Imipenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Imipenem" "Table 2E" "10μg" 16 6 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Imipenem" "Table 2E" "10ug" 16 6 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Imipenem" "Table 2E" 4 2048 FALSE "CLSI 2020" "MIC" "Kingella" 3 "Imipenem" "M45 Table 9" 0.5 2 FALSE "CLSI 2020" "MIC" "Lactobacillus" 3 "Imipenem" "M45 Table 11" 0.5 2 FALSE "CLSI 2020" "MIC" "Pediococcus" 3 "Imipenem" "M45 Table 18" 0.5 2048 FALSE -"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2020" "MIC" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" 2 8 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" "Table 2G" 0.125 1 FALSE -"CLSI 2020" "DISK" "Vibrio" 3 "Imipenem" "M45 Table 20" "10μg" 23 19 FALSE +"CLSI 2020" "DISK" "Vibrio" 3 "Imipenem" "M45 Table 20" "10ug" 23 19 FALSE "CLSI 2020" "MIC" "Vibrio" 3 "Imipenem" "M45 Table 20" 1 4 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Imipenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Imipenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Kanamycin" "Table 2A" "30μg" 18 13 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Kanamycin" "Table 2A" "30ug" 18 13 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Kanamycin" "Table 2A" 16 64 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Kanamycin" "Generic rules" "30μg" 18 13 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Kanamycin" "Generic rules" "30μg" 16 64 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Kanamycin" "Generic rules" "30ug" 18 13 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Kanamycin" "Generic rules" "30ug" 16 64 FALSE "CLSI 2020" "MIC" "Aerococcus" 3 "Linezolid" "M45 Table 2" 2 2048 FALSE -"CLSI 2020" "DISK" "Enterococcus" 3 "Linezolid" "Table 2D" "30μg" 23 20 FALSE +"CLSI 2020" "DISK" "Enterococcus" 3 "Linezolid" "Table 2D" "30ug" 23 20 FALSE "CLSI 2020" "MIC" "Enterococcus" 3 "Linezolid" "Table 2D" 2 8 FALSE "CLSI 2020" "MIC" "Lactobacillus" 3 "Linezolid" "M45 Table 11" 4 2048 FALSE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Linezolid" "Table 2C" "30μg" 21 20 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Linezolid" "Table 2C" "30ug" 21 20 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Linezolid" "Table 2C" 4 8 FALSE -"CLSI 2020" "DISK" "Streptococcus" 3 "Linezolid" "Table 2H-1" "30μg" 21 6 FALSE +"CLSI 2020" "DISK" "Streptococcus" 3 "Linezolid" "Table 2H-1" "30ug" 21 6 FALSE "CLSI 2020" "MIC" "Streptococcus" 3 "Linezolid" "Table 2H-1" 2 2048 FALSE -"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" "30μg" 21 6 FALSE +"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" "30ug" 21 6 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" 2 2048 FALSE -"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" "30μg" 21 6 FALSE +"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" "30ug" 21 6 FALSE "CLSI 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" 2 2048 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Linezolid" "Generic rules" "30μg" 21 20 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Linezolid" "Generic rules" "30μg" 4 8 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Lomefloxacin" "Table 2A" "10μg" 22 18 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Linezolid" "Generic rules" "30ug" 21 20 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Linezolid" "Generic rules" "30ug" 4 8 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Lomefloxacin" "Table 2A" "10ug" 22 18 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Lomefloxacin" "Table 2A" 2 8 FALSE "CLSI 2020" "MIC" "(unknown Gram-negatives)" 2 "Lomefloxacin" "Table 2B-5" 2 8 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Lomefloxacin" "Table 2E" "10μg" 22 6 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Lomefloxacin" "Table 2E" "10ug" 22 6 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Lomefloxacin" "Table 2E" 2 2048 FALSE -"CLSI 2020" "DISK" "Urine" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" "10μg" 22 18 TRUE +"CLSI 2020" "DISK" "Urine" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" "10ug" 22 18 TRUE "CLSI 2020" "MIC" "Urine" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" 2 8 TRUE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" "10μg" 22 18 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" "10ug" 22 18 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" 2 8 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10μg" 22 18 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Loracarbef" "Table 2A" "30μg" 18 14 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10ug" 22 18 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Loracarbef" "Table 2A" "30ug" 18 14 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Loracarbef" "Table 2A" 8 32 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Loracarbef" "Table 2E" "30μg" 19 15 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Loracarbef" "Table 2E" "30ug" 19 15 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Loracarbef" "Table 2E" 8 32 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Loracarbef" "Table 2G" 2 8 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Loracarbef" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Loracarbef" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Latamoxef" "Table 2A" "30μg" 23 14 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Loracarbef" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Loracarbef" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Latamoxef" "Table 2A" "30ug" 23 14 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Latamoxef" "Table 2A" 8 64 FALSE "CLSI 2020" "MIC" "Parenteral" "(unknown Gram-negatives)" 2 "Latamoxef" "Table 2B-5" 8 64 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Latamoxef" "Generic rules" "30μg" 23 14 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Latamoxef" "Generic rules" "30μg" 8 64 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Levofloxacin" "Table 2A" "5μg" 21 16 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Latamoxef" "Generic rules" "30ug" 23 14 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Latamoxef" "Generic rules" "30ug" 8 64 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Levofloxacin" "Table 2A" "5ug" 21 16 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Levofloxacin" "Table 2A" 0.5 2 FALSE "CLSI 2020" "MIC" "Abiotrophia" 3 "Levofloxacin" "M45 Table 1" 2 8 FALSE -"CLSI 2020" "DISK" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" "5μg" 17 13 FALSE +"CLSI 2020" "DISK" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" "5ug" 17 13 FALSE "CLSI 2020" "MIC" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" 2 8 FALSE "CLSI 2020" "MIC" "Aerococcus" 3 "Levofloxacin" "M45 Table 2" 2 8 FALSE -"CLSI 2020" "DISK" "Aeromonas" 3 "Levofloxacin" "M45 Table 2" "5μg" 17 13 FALSE +"CLSI 2020" "DISK" "Aeromonas" 3 "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE "CLSI 2020" "MIC" "Aeromonas" 3 "Levofloxacin" "M45 Table 3" 2 4 FALSE "CLSI 2020" "MIC" "Aggregatibacter" 3 "Levofloxacin" "M45 Table 9" 2 8 FALSE "CLSI 2020" "MIC" "Bacillus" 3 "Levofloxacin" "M45 Table 4" 2 8 FALSE @@ -9598,100 +9598,100 @@ "CLSI 2020" "MIC" "Burkholderia cepacia" 2 "Levofloxacin" "Table 2B-3" 2 8 FALSE "CLSI 2020" "MIC" "Cardiobacterium" 3 "Levofloxacin" "M45 Table 9" 2 8 FALSE "CLSI 2020" "MIC" "Eikenella corrodens" 2 "Levofloxacin" "M45 Table 9" 2 8 FALSE -"CLSI 2020" "DISK" "Enterococcus" 3 "Levofloxacin" "Table 2D" "5μg" 17 13 FALSE +"CLSI 2020" "DISK" "Enterococcus" 3 "Levofloxacin" "Table 2D" "5ug" 17 13 FALSE "CLSI 2020" "MIC" "Enterococcus" 3 "Levofloxacin" "Table 2D" 2 8 FALSE "CLSI 2020" "MIC" "Francisella tularensis tularensis" 1 "Levofloxacin" "M45 Table 21" 0.5 2048 FALSE "CLSI 2020" "MIC" "Gemella" 3 "Levofloxacin" "M45 Table 8" 2 8 FALSE "CLSI 2020" "MIC" "(unknown Gram-negatives)" 2 "Levofloxacin" "Table 2B-5" 2 8 FALSE "CLSI 2020" "MIC" "Granulicatella" 3 "Levofloxacin" "M45 Table 1" 2 8 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Levofloxacin" "Table 2E" "5μg" 17 6 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Levofloxacin" "Table 2E" "5ug" 17 6 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Levofloxacin" "Table 2E" 2 2048 FALSE "CLSI 2020" "MIC" "Kingella" 3 "Levofloxacin" "M45 Table 9" 2 8 FALSE "CLSI 2020" "MIC" "Lactococcus" 3 "Levofloxacin" "M45 Table 12" 2 8 FALSE "CLSI 2020" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" "M45 Table 16" 2 2048 FALSE "CLSI 2020" "MIC" "Neisseria meningitidis" 2 "Levofloxacin" "Table 2I" 0.032 0.12 FALSE "CLSI 2020" "MIC" "Paenibacillus mucilaginosus" 2 "Levofloxacin" "M45 Table 19" 1 4 FALSE -"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" "5μg" 22 14 FALSE +"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" "5ug" 22 14 FALSE "CLSI 2020" "MIC" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" 1 4 FALSE -"CLSI 2020" "DISK" "Pasteurella" 3 "Levofloxacin" "M45 Table 17" "5μg" 28 6 FALSE +"CLSI 2020" "DISK" "Pasteurella" 3 "Levofloxacin" "M45 Table 17" "5ug" 28 6 FALSE "CLSI 2020" "MIC" "Pasteurella" 3 "Levofloxacin" "M45 Table 17" 0.064 2048 FALSE "CLSI 2020" "MIC" "Extraintestinal" "Salmonella" 3 "Levofloxacin" "Table 2A" 0.125 2 FALSE -"CLSI 2020" "DISK" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" "75μg" 17 13 FALSE +"CLSI 2020" "DISK" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" "75ug" 17 13 FALSE "CLSI 2020" "MIC" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" 2 8 FALSE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Levofloxacin" "Table 2C" "10μg" 19 15 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Levofloxacin" "Table 2C" "10ug" 19 15 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Levofloxacin" "Table 2C" 1 4 FALSE -"CLSI 2020" "DISK" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" "5μg" 17 13 FALSE +"CLSI 2020" "DISK" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" "5ug" 17 13 FALSE "CLSI 2020" "MIC" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" 2 8 FALSE -"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" "5μg" 17 13 FALSE +"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" "5ug" 17 13 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" 2 8 FALSE -"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" "5μg" 17 13 FALSE +"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" "5ug" 17 13 FALSE "CLSI 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" 2 8 FALSE -"CLSI 2020" "DISK" "Vibrio" 3 "Levofloxacin" "M45 Table 20" "5μg" 17 13 FALSE +"CLSI 2020" "DISK" "Vibrio" 3 "Levofloxacin" "M45 Table 20" "5ug" 17 13 FALSE "CLSI 2020" "MIC" "Vibrio" 3 "Levofloxacin" "M45 Table 20" 2 8 FALSE "CLSI 2020" "MIC" "Yersinia pestis" 2 "Levofloxacin" "M45 Table 21" 0.25 2048 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5μg" 21 16 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5μg" 0.5 2 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefamandole" "Table 2A" "30μg" 18 14 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 21 16 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 0.5 2 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Cefamandole" "Table 2A" "30ug" 18 14 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Cefamandole" "Table 2A" 8 32 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Cefamandole" "Table 2E" 4 16 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Cefamandole" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Cefamandole" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Marbofloxacin" "Generic rules" "5μg" 20 14 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Marbofloxacin" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2020" "DISK" "Urine" "Escherichia coli" 2 "Mecillinam" "Table 2A" "10μg" 15 11 TRUE +"CLSI 2020" "DISK" "(unknown name)" 6 "Cefamandole" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Cefamandole" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Marbofloxacin" "Generic rules" "5ug" 20 14 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Marbofloxacin" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2020" "DISK" "Urine" "Escherichia coli" 2 "Mecillinam" "Table 2A" "10ug" 15 11 TRUE "CLSI 2020" "MIC" "Urine" "Escherichia coli" 2 "Mecillinam" "Table 2A" 8 32 TRUE -"CLSI 2020" "DISK" "(unknown name)" 6 "Mecillinam" "Generic rules" "10μg" 15 11 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Mecillinam" "Generic rules" "10μg" 8 32 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Meropenem" "Table 2A" "10μg" 23 19 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 15 11 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 8 32 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Meropenem" "Table 2A" "10ug" 23 19 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Meropenem" "Table 2A" 1 4 FALSE "CLSI 2020" "MIC" "Abiotrophia" 3 "Meropenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2020" "DISK" "Acinetobacter" 3 "Meropenem" "Table 2B-2" "10μg" 18 14 FALSE +"CLSI 2020" "DISK" "Acinetobacter" 3 "Meropenem" "Table 2B-2" "10ug" 18 14 FALSE "CLSI 2020" "MIC" "Acinetobacter" 3 "Meropenem" "Table 2B-2" 2 8 FALSE "CLSI 2020" "MIC" "Aerococcus" 3 "Meropenem" "M45 Table 2" 0.5 2048 FALSE -"CLSI 2020" "DISK" "Aeromonas" 3 "Meropenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2020" "DISK" "Aeromonas" 3 "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2020" "MIC" "Aeromonas" 3 "Meropenem" "M45 Table 3" 1 4 FALSE "CLSI 2020" "MIC" "Aggregatibacter" 3 "Meropenem" "M45 Table 9" 4 16 FALSE "CLSI 2020" "MIC" "Bacillus" 3 "Meropenem" "M45 Table 4" 4 16 FALSE -"CLSI 2020" "DISK" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" "10μg" 20 15 FALSE +"CLSI 2020" "DISK" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" "10ug" 20 15 FALSE "CLSI 2020" "MIC" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" 4 16 FALSE "CLSI 2020" "MIC" "Cardiobacterium" 3 "Meropenem" "M45 Table 9" 0.5 2 FALSE "CLSI 2020" "MIC" "Eikenella corrodens" 2 "Meropenem" "M45 Table 9" 0.5 2 FALSE "CLSI 2020" "MIC" "Gemella" 3 "Meropenem" "M45 Table 8" 0.5 2 FALSE "CLSI 2020" "MIC" "(unknown Gram-negatives)" 2 "Meropenem" "Table 2B-5" 4 16 FALSE "CLSI 2020" "MIC" "Granulicatella" 3 "Meropenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Meropenem" "Table 2E" "10μg" 20 6 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Meropenem" "Table 2E" "10ug" 20 6 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Meropenem" "Table 2E" 0.5 2048 FALSE "CLSI 2020" "MIC" "Kingella" 3 "Meropenem" "M45 Table 9" 0.5 2 FALSE "CLSI 2020" "MIC" "Lactobacillus" 3 "Meropenem" "M45 Table 11" 1 4 FALSE "CLSI 2020" "MIC" "Lactococcus" 3 "Meropenem" "M45 Table 12" 0.25 1 FALSE "CLSI 2020" "MIC" "Listeria monocytogenes" 2 "Meropenem" "M45 Table 14" 0.25 2048 FALSE -"CLSI 2020" "DISK" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" "10μg" 30 6 FALSE +"CLSI 2020" "DISK" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" "10ug" 30 6 FALSE "CLSI 2020" "MIC" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" 0.25 2048 FALSE -"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2020" "MIC" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" 2 8 FALSE "CLSI 2020" "MIC" "Streptococcus" 3 "Meropenem" "Table 2H-1" 0.5 2048 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Meropenem" "Table 2G" 0.25 1 FALSE "CLSI 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "Table 2H-2" 0.5 2048 FALSE -"CLSI 2020" "DISK" "Vibrio" 3 "Meropenem" "M45 Table 20" "10μg" 23 19 FALSE +"CLSI 2020" "DISK" "Vibrio" 3 "Meropenem" "M45 Table 20" "10ug" 23 19 FALSE "CLSI 2020" "MIC" "Vibrio" 3 "Meropenem" "M45 Table 20" 1 4 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Meropenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Meropenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Methicillin" "Generic rules" "5μg" 14 9 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Methicillin" "Generic rules" "5μg" 8 16 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Meropenem/vaborbactam" "Table 2A" "20μg/10μg" 18 14 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Methicillin" "Generic rules" "5ug" 14 9 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Methicillin" "Generic rules" "5ug" 8 16 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Meropenem/vaborbactam" "Table 2A" "20ug/10ug" 18 14 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Meropenem/vaborbactam" "Table 2A" 4 16 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Meropenem/vaborbactam" "Generic rules" "20/10μg" 18 14 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Meropenem/vaborbactam" "Generic rules" "20/10μg" 4 16 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Moxifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Meropenem/vaborbactam" "Generic rules" "20/10ug" 18 14 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Meropenem/vaborbactam" "Generic rules" "20/10ug" 4 16 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Moxifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Moxifloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2020" "DISK" "Pasteurella" 3 "Moxifloxacin" "M45 Table 17" "5μg" 28 6 FALSE +"CLSI 2020" "DISK" "Pasteurella" 3 "Moxifloxacin" "M45 Table 17" "5ug" 28 6 FALSE "CLSI 2020" "MIC" "Pasteurella" 3 "Moxifloxacin" "M45 Table 17" 0.064 2048 FALSE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" "5μg" 24 20 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" "5ug" 24 20 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" "5μg" 18 14 FALSE +"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" "5ug" 18 14 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" 1 4 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5μg" 24 20 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5μg" 0.5 2 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 24 20 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 0.5 2 FALSE "CLSI 2020" "DISK" "Candida" 3 "Micafungin" "Table 1" 30 27 FALSE "CLSI 2020" "MIC" "Candida" 3 "Micafungin" "Table 1" 0.064 0.25 FALSE "CLSI 2020" "DISK" "Candida albicans" 2 "Micafungin" "Table 1" 22 19 FALSE @@ -9706,79 +9706,79 @@ "CLSI 2020" "MIC" "Meyerozyma guilliermondii" 2 "Micafungin" "Table 1" 2 8 FALSE "CLSI 2020" "DISK" "Pichia" 3 "Micafungin" "Table 1" 22 19 FALSE "CLSI 2020" "MIC" "Pichia" 3 "Micafungin" "Table 1" 0.25 1 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Minocycline" "Table 2A" "30μg" 16 12 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Minocycline" "Table 2A" "30ug" 16 12 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Minocycline" "Table 2A" 4 16 FALSE -"CLSI 2020" "DISK" "Acinetobacter" 3 "Minocycline" "Table 2B-2" "30μg" 16 12 FALSE +"CLSI 2020" "DISK" "Acinetobacter" 3 "Minocycline" "Table 2B-2" "30ug" 16 12 FALSE "CLSI 2020" "MIC" "Acinetobacter" 3 "Minocycline" "Table 2B-2" 4 16 FALSE -"CLSI 2020" "DISK" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" "30μg" 19 14 FALSE +"CLSI 2020" "DISK" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" "30ug" 19 14 FALSE "CLSI 2020" "MIC" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" 4 16 FALSE -"CLSI 2020" "DISK" "Enterococcus" 3 "Minocycline" "Table 2D" "30μg" 19 14 FALSE +"CLSI 2020" "DISK" "Enterococcus" 3 "Minocycline" "Table 2D" "30ug" 19 14 FALSE "CLSI 2020" "MIC" "Enterococcus" 3 "Minocycline" "Table 2D" 4 16 FALSE "CLSI 2020" "MIC" "(unknown Gram-negatives)" 2 "Minocycline" "Table 2B-5" 4 16 FALSE "CLSI 2020" "MIC" "Leuconostoc" 3 "Minocycline" "M45 Table 13" 4 16 FALSE -"CLSI 2020" "DISK" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" "30μg" 26 6 FALSE +"CLSI 2020" "DISK" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" "30ug" 26 6 FALSE "CLSI 2020" "MIC" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" 2 2048 FALSE -"CLSI 2020" "DISK" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" "30μg" 19 14 FALSE +"CLSI 2020" "DISK" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" "30ug" 19 14 FALSE "CLSI 2020" "MIC" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" 4 16 FALSE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Minocycline" "Table 2C" "30μg" 19 14 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Minocycline" "Table 2C" "30ug" 19 14 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Minocycline" "Table 2C" 4 16 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Minocycline" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Minocycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Nafcillin" "Generic rules" "1μg" 13 10 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Nafcillin" "Generic rules" "1μg" 2 4 FALSE -"CLSI 2020" "DISK" "Urine" "Enterobacterales" 5 "Nalidixic acid" "Table 2A" "30μg" 19 13 TRUE +"CLSI 2020" "DISK" "(unknown name)" 6 "Minocycline" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Minocycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Nafcillin" "Generic rules" "1ug" 13 10 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Nafcillin" "Generic rules" "1ug" 2 4 FALSE +"CLSI 2020" "DISK" "Urine" "Enterobacterales" 5 "Nalidixic acid" "Table 2A" "30ug" 19 13 TRUE "CLSI 2020" "MIC" "Urine" "Enterobacterales" 5 "Nalidixic acid" "Table 2A" 16 32 TRUE -"CLSI 2020" "DISK" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" "30μg" 26 25 FALSE +"CLSI 2020" "DISK" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" "30ug" 26 25 FALSE "CLSI 2020" "MIC" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" 4 8 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30μg" 19 13 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30μg" 16 32 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Netilmicin" "Table 2A" "30μg" 15 12 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 19 13 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 16 32 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Netilmicin" "Table 2A" "30ug" 15 12 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Netilmicin" "Table 2A" 8 32 FALSE "CLSI 2020" "MIC" "Acinetobacter" 3 "Netilmicin" "Table 2B-2" 8 32 FALSE "CLSI 2020" "MIC" "(unknown Gram-negatives)" 2 "Netilmicin" "Table 2B-5" 8 32 FALSE -"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" "30μg" 15 12 FALSE +"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" "30ug" 15 12 FALSE "CLSI 2020" "MIC" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" 8 32 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Netilmicin" "Generic rules" "30μg" 15 12 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Netilmicin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Nitrofurantoin" "Table 2A" "300μg" 17 14 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Netilmicin" "Generic rules" "30ug" 15 12 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Netilmicin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Nitrofurantoin" "Table 2A" "300ug" 17 14 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Nitrofurantoin" "Table 2A" 32 128 FALSE -"CLSI 2020" "DISK" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" "300μg" 17 14 FALSE +"CLSI 2020" "DISK" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" "300ug" 17 14 FALSE "CLSI 2020" "MIC" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" 32 128 FALSE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" "300μg" 17 14 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" "300ug" 17 14 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" 32 128 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "300μg" 17 14 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100μg" 32 128 FALSE -"CLSI 2020" "DISK" "Urine" "Enterobacterales" 5 "Norfloxacin" "Table 2A" "10μg" 17 12 TRUE +"CLSI 2020" "DISK" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "300ug" 17 14 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100ug" 32 128 FALSE +"CLSI 2020" "DISK" "Urine" "Enterobacterales" 5 "Norfloxacin" "Table 2A" "10ug" 17 12 TRUE "CLSI 2020" "MIC" "Urine" "Enterobacterales" 5 "Norfloxacin" "Table 2A" 4 16 TRUE -"CLSI 2020" "DISK" "Urine" "Enterococcus" 3 "Norfloxacin" "Table 2D" "10μg" 17 12 TRUE +"CLSI 2020" "DISK" "Urine" "Enterococcus" 3 "Norfloxacin" "Table 2D" "10ug" 17 12 TRUE "CLSI 2020" "MIC" "Urine" "Enterococcus" 3 "Norfloxacin" "Table 2D" 4 16 TRUE "CLSI 2020" "MIC" "Urine" "(unknown Gram-negatives)" 2 "Norfloxacin" "Table 2B-5" 4 16 TRUE -"CLSI 2020" "DISK" "Urine" "Pseudomonas aeruginosa" 2 "Norfloxacin" "Table 2B-1" "10μg" 17 12 TRUE +"CLSI 2020" "DISK" "Urine" "Pseudomonas aeruginosa" 2 "Norfloxacin" "Table 2B-1" "10ug" 17 12 TRUE "CLSI 2020" "MIC" "Urine" "Pseudomonas aeruginosa" 2 "Norfloxacin" "Table 2B-1" 4 16 TRUE -"CLSI 2020" "DISK" "Urine" "Staphylococcus" 3 "Norfloxacin" "Table 2C" "10μg" 17 12 TRUE +"CLSI 2020" "DISK" "Urine" "Staphylococcus" 3 "Norfloxacin" "Table 2C" "10ug" 17 12 TRUE "CLSI 2020" "MIC" "Urine" "Staphylococcus" 3 "Norfloxacin" "Table 2C" 4 16 TRUE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Ofloxacin" "Table 2A" "5μg" 16 12 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Ofloxacin" "Table 2A" "5ug" 16 12 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Ofloxacin" "Table 2A" 2 8 FALSE "CLSI 2020" "MIC" "(unknown Gram-negatives)" 2 "Ofloxacin" "Table 2B-5" 2 8 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Ofloxacin" "Table 2E" "5μg" 16 6 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Ofloxacin" "Table 2E" "5ug" 16 6 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Ofloxacin" "Table 2E" 2 2048 FALSE -"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" "5μg" 16 12 FALSE +"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" "5ug" 16 12 FALSE "CLSI 2020" "MIC" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" 2 8 FALSE "CLSI 2020" "MIC" "Extraintestinal" "Salmonella" 3 "Ofloxacin" "Table 2A" 0.125 2 FALSE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Ofloxacin" "Table 2C" "5μg" 18 14 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Ofloxacin" "Table 2C" "5ug" 18 14 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Ofloxacin" "Table 2C" 1 4 FALSE -"CLSI 2020" "DISK" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" "5μg" 16 12 FALSE +"CLSI 2020" "DISK" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" "5ug" 16 12 FALSE "CLSI 2020" "MIC" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" 2 8 FALSE -"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" "5μg" 16 12 FALSE +"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" "5ug" 16 12 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" 2 8 FALSE -"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" "5μg" 16 12 FALSE +"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" "5ug" 16 12 FALSE "CLSI 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" 2 8 FALSE -"CLSI 2020" "DISK" "Vibrio" 3 "Ofloxacin" "M45 Table 20" "5μg" 16 12 FALSE +"CLSI 2020" "DISK" "Vibrio" 3 "Ofloxacin" "M45 Table 20" "5ug" 16 12 FALSE "CLSI 2020" "MIC" "Vibrio" 3 "Ofloxacin" "M45 Table 20" 2 8 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5μg" 16 12 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10μg" 23 17 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10μg" 1 8 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 16 12 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10ug" 23 17 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10ug" 1 8 FALSE "CLSI 2020" "MIC" "Enterococcus" 3 "Oritavancin" "Table 2D" 0.125 2048 FALSE "CLSI 2020" "MIC" "Staphylococcus aureus aureus" 1 "Oritavancin" "Table 2C" 0.125 2048 FALSE "CLSI 2020" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Oritavancin" "Table 2C" 0.125 2048 FALSE @@ -9787,16 +9787,16 @@ "CLSI 2020" "MIC" "Staphylococcus" 3 "Oxacillin" "Table 2C" 0.25 0.5 FALSE "CLSI 2020" "MIC" "Staphylococcus aureus aureus" 1 "Oxacillin" "Table 2C" 2 4 FALSE "CLSI 2020" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Oxacillin" "Table 2C" 2 4 FALSE -"CLSI 2020" "DISK" "Staphylococcus epidermidis" 2 "Oxacillin" "Table 2C" "1μg" 18 17 FALSE +"CLSI 2020" "DISK" "Staphylococcus epidermidis" 2 "Oxacillin" "Table 2C" "1ug" 18 17 FALSE "CLSI 2020" "MIC" "Staphylococcus epidermidis" 2 "Oxacillin" "Table 2C" 0.25 0.5 FALSE "CLSI 2020" "MIC" "Staphylococcus lugdunensis" 2 "Oxacillin" "Table 2C" 2 4 FALSE -"CLSI 2020" "DISK" "Staphylococcus pseudintermedius" 2 "Oxacillin" "Table 2C" "1μg" 18 17 FALSE +"CLSI 2020" "DISK" "Staphylococcus pseudintermedius" 2 "Oxacillin" "Table 2C" "1ug" 18 17 FALSE "CLSI 2020" "MIC" "Staphylococcus pseudintermedius" 2 "Oxacillin" "Table 2C" 0.25 0.5 FALSE -"CLSI 2020" "DISK" "Staphylococcus schleiferi" 2 "Oxacillin" "Table 2C" "1μg" 18 17 FALSE +"CLSI 2020" "DISK" "Staphylococcus schleiferi" 2 "Oxacillin" "Table 2C" "1ug" 18 17 FALSE "CLSI 2020" "MIC" "Staphylococcus schleiferi" 2 "Oxacillin" "Table 2C" 0.25 0.5 FALSE -"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "Table 2G" "1μg" 20 6 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Oxacillin" "Generic rules" "1μg" 0.25 0.5 FALSE -"CLSI 2020" "DISK" "Salmonella" 3 "Pefloxacin" "Table 2A" "5μg" 24 23 FALSE +"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "Table 2G" "1ug" 20 6 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Oxacillin" "Generic rules" "1ug" 0.25 0.5 FALSE +"CLSI 2020" "DISK" "Salmonella" 3 "Pefloxacin" "Table 2A" "5ug" 24 23 FALSE "CLSI 2020" "MIC" "Abiotrophia" 3 "Benzylpenicillin" "M45 Table 1" 0.125 4 FALSE "CLSI 2020" "MIC" "Aerococcus" 3 "Benzylpenicillin" "M45 Table 2" 0.125 4 FALSE "CLSI 2020" "MIC" "Aggregatibacter" 3 "Benzylpenicillin" "M45 Table 9" 1 4 FALSE @@ -9821,7 +9821,7 @@ "CLSI 2020" "MIC" "Paenibacillus mucilaginosus" 2 "Benzylpenicillin" "M45 Table 19" 0.125 4 FALSE "CLSI 2020" "DISK" "Pasteurella" 3 "Benzylpenicillin" "M45 Table 17" "10 Units" 25 6 FALSE "CLSI 2020" "MIC" "Pasteurella" 3 "Benzylpenicillin" "M45 Table 17" 0.5 2048 FALSE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" "10μg" 29 28 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" "10ug" 29 28 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" 0.125 0.25 FALSE "CLSI 2020" "DISK" "Streptococcus" 3 "Benzylpenicillin" "Table 2H-1" "10units" 24 6 FALSE "CLSI 2020" "MIC" "Streptococcus" 3 "Benzylpenicillin" "Table 2H-1" 0.125 2048 FALSE @@ -9832,179 +9832,179 @@ "CLSI 2020" "DISK" "(unknown name)" 6 "Benzylpenicillin" "Generic rules" "10units" 29 28 FALSE "CLSI 2020" "MIC" "(unknown name)" 6 "Benzylpenicillin" "Generic rules" "10units" 0.125 0.25 FALSE "CLSI 2020" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Phenoxymethylpenicillin" "Table 2G" 0.064 2 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Piperacillin" "Table 2A" "100μg" 21 17 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Piperacillin" "Table 2A" "100ug" 21 17 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Piperacillin" "Table 2A" 16 128 FALSE -"CLSI 2020" "DISK" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" "100μg" 21 17 FALSE +"CLSI 2020" "DISK" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" "100ug" 21 17 FALSE "CLSI 2020" "MIC" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" 16 128 FALSE "CLSI 2020" "MIC" "(unknown Gram-negatives)" 2 "Piperacillin" "Table 2B-5" 16 128 FALSE -"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" "100μg" 21 14 FALSE +"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" "100ug" 21 14 FALSE "CLSI 2020" "MIC" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" 16 128 FALSE -"CLSI 2020" "DISK" "Vibrio" 3 "Piperacillin" "M45 Table 20" "100μg" 21 17 FALSE +"CLSI 2020" "DISK" "Vibrio" 3 "Piperacillin" "M45 Table 20" "100ug" 21 17 FALSE "CLSI 2020" "MIC" "Vibrio" 3 "Piperacillin" "M45 Table 20" 16 128 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Piperacillin" "Generic rules" "100μg" 21 17 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Piperacillin" "Generic rules" "100μg" 16 128 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Piperacillin" "Generic rules" "100ug" 21 17 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Piperacillin" "Generic rules" "100ug" 16 128 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Polymyxin B" "Table 2A" 0.001 4 FALSE "CLSI 2020" "MIC" "Acinetobacter" 3 "Polymyxin B" "Table 2B-2" 0.001 4 FALSE "CLSI 2020" "MIC" "Pseudomonas aeruginosa" 2 "Polymyxin B" "Table 2B-1" 0.001 8 FALSE "CLSI 2020" "DISK" "(unknown name)" 6 "Polymyxin B" "Generic rules" "300units" 12 11 FALSE "CLSI 2020" "MIC" "(unknown name)" 6 "Polymyxin B" "Generic rules" "300units" 2 8 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30μg" 18 14 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30μg" 1 4 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2μg" 13 12 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2μg" 2 4 FALSE -"CLSI 2020" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" "15μg" 19 15 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30ug" 18 14 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30ug" 1 4 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2ug" 13 12 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2ug" 2 4 FALSE +"CLSI 2020" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" "15ug" 19 15 FALSE "CLSI 2020" "MIC" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" 1 4 FALSE -"CLSI 2020" "DISK" "Staphylococcus aureus aureus" 1 "Quinupristin/dalfopristin" "Table 2C" "15μg" 19 15 FALSE +"CLSI 2020" "DISK" "Staphylococcus aureus aureus" 1 "Quinupristin/dalfopristin" "Table 2C" "15ug" 19 15 FALSE "CLSI 2020" "MIC" "Staphylococcus aureus aureus" 1 "Quinupristin/dalfopristin" "Table 2C" 1 4 FALSE -"CLSI 2020" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Quinupristin/dalfopristin" "Table 2C" "15μg" 19 15 FALSE +"CLSI 2020" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Quinupristin/dalfopristin" "Table 2C" "15ug" 19 15 FALSE "CLSI 2020" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Quinupristin/dalfopristin" "Table 2C" 1 4 FALSE -"CLSI 2020" "DISK" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" "15μg" 19 15 FALSE +"CLSI 2020" "DISK" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" "15ug" 19 15 FALSE "CLSI 2020" "MIC" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" 1 4 FALSE -"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" "15μg" 19 15 FALSE +"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" "15ug" 19 15 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" 1 4 FALSE -"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" "15μg" 19 15 FALSE +"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" "15ug" 19 15 FALSE "CLSI 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" 1 4 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15μg" 19 15 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15μg" 1 4 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15ug" 19 15 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15ug" 1 4 FALSE "CLSI 2020" "MIC" "Aggregatibacter" 3 "Rifampicin" "M45 Table 9" 1 4 FALSE "CLSI 2020" "MIC" "Bacillus" 3 "Rifampicin" "M45 Table 4" 1 4 FALSE "CLSI 2020" "MIC" "Cardiobacterium" 3 "Rifampicin" "M45 Table 9" 1 4 FALSE "CLSI 2020" "MIC" "Eikenella corrodens" 2 "Rifampicin" "M45 Table 9" 1 4 FALSE -"CLSI 2020" "DISK" "Enterococcus" 3 "Rifampicin" "Table 2D" "5μg" 20 16 FALSE +"CLSI 2020" "DISK" "Enterococcus" 3 "Rifampicin" "Table 2D" "5ug" 20 16 FALSE "CLSI 2020" "MIC" "Enterococcus" 3 "Rifampicin" "Table 2D" 1 4 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Rifampicin" "Table 2E" "5μg" 20 16 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Rifampicin" "Table 2E" "5ug" 20 16 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Rifampicin" "Table 2E" 1 4 FALSE "CLSI 2020" "MIC" "Kingella" 3 "Rifampicin" "M45 Table 9" 1 4 FALSE "CLSI 2020" "MIC" "Moraxella catarrhalis" 2 "Rifampicin" "M45 Table 16" 1 4 FALSE -"CLSI 2020" "DISK" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" "5μg" 25 19 FALSE +"CLSI 2020" "DISK" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" "5ug" 25 19 FALSE "CLSI 2020" "MIC" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" 0.5 2 FALSE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Rifampicin" "Table 2C" "5μg" 20 16 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Rifampicin" "Table 2C" "5ug" 20 16 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Rifampicin" "Table 2C" 1 4 FALSE -"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" "5μg" 19 16 FALSE +"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" "5ug" 19 16 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" 1 4 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Rifampicin" "Generic rules" "5μg" 20 16 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Rifampicin" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Ampicillin/sulbactam" "Table 2A" "10μg/10μg" 15 11 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Rifampicin" "Generic rules" "5ug" 20 16 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Rifampicin" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Ampicillin/sulbactam" "Table 2A" "10ug/10ug" 15 11 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Ampicillin/sulbactam" "Table 2A" 16 32 FALSE -"CLSI 2020" "DISK" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" "10μg" 15 11 FALSE +"CLSI 2020" "DISK" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" "10ug" 15 11 FALSE "CLSI 2020" "MIC" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" 8 32 FALSE -"CLSI 2020" "DISK" "Aeromonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10μg" 15 11 FALSE +"CLSI 2020" "DISK" "Aeromonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE "CLSI 2020" "MIC" "Aggregatibacter" 3 "Ampicillin/sulbactam" "M45 Table 9" 2 4 FALSE "CLSI 2020" "MIC" "Cardiobacterium" 3 "Ampicillin/sulbactam" "M45 Table 9" 2 4 FALSE "CLSI 2020" "MIC" "Eikenella corrodens" 2 "Ampicillin/sulbactam" "M45 Table 9" 2 4 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" "10/10μg" 20 19 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" "10/10ug" 20 19 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" 2 4 FALSE "CLSI 2020" "MIC" "Kingella" 3 "Ampicillin/sulbactam" "M45 Table 9" 2 4 FALSE -"CLSI 2020" "DISK" "Vibrio" 3 "Ampicillin/sulbactam" "M45 Table 20" "10μg" 15 11 FALSE +"CLSI 2020" "DISK" "Vibrio" 3 "Ampicillin/sulbactam" "M45 Table 20" "10ug" 15 11 FALSE "CLSI 2020" "MIC" "Vibrio" 3 "Ampicillin/sulbactam" "M45 Table 20" 8 32 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10μg" 15 11 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10μg" 8 32 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300μg" 256 512 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Sulfamethoxazole" "Table 2A" "200 – 300μg" 17 12 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10ug" 15 11 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10ug" 8 32 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300ug" 256 512 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Sulfamethoxazole" "Table 2A" "200 - 300ug" 17 12 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Sulfamethoxazole" "Table 2A" 256 512 FALSE "CLSI 2020" "MIC" "(unknown Gram-negatives)" 2 "Sulfamethoxazole" "Table 2B-5" 256 512 FALSE "CLSI 2020" "MIC" "Neisseria meningitidis" 2 "Sulfamethoxazole" "Table 2I" 2 8 FALSE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" "200μg" 17 12 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" "200ug" 17 12 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" 256 512 FALSE -"CLSI 2020" "DISK" "Vibrio" 3 "Sulfamethoxazole" "M45 Table 20" "200μg" 17 12 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300μg" 256 512 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Sulfisoxazole" "Table 2A" "200 – 300μg" 17 12 FALSE +"CLSI 2020" "DISK" "Vibrio" 3 "Sulfamethoxazole" "M45 Table 20" "200ug" 17 12 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300ug" 256 512 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Sulfisoxazole" "Table 2A" "200 - 300ug" 17 12 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Sulfisoxazole" "Table 2A" 256 512 FALSE "CLSI 2020" "MIC" "(unknown Gram-negatives)" 2 "Sulfisoxazole" "Table 2B-5" 256 512 FALSE "CLSI 2020" "MIC" "Neisseria meningitidis" 2 "Sulfisoxazole" "Table 2I" 2 8 FALSE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" "200μg" 17 12 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" "200ug" 17 12 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" 256 512 FALSE -"CLSI 2020" "DISK" "Vibrio" 3 "Sulfisoxazole" "M45 Table 20" "200μg" 17 12 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300μg" 256 512 FALSE -"CLSI 2020" "DISK" "Histophilus somni" 2 "Spectinomycin" "Vet Table" "100μg" 14 10 FALSE -"CLSI 2020" "DISK" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" "100μg" 18 14 FALSE +"CLSI 2020" "DISK" "Vibrio" 3 "Sulfisoxazole" "M45 Table 20" "200ug" 17 12 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300ug" 256 512 FALSE +"CLSI 2020" "DISK" "Histophilus somni" 2 "Spectinomycin" "Vet Table" "100ug" 14 10 FALSE +"CLSI 2020" "DISK" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" "100ug" 18 14 FALSE "CLSI 2020" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" 32 128 FALSE -"CLSI 2020" "DISK" "Providencia heimbachae" 2 "Spectinomycin" "100μg" 14 10 FALSE -"CLSI 2020" "DISK" "Pasteurella multocida multocida" 1 "Spectinomycin" "100μg" 14 10 FALSE +"CLSI 2020" "DISK" "Providencia heimbachae" 2 "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2020" "DISK" "Pasteurella multocida multocida" 1 "Spectinomycin" "100ug" 14 10 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Sparfloxacin" "Table 2E" 0.25 2048 FALSE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" "5μg" 19 15 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" "5ug" 19 15 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" "5μg" 19 15 FALSE +"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" "5ug" 19 15 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" 0.5 2 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5μg" 0.5 2 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Sulfonamide" "Table 2A" "200 – 300μg" 17 12 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5ug" 0.5 2 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Sulfonamide" "Table 2A" "200 - 300ug" 17 12 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Sulfonamide" "Table 2A" 256 512 FALSE "CLSI 2020" "MIC" "(unknown Gram-negatives)" 2 "Sulfonamide" "Table 2B-5" 256 512 FALSE "CLSI 2020" "MIC" "Neisseria meningitidis" 2 "Sulfonamide" "Table 2I" 2 8 FALSE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Sulfonamide" "Table 2C" "200μg" 17 12 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Sulfonamide" "Table 2C" "200ug" 17 12 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Sulfonamide" "Table 2C" 256 512 FALSE -"CLSI 2020" "DISK" "Vibrio" 3 "Sulfonamide" "M45 Table 20" "200μg" 17 12 FALSE +"CLSI 2020" "DISK" "Vibrio" 3 "Sulfonamide" "M45 Table 20" "200ug" 17 12 FALSE "CLSI 2020" "MIC" "Vibrio" 3 "Sulfonamide" "M45 Table 20" 256 512 FALSE -"CLSI 2020" "DISK" "Enterococcus" 3 "Streptomycin-high" "Table 2D" "300μg" 10 6 FALSE +"CLSI 2020" "DISK" "Enterococcus" 3 "Streptomycin-high" "Table 2D" "300ug" 10 6 FALSE "CLSI 2020" "MIC" "Enterococcus" 3 "Streptomycin-high" "Table 2D" 1024 2048 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300μg" 10 6 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300μg" 1024 2048 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Streptoduocin" "Table 2A" "10μg" 15 11 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300ug" 10 6 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300ug" 1024 2048 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Streptoduocin" "Table 2A" "10ug" 15 11 FALSE "CLSI 2020" "MIC" "Brucella" 3 "Streptoduocin" "M45 Table 21" 8 2048 FALSE "CLSI 2020" "MIC" "Enterococcus" 3 "Streptoduocin" "Table 2D" 1024 2048 FALSE "CLSI 2020" "MIC" "Francisella tularensis tularensis" 1 "Streptoduocin" "M45 Table 21" 8 2048 FALSE "CLSI 2020" "MIC" "Yersinia pestis" 2 "Streptoduocin" "M45 Table 21" 4 16 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Streptomycin" "Generic rules" "10μg" 15 11 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Table 2A" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Streptomycin" "Generic rules" "10ug" 15 11 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Table 2A" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Table 2A" 2 4 FALSE -"CLSI 2020" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2020" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2020" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" 2 4 FALSE "CLSI 2020" "MIC" "Aerococcus" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE -"CLSI 2020" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2020" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2020" "MIC" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 3" 2 4 FALSE "CLSI 2020" "MIC" "Aggregatibacter" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 9" 0.5 4 FALSE "CLSI 2020" "MIC" "Bacillus" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 4" 2 4 FALSE "CLSI 2020" "MIC" "Brucella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 21" 2 2048 FALSE -"CLSI 2020" "DISK" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2020" "DISK" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2020" "MIC" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" 2 4 FALSE "CLSI 2020" "MIC" "Burkholderia pseudomallei" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 21" 2 4 FALSE "CLSI 2020" "MIC" "Cardiobacterium" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 9" 0.5 4 FALSE "CLSI 2020" "MIC" "Eikenella corrodens" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 9" 0.5 4 FALSE "CLSI 2020" "MIC" "(unknown Gram-negatives)" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-5" 2 4 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" "1.25μg/23.75μg" 15 10 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" "1.25ug/23.75ug" 15 10 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" 0.5 4 FALSE "CLSI 2020" "MIC" "Kingella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 9" 0.5 4 FALSE "CLSI 2020" "MIC" "Lactococcus" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 12" 2 4 FALSE "CLSI 2020" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 14" 0.5 2048 FALSE -"CLSI 2020" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 16" "1.25μg/23.75μg" 13 10 FALSE +"CLSI 2020" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 16" "1.25ug/23.75ug" 13 10 FALSE "CLSI 2020" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 16" 0.5 4 FALSE -"CLSI 2020" "DISK" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" "1.25μg/23.75μg" 30 25 FALSE +"CLSI 2020" "DISK" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" "1.25ug/23.75ug" 30 25 FALSE "CLSI 2020" "MIC" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" 0.125 0.5 FALSE "CLSI 2020" "MIC" "Paenibacillus mucilaginosus" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 19" 2 4 FALSE -"CLSI 2020" "DISK" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 17" "1.25μg/23.75μg" 24 6 FALSE +"CLSI 2020" "DISK" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 17" "1.25ug/23.75ug" 24 6 FALSE "CLSI 2020" "MIC" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 17" 0.5 2048 FALSE -"CLSI 2020" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" "30μg" 16 10 FALSE +"CLSI 2020" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" "30ug" 16 10 FALSE "CLSI 2020" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" 2 4 FALSE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" 2 4 FALSE -"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" "1.25μg/23.75μg" 19 15 FALSE +"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" "1.25ug/23.75ug" 19 15 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" 0.5 4 FALSE -"CLSI 2020" "DISK" "Vibrio" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 20" "1.25μg" 16 10 FALSE +"CLSI 2020" "DISK" "Vibrio" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 20" "1.25ug" 16 10 FALSE "CLSI 2020" "MIC" "Vibrio" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 20" 2 4 FALSE "CLSI 2020" "MIC" "Yersinia pestis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 21" 2 4 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75μg" 16 10 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75μg" 2 4 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Table 2A" "75μg/10μg" 20 14 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 16 10 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 2 4 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Table 2A" "75ug/10ug" 20 14 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Table 2A" 16 128 FALSE -"CLSI 2020" "DISK" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" "75μg" 20 14 FALSE +"CLSI 2020" "DISK" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" "75ug" 20 14 FALSE "CLSI 2020" "MIC" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" 16 128 FALSE "CLSI 2020" "MIC" "Burkholderia cepacia" 2 "Ticarcillin/clavulanic acid" "Table 2B-3" 16 128 FALSE "CLSI 2020" "MIC" "(unknown Gram-negatives)" 2 "Ticarcillin/clavulanic acid" "Table 2B-5" 16 128 FALSE -"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" "75μg" 24 15 FALSE +"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" "75ug" 24 15 FALSE "CLSI 2020" "MIC" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" 16 128 FALSE "CLSI 2020" "MIC" "Stenotrophomonas maltophilia" 2 "Ticarcillin/clavulanic acid" "Table 2B-4" 16 128 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15μg" 20 14 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15μg" 16 128 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Tetracycline" "Table 2A" "30μg" 15 11 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15ug" 20 14 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15ug" 16 128 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Tetracycline" "Table 2A" "30ug" 15 11 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Tetracycline" "Table 2A" 4 16 FALSE -"CLSI 2020" "DISK" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" "30μg" 15 11 FALSE +"CLSI 2020" "DISK" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" "30ug" 15 11 FALSE "CLSI 2020" "MIC" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" 4 16 FALSE "CLSI 2020" "MIC" "Aerococcus" 3 "Tetracycline" "M45 Table 2" 2 8 FALSE -"CLSI 2020" "DISK" "Aeromonas" 3 "Tetracycline" "M45 Table 2" "30μg" 15 11 FALSE +"CLSI 2020" "DISK" "Aeromonas" 3 "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE "CLSI 2020" "MIC" "Aeromonas" 3 "Tetracycline" "M45 Table 3" 4 16 FALSE "CLSI 2020" "MIC" "Aggregatibacter" 3 "Tetracycline" "M45 Table 9" 2 8 FALSE "CLSI 2020" "MIC" "Bacillus" 3 "Tetracycline" "M45 Table 4" 4 16 FALSE @@ -10015,110 +10015,110 @@ "CLSI 2020" "MIC" "Campylobacter" 3 "Tetracycline" "M45 Table 5" 4 16 FALSE "CLSI 2020" "MIC" "Cardiobacterium" 3 "Tetracycline" "M45 Table 9" 2 8 FALSE "CLSI 2020" "MIC" "Eikenella corrodens" 2 "Tetracycline" "M45 Table 9" 2 8 FALSE -"CLSI 2020" "DISK" "Enterococcus" 3 "Tetracycline" "Table 2D" "30μg" 19 14 FALSE +"CLSI 2020" "DISK" "Enterococcus" 3 "Tetracycline" "Table 2D" "30ug" 19 14 FALSE "CLSI 2020" "MIC" "Enterococcus" 3 "Tetracycline" "Table 2D" 4 16 FALSE "CLSI 2020" "MIC" "Francisella tularensis tularensis" 1 "Tetracycline" "M45 Table 21" 4 2048 FALSE "CLSI 2020" "MIC" "(unknown Gram-negatives)" 2 "Tetracycline" "Table 2B-5" 4 16 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Tetracycline" "Table 2E" "30μg" 29 25 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Tetracycline" "Table 2E" "30ug" 29 25 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Tetracycline" "Table 2E" 2 8 FALSE "CLSI 2020" "MIC" "Kingella" 3 "Tetracycline" "M45 Table 9" 2 8 FALSE "CLSI 2020" "MIC" "Lactococcus" 3 "Tetracycline" "M45 Table 12" 2 8 FALSE -"CLSI 2020" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 16" "30μg" 29 24 FALSE +"CLSI 2020" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 16" "30ug" 29 24 FALSE "CLSI 2020" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 16" 2 8 FALSE -"CLSI 2020" "DISK" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" "30μg" 38 30 FALSE +"CLSI 2020" "DISK" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" "30ug" 38 30 FALSE "CLSI 2020" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" 0.25 2 FALSE -"CLSI 2020" "DISK" "Pasteurella" 3 "Tetracycline" "M45 Table 17" "30μg" 23 6 FALSE +"CLSI 2020" "DISK" "Pasteurella" 3 "Tetracycline" "M45 Table 17" "30ug" 23 6 FALSE "CLSI 2020" "MIC" "Pasteurella" 3 "Tetracycline" "M45 Table 17" 1 2048 FALSE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Tetracycline" "Table 2C" "30μg" 19 14 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Tetracycline" "Table 2C" "30ug" 19 14 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Tetracycline" "Table 2C" 4 16 FALSE -"CLSI 2020" "DISK" "Streptococcus" 3 "Tetracycline" "Table 2H-1" "30μg" 23 18 FALSE +"CLSI 2020" "DISK" "Streptococcus" 3 "Tetracycline" "Table 2H-1" "30ug" 23 18 FALSE "CLSI 2020" "MIC" "Streptococcus" 3 "Tetracycline" "Table 2H-1" 2 8 FALSE -"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" "30μg" 28 24 FALSE +"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" "30ug" 28 24 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" 1 4 FALSE -"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" "30μg" 23 18 FALSE +"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" "30ug" 23 18 FALSE "CLSI 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" 2 8 FALSE -"CLSI 2020" "DISK" "Vibrio" 3 "Tetracycline" "M45 Table 20" "30μg" 15 11 FALSE +"CLSI 2020" "DISK" "Vibrio" 3 "Tetracycline" "M45 Table 20" "30ug" 15 11 FALSE "CLSI 2020" "MIC" "Vibrio" 3 "Tetracycline" "M45 Table 20" 4 16 FALSE "CLSI 2020" "MIC" "Yersinia pestis" 2 "Tetracycline" "M45 Table 21" 4 16 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Tetracycline" "Generic rules" "30μg" 15 11 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Tetracycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2020" "DISK" "Enterococcus" 3 "Teicoplanin" "Table 2D" "30μg" 14 10 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Tetracycline" "Generic rules" "30ug" 15 11 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Tetracycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2020" "DISK" "Enterococcus" 3 "Teicoplanin" "Table 2D" "30ug" 14 10 FALSE "CLSI 2020" "MIC" "Enterococcus" 3 "Teicoplanin" "Table 2D" 8 32 FALSE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Teicoplanin" "Table 2C" "30μg" 14 10 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Teicoplanin" "Table 2C" "30ug" 14 10 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Teicoplanin" "Table 2C" 8 32 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30μg" 14 10 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Tiamulin" "Generic rules" "30μg" 9 8 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Tiamulin" "Generic rules" "30μg" 16 32 FALSE -"CLSI 2020" "DISK" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" "Vet Table" "15μg" 11 10 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30ug" 14 10 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Tiamulin" "Generic rules" "30ug" 9 8 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Tiamulin" "Generic rules" "30ug" 16 32 FALSE +"CLSI 2020" "DISK" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE "CLSI 2020" "MIC" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" "Vet Table" 16 32 FALSE -"CLSI 2020" "DISK" "Pasteurella multocida multocida" 1 "Tilmicosin" "Vet Table" "15μg" 11 10 FALSE +"CLSI 2020" "DISK" "Pasteurella multocida multocida" 1 "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE "CLSI 2020" "MIC" "Pasteurella multocida multocida" 1 "Tilmicosin" "Vet Table" 16 32 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15μg" 14 10 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15μg" 8 32 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30μg" 2 8 FALSE -"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" "15μg" 19 15 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15ug" 14 10 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15ug" 8 32 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30ug" 2 8 FALSE +"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" "15ug" 19 15 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" 1 4 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Telithromycin" "Generic rules" "15μg" 22 18 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Telithromycin" "Generic rules" "15μg" 1 4 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Telithromycin" "Generic rules" "15ug" 22 18 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Telithromycin" "Generic rules" "15ug" 1 4 FALSE "CLSI 2020" "MIC" "Enterococcus" 3 "Telavancin" "Table 2D" 0.125 2048 FALSE "CLSI 2020" "MIC" "Staphylococcus aureus aureus" 1 "Telavancin" "Table 2C" 0.125 2048 FALSE "CLSI 2020" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Telavancin" "Table 2C" 0.125 2048 FALSE "CLSI 2020" "MIC" "Streptococcus" 3 "Telavancin" "Table 2H-1" 0.125 2048 FALSE "CLSI 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Telavancin" "Table 2H-2" 0.125 2048 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Trimethoprim" "Table 2A" "5μg" 16 10 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Trimethoprim" "Table 2A" "5ug" 16 10 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Trimethoprim" "Table 2A" 8 16 FALSE -"CLSI 2020" "DISK" "Staphylococcus" 3 "Trimethoprim" "Table 2C" "5μg" 16 10 FALSE +"CLSI 2020" "DISK" "Staphylococcus" 3 "Trimethoprim" "Table 2C" "5ug" 16 10 FALSE "CLSI 2020" "MIC" "Staphylococcus" 3 "Trimethoprim" "Table 2C" 8 16 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5μg" 16 10 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5μg" 8 16 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Tobramycin" "Table 2A" "10μg" 15 12 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 16 10 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 8 16 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Tobramycin" "Table 2A" "10ug" 15 12 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Tobramycin" "Table 2A" 4 16 FALSE -"CLSI 2020" "DISK" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" "10μg" 15 12 FALSE +"CLSI 2020" "DISK" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" "10ug" 15 12 FALSE "CLSI 2020" "MIC" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" 4 16 FALSE "CLSI 2020" "MIC" "(unknown Gram-negatives)" 2 "Tobramycin" "Table 2B-5" 4 16 FALSE -"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" "10μg" 15 12 FALSE +"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" "10ug" 15 12 FALSE "CLSI 2020" "MIC" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" 4 16 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Tobramycin" "Generic rules" "10μg" 15 12 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Tobramycin" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Tulathromycin" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Tulathromycin" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Trovafloxacin" "Table 2E" "10μg" 22 6 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 15 12 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Tulathromycin" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Tulathromycin" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Trovafloxacin" "Table 2E" "10ug" 22 6 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Trovafloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2020" "DISK" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" "10μg" 34 6 FALSE +"CLSI 2020" "DISK" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" "10ug" 34 6 FALSE "CLSI 2020" "MIC" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" 0.25 2048 FALSE -"CLSI 2020" "DISK" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" "10μg" 19 15 FALSE +"CLSI 2020" "DISK" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" "10ug" 19 15 FALSE "CLSI 2020" "MIC" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" 1 4 FALSE -"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" "10μg" 19 15 FALSE +"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" "10ug" 19 15 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" 1 4 FALSE -"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" "10μg" 19 15 FALSE +"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" "10ug" 19 15 FALSE "CLSI 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" 1 4 FALSE "CLSI 2020" "MIC" "Enterococcus" 3 "Tedizolid" "Table 2D" 0.5 2048 FALSE "CLSI 2020" "MIC" "Staphylococcus aureus aureus" 1 "Tedizolid" "Table 2C" 0.5 2 FALSE "CLSI 2020" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Tedizolid" "Table 2C" 0.5 2 FALSE "CLSI 2020" "MIC" "Streptococcus" 3 "Tedizolid" "Table 2H-1" 0.5 2048 FALSE "CLSI 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Tedizolid" "Table 2H-2" 0.25 2048 FALSE -"CLSI 2020" "DISK" "Enterobacterales" 5 "Piperacillin/tazobactam" "Table 2A" "100μg/10μg" 21 17 FALSE +"CLSI 2020" "DISK" "Enterobacterales" 5 "Piperacillin/tazobactam" "Table 2A" "100ug/10ug" 21 17 FALSE "CLSI 2020" "MIC" "Enterobacterales" 5 "Piperacillin/tazobactam" "Table 2A" 16 128 FALSE -"CLSI 2020" "DISK" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" "100μg" 21 17 FALSE +"CLSI 2020" "DISK" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" "100ug" 21 17 FALSE "CLSI 2020" "MIC" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" 16 128 FALSE -"CLSI 2020" "DISK" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100μg" 21 17 FALSE +"CLSI 2020" "DISK" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE "CLSI 2020" "MIC" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 3" 16 128 FALSE "CLSI 2020" "MIC" "(unknown Gram-negatives)" 2 "Piperacillin/tazobactam" "Table 2B-5" 16 128 FALSE -"CLSI 2020" "DISK" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" "100μg" 21 6 FALSE +"CLSI 2020" "DISK" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" "100ug" 21 6 FALSE "CLSI 2020" "MIC" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" 1 2 FALSE -"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" "100μg" 21 14 FALSE +"CLSI 2020" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" "100ug" 21 14 FALSE "CLSI 2020" "MIC" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" 16 128 FALSE -"CLSI 2020" "DISK" "Vibrio" 3 "Piperacillin/tazobactam" "M45 Table 20" "100μg" 21 17 FALSE +"CLSI 2020" "DISK" "Vibrio" 3 "Piperacillin/tazobactam" "M45 Table 20" "100ug" 21 17 FALSE "CLSI 2020" "MIC" "Vibrio" 3 "Piperacillin/tazobactam" "M45 Table 20" 16 128 FALSE -"CLSI 2020" "DISK" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10μg" 21 17 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10μg" 16 128 FALSE +"CLSI 2020" "DISK" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10ug" 21 17 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10ug" 16 128 FALSE "CLSI 2020" "MIC" "Abiotrophia" 3 "Vancomycin" "M45 Table 1" 1 2048 FALSE "CLSI 2020" "MIC" "Aerococcus" 3 "Vancomycin" "M45 Table 2" 1 2048 FALSE "CLSI 2020" "MIC" "Bacillus" 3 "Vancomycin" "M45 Table 4" 4 2048 FALSE "CLSI 2020" "MIC" "Cutibacterium acnes" 2 "Vancomycin" "Table 2J-2" 2 4 FALSE -"CLSI 2020" "DISK" "Enterococcus" 3 "Vancomycin" "Table 2D" "30μg" 17 14 FALSE +"CLSI 2020" "DISK" "Enterococcus" 3 "Vancomycin" "Table 2D" "30ug" 17 14 FALSE "CLSI 2020" "MIC" "Enterococcus" 3 "Vancomycin" "Table 2D" 4 32 FALSE "CLSI 2020" "MIC" "Gemella" 3 "Vancomycin" "M45 Table 8" 1 2048 FALSE "CLSI 2020" "MIC" "Granulicatella" 3 "Vancomycin" "M45 Table 1" 1 2048 FALSE @@ -10129,13 +10129,13 @@ "CLSI 2020" "MIC" "Staphylococcus" 3 "Vancomycin" "Table 2C" 4 32 FALSE "CLSI 2020" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" "Table 2C" 2 16 FALSE "CLSI 2020" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Vancomycin" "Table 2C" 2 16 FALSE -"CLSI 2020" "DISK" "Streptococcus" 3 "Vancomycin" "Table 2H-1" "30μg" 17 6 FALSE +"CLSI 2020" "DISK" "Streptococcus" 3 "Vancomycin" "Table 2H-1" "30ug" 17 6 FALSE "CLSI 2020" "MIC" "Streptococcus" 3 "Vancomycin" "Table 2H-1" 1 2048 FALSE -"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" "30μg" 17 6 FALSE +"CLSI 2020" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" "30ug" 17 6 FALSE "CLSI 2020" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" 1 2048 FALSE -"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" "30μg" 17 6 FALSE +"CLSI 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" "30ug" 17 6 FALSE "CLSI 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" 1 2048 FALSE -"CLSI 2020" "MIC" "(unknown name)" 6 "Vancomycin" "Generic rules" "30μg" 4 32 FALSE +"CLSI 2020" "MIC" "(unknown name)" 6 "Vancomycin" "Generic rules" "30ug" 4 32 FALSE "CLSI 2020" "DISK" "Candida albicans" 2 "Voriconazole" "Table 1" 17 14 FALSE "CLSI 2020" "MIC" "Candida albicans" 2 "Voriconazole" "Table 1" 0.125 1 FALSE "CLSI 2020" "DISK" "Candida krusei" 2 "Voriconazole" "Table 1" 15 12 FALSE @@ -10146,44 +10146,44 @@ "CLSI 2020" "MIC" "Candida tropicalis" 2 "Voriconazole" "Table 1" 0.125 1 FALSE "CLSI 2020" "DISK" "Pichia" 3 "Voriconazole" "Table 1" 15 12 FALSE "CLSI 2020" "MIC" "Pichia" 3 "Voriconazole" "Table 1" 0.5 2 FALSE -"CLSI 2019" "DISK" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20μg" 18 13 FALSE +"CLSI 2019" "DISK" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE "CLSI 2019" "MIC" "Aggregatibacter" 3 "Amoxicillin/clavulanic acid" "M45 Table 9" 4 8 FALSE "CLSI 2019" "MIC" "Burkholderia pseudomallei" 2 "Amoxicillin/clavulanic acid" "M45 Table 21" 8 32 FALSE "CLSI 2019" "MIC" "Cardiobacterium" 3 "Amoxicillin/clavulanic acid" "M45 Table 9" 4 8 FALSE "CLSI 2019" "MIC" "Eikenella corrodens" 2 "Amoxicillin/clavulanic acid" "M45 Table 9" 4 8 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" "20/10μg" 20 19 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" "20/10ug" 20 19 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" 4 8 FALSE "CLSI 2019" "MIC" "Kingella" 3 "Amoxicillin/clavulanic acid" "M45 Table 9" 4 8 FALSE -"CLSI 2019" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 16" "20μg" 24 23 FALSE +"CLSI 2019" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 16" "20ug" 24 23 FALSE "CLSI 2019" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 16" 4 8 FALSE -"CLSI 2019" "DISK" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 17" "20μg" 27 6 FALSE +"CLSI 2019" "DISK" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 17" "20ug" 27 6 FALSE "CLSI 2019" "MIC" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 17" 0.5 2048 FALSE "CLSI 2019" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Amoxicillin/clavulanic acid" "Table 2G" 2 8 FALSE -"CLSI 2019" "DISK" "Vibrio" 3 "Amoxicillin/clavulanic acid" "M45 Table 20" "20μg" 18 13 FALSE +"CLSI 2019" "DISK" "Vibrio" 3 "Amoxicillin/clavulanic acid" "M45 Table 20" "20ug" 18 13 FALSE "CLSI 2019" "MIC" "Vibrio" 3 "Amoxicillin/clavulanic acid" "M45 Table 20" 8 32 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10μg" 18 13 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10μg" 8 32 FALSE -"CLSI 2019" "DISK" "Acinetobacter" 3 "Amikacin" "Table 2B-2" "30μg" 17 14 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 18 13 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 8 32 FALSE +"CLSI 2019" "DISK" "Acinetobacter" 3 "Amikacin" "Table 2B-2" "30ug" 17 14 FALSE "CLSI 2019" "MIC" "Acinetobacter" 3 "Amikacin" "Table 2B-2" 16 64 FALSE -"CLSI 2019" "DISK" "Aeromonas" 3 "Amikacin" "M45 Table 2" "30μg" 17 14 FALSE +"CLSI 2019" "DISK" "Aeromonas" 3 "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE "CLSI 2019" "MIC" "Aeromonas" 3 "Amikacin" "M45 Table 3" 16 64 FALSE "CLSI 2019" "MIC" "Bacillus" 3 "Amikacin" "M45 Table 4" 16 64 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Amikacin" "Table 2B-5" 16 64 FALSE -"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" "30μg" 17 14 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" "30ug" 17 14 FALSE "CLSI 2019" "MIC" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" 16 64 FALSE -"CLSI 2019" "DISK" "Vibrio" 3 "Amikacin" "M45 Table 20" "30μg" 17 14 FALSE +"CLSI 2019" "DISK" "Vibrio" 3 "Amikacin" "M45 Table 20" "30ug" 17 14 FALSE "CLSI 2019" "MIC" "Vibrio" 3 "Amikacin" "M45 Table 20" 16 64 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Amikacin" "Generic rules" "30μg" 17 14 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Amikacin" "Generic rules" "30μg" 16 64 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 17 14 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 16 64 FALSE "CLSI 2019" "MIC" "Abiotrophia" 3 "Ampicillin" "M45 Table 1" 0.25 8 FALSE "CLSI 2019" "MIC" "Aggregatibacter" 3 "Ampicillin" "M45 Table 9" 1 4 FALSE "CLSI 2019" "MIC" "Bacillus" 3 "Ampicillin" "M45 Table 4" 0.25 0.5 FALSE "CLSI 2019" "MIC" "Cardiobacterium" 3 "Ampicillin" "M45 Table 9" 1 4 FALSE "CLSI 2019" "MIC" "Eikenella corrodens" 2 "Ampicillin" "M45 Table 9" 1 4 FALSE -"CLSI 2019" "DISK" "Enterococcus" 3 "Ampicillin" "Table 2D" "10μg" 17 16 FALSE +"CLSI 2019" "DISK" "Enterococcus" 3 "Ampicillin" "Table 2D" "10ug" 17 16 FALSE "CLSI 2019" "MIC" "Enterococcus" 3 "Ampicillin" "Table 2D" 8 16 FALSE "CLSI 2019" "MIC" "Granulicatella" 3 "Ampicillin" "M45 Table 1" 0.25 8 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Ampicillin" "Table 2E" "10μg" 22 18 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Ampicillin" "Table 2E" "10ug" 22 18 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Ampicillin" "Table 2E" 1 4 FALSE "CLSI 2019" "MIC" "Kingella" 3 "Ampicillin" "M45 Table 9" 1 4 FALSE "CLSI 2019" "MIC" "Leuconostoc" 3 "Ampicillin" "M45 Table 13" 8 2048 FALSE @@ -10192,15 +10192,15 @@ "CLSI 2019" "MIC" "Listeria monocytogenes" 2 "Ampicillin" "M45 Table 14" 2 2048 FALSE "CLSI 2019" "MIC" "Neisseria meningitidis" 2 "Ampicillin" "Table 2I" 0.125 2 FALSE "CLSI 2019" "MIC" "Pediococcus" 3 "Ampicillin" "M45 Table 18" 8 2048 FALSE -"CLSI 2019" "DISK" "Pasteurella" 3 "Ampicillin" "M45 Table 17" "10μg" 27 6 FALSE +"CLSI 2019" "DISK" "Pasteurella" 3 "Ampicillin" "M45 Table 17" "10ug" 27 6 FALSE "CLSI 2019" "MIC" "Pasteurella" 3 "Ampicillin" "M45 Table 17" 0.5 2048 FALSE -"CLSI 2019" "DISK" "Streptococcus" 3 "Ampicillin" "Table 2H-1" "10μg" 24 6 FALSE +"CLSI 2019" "DISK" "Streptococcus" 3 "Ampicillin" "Table 2H-1" "10ug" 24 6 FALSE "CLSI 2019" "MIC" "Streptococcus" 3 "Ampicillin" "Table 2H-1" 0.25 2048 FALSE "CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Table 2H-2" 0.25 8 FALSE -"CLSI 2019" "DISK" "Vibrio" 3 "Ampicillin" "M45 Table 20" "10μg" 17 13 FALSE +"CLSI 2019" "DISK" "Vibrio" 3 "Ampicillin" "M45 Table 20" "10ug" 17 13 FALSE "CLSI 2019" "MIC" "Vibrio" 3 "Ampicillin" "M45 Table 20" 8 32 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Ampicillin" "Generic rules" "10μg" 17 13 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Ampicillin" "Generic rules" "2μg" 8 32 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Ampicillin" "Generic rules" "10ug" 17 13 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Ampicillin" "Generic rules" "2ug" 8 32 FALSE "CLSI 2019" "MIC" "Bacillus anthracis" 2 "Amoxicillin" "M45 Table 21" 0.125 0.25 FALSE "CLSI 2019" "MIC" "Pasteurella" 3 "Amoxicillin" "M45 Table 17" 0.5 2048 FALSE "CLSI 2019" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Amoxicillin" "Table 2G" 2 8 FALSE @@ -10211,43 +10211,43 @@ "CLSI 2019" "MIC" "Candida tropicalis" 2 "Anidulafungin" "Table 1" 0.25 1 FALSE "CLSI 2019" "MIC" "Meyerozyma guilliermondii" 2 "Anidulafungin" "Table 1" 2 8 FALSE "CLSI 2019" "MIC" "Pichia" 3 "Anidulafungin" "Table 1" 0.25 1 FALSE -"CLSI 2019" "DISK" "Aeromonas" 3 "Aztreonam" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2019" "DISK" "Aeromonas" 3 "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2019" "MIC" "Aeromonas" 3 "Aztreonam" "M45 Table 3" 4 16 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Aztreonam" "Table 2B-5" 8 32 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Aztreonam" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Aztreonam" "Table 2E" "30ug" 26 6 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Aztreonam" "Table 2E" 2 2048 FALSE -"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" "30μg" 22 15 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" "30ug" 22 15 FALSE "CLSI 2019" "MIC" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" 8 32 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Aztreonam" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Aztreonam" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Azlocillin" "Generic rules" "75μg" 18 17 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Azlocillin" "Generic rules" "75μg" 64 128 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Azlocillin" "Generic rules" "75ug" 18 17 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Azlocillin" "Generic rules" "75ug" 64 128 FALSE "CLSI 2019" "MIC" "Aggregatibacter" 3 "Azithromycin" "M45 Table 9" 4 2048 FALSE "CLSI 2019" "MIC" "Cardiobacterium" 3 "Azithromycin" "M45 Table 9" 4 2048 FALSE "CLSI 2019" "MIC" "Eikenella corrodens" 2 "Azithromycin" "M45 Table 9" 4 2048 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Azithromycin" "Table 2E" "15μg" 12 6 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Azithromycin" "Table 2E" "15ug" 12 6 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Azithromycin" "Table 2E" 4 2048 FALSE "CLSI 2019" "MIC" "Kingella" 3 "Azithromycin" "M45 Table 9" 4 2048 FALSE -"CLSI 2019" "DISK" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 16" "15μg" 26 6 FALSE +"CLSI 2019" "DISK" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 16" "15ug" 26 6 FALSE "CLSI 2019" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 16" 0.25 2048 FALSE "CLSI 2019" "MIC" "Neisseria gonorrhoeae" 2 "Azithromycin" "Table 2F" 1 2048 FALSE -"CLSI 2019" "DISK" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" "15μg" 20 6 FALSE +"CLSI 2019" "DISK" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" "15ug" 20 6 FALSE "CLSI 2019" "MIC" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" 2 2048 FALSE -"CLSI 2019" "DISK" "Pasteurella" 3 "Azithromycin" "M45 Table 17" "15μg" 20 6 FALSE +"CLSI 2019" "DISK" "Pasteurella" 3 "Azithromycin" "M45 Table 17" "15ug" 20 6 FALSE "CLSI 2019" "MIC" "Pasteurella" 3 "Azithromycin" "M45 Table 17" 1 2048 FALSE "CLSI 2019" "DISK" "Salmonella enterica" 2 "Azithromycin" "Table 2A" 13 12 FALSE "CLSI 2019" "MIC" "Salmonella enterica" 2 "Azithromycin" "Table 2A" 16 32 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Azithromycin" "Table 2C" "15μg" 18 13 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Azithromycin" "Table 2C" "15ug" 18 13 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Azithromycin" "Table 2C" 2 8 FALSE -"CLSI 2019" "DISK" "Streptococcus" 3 "Azithromycin" "Table 2H-1" "15μg" 18 13 FALSE +"CLSI 2019" "DISK" "Streptococcus" 3 "Azithromycin" "Table 2H-1" "15ug" 18 13 FALSE "CLSI 2019" "MIC" "Streptococcus" 3 "Azithromycin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" "15μg" 18 13 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" "15ug" 18 13 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" 0.5 2 FALSE -"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" "15μg" 18 13 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" "15ug" 18 13 FALSE "CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" 0.5 2 FALSE "CLSI 2019" "MIC" "Vibrio" 3 "Azithromycin" "M45 Table 20" 2 2048 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Azithromycin" "Generic rules" "15μg" 18 13 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Azithromycin" "Generic rules" "15μg" 2 8 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Azithromycin" "Generic rules" "15ug" 18 13 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Azithromycin" "Generic rules" "15ug" 2 8 FALSE "CLSI 2019" "MIC" "Candida" 3 "Caspofungin" "Table 1" 0.125 0.5 FALSE "CLSI 2019" "DISK" "Candida albicans" 2 "Caspofungin" "Table 1" 17 14 FALSE "CLSI 2019" "MIC" "Candida albicans" 2 "Caspofungin" "Table 1" 0.25 1 FALSE @@ -10261,97 +10261,97 @@ "CLSI 2019" "MIC" "Meyerozyma guilliermondii" 2 "Caspofungin" "Table 1" 2 8 FALSE "CLSI 2019" "DISK" "Pichia" 3 "Caspofungin" "Table 1" 17 14 FALSE "CLSI 2019" "MIC" "Pichia" 3 "Caspofungin" "Table 1" 0.25 1 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Cefetamet" "Table 2E" "10μg" 18 14 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Cefetamet" "Table 2E" "10ug" 18 14 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Cefetamet" "Table 2E" 4 16 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Cefetamet" "Generic rules" "10μg" 18 14 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Cefetamet" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2019" "DISK" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" "30μg" 18 14 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Cefetamet" "Generic rules" "10ug" 18 14 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Cefetamet" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2019" "DISK" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" "30ug" 18 14 FALSE "CLSI 2019" "MIC" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" 8 32 FALSE -"CLSI 2019" "DISK" "Aeromonas" 3 "Ceftazidime" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2019" "DISK" "Aeromonas" 3 "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2019" "MIC" "Aeromonas" 3 "Ceftazidime" "M45 Table 3" 4 16 FALSE -"CLSI 2019" "DISK" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" "30μg" 21 17 FALSE +"CLSI 2019" "DISK" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" "30ug" 21 17 FALSE "CLSI 2019" "MIC" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" 8 32 FALSE "CLSI 2019" "MIC" "Burkholderia mallei" 2 "Ceftazidime" "M45 Table 21" 8 32 FALSE "CLSI 2019" "MIC" "Burkholderia pseudomallei" 2 "Ceftazidime" "M45 Table 21" 8 32 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Ceftazidime" "Table 2B-5" 8 32 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Ceftazidime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Ceftazidime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Ceftazidime" "Table 2E" 2 2048 FALSE "CLSI 2019" "MIC" "Moraxella catarrhalis" 2 "Ceftazidime" "M45 Table 16" 2 2048 FALSE -"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" "30μg" 18 14 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" "30ug" 18 14 FALSE "CLSI 2019" "MIC" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" 8 32 FALSE "CLSI 2019" "MIC" "Stenotrophomonas maltophilia" 2 "Ceftazidime" "Table 2B-4" 8 32 FALSE -"CLSI 2019" "DISK" "Vibrio" 3 "Ceftazidime" "M45 Table 20" "30μg" 21 17 FALSE +"CLSI 2019" "DISK" "Vibrio" 3 "Ceftazidime" "M45 Table 20" "30ug" 21 17 FALSE "CLSI 2019" "MIC" "Vibrio" 3 "Ceftazidime" "M45 Table 20" 4 16 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Cefdinir" "Table 2E" "5μg" 20 6 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Cefdinir" "Table 2E" "5ug" 20 6 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Cefdinir" "Table 2E" 1 2048 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Cefdinir" "Table 2G" 0.5 2 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Cefdinir" "Generic rules" "5μg" 20 16 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Cefdinir" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Cefaclor" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Cefdinir" "Generic rules" "5ug" 20 16 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Cefdinir" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Cefaclor" "Table 2E" "30ug" 20 16 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Cefaclor" "Table 2E" 8 32 FALSE "CLSI 2019" "MIC" "Moraxella catarrhalis" 2 "Cefaclor" "M45 Table 16" 8 32 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" "Table 2G" 1 4 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Cefaclor" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Cefaclor" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Cefixime" "Table 2E" "5μg" 21 6 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Cefaclor" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Cefaclor" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Cefixime" "Table 2E" "5ug" 21 6 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Cefixime" "Table 2E" 1 2048 FALSE -"CLSI 2019" "DISK" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" "5μg" 31 6 FALSE +"CLSI 2019" "DISK" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" "5ug" 31 6 FALSE "CLSI 2019" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" 0.25 2048 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Cefixime" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Cefixime" "Generic rules" "5μg" 1 4 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 1 4 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Cefoperazone" "Table 2B-5" 16 64 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75μg" 21 15 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75μg" 16 64 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75ug" 21 15 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75ug" 16 64 FALSE "CLSI 2019" "MIC" "Abiotrophia" 3 "Chloramphenicol" "M45 Table 1" 4 8 FALSE -"CLSI 2019" "DISK" "Aeromonas" 3 "Chloramphenicol" "M45 Table 2" "30μg" 18 12 FALSE +"CLSI 2019" "DISK" "Aeromonas" 3 "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE "CLSI 2019" "MIC" "Aeromonas" 3 "Chloramphenicol" "M45 Table 3" 8 32 FALSE "CLSI 2019" "MIC" "Aggregatibacter" 3 "Chloramphenicol" "M45 Table 9" 4 16 FALSE "CLSI 2019" "MIC" "Bacillus" 3 "Chloramphenicol" "M45 Table 4" 8 32 FALSE "CLSI 2019" "MIC" "Burkholderia cepacia" 2 "Chloramphenicol" "Table 2B-3" 8 32 FALSE "CLSI 2019" "MIC" "Cardiobacterium" 3 "Chloramphenicol" "M45 Table 9" 4 16 FALSE "CLSI 2019" "MIC" "Eikenella corrodens" 2 "Chloramphenicol" "M45 Table 9" 4 16 FALSE -"CLSI 2019" "DISK" "Enterococcus" 3 "Chloramphenicol" "Table 2D" "30μg" 18 12 FALSE +"CLSI 2019" "DISK" "Enterococcus" 3 "Chloramphenicol" "Table 2D" "30ug" 18 12 FALSE "CLSI 2019" "MIC" "Enterococcus" 3 "Chloramphenicol" "Table 2D" 8 32 FALSE "CLSI 2019" "MIC" "Francisella tularensis tularensis" 1 "Chloramphenicol" "M45 Table 21" 8 2048 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Chloramphenicol" "Table 2B-5" 8 32 FALSE "CLSI 2019" "MIC" "Granulicatella" 3 "Chloramphenicol" "M45 Table 1" 4 8 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Chloramphenicol" "Table 2E" "30μg" 29 25 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Chloramphenicol" "Table 2E" "30ug" 29 25 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Chloramphenicol" "Table 2E" 2 8 FALSE "CLSI 2019" "MIC" "Kingella" 3 "Chloramphenicol" "M45 Table 9" 4 16 FALSE "CLSI 2019" "MIC" "Leuconostoc" 3 "Chloramphenicol" "M45 Table 13" 8 32 FALSE "CLSI 2019" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" "M45 Table 16" 2 8 FALSE -"CLSI 2019" "DISK" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" "30μg" 26 19 FALSE +"CLSI 2019" "DISK" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" "30ug" 26 19 FALSE "CLSI 2019" "MIC" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" 2 8 FALSE "CLSI 2019" "MIC" "Pediococcus" 3 "Chloramphenicol" "M45 Table 18" 8 32 FALSE -"CLSI 2019" "DISK" "Pasteurella" 3 "Chloramphenicol" "M45 Table 17" "30μg" 28 6 FALSE +"CLSI 2019" "DISK" "Pasteurella" 3 "Chloramphenicol" "M45 Table 17" "30ug" 28 6 FALSE "CLSI 2019" "MIC" "Pasteurella" 3 "Chloramphenicol" "M45 Table 17" 2 2048 FALSE "CLSI 2019" "MIC" "Stenotrophomonas maltophilia" 2 "Chloramphenicol" "Table 2B-4" 8 32 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" "30μg" 18 12 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" "30ug" 18 12 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" 8 32 FALSE -"CLSI 2019" "DISK" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" "30μg" 21 17 FALSE +"CLSI 2019" "DISK" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" "30ug" 21 17 FALSE "CLSI 2019" "MIC" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" 4 16 FALSE -"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" "30μg" 21 20 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" "30ug" 21 20 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" 4 8 FALSE -"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" "30μg" 21 17 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" "30ug" 21 17 FALSE "CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" 4 16 FALSE -"CLSI 2019" "DISK" "Vibrio" 3 "Chloramphenicol" "M45 Table 20" "30μg" 18 12 FALSE +"CLSI 2019" "DISK" "Vibrio" 3 "Chloramphenicol" "M45 Table 20" "30ug" 18 12 FALSE "CLSI 2019" "MIC" "Vibrio" 3 "Chloramphenicol" "M45 Table 20" 8 32 FALSE "CLSI 2019" "MIC" "Yersinia pestis" 2 "Chloramphenicol" "M45 Table 21" 8 32 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30μg" 18 12 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Cefonicid" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 18 12 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Cefonicid" "Table 2E" "30ug" 20 16 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Cefonicid" "Table 2E" 4 16 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Cefonicid" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Cefonicid" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100μg" 19 14 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100μg" 16 64 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Cefonicid" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Cefonicid" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100ug" 19 14 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100ug" 16 64 FALSE "CLSI 2019" "MIC" "Abiotrophia" 3 "Ciprofloxacin" "M45 Table 1" 1 4 FALSE -"CLSI 2019" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" "5μg" 21 15 FALSE +"CLSI 2019" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" "5ug" 21 15 FALSE "CLSI 2019" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" 1 4 FALSE "CLSI 2019" "MIC" "Aerococcus" 3 "Ciprofloxacin" "M45 Table 2" 1 4 FALSE -"CLSI 2019" "DISK" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 2" "5μg" 21 15 FALSE +"CLSI 2019" "DISK" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE "CLSI 2019" "MIC" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 3" 1 4 FALSE "CLSI 2019" "MIC" "Aggregatibacter" 3 "Ciprofloxacin" "M45 Table 9" 1 4 FALSE "CLSI 2019" "MIC" "Bacillus" 3 "Ciprofloxacin" "M45 Table 4" 1 4 FALSE @@ -10360,32 +10360,32 @@ "CLSI 2019" "MIC" "Campylobacter" 3 "Ciprofloxacin" "M45 Table 5" 1 4 FALSE "CLSI 2019" "MIC" "Cardiobacterium" 3 "Ciprofloxacin" "M45 Table 9" 1 4 FALSE "CLSI 2019" "MIC" "Eikenella corrodens" 2 "Ciprofloxacin" "M45 Table 9" 1 4 FALSE -"CLSI 2019" "DISK" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" "5μg" 21 15 FALSE +"CLSI 2019" "DISK" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" "5ug" 21 15 FALSE "CLSI 2019" "MIC" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" 1 4 FALSE "CLSI 2019" "MIC" "Francisella tularensis tularensis" 1 "Ciprofloxacin" "M45 Table 21" 0.5 2048 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Ciprofloxacin" "Table 2B-5" 1 4 FALSE "CLSI 2019" "MIC" "Granulicatella" 3 "Ciprofloxacin" "M45 Table 1" 1 4 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" "5μg" 21 6 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" "5ug" 21 6 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" 1 2048 FALSE "CLSI 2019" "MIC" "Kingella" 3 "Ciprofloxacin" "M45 Table 9" 1 4 FALSE "CLSI 2019" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M45 Table 16" 1 2048 FALSE -"CLSI 2019" "DISK" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" "5μg" 41 27 FALSE +"CLSI 2019" "DISK" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" "5ug" 41 27 FALSE "CLSI 2019" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" 0.064 1 FALSE -"CLSI 2019" "DISK" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" "5μg" 35 32 FALSE +"CLSI 2019" "DISK" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" "5ug" 35 32 FALSE "CLSI 2019" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" 0.032 0.12 FALSE -"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" "5μg" 25 18 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" "5ug" 25 18 FALSE "CLSI 2019" "MIC" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" 0.5 2 FALSE -"CLSI 2019" "DISK" "Extraintestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5μg" 31 20 FALSE -"CLSI 2019" "DISK" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5μg" 31 20 FALSE +"CLSI 2019" "DISK" "Extraintestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE +"CLSI 2019" "DISK" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE "CLSI 2019" "MIC" "Extraintestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" 0.064 1 FALSE "CLSI 2019" "MIC" "Salmonella" 3 "Ciprofloxacin" "Table 2A" 0.064 1 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" "5μg" 21 15 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" "5ug" 21 15 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" 1 4 FALSE -"CLSI 2019" "DISK" "Vibrio" 3 "Ciprofloxacin" "M45 Table 20" "5μg" 21 15 FALSE +"CLSI 2019" "DISK" "Vibrio" 3 "Ciprofloxacin" "M45 Table 20" "5ug" 21 15 FALSE "CLSI 2019" "MIC" "Vibrio" 3 "Ciprofloxacin" "M45 Table 20" 1 4 FALSE "CLSI 2019" "MIC" "Yersinia pestis" 2 "Ciprofloxacin" "M45 Table 21" 0.25 2048 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5μg" 26 21 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5μg" 0.25 1 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 26 21 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 0.25 1 FALSE "CLSI 2019" "MIC" "Abiotrophia" 3 "Clindamycin" "M45 Table 1" 0.25 1 FALSE "CLSI 2019" "MIC" "Bacillus" 3 "Clindamycin" "M45 Table 4" 0.5 4 FALSE "CLSI 2019" "MIC" "Gemella" 3 "Clindamycin" "M45 Table 8" 0.25 1 FALSE @@ -10395,71 +10395,71 @@ "CLSI 2019" "MIC" "Micrococcus" 3 "Clindamycin" "M45 Table 15" 0.5 4 FALSE "CLSI 2019" "MIC" "Moraxella catarrhalis" 2 "Clindamycin" "M45 Table 16" 0.5 4 FALSE "CLSI 2019" "MIC" "Paenibacillus mucilaginosus" 2 "Clindamycin" "M45 Table 19" 0.5 4 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Clindamycin" "Table 2C" "2μg" 21 14 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Clindamycin" "Table 2C" "2ug" 21 14 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Clindamycin" "Table 2C" 0.5 4 FALSE -"CLSI 2019" "DISK" "Streptococcus" 3 "Clindamycin" "Table 2H-1" "2μg" 19 15 FALSE +"CLSI 2019" "DISK" "Streptococcus" 3 "Clindamycin" "Table 2H-1" "2ug" 19 15 FALSE "CLSI 2019" "MIC" "Streptococcus" 3 "Clindamycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" "2μg" 19 15 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" "2ug" 19 15 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" 0.25 1 FALSE -"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" "2μg" 19 15 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" "2ug" 19 15 FALSE "CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Clindamycin" "Generic rules" "2μg" 21 14 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Clindamycin" "Generic rules" "2μg" 0.5 4 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Clindamycin" "Generic rules" "2ug" 21 14 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Clindamycin" "Generic rules" "2ug" 0.5 4 FALSE "CLSI 2019" "MIC" "Aggregatibacter" 3 "Clarithromycin" "M45 Table 9" 8 32 FALSE "CLSI 2019" "MIC" "Cardiobacterium" 3 "Clarithromycin" "M45 Table 9" 8 32 FALSE "CLSI 2019" "MIC" "Eikenella corrodens" 2 "Clarithromycin" "M45 Table 9" 8 32 FALSE "CLSI 2019" "MIC" "Helicobacter pylori" 2 "Clarithromycin" "M45 Table 10" 0.25 1 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Clarithromycin" "Table 2E" "15μg" 13 10 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Clarithromycin" "Table 2E" "15ug" 13 10 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Clarithromycin" "Table 2E" 8 32 FALSE "CLSI 2019" "MIC" "Kingella" 3 "Clarithromycin" "M45 Table 9" 8 32 FALSE -"CLSI 2019" "DISK" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 16" "15μg" 24 6 FALSE +"CLSI 2019" "DISK" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 16" "15ug" 24 6 FALSE "CLSI 2019" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 16" 1 2048 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Clarithromycin" "Table 2C" "15μg" 18 13 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Clarithromycin" "Table 2C" "15ug" 18 13 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Clarithromycin" "Table 2C" 2 8 FALSE -"CLSI 2019" "DISK" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" "15μg" 21 16 FALSE +"CLSI 2019" "DISK" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" "15ug" 21 16 FALSE "CLSI 2019" "MIC" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" "15μg" 21 16 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" "15ug" 21 16 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" 0.25 1 FALSE -"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" "15μg" 21 16 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" "15ug" 21 16 FALSE "CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15μg" 18 13 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15μg" 2 8 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30μg" 16 64 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15ug" 18 13 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15ug" 2 8 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30ug" 16 64 FALSE "CLSI 2019" "MIC" "Acinetobacter" 3 "Colistin" "Table 2B-2" 2 4 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Colistin" "Table 2B-5" 2 8 FALSE "CLSI 2019" "MIC" "Pseudomonas aeruginosa" 2 "Colistin" "Table 2B-1" 2 4 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Colistin" "Generic rules" "10μg" 11 10 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Colistin" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Cefpodoxime" "Table 2E" "10μg" 21 6 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Colistin" "Generic rules" "10ug" 11 10 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Colistin" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Cefpodoxime" "Table 2E" "10ug" 21 6 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Cefpodoxime" "Table 2E" 2 2048 FALSE -"CLSI 2019" "DISK" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" "10μg" 29 6 FALSE +"CLSI 2019" "DISK" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" "10ug" 29 6 FALSE "CLSI 2019" "MIC" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" 0.5 2048 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" "Table 2G" 0.5 2 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10μg" 21 17 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Cefprozil" "Table 2E" "30μg" 18 14 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 21 17 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Cefprozil" "Table 2E" "30ug" 18 14 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Cefprozil" "Table 2E" 8 32 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Cefprozil" "Table 2G" 2 8 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Cefprozil" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Cefprozil" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2019" "DISK" "Haemophilus influenzae" 2 "Ceftaroline" "Table 2E" "30μg" 30 6 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Cefprozil" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Cefprozil" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2019" "DISK" "Haemophilus influenzae" 2 "Ceftaroline" "Table 2E" "30ug" 30 6 FALSE "CLSI 2019" "MIC" "Haemophilus influenzae" 2 "Ceftaroline" "Table 2E" 0.5 2048 FALSE -"CLSI 2019" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Table 2C" "30μg" 25 19 FALSE +"CLSI 2019" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Table 2C" "30ug" 25 19 FALSE "CLSI 2019" "MIC" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Table 2C" 1 8 FALSE -"CLSI 2019" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Ceftaroline" "Table 2C" "30μg" 25 19 FALSE +"CLSI 2019" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Ceftaroline" "Table 2C" "30ug" 25 19 FALSE "CLSI 2019" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Ceftaroline" "Table 2C" 1 8 FALSE -"CLSI 2019" "DISK" "Streptococcus" 3 "Ceftaroline" "Table 2H-1" "30μg" 26 6 FALSE +"CLSI 2019" "DISK" "Streptococcus" 3 "Ceftaroline" "Table 2H-1" "30ug" 26 6 FALSE "CLSI 2019" "MIC" "Streptococcus" 3 "Ceftaroline" "Table 2H-1" 0.5 2048 FALSE "CLSI 2019" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Ceftaroline" "Table 2G" 0.5 2048 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30μg" 0.5 2 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30ug" 0.5 2 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Carbenicillin" "Table 2B-5" 16 64 FALSE "CLSI 2019" "MIC" "Abiotrophia" 3 "Ceftriaxone" "M45 Table 1" 1 4 FALSE -"CLSI 2019" "DISK" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" "30μg" 21 13 FALSE +"CLSI 2019" "DISK" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" "30ug" 21 13 FALSE "CLSI 2019" "MIC" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" 8 64 FALSE "CLSI 2019" "MIC" "Aerococcus" 3 "Ceftriaxone" "M45 Table 2" 1 4 FALSE -"CLSI 2019" "DISK" "Aeromonas" 3 "Ceftriaxone" "M45 Table 2" "30μg" 23 19 FALSE +"CLSI 2019" "DISK" "Aeromonas" 3 "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE "CLSI 2019" "MIC" "Aeromonas" 3 "Ceftriaxone" "M45 Table 3" 1 4 FALSE "CLSI 2019" "MIC" "Aggregatibacter" 3 "Ceftriaxone" "M45 Table 9" 2 2048 FALSE "CLSI 2019" "MIC" "Cardiobacterium" 3 "Ceftriaxone" "M45 Table 9" 2 2048 FALSE @@ -10467,38 +10467,38 @@ "CLSI 2019" "MIC" "Gemella" 3 "Ceftriaxone" "M45 Table 8" 1 4 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Ceftriaxone" "Table 2B-5" 8 64 FALSE "CLSI 2019" "MIC" "Granulicatella" 3 "Ceftriaxone" "M45 Table 1" 1 4 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Ceftriaxone" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Ceftriaxone" "Table 2E" "30ug" 26 6 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Ceftriaxone" "Table 2E" 2 2048 FALSE "CLSI 2019" "MIC" "Kingella" 3 "Ceftriaxone" "M45 Table 9" 2 2048 FALSE "CLSI 2019" "MIC" "Lactococcus" 3 "Ceftriaxone" "M45 Table 12" 1 4 FALSE "CLSI 2019" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" "M45 Table 16" 2 2048 FALSE -"CLSI 2019" "DISK" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" "30μg" 35 6 FALSE +"CLSI 2019" "DISK" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" "30ug" 35 6 FALSE "CLSI 2019" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" 0.25 2048 FALSE -"CLSI 2019" "DISK" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" "30μg" 34 6 FALSE +"CLSI 2019" "DISK" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" "30ug" 34 6 FALSE "CLSI 2019" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" 0.125 2048 FALSE -"CLSI 2019" "DISK" "Pasteurella" 3 "Ceftriaxone" "M45 Table 17" "30μg" 34 6 FALSE +"CLSI 2019" "DISK" "Pasteurella" 3 "Ceftriaxone" "M45 Table 17" "30ug" 34 6 FALSE "CLSI 2019" "MIC" "Pasteurella" 3 "Ceftriaxone" "M45 Table 17" 0.125 2048 FALSE -"CLSI 2019" "DISK" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2019" "DISK" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2019" "MIC" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" 0.5 2048 FALSE "CLSI 2019" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Table 2G" 0.5 2 FALSE "CLSI 2019" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Table 2G" 1 4 FALSE -"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" "30μg" 27 24 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" "30ug" 27 24 FALSE "CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" 1 4 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30μg" 1 4 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Ceftibuten" "Table 2E" "30μg" 28 6 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 1 4 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Ceftibuten" "Table 2E" "30ug" 28 6 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Ceftibuten" "Table 2E" 2 2048 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2019" "DISK" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" "30μg" 26 19 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2019" "DISK" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" "30ug" 26 19 FALSE "CLSI 2019" "MIC" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" 2 8 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Cefotetan" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Cefotetan" "Generic rules" "30μg" 16 64 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Cefotetan" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Cefotetan" "Generic rules" "30ug" 16 64 FALSE "CLSI 2019" "MIC" "Abiotrophia" 3 "Cefotaxime" "M45 Table 1" 1 4 FALSE -"CLSI 2019" "DISK" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" "30μg" 23 14 FALSE +"CLSI 2019" "DISK" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" "30ug" 23 14 FALSE "CLSI 2019" "MIC" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" 8 64 FALSE "CLSI 2019" "MIC" "Aerococcus" 3 "Cefotaxime" "M45 Table 2" 1 4 FALSE -"CLSI 2019" "DISK" "Aeromonas" 3 "Cefotaxime" "M45 Table 2" "30μg" 26 22 FALSE +"CLSI 2019" "DISK" "Aeromonas" 3 "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE "CLSI 2019" "MIC" "Aeromonas" 3 "Cefotaxime" "M45 Table 3" 1 4 FALSE "CLSI 2019" "MIC" "Aggregatibacter" 3 "Cefotaxime" "M45 Table 9" 2 2048 FALSE "CLSI 2019" "MIC" "Cardiobacterium" 3 "Cefotaxime" "M45 Table 9" 2 2048 FALSE @@ -10506,65 +10506,65 @@ "CLSI 2019" "MIC" "Gemella" 3 "Cefotaxime" "M45 Table 8" 1 4 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Cefotaxime" "Table 2B-5" 8 64 FALSE "CLSI 2019" "MIC" "Granulicatella" 3 "Cefotaxime" "M45 Table 1" 1 4 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Cefotaxime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Cefotaxime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Cefotaxime" "Table 2E" 2 2048 FALSE "CLSI 2019" "MIC" "Kingella" 3 "Cefotaxime" "M45 Table 9" 2 2048 FALSE "CLSI 2019" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" "M45 Table 16" 2 2048 FALSE -"CLSI 2019" "DISK" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" "30μg" 31 6 FALSE +"CLSI 2019" "DISK" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" "30ug" 31 6 FALSE "CLSI 2019" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" 0.5 2048 FALSE -"CLSI 2019" "DISK" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" "30μg" 34 6 FALSE +"CLSI 2019" "DISK" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" "30ug" 34 6 FALSE "CLSI 2019" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" 0.125 2048 FALSE -"CLSI 2019" "DISK" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2019" "DISK" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2019" "MIC" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" 0.5 2048 FALSE "CLSI 2019" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Cefotaxime" "Table 2G" 0.5 2 FALSE "CLSI 2019" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Cefotaxime" "Table 2G" 1 4 FALSE -"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" "30μg" 28 25 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" "30ug" 28 25 FALSE "CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" 1 4 FALSE -"CLSI 2019" "DISK" "Vibrio" 3 "Cefotaxime" "M45 Table 20" "30μg" 26 22 FALSE +"CLSI 2019" "DISK" "Vibrio" 3 "Cefotaxime" "M45 Table 20" "30ug" 26 22 FALSE "CLSI 2019" "MIC" "Vibrio" 3 "Cefotaxime" "M45 Table 20" 1 4 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30μg" 26 22 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30μg" 1 4 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30ug" 26 22 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30ug" 1 4 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" "30ug" 20 16 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" 4 16 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Cefuroxime axetil" "Table 2G" 1 4 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30μg" 23 14 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30μg" 4 32 FALSE -"CLSI 2019" "DISK" "Aeromonas" 3 "Cefuroxime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 23 14 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 4 32 FALSE +"CLSI 2019" "DISK" "Aeromonas" 3 "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2019" "MIC" "Aeromonas" 3 "Cefuroxime" "M45 Table 3" 8 32 FALSE -"CLSI 2019" "DISK" "Oral" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30μg" 20 16 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2019" "DISK" "Oral" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE "CLSI 2019" "MIC" "Oral" "Haemophilus" 3 "Cefuroxime" "Table 2E" 4 16 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Cefuroxime" "Table 2E" 4 16 FALSE "CLSI 2019" "MIC" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M45 Table 16" 4 16 FALSE "CLSI 2019" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Table 2G" 1 4 FALSE "CLSI 2019" "MIC" "Parenteral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Table 2G" 0.5 2 FALSE -"CLSI 2019" "DISK" "Vibrio" 3 "Cefuroxime" "M45 Table 20" "30μg" 18 14 FALSE +"CLSI 2019" "DISK" "Vibrio" 3 "Cefuroxime" "M45 Table 20" "30ug" 18 14 FALSE "CLSI 2019" "MIC" "Vibrio" 3 "Cefuroxime" "M45 Table 20" 8 32 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30μg" 8 32 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 8 32 FALSE "CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Ceftazidime/avibactam" "Table 2B-1" 21 20 FALSE "CLSI 2019" "MIC" "Pseudomonas aeruginosa" 2 "Ceftazidime/avibactam" "Table 2B-1" 8 16 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Ceftazidime/avibactam" "Generic rules" "30/20μg" 21 20 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Ceftazidime/avibactam" "Generic rules" "30/20μg" 8 16 FALSE -"CLSI 2019" "DISK" "Urine" "Enterobacterales" 5 "Cefazolin" "Table 2A" "30μg" 15 14 TRUE -"CLSI 2019" "DISK" "Enterobacterales" 5 "Cefazolin" "Table 2A" "30μg" 23 19 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Ceftazidime/avibactam" "Generic rules" "30/20ug" 21 20 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Ceftazidime/avibactam" "Generic rules" "30/20ug" 8 16 FALSE +"CLSI 2019" "DISK" "Urine" "Enterobacterales" 5 "Cefazolin" "Table 2A" "30ug" 15 14 TRUE +"CLSI 2019" "DISK" "Enterobacterales" 5 "Cefazolin" "Table 2A" "30ug" 23 19 FALSE "CLSI 2019" "MIC" "Urine" "Enterobacterales" 5 "Cefazolin" "Table 2A" 16 32 TRUE "CLSI 2019" "MIC" "Enterobacterales" 5 "Cefazolin" "Table 2A" 2 8 FALSE "CLSI 2019" "MIC" "Vibrio" 3 "Cefazolin" "M45 Table 20" 2 8 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Cefazolin" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Cefazolin" "Generic rules" "30μg" 2 8 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Cefazolin" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Cefazolin" "Generic rules" "30ug" 2 8 FALSE "CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Ceftolozane/tazobactam" "Table 2B-1" "30/10" 21 16 FALSE "CLSI 2019" "MIC" "Pseudomonas aeruginosa" 2 "Ceftolozane/tazobactam" "Table 2B-1" 4 16 FALSE "CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftolozane/tazobactam" "Table 2H-2" 8 32 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Ceftolozane/tazobactam" "Generic rules" "30/10μg" 21 17 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Ceftolozane/tazobactam" "Generic rules" "30/10μg" 2 8 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Ceftolozane/tazobactam" "Generic rules" "30/10ug" 21 17 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Ceftolozane/tazobactam" "Generic rules" "30/10ug" 2 8 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Ceftizoxime" "Table 2B-5" 8 64 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Ceftizoxime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Ceftizoxime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Ceftizoxime" "Table 2E" 2 2048 FALSE -"CLSI 2019" "DISK" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" "30μg" 38 6 FALSE +"CLSI 2019" "DISK" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" "30ug" 38 6 FALSE "CLSI 2019" "MIC" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" 0.5 2048 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30μg" 25 21 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30μg" 1 4 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30ug" 25 21 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30ug" 1 4 FALSE "CLSI 2019" "MIC" "Enterococcus faecalis" 2 "Dalbavancin" "Table 2D" 0.25 2048 FALSE "CLSI 2019" "MIC" "Staphylococcus aureus aureus" 1 "Dalbavancin" "Table 2C" 0.25 2048 FALSE "CLSI 2019" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Dalbavancin" "Table 2C" 0.25 2048 FALSE @@ -10574,134 +10574,134 @@ "CLSI 2019" "MIC" "Enterococcus faecium" 2 "Daptomycin" "Table 2D" 4 8 FALSE "CLSI 2019" "MIC" "Lactobacillus" 3 "Daptomycin" "M45 Table 11" 4 2048 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Daptomycin" "Table 2C" 1 2048 FALSE -"CLSI 2019" "DISK" "Streptococcus" 3 "Daptomycin" "Table 2H-1" "30μg" 16 6 FALSE +"CLSI 2019" "DISK" "Streptococcus" 3 "Daptomycin" "Table 2H-1" "30ug" 16 6 FALSE "CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Daptomycin" "Table 2H-2" 1 2048 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Daptomycin" "Generic rules" "30μg" 1 2048 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Difloxacin" "Generic rules" "10μg" 21 17 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Difloxacin" "Generic rules" "10μg" 0.5 4 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Dirithromycin" "Table 2C" "15μg" 19 15 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Daptomycin" "Generic rules" "30ug" 1 2048 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Difloxacin" "Generic rules" "10ug" 21 17 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Difloxacin" "Generic rules" "10ug" 0.5 4 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Dirithromycin" "Table 2C" "15ug" 19 15 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Dirithromycin" "Table 2C" 2 8 FALSE -"CLSI 2019" "DISK" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" "15μg" 18 13 FALSE +"CLSI 2019" "DISK" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" "15ug" 18 13 FALSE "CLSI 2019" "MIC" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" "15μg" 18 13 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" "15ug" 18 13 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" 0.5 2 FALSE -"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" "15μg" 18 13 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" "15ug" 18 13 FALSE "CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" 0.5 2 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15μg" 19 15 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15μg" 2 8 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15ug" 19 15 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15ug" 2 8 FALSE "CLSI 2019" "DISK" "Acinetobacter" 3 "Doripenem" "Table 2B-2" 18 14 FALSE "CLSI 2019" "MIC" "Acinetobacter" 3 "Doripenem" "Table 2B-2" 2 8 FALSE -"CLSI 2019" "DISK" "Aeromonas" 3 "Doripenem" "M45 Table 3" "10μg" 23 19 FALSE +"CLSI 2019" "DISK" "Aeromonas" 3 "Doripenem" "M45 Table 3" "10ug" 23 19 FALSE "CLSI 2019" "MIC" "Aeromonas" 3 "Doripenem" "M45 Table 3" 1 4 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Doripenem" "Table 2E" "10μg" 16 6 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Doripenem" "Table 2E" "10ug" 16 6 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Doripenem" "Table 2E" 1 2048 FALSE -"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2019" "MIC" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" 2 8 FALSE "CLSI 2019" "MIC" "Streptococcus" 3 "Doripenem" "Table 2H-1" 0.125 2048 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" "Table 2G" 1 2048 FALSE "CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" "Table 2H-2" 1 2048 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Doripenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Doripenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2019" "DISK" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" "30μg" 13 9 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Doripenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Doripenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2019" "DISK" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" "30ug" 13 9 FALSE "CLSI 2019" "MIC" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" 4 16 FALSE "CLSI 2019" "MIC" "Bacillus anthracis" 2 "Doxycycline" "M45 Table 21" 1 2048 FALSE "CLSI 2019" "MIC" "Brucella" 3 "Doxycycline" "M45 Table 21" 1 2048 FALSE "CLSI 2019" "MIC" "Burkholderia mallei" 2 "Doxycycline" "M45 Table 21" 4 16 FALSE "CLSI 2019" "MIC" "Burkholderia pseudomallei" 2 "Doxycycline" "M45 Table 21" 4 16 FALSE "CLSI 2019" "MIC" "Campylobacter" 3 "Doxycycline" "M45 Table 5" 2 8 FALSE -"CLSI 2019" "DISK" "Enterococcus" 3 "Doxycycline" "Table 2D" "30μg" 16 12 FALSE +"CLSI 2019" "DISK" "Enterococcus" 3 "Doxycycline" "Table 2D" "30ug" 16 12 FALSE "CLSI 2019" "MIC" "Enterococcus" 3 "Doxycycline" "Table 2D" 4 16 FALSE "CLSI 2019" "MIC" "Francisella tularensis tularensis" 1 "Doxycycline" "M45 Table 21" 4 2048 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Doxycycline" "Table 2B-5" 4 16 FALSE -"CLSI 2019" "DISK" "Pasteurella" 3 "Doxycycline" "M45 Table 17" "30μg" 23 6 FALSE +"CLSI 2019" "DISK" "Pasteurella" 3 "Doxycycline" "M45 Table 17" "30ug" 23 6 FALSE "CLSI 2019" "MIC" "Pasteurella" 3 "Doxycycline" "M45 Table 17" 0.5 2048 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Doxycycline" "Table 2C" "30μg" 16 12 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Doxycycline" "Table 2C" "30ug" 16 12 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Doxycycline" "Table 2C" 4 16 FALSE -"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Doxycycline" "Table 2G" "30μg" 28 24 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Doxycycline" "Table 2G" "30ug" 28 24 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" "Table 2G" 0.25 1 FALSE "CLSI 2019" "MIC" "Yersinia pestis" 2 "Doxycycline" "M45 Table 21" 4 16 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Doxycycline" "Generic rules" "30μg" 14 10 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Doxycycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2019" "DISK" "Histophilus somni" 2 "Enrofloxacin" "Vet Table" "5μg" 21 16 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Doxycycline" "Generic rules" "30ug" 14 10 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Doxycycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2019" "DISK" "Histophilus somni" 2 "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE "CLSI 2019" "MIC" "Histophilus somni" 2 "Enrofloxacin" "Vet Table" 0.25 2 FALSE -"CLSI 2019" "DISK" "Providencia heimbachae" 2 "Enrofloxacin" "Vet Table" "5μg" 21 16 FALSE -"CLSI 2019" "DISK" "Pasteurella multocida multocida" 1 "Enrofloxacin" "Vet Table" "5μg" 21 16 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5μg" 23 16 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5μg" 0.25 2 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Enoxacin" "Table 2C" "10μg" 18 14 FALSE +"CLSI 2019" "DISK" "Providencia heimbachae" 2 "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2019" "DISK" "Pasteurella multocida multocida" 1 "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5ug" 23 16 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5ug" 0.25 2 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Enoxacin" "Table 2C" "10ug" 18 14 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Enoxacin" "Table 2C" 2 8 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Enoxacin" "Generic rules" "10μg" 18 14 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Enoxacin" "Generic rules" "10μg" 2 8 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Enoxacin" "Generic rules" "10ug" 18 14 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Enoxacin" "Generic rules" "10ug" 2 8 FALSE "CLSI 2019" "MIC" "Abiotrophia" 3 "Erythromycin" "M45 Table 1" 0.25 1 FALSE "CLSI 2019" "MIC" "Bacillus" 3 "Erythromycin" "M45 Table 4" 0.5 8 FALSE "CLSI 2019" "DISK" "Campylobacter" 3 "Erythromycin" "M45 Table 5" 16 12 FALSE "CLSI 2019" "MIC" "Campylobacter" 3 "Erythromycin" "M45 Table 5" 8 32 FALSE -"CLSI 2019" "DISK" "Enterococcus" 3 "Erythromycin" "Table 2D" "15μg" 23 13 FALSE +"CLSI 2019" "DISK" "Enterococcus" 3 "Erythromycin" "Table 2D" "15ug" 23 13 FALSE "CLSI 2019" "MIC" "Enterococcus" 3 "Erythromycin" "Table 2D" 0.5 8 FALSE "CLSI 2019" "MIC" "Gemella" 3 "Erythromycin" "M45 Table 8" 0.25 1 FALSE "CLSI 2019" "MIC" "Granulicatella" 3 "Erythromycin" "M45 Table 1" 0.25 1 FALSE "CLSI 2019" "MIC" "Lactobacillus" 3 "Erythromycin" "M45 Table 11" 0.5 8 FALSE "CLSI 2019" "MIC" "Lactococcus" 3 "Erythromycin" "M45 Table 12" 0.5 8 FALSE "CLSI 2019" "MIC" "Micrococcus" 3 "Erythromycin" "M45 Table 15" 0.5 8 FALSE -"CLSI 2019" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 16" "15μg" 21 6 FALSE +"CLSI 2019" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 16" "15ug" 21 6 FALSE "CLSI 2019" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 16" 2 2048 FALSE "CLSI 2019" "MIC" "Paenibacillus mucilaginosus" 2 "Erythromycin" "M45 Table 19" 0.5 8 FALSE -"CLSI 2019" "DISK" "Pasteurella" 3 "Erythromycin" "M45 Table 17" "15μg" 27 24 FALSE +"CLSI 2019" "DISK" "Pasteurella" 3 "Erythromycin" "M45 Table 17" "15ug" 27 24 FALSE "CLSI 2019" "MIC" "Pasteurella" 3 "Erythromycin" "M45 Table 17" 0.5 2 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Erythromycin" "Table 2C" "15μg" 23 13 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Erythromycin" "Table 2C" "15ug" 23 13 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Erythromycin" "Table 2C" 0.5 8 FALSE -"CLSI 2019" "DISK" "Streptococcus" 3 "Erythromycin" "Table 2H-1" "15μg" 21 15 FALSE +"CLSI 2019" "DISK" "Streptococcus" 3 "Erythromycin" "Table 2H-1" "15ug" 21 15 FALSE "CLSI 2019" "MIC" "Streptococcus" 3 "Erythromycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" "15μg" 21 15 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" "15ug" 21 15 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" 0.25 1 FALSE -"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" "15μg" 21 15 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" "15ug" 21 15 FALSE "CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Erythromycin" "Generic rules" "15μg" 23 13 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Erythromycin" "Generic rules" "15μg" 0.5 8 FALSE -"CLSI 2019" "DISK" "Aeromonas" 3 "Ertapenem" "M45 Table 2" "10μg" 19 15 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Erythromycin" "Generic rules" "15ug" 23 13 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Erythromycin" "Generic rules" "15ug" 0.5 8 FALSE +"CLSI 2019" "DISK" "Aeromonas" 3 "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE "CLSI 2019" "MIC" "Aeromonas" 3 "Ertapenem" "M45 Table 3" 0.5 2 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Ertapenem" "Table 2E" "10μg" 19 6 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Ertapenem" "Table 2E" "10ug" 19 6 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Ertapenem" "Table 2E" 0.5 2048 FALSE "CLSI 2019" "MIC" "Streptococcus" 3 "Ertapenem" "Table 2H-1" 1 2048 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" "Table 2G" 1 4 FALSE "CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "Table 2H-2" 1 2048 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Ertapenem" "Generic rules" "10μg" 22 18 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Ertapenem" "Generic rules" "10μg" 0.5 2 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 22 18 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 0.5 2 FALSE "CLSI 2019" "MIC" "Acinetobacter" 3 "Cefiderocol" "Table 2B-2" 4 16 FALSE "CLSI 2019" "MIC" "Pseudomonas aeruginosa" 2 "Cefiderocol" "Table 2B-1" 4 16 FALSE "CLSI 2019" "MIC" "Stenotrophomonas maltophilia" 2 "Cefiderocol" "Table 2B-4" 4 16 FALSE "CLSI 2019" "MIC" "(unknown name)" 6 "Cefiderocol" "Generic rules" 4 16 FALSE "CLSI 2019" "MIC" "Abiotrophia" 3 "Cefepime" "M45 Table 1" 1 4 FALSE -"CLSI 2019" "DISK" "Acinetobacter" 3 "Cefepime" "Table 2B-2" "30μg" 18 14 FALSE +"CLSI 2019" "DISK" "Acinetobacter" 3 "Cefepime" "Table 2B-2" "30ug" 18 14 FALSE "CLSI 2019" "MIC" "Acinetobacter" 3 "Cefepime" "Table 2B-2" 8 32 FALSE -"CLSI 2019" "DISK" "Aeromonas" 3 "Cefepime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2019" "DISK" "Aeromonas" 3 "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2019" "MIC" "Aeromonas" 3 "Cefepime" "M45 Table 3" 2 16 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Cefepime" "Table 2B-5" 8 32 FALSE "CLSI 2019" "MIC" "Granulicatella" 3 "Cefepime" "M45 Table 1" 1 4 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Cefepime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Cefepime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Cefepime" "Table 2E" 2 2048 FALSE -"CLSI 2019" "DISK" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" "30μg" 31 6 FALSE +"CLSI 2019" "DISK" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" "30ug" 31 6 FALSE "CLSI 2019" "MIC" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" 0.5 2048 FALSE -"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" "30μg" 18 14 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" "30ug" 18 14 FALSE "CLSI 2019" "MIC" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" 8 32 FALSE -"CLSI 2019" "DISK" "Streptococcus" 3 "Cefepime" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2019" "DISK" "Streptococcus" 3 "Cefepime" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2019" "MIC" "Streptococcus" 3 "Cefepime" "Table 2H-1" 0.5 2048 FALSE "CLSI 2019" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Cefepime" "Table 2G" 0.5 2 FALSE "CLSI 2019" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Cefepime" "Table 2G" 1 4 FALSE -"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" "30μg" 24 21 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" "30ug" 24 21 FALSE "CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" 1 4 FALSE -"CLSI 2019" "DISK" "Vibrio" 3 "Cefepime" "M45 Table 20" "30μg" 25 18 FALSE +"CLSI 2019" "DISK" "Vibrio" 3 "Cefepime" "M45 Table 20" "30ug" 25 18 FALSE "CLSI 2019" "MIC" "Vibrio" 3 "Cefepime" "M45 Table 20" 2 16 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Cefepime" "Generic rules" "30μg" 25 18 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Cefepime" "Generic rules" "30μg" 2 16 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Fleroxacin" "Table 2E" "5μg" 19 6 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 25 18 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 2 16 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Fleroxacin" "Table 2E" "5ug" 19 6 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Fleroxacin" "Table 2E" 2 2048 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Fleroxacin" "Table 2C" "5μg" 19 15 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Fleroxacin" "Table 2C" "5ug" 19 15 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Fleroxacin" "Table 2C" 2 8 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Florfenicol" "Generic rules" "30μg" 19 14 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Florfenicol" "Generic rules" "30μg" 2 8 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Florfenicol" "Generic rules" "30ug" 19 14 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Florfenicol" "Generic rules" "30ug" 2 8 FALSE "CLSI 2019" "DISK" "Candida" 3 "Fluconazole" "Table 1" 50 14 FALSE "CLSI 2019" "MIC" "Candida" 3 "Fluconazole" "Table 1" 0.001 64 FALSE "CLSI 2019" "DISK" "Candida albicans" 2 "Fluconazole" "Table 1" 17 13 FALSE @@ -10710,60 +10710,60 @@ "CLSI 2019" "MIC" "Candida parapsilosis" 2 "Fluconazole" "Table 1" 2 8 FALSE "CLSI 2019" "DISK" "Candida tropicalis" 2 "Fluconazole" "Table 1" 17 13 FALSE "CLSI 2019" "MIC" "Candida tropicalis" 2 "Fluconazole" "Table 1" 2 8 FALSE -"CLSI 2019" "DISK" "Enterococcus" 3 "Fosfomycin" "Table 2D" "200μg" 16 12 FALSE +"CLSI 2019" "DISK" "Enterococcus" 3 "Fosfomycin" "Table 2D" "200ug" 16 12 FALSE "CLSI 2019" "MIC" "Enterococcus" 3 "Fosfomycin" "Table 2D" 64 256 FALSE "CLSI 2019" "DISK" "Escherichia coli" 2 "Fosfomycin" "Table 2A" 16 12 FALSE "CLSI 2019" "MIC" "Escherichia coli" 2 "Fosfomycin" "Table 2A" 64 256 FALSE -"CLSI 2019" "DISK" "Aeromonas" 3 "Cefoxitin" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2019" "DISK" "Aeromonas" 3 "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2019" "MIC" "Aeromonas" 3 "Cefoxitin" "M45 Table 3" 8 32 FALSE -"CLSI 2019" "DISK" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" "30μg" 28 23 FALSE +"CLSI 2019" "DISK" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" "30ug" 28 23 FALSE "CLSI 2019" "MIC" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" 2 8 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Cefoxitin" "Table 2C" "30μg" 25 24 FALSE -"CLSI 2019" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" "30μg" 22 21 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Cefoxitin" "Table 2C" "30ug" 25 24 FALSE +"CLSI 2019" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE "CLSI 2019" "MIC" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2019" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Cefoxitin" "Table 2C" "30μg" 22 21 FALSE +"CLSI 2019" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE "CLSI 2019" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2019" "DISK" "Staphylococcus epidermidis" 2 "Cefoxitin" "Table 2C" "30μg" 25 24 FALSE -"CLSI 2019" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" "30μg" 22 21 FALSE +"CLSI 2019" "DISK" "Staphylococcus epidermidis" 2 "Cefoxitin" "Table 2C" "30ug" 25 24 FALSE +"CLSI 2019" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE "CLSI 2019" "MIC" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2019" "DISK" "Vibrio" 3 "Cefoxitin" "M45 Table 20" "30μg" 18 14 FALSE +"CLSI 2019" "DISK" "Vibrio" 3 "Cefoxitin" "M45 Table 20" "30ug" 18 14 FALSE "CLSI 2019" "MIC" "Vibrio" 3 "Cefoxitin" "M45 Table 20" 8 32 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2019" "DISK" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" "5μg" 18 14 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2019" "DISK" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" "5ug" 18 14 FALSE "CLSI 2019" "MIC" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" 2 8 FALSE -"CLSI 2019" "DISK" "Enterococcus" 3 "Gatifloxacin" "Table 2D" "5μg" 18 14 FALSE +"CLSI 2019" "DISK" "Enterococcus" 3 "Gatifloxacin" "Table 2D" "5ug" 18 14 FALSE "CLSI 2019" "MIC" "Enterococcus" 3 "Gatifloxacin" "Table 2D" 2 8 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Gatifloxacin" "Table 2B-5" 2 8 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Gatifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Gatifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Gatifloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2019" "DISK" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" "5μg" 38 33 FALSE +"CLSI 2019" "DISK" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" "5ug" 38 33 FALSE "CLSI 2019" "MIC" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" 0.125 0.5 FALSE -"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" "5μg" 18 14 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" "5ug" 18 14 FALSE "CLSI 2019" "MIC" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" 2 8 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" "10μg" 23 19 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" "10ug" 23 19 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2019" "DISK" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" "5μg" 21 17 FALSE +"CLSI 2019" "DISK" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" "5ug" 21 17 FALSE "CLSI 2019" "MIC" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" 1 4 FALSE -"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" "5μg" 21 17 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" "5ug" 21 17 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" 1 4 FALSE -"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" "5μg" 21 17 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" "5ug" 21 17 FALSE "CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" 1 4 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5μg" 18 14 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2019" "DISK" "Enterococcus" 3 "Gentamicin-high" "Table 2D" "120μg" 10 6 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5ug" 18 14 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2019" "DISK" "Enterococcus" 3 "Gentamicin-high" "Table 2D" "120ug" 10 6 FALSE "CLSI 2019" "MIC" "Enterococcus" 3 "Gentamicin-high" "Table 2D" 512 560 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120μg" 10 6 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120μg" 512 560 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Gemifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120ug" 10 6 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120ug" 512 560 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Gemifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Gemifloxacin" "Table 2E" 0.125 2048 FALSE -"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" "5μg" 23 19 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" "5ug" 23 19 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" 0.125 0.5 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5μg" 20 15 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5μg" 0.25 1 FALSE -"CLSI 2019" "DISK" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" "10μg" 15 12 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5ug" 20 15 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5ug" 0.25 1 FALSE +"CLSI 2019" "DISK" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" "10ug" 15 12 FALSE "CLSI 2019" "MIC" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" 4 16 FALSE -"CLSI 2019" "DISK" "Aeromonas" 3 "Gentamicin" "M45 Table 2" "10μg" 15 12 FALSE +"CLSI 2019" "DISK" "Aeromonas" 3 "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE "CLSI 2019" "MIC" "Aeromonas" 3 "Gentamicin" "M45 Table 3" 4 16 FALSE "CLSI 2019" "MIC" "Bacillus" 3 "Gentamicin" "M45 Table 4" 4 16 FALSE "CLSI 2019" "MIC" "Brucella" 3 "Gentamicin" "M45 Table 21" 4 2048 FALSE @@ -10771,33 +10771,33 @@ "CLSI 2019" "MIC" "Francisella tularensis tularensis" 1 "Gentamicin" "M45 Table 21" 4 2048 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Gentamicin" "Table 2B-5" 4 16 FALSE "CLSI 2019" "MIC" "Lactobacillus" 3 "Gentamicin" "M45 Table 11" 4 16 FALSE -"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" "10μg" 15 12 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" "10ug" 15 12 FALSE "CLSI 2019" "MIC" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" 4 16 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Gentamicin" "Table 2C" "10μg" 15 12 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Gentamicin" "Table 2C" "10ug" 15 12 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Gentamicin" "Table 2C" 4 16 FALSE -"CLSI 2019" "DISK" "Vibrio" 3 "Gentamicin" "M45 Table 20" "10μg" 15 12 FALSE +"CLSI 2019" "DISK" "Vibrio" 3 "Gentamicin" "M45 Table 20" "10ug" 15 12 FALSE "CLSI 2019" "MIC" "Vibrio" 3 "Gentamicin" "M45 Table 20" 4 16 FALSE "CLSI 2019" "MIC" "Yersinia pestis" 2 "Gentamicin" "M45 Table 21" 4 16 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Gentamicin" "Generic rules" "10μg" 15 12 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Gentamicin" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Grepafloxacin" "Table 2E" "5μg" 24 6 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 15 12 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Grepafloxacin" "Table 2E" "5ug" 24 6 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Grepafloxacin" "Table 2E" 0.5 2048 FALSE -"CLSI 2019" "DISK" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" "5μg" 37 27 FALSE +"CLSI 2019" "DISK" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" "5ug" 37 27 FALSE "CLSI 2019" "MIC" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" 0.064 1 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" "5μg" 18 14 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" "5ug" 18 14 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" 1 4 FALSE -"CLSI 2019" "DISK" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" "5μg" 19 15 FALSE +"CLSI 2019" "DISK" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" "5ug" 19 15 FALSE "CLSI 2019" "MIC" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" "5μg" 19 15 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" "5ug" 19 15 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" 0.5 2 FALSE -"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" "5μg" 19 15 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" "5ug" 19 15 FALSE "CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" 0.5 2 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5μg" 18 14 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5μg" 1 4 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5ug" 18 14 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5ug" 1 4 FALSE "CLSI 2019" "MIC" "Abiotrophia" 3 "Imipenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2019" "DISK" "Acinetobacter" 3 "Imipenem" "Table 2B-2" "10μg" 22 18 FALSE +"CLSI 2019" "DISK" "Acinetobacter" 3 "Imipenem" "Table 2B-2" "10ug" 22 18 FALSE "CLSI 2019" "MIC" "Acinetobacter" 3 "Imipenem" "Table 2B-2" 2 8 FALSE -"CLSI 2019" "DISK" "Aeromonas" 3 "Imipenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2019" "DISK" "Aeromonas" 3 "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2019" "MIC" "Aeromonas" 3 "Imipenem" "M45 Table 3" 1 4 FALSE "CLSI 2019" "MIC" "Aggregatibacter" 3 "Imipenem" "M45 Table 9" 4 16 FALSE "CLSI 2019" "MIC" "Bacillus" 3 "Imipenem" "M45 Table 4" 4 16 FALSE @@ -10807,56 +10807,56 @@ "CLSI 2019" "MIC" "Eikenella corrodens" 2 "Imipenem" "M45 Table 9" 0.5 2 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Imipenem" "Table 2B-5" 4 16 FALSE "CLSI 2019" "MIC" "Granulicatella" 3 "Imipenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Imipenem" "Table 2E" "10μg" 16 6 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Imipenem" "Table 2E" "10ug" 16 6 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Imipenem" "Table 2E" 4 2048 FALSE "CLSI 2019" "MIC" "Kingella" 3 "Imipenem" "M45 Table 9" 0.5 2 FALSE "CLSI 2019" "MIC" "Lactobacillus" 3 "Imipenem" "M45 Table 11" 0.5 2 FALSE "CLSI 2019" "MIC" "Pediococcus" 3 "Imipenem" "M45 Table 18" 0.5 2048 FALSE -"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2019" "MIC" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" 2 8 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" "Table 2G" 0.125 1 FALSE -"CLSI 2019" "DISK" "Vibrio" 3 "Imipenem" "M45 Table 20" "10μg" 23 19 FALSE +"CLSI 2019" "DISK" "Vibrio" 3 "Imipenem" "M45 Table 20" "10ug" 23 19 FALSE "CLSI 2019" "MIC" "Vibrio" 3 "Imipenem" "M45 Table 20" 1 4 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Imipenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Imipenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Kanamycin" "Generic rules" "30μg" 18 13 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Kanamycin" "Generic rules" "30μg" 16 64 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Kanamycin" "Generic rules" "30ug" 18 13 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Kanamycin" "Generic rules" "30ug" 16 64 FALSE "CLSI 2019" "MIC" "Aerococcus" 3 "Linezolid" "M45 Table 2" 2 2048 FALSE -"CLSI 2019" "DISK" "Enterococcus" 3 "Linezolid" "Table 2D" "30μg" 23 20 FALSE +"CLSI 2019" "DISK" "Enterococcus" 3 "Linezolid" "Table 2D" "30ug" 23 20 FALSE "CLSI 2019" "MIC" "Enterococcus" 3 "Linezolid" "Table 2D" 2 8 FALSE "CLSI 2019" "MIC" "Lactobacillus" 3 "Linezolid" "M45 Table 11" 4 2048 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Linezolid" "Table 2C" "30μg" 21 20 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Linezolid" "Table 2C" "30ug" 21 20 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Linezolid" "Table 2C" 4 8 FALSE -"CLSI 2019" "DISK" "Streptococcus" 3 "Linezolid" "Table 2H-1" "30μg" 21 6 FALSE +"CLSI 2019" "DISK" "Streptococcus" 3 "Linezolid" "Table 2H-1" "30ug" 21 6 FALSE "CLSI 2019" "MIC" "Streptococcus" 3 "Linezolid" "Table 2H-1" 2 2048 FALSE -"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" "30μg" 21 6 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" "30ug" 21 6 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" 2 2048 FALSE -"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" "30μg" 21 6 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" "30ug" 21 6 FALSE "CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" 2 2048 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Linezolid" "Generic rules" "30μg" 21 20 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Linezolid" "Generic rules" "30μg" 4 8 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Linezolid" "Generic rules" "30ug" 21 20 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Linezolid" "Generic rules" "30ug" 4 8 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Lomefloxacin" "Table 2B-5" 2 8 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Lomefloxacin" "Table 2E" "10μg" 22 6 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Lomefloxacin" "Table 2E" "10ug" 22 6 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Lomefloxacin" "Table 2E" 2 2048 FALSE -"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" "10μg" 22 18 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" "10ug" 22 18 FALSE "CLSI 2019" "MIC" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" 2 8 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" "10μg" 22 18 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" "10ug" 22 18 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" 2 8 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10μg" 22 18 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Loracarbef" "Table 2E" "30μg" 19 15 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10ug" 22 18 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Loracarbef" "Table 2E" "30ug" 19 15 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Loracarbef" "Table 2E" 8 32 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Loracarbef" "Table 2G" 2 8 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Loracarbef" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Loracarbef" "Generic rules" "30μg" 8 32 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Loracarbef" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Loracarbef" "Generic rules" "30ug" 8 32 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Latamoxef" "Table 2B-5" 8 64 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Latamoxef" "Generic rules" "30μg" 23 14 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Latamoxef" "Generic rules" "30μg" 8 64 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Latamoxef" "Generic rules" "30ug" 23 14 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Latamoxef" "Generic rules" "30ug" 8 64 FALSE "CLSI 2019" "MIC" "Abiotrophia" 3 "Levofloxacin" "M45 Table 1" 2 8 FALSE -"CLSI 2019" "DISK" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" "5μg" 17 13 FALSE +"CLSI 2019" "DISK" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" "5ug" 17 13 FALSE "CLSI 2019" "MIC" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" 2 8 FALSE "CLSI 2019" "MIC" "Aerococcus" 3 "Levofloxacin" "M45 Table 2" 2 8 FALSE -"CLSI 2019" "DISK" "Aeromonas" 3 "Levofloxacin" "M45 Table 2" "5μg" 17 13 FALSE +"CLSI 2019" "DISK" "Aeromonas" 3 "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE "CLSI 2019" "MIC" "Aeromonas" 3 "Levofloxacin" "M45 Table 3" 2 4 FALSE "CLSI 2019" "MIC" "Aggregatibacter" 3 "Levofloxacin" "M45 Table 9" 2 8 FALSE "CLSI 2019" "MIC" "Bacillus" 3 "Levofloxacin" "M45 Table 4" 2 8 FALSE @@ -10864,93 +10864,93 @@ "CLSI 2019" "MIC" "Burkholderia cepacia" 2 "Levofloxacin" "Table 2B-3" 2 8 FALSE "CLSI 2019" "MIC" "Cardiobacterium" 3 "Levofloxacin" "M45 Table 9" 2 8 FALSE "CLSI 2019" "MIC" "Eikenella corrodens" 2 "Levofloxacin" "M45 Table 9" 2 8 FALSE -"CLSI 2019" "DISK" "Enterococcus" 3 "Levofloxacin" "Table 2D" "5μg" 17 13 FALSE +"CLSI 2019" "DISK" "Enterococcus" 3 "Levofloxacin" "Table 2D" "5ug" 17 13 FALSE "CLSI 2019" "MIC" "Enterococcus" 3 "Levofloxacin" "Table 2D" 2 8 FALSE "CLSI 2019" "MIC" "Francisella tularensis tularensis" 1 "Levofloxacin" "M45 Table 21" 0.5 2048 FALSE "CLSI 2019" "MIC" "Gemella" 3 "Levofloxacin" "M45 Table 8" 2 8 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Levofloxacin" "Table 2B-5" 2 8 FALSE "CLSI 2019" "MIC" "Granulicatella" 3 "Levofloxacin" "M45 Table 1" 2 8 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Levofloxacin" "Table 2E" "5μg" 17 6 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Levofloxacin" "Table 2E" "5ug" 17 6 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Levofloxacin" "Table 2E" 2 2048 FALSE "CLSI 2019" "MIC" "Kingella" 3 "Levofloxacin" "M45 Table 9" 2 8 FALSE "CLSI 2019" "MIC" "Lactococcus" 3 "Levofloxacin" "M45 Table 12" 2 8 FALSE "CLSI 2019" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" "M45 Table 16" 2 2048 FALSE "CLSI 2019" "MIC" "Neisseria meningitidis" 2 "Levofloxacin" "Table 2I" 0.032 0.12 FALSE "CLSI 2019" "MIC" "Paenibacillus mucilaginosus" 2 "Levofloxacin" "M45 Table 19" 1 4 FALSE -"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" "5μg" 22 14 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" "5ug" 22 14 FALSE "CLSI 2019" "MIC" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" 1 4 FALSE -"CLSI 2019" "DISK" "Pasteurella" 3 "Levofloxacin" "M45 Table 17" "5μg" 28 6 FALSE +"CLSI 2019" "DISK" "Pasteurella" 3 "Levofloxacin" "M45 Table 17" "5ug" 28 6 FALSE "CLSI 2019" "MIC" "Pasteurella" 3 "Levofloxacin" "M45 Table 17" 0.064 2048 FALSE "CLSI 2019" "MIC" "Salmonella" 3 "Levofloxacin" "Table 2A" 0.125 2 FALSE "CLSI 2019" "MIC" "Extraintestinal" "Salmonella" 3 "Levofloxacin" "Table 2A" 0.125 2 FALSE -"CLSI 2019" "DISK" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" "75μg" 17 13 FALSE +"CLSI 2019" "DISK" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" "75ug" 17 13 FALSE "CLSI 2019" "MIC" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" 2 8 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Levofloxacin" "Table 2C" "10μg" 19 15 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Levofloxacin" "Table 2C" "10ug" 19 15 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Levofloxacin" "Table 2C" 1 4 FALSE -"CLSI 2019" "DISK" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" "5μg" 17 13 FALSE +"CLSI 2019" "DISK" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" "5ug" 17 13 FALSE "CLSI 2019" "MIC" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" 2 8 FALSE -"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" "5μg" 17 13 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" "5ug" 17 13 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" 2 8 FALSE -"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" "5μg" 17 13 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" "5ug" 17 13 FALSE "CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" 2 8 FALSE -"CLSI 2019" "DISK" "Vibrio" 3 "Levofloxacin" "M45 Table 20" "5μg" 17 13 FALSE +"CLSI 2019" "DISK" "Vibrio" 3 "Levofloxacin" "M45 Table 20" "5ug" 17 13 FALSE "CLSI 2019" "MIC" "Vibrio" 3 "Levofloxacin" "M45 Table 20" 2 8 FALSE "CLSI 2019" "MIC" "Yersinia pestis" 2 "Levofloxacin" "M45 Table 21" 0.25 2048 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5μg" 21 16 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5μg" 0.5 2 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 21 16 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 0.5 2 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Cefamandole" "Table 2E" 4 16 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Cefamandole" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Cefamandole" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Marbofloxacin" "Generic rules" "5μg" 20 14 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Marbofloxacin" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Mecillinam" "Generic rules" "10μg" 15 11 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Mecillinam" "Generic rules" "10μg" 8 32 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Cefamandole" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Cefamandole" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Marbofloxacin" "Generic rules" "5ug" 20 14 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Marbofloxacin" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 15 11 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 8 32 FALSE "CLSI 2019" "MIC" "Abiotrophia" 3 "Meropenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2019" "DISK" "Acinetobacter" 3 "Meropenem" "Table 2B-2" "10μg" 18 14 FALSE +"CLSI 2019" "DISK" "Acinetobacter" 3 "Meropenem" "Table 2B-2" "10ug" 18 14 FALSE "CLSI 2019" "MIC" "Acinetobacter" 3 "Meropenem" "Table 2B-2" 2 8 FALSE "CLSI 2019" "MIC" "Aerococcus" 3 "Meropenem" "M45 Table 2" 0.5 2048 FALSE -"CLSI 2019" "DISK" "Aeromonas" 3 "Meropenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2019" "DISK" "Aeromonas" 3 "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2019" "MIC" "Aeromonas" 3 "Meropenem" "M45 Table 3" 1 4 FALSE "CLSI 2019" "MIC" "Aggregatibacter" 3 "Meropenem" "M45 Table 9" 4 16 FALSE "CLSI 2019" "MIC" "Bacillus" 3 "Meropenem" "M45 Table 4" 4 16 FALSE -"CLSI 2019" "DISK" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" "10μg" 20 15 FALSE +"CLSI 2019" "DISK" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" "10ug" 20 15 FALSE "CLSI 2019" "MIC" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" 4 16 FALSE "CLSI 2019" "MIC" "Cardiobacterium" 3 "Meropenem" "M45 Table 9" 0.5 2 FALSE "CLSI 2019" "MIC" "Eikenella corrodens" 2 "Meropenem" "M45 Table 9" 0.5 2 FALSE "CLSI 2019" "MIC" "Gemella" 3 "Meropenem" "M45 Table 8" 0.5 2 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Meropenem" "Table 2B-5" 4 16 FALSE "CLSI 2019" "MIC" "Granulicatella" 3 "Meropenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Meropenem" "Table 2E" "10μg" 20 6 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Meropenem" "Table 2E" "10ug" 20 6 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Meropenem" "Table 2E" 0.5 2048 FALSE "CLSI 2019" "MIC" "Kingella" 3 "Meropenem" "M45 Table 9" 0.5 2 FALSE "CLSI 2019" "MIC" "Lactobacillus" 3 "Meropenem" "M45 Table 11" 1 4 FALSE "CLSI 2019" "MIC" "Lactococcus" 3 "Meropenem" "M45 Table 12" 0.25 1 FALSE "CLSI 2019" "MIC" "Listeria monocytogenes" 2 "Meropenem" "M45 Table 14" 0.25 2048 FALSE -"CLSI 2019" "DISK" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" "10μg" 30 6 FALSE +"CLSI 2019" "DISK" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" "10ug" 30 6 FALSE "CLSI 2019" "MIC" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" 0.25 2048 FALSE -"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2019" "MIC" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" 2 8 FALSE "CLSI 2019" "MIC" "Streptococcus" 3 "Meropenem" "Table 2H-1" 0.5 2048 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Meropenem" "Table 2G" 0.25 1 FALSE "CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "Table 2H-2" 0.5 2048 FALSE -"CLSI 2019" "DISK" "Vibrio" 3 "Meropenem" "M45 Table 20" "10μg" 23 19 FALSE +"CLSI 2019" "DISK" "Vibrio" 3 "Meropenem" "M45 Table 20" "10ug" 23 19 FALSE "CLSI 2019" "MIC" "Vibrio" 3 "Meropenem" "M45 Table 20" 1 4 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Meropenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Meropenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Methicillin" "Generic rules" "5μg" 14 9 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Methicillin" "Generic rules" "5μg" 8 16 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Meropenem/vaborbactam" "Generic rules" "20/10μg" 18 14 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Meropenem/vaborbactam" "Generic rules" "20/10μg" 4 16 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Moxifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Methicillin" "Generic rules" "5ug" 14 9 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Methicillin" "Generic rules" "5ug" 8 16 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Meropenem/vaborbactam" "Generic rules" "20/10ug" 18 14 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Meropenem/vaborbactam" "Generic rules" "20/10ug" 4 16 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Moxifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Moxifloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2019" "DISK" "Pasteurella" 3 "Moxifloxacin" "M45 Table 17" "5μg" 28 6 FALSE +"CLSI 2019" "DISK" "Pasteurella" 3 "Moxifloxacin" "M45 Table 17" "5ug" 28 6 FALSE "CLSI 2019" "MIC" "Pasteurella" 3 "Moxifloxacin" "M45 Table 17" 0.064 2048 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" "5μg" 24 20 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" "5ug" 24 20 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" "5μg" 18 14 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" "5ug" 18 14 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" 1 4 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5μg" 24 20 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5μg" 0.5 2 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 24 20 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 0.5 2 FALSE "CLSI 2019" "DISK" "Candida" 3 "Micafungin" "Table 1" 30 27 FALSE "CLSI 2019" "MIC" "Candida" 3 "Micafungin" "Table 1" 0.064 0.25 FALSE "CLSI 2019" "DISK" "Candida albicans" 2 "Micafungin" "Table 1" 22 19 FALSE @@ -10965,61 +10965,61 @@ "CLSI 2019" "MIC" "Meyerozyma guilliermondii" 2 "Micafungin" "Table 1" 2 8 FALSE "CLSI 2019" "DISK" "Pichia" 3 "Micafungin" "Table 1" 22 19 FALSE "CLSI 2019" "MIC" "Pichia" 3 "Micafungin" "Table 1" 0.25 1 FALSE -"CLSI 2019" "DISK" "Acinetobacter" 3 "Minocycline" "Table 2B-2" "30μg" 16 12 FALSE +"CLSI 2019" "DISK" "Acinetobacter" 3 "Minocycline" "Table 2B-2" "30ug" 16 12 FALSE "CLSI 2019" "MIC" "Acinetobacter" 3 "Minocycline" "Table 2B-2" 4 16 FALSE -"CLSI 2019" "DISK" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" "30μg" 19 14 FALSE +"CLSI 2019" "DISK" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" "30ug" 19 14 FALSE "CLSI 2019" "MIC" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" 4 16 FALSE -"CLSI 2019" "DISK" "Enterococcus" 3 "Minocycline" "Table 2D" "30μg" 19 14 FALSE +"CLSI 2019" "DISK" "Enterococcus" 3 "Minocycline" "Table 2D" "30ug" 19 14 FALSE "CLSI 2019" "MIC" "Enterococcus" 3 "Minocycline" "Table 2D" 4 16 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Minocycline" "Table 2B-5" 4 16 FALSE "CLSI 2019" "MIC" "Leuconostoc" 3 "Minocycline" "M45 Table 13" 4 16 FALSE -"CLSI 2019" "DISK" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" "30μg" 26 6 FALSE +"CLSI 2019" "DISK" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" "30ug" 26 6 FALSE "CLSI 2019" "MIC" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" 2 2048 FALSE -"CLSI 2019" "DISK" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" "30μg" 19 14 FALSE +"CLSI 2019" "DISK" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" "30ug" 19 14 FALSE "CLSI 2019" "MIC" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" 4 16 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Minocycline" "Table 2C" "30μg" 19 14 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Minocycline" "Table 2C" "30ug" 19 14 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Minocycline" "Table 2C" 4 16 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Minocycline" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Minocycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Nafcillin" "Generic rules" "1μg" 13 10 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Nafcillin" "Generic rules" "1μg" 2 4 FALSE -"CLSI 2019" "DISK" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" "30μg" 26 25 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Minocycline" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Minocycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Nafcillin" "Generic rules" "1ug" 13 10 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Nafcillin" "Generic rules" "1ug" 2 4 FALSE +"CLSI 2019" "DISK" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" "30ug" 26 25 FALSE "CLSI 2019" "MIC" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" 4 8 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30μg" 19 13 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30μg" 16 32 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 19 13 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 16 32 FALSE "CLSI 2019" "MIC" "Acinetobacter" 3 "Netilmicin" "Table 2B-2" 8 32 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Netilmicin" "Table 2B-5" 8 32 FALSE -"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" "30μg" 15 12 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" "30ug" 15 12 FALSE "CLSI 2019" "MIC" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" 8 32 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Netilmicin" "Generic rules" "30μg" 15 12 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Netilmicin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2019" "DISK" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" "300μg" 17 14 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Netilmicin" "Generic rules" "30ug" 15 12 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Netilmicin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2019" "DISK" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" "300ug" 17 14 FALSE "CLSI 2019" "MIC" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" 32 128 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" "300μg" 17 14 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" "300ug" 17 14 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" 32 128 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "300μg" 17 14 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100μg" 32 128 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "300ug" 17 14 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100ug" 32 128 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Ofloxacin" "Table 2B-5" 2 8 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Ofloxacin" "Table 2E" "5μg" 16 6 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Ofloxacin" "Table 2E" "5ug" 16 6 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Ofloxacin" "Table 2E" 2 2048 FALSE -"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" "5μg" 16 12 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" "5ug" 16 12 FALSE "CLSI 2019" "MIC" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" 2 8 FALSE "CLSI 2019" "MIC" "Salmonella" 3 "Ofloxacin" "Table 2A" 0.125 2 FALSE "CLSI 2019" "MIC" "Extraintestinal" "Salmonella" 3 "Ofloxacin" "Table 2A" 0.125 2 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Ofloxacin" "Table 2C" "5μg" 18 14 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Ofloxacin" "Table 2C" "5ug" 18 14 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Ofloxacin" "Table 2C" 1 4 FALSE -"CLSI 2019" "DISK" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" "5μg" 16 12 FALSE +"CLSI 2019" "DISK" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" "5ug" 16 12 FALSE "CLSI 2019" "MIC" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" 2 8 FALSE -"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" "5μg" 16 12 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" "5ug" 16 12 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" 2 8 FALSE -"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" "5μg" 16 12 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" "5ug" 16 12 FALSE "CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" 2 8 FALSE -"CLSI 2019" "DISK" "Vibrio" 3 "Ofloxacin" "M45 Table 20" "5μg" 16 12 FALSE +"CLSI 2019" "DISK" "Vibrio" 3 "Ofloxacin" "M45 Table 20" "5ug" 16 12 FALSE "CLSI 2019" "MIC" "Vibrio" 3 "Ofloxacin" "M45 Table 20" 2 8 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5μg" 16 12 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10μg" 23 17 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10μg" 1 8 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 16 12 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10ug" 23 17 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10ug" 1 8 FALSE "CLSI 2019" "MIC" "Enterococcus" 3 "Oritavancin" "Table 2D" 0.125 2048 FALSE "CLSI 2019" "MIC" "Staphylococcus aureus aureus" 1 "Oritavancin" "Table 2C" 0.125 2048 FALSE "CLSI 2019" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Oritavancin" "Table 2C" 0.125 2048 FALSE @@ -11028,15 +11028,15 @@ "CLSI 2019" "MIC" "Staphylococcus" 3 "Oxacillin" "Table 2C" 0.25 0.5 FALSE "CLSI 2019" "MIC" "Staphylococcus aureus aureus" 1 "Oxacillin" "Table 2C" 2 4 FALSE "CLSI 2019" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Oxacillin" "Table 2C" 2 4 FALSE -"CLSI 2019" "DISK" "Staphylococcus epidermidis" 2 "Oxacillin" "Table 2C" "1μg" 18 17 FALSE +"CLSI 2019" "DISK" "Staphylococcus epidermidis" 2 "Oxacillin" "Table 2C" "1ug" 18 17 FALSE "CLSI 2019" "MIC" "Staphylococcus epidermidis" 2 "Oxacillin" "Table 2C" 0.25 0.5 FALSE "CLSI 2019" "MIC" "Staphylococcus lugdunensis" 2 "Oxacillin" "Table 2C" 2 4 FALSE -"CLSI 2019" "DISK" "Staphylococcus pseudintermedius" 2 "Oxacillin" "Table 2C" "1μg" 18 17 FALSE +"CLSI 2019" "DISK" "Staphylococcus pseudintermedius" 2 "Oxacillin" "Table 2C" "1ug" 18 17 FALSE "CLSI 2019" "MIC" "Staphylococcus pseudintermedius" 2 "Oxacillin" "Table 2C" 0.25 0.5 FALSE -"CLSI 2019" "DISK" "Staphylococcus schleiferi" 2 "Oxacillin" "Table 2C" "1μg" 18 17 FALSE +"CLSI 2019" "DISK" "Staphylococcus schleiferi" 2 "Oxacillin" "Table 2C" "1ug" 18 17 FALSE "CLSI 2019" "MIC" "Staphylococcus schleiferi" 2 "Oxacillin" "Table 2C" 0.25 0.5 FALSE -"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "Table 2G" "1μg" 20 6 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Oxacillin" "Generic rules" "1μg" 0.25 0.5 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "Table 2G" "1ug" 20 6 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Oxacillin" "Generic rules" "1ug" 0.25 0.5 FALSE "CLSI 2019" "DISK" "Salmonella" 3 "Pefloxacin" "Table 2A" 24 23 FALSE "CLSI 2019" "MIC" "Abiotrophia" 3 "Benzylpenicillin" "M45 Table 1" 0.125 4 FALSE "CLSI 2019" "MIC" "Aerococcus" 3 "Benzylpenicillin" "M45 Table 2" 0.125 4 FALSE @@ -11062,7 +11062,7 @@ "CLSI 2019" "MIC" "Paenibacillus mucilaginosus" 2 "Benzylpenicillin" "M45 Table 19" 0.125 4 FALSE "CLSI 2019" "DISK" "Pasteurella" 3 "Benzylpenicillin" "M45 Table 17" "10 Units" 25 6 FALSE "CLSI 2019" "MIC" "Pasteurella" 3 "Benzylpenicillin" "M45 Table 17" 0.5 2048 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" "10μg" 29 28 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" "10ug" 29 28 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" 0.125 0.25 FALSE "CLSI 2019" "DISK" "Streptococcus" 3 "Benzylpenicillin" "Table 2H-1" "10units" 24 6 FALSE "CLSI 2019" "MIC" "Streptococcus" 3 "Benzylpenicillin" "Table 2H-1" 0.125 2048 FALSE @@ -11073,157 +11073,157 @@ "CLSI 2019" "DISK" "(unknown name)" 6 "Benzylpenicillin" "Generic rules" "10units" 29 28 FALSE "CLSI 2019" "MIC" "(unknown name)" 6 "Benzylpenicillin" "Generic rules" "10units" 0.125 0.25 FALSE "CLSI 2019" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Phenoxymethylpenicillin" "Table 2G" 0.064 2 FALSE -"CLSI 2019" "DISK" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" "100μg" 21 17 FALSE +"CLSI 2019" "DISK" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" "100ug" 21 17 FALSE "CLSI 2019" "MIC" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" 16 128 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Piperacillin" "Table 2B-5" 16 128 FALSE -"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" "100μg" 21 14 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" "100ug" 21 14 FALSE "CLSI 2019" "MIC" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" 16 128 FALSE -"CLSI 2019" "DISK" "Vibrio" 3 "Piperacillin" "M45 Table 20" "100μg" 21 17 FALSE +"CLSI 2019" "DISK" "Vibrio" 3 "Piperacillin" "M45 Table 20" "100ug" 21 17 FALSE "CLSI 2019" "MIC" "Vibrio" 3 "Piperacillin" "M45 Table 20" 16 128 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Piperacillin" "Generic rules" "100μg" 21 17 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Piperacillin" "Generic rules" "100μg" 16 128 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Piperacillin" "Generic rules" "100ug" 21 17 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Piperacillin" "Generic rules" "100ug" 16 128 FALSE "CLSI 2019" "MIC" "Acinetobacter" 3 "Polymyxin B" "Table 2B-2" 2 4 FALSE "CLSI 2019" "MIC" "Pseudomonas aeruginosa" 2 "Polymyxin B" "Table 2B-1" 2 8 FALSE "CLSI 2019" "DISK" "(unknown name)" 6 "Polymyxin B" "Generic rules" "300units" 12 11 FALSE "CLSI 2019" "MIC" "(unknown name)" 6 "Polymyxin B" "Generic rules" "300units" 2 8 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30μg" 18 14 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30μg" 1 4 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2μg" 13 12 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2μg" 2 4 FALSE -"CLSI 2019" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" "15μg" 19 15 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30ug" 18 14 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30ug" 1 4 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2ug" 13 12 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2ug" 2 4 FALSE +"CLSI 2019" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" "15ug" 19 15 FALSE "CLSI 2019" "MIC" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" 1 4 FALSE -"CLSI 2019" "DISK" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" "15μg" 19 15 FALSE +"CLSI 2019" "DISK" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" "15ug" 19 15 FALSE "CLSI 2019" "MIC" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" 1 4 FALSE -"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" "15μg" 19 15 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" "15ug" 19 15 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" 1 4 FALSE -"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" "15μg" 19 15 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" "15ug" 19 15 FALSE "CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" 1 4 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15μg" 19 15 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15μg" 1 4 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15ug" 19 15 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15ug" 1 4 FALSE "CLSI 2019" "MIC" "Aggregatibacter" 3 "Rifampicin" "M45 Table 9" 1 4 FALSE "CLSI 2019" "MIC" "Bacillus" 3 "Rifampicin" "M45 Table 4" 1 4 FALSE "CLSI 2019" "MIC" "Cardiobacterium" 3 "Rifampicin" "M45 Table 9" 1 4 FALSE "CLSI 2019" "MIC" "Eikenella corrodens" 2 "Rifampicin" "M45 Table 9" 1 4 FALSE -"CLSI 2019" "DISK" "Enterococcus" 3 "Rifampicin" "Table 2D" "5μg" 20 16 FALSE +"CLSI 2019" "DISK" "Enterococcus" 3 "Rifampicin" "Table 2D" "5ug" 20 16 FALSE "CLSI 2019" "MIC" "Enterococcus" 3 "Rifampicin" "Table 2D" 1 4 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Rifampicin" "Table 2E" "5μg" 20 16 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Rifampicin" "Table 2E" "5ug" 20 16 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Rifampicin" "Table 2E" 1 4 FALSE "CLSI 2019" "MIC" "Kingella" 3 "Rifampicin" "M45 Table 9" 1 4 FALSE "CLSI 2019" "MIC" "Moraxella catarrhalis" 2 "Rifampicin" "M45 Table 16" 1 4 FALSE -"CLSI 2019" "DISK" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" "5μg" 25 19 FALSE +"CLSI 2019" "DISK" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" "5ug" 25 19 FALSE "CLSI 2019" "MIC" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" 0.5 2 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Rifampicin" "Table 2C" "5μg" 20 16 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Rifampicin" "Table 2C" "5ug" 20 16 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Rifampicin" "Table 2C" 1 4 FALSE -"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" "5μg" 19 16 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" "5ug" 19 16 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" 1 4 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Rifampicin" "Generic rules" "5μg" 20 16 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Rifampicin" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2019" "DISK" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" "10μg" 15 11 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Rifampicin" "Generic rules" "5ug" 20 16 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Rifampicin" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2019" "DISK" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" "10ug" 15 11 FALSE "CLSI 2019" "MIC" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" 8 32 FALSE -"CLSI 2019" "DISK" "Aeromonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10μg" 15 11 FALSE +"CLSI 2019" "DISK" "Aeromonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE "CLSI 2019" "MIC" "Aggregatibacter" 3 "Ampicillin/sulbactam" "M45 Table 9" 2 4 FALSE "CLSI 2019" "MIC" "Cardiobacterium" 3 "Ampicillin/sulbactam" "M45 Table 9" 2 4 FALSE "CLSI 2019" "MIC" "Eikenella corrodens" 2 "Ampicillin/sulbactam" "M45 Table 9" 2 4 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" "10/10μg" 20 19 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" "10/10ug" 20 19 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" 2 4 FALSE "CLSI 2019" "MIC" "Kingella" 3 "Ampicillin/sulbactam" "M45 Table 9" 2 4 FALSE -"CLSI 2019" "DISK" "Vibrio" 3 "Ampicillin/sulbactam" "M45 Table 20" "10μg" 15 11 FALSE +"CLSI 2019" "DISK" "Vibrio" 3 "Ampicillin/sulbactam" "M45 Table 20" "10ug" 15 11 FALSE "CLSI 2019" "MIC" "Vibrio" 3 "Ampicillin/sulbactam" "M45 Table 20" 8 32 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10μg" 15 11 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10μg" 8 32 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300μg" 256 512 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10ug" 15 11 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10ug" 8 32 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300ug" 256 512 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Sulfamethoxazole" "Table 2B-5" 256 512 FALSE "CLSI 2019" "MIC" "Neisseria meningitidis" 2 "Sulfamethoxazole" "Table 2I" 2 8 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" "200μg" 17 12 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" "200ug" 17 12 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" 256 512 FALSE -"CLSI 2019" "DISK" "Vibrio" 3 "Sulfamethoxazole" "M45 Table 20" "200μg" 17 12 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300μg" 256 512 FALSE +"CLSI 2019" "DISK" "Vibrio" 3 "Sulfamethoxazole" "M45 Table 20" "200ug" 17 12 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300ug" 256 512 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Sulfisoxazole" "Table 2B-5" 256 512 FALSE "CLSI 2019" "MIC" "Neisseria meningitidis" 2 "Sulfisoxazole" "Table 2I" 2 8 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" "200μg" 17 12 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" "200ug" 17 12 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" 256 512 FALSE -"CLSI 2019" "DISK" "Vibrio" 3 "Sulfisoxazole" "M45 Table 20" "200μg" 17 12 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300μg" 256 512 FALSE -"CLSI 2019" "DISK" "Histophilus somni" 2 "Spectinomycin" "Vet Table" "100μg" 14 10 FALSE -"CLSI 2019" "DISK" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" "100μg" 18 14 FALSE +"CLSI 2019" "DISK" "Vibrio" 3 "Sulfisoxazole" "M45 Table 20" "200ug" 17 12 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300ug" 256 512 FALSE +"CLSI 2019" "DISK" "Histophilus somni" 2 "Spectinomycin" "Vet Table" "100ug" 14 10 FALSE +"CLSI 2019" "DISK" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" "100ug" 18 14 FALSE "CLSI 2019" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" 32 128 FALSE -"CLSI 2019" "DISK" "Providencia heimbachae" 2 "Spectinomycin" "100μg" 14 10 FALSE -"CLSI 2019" "DISK" "Pasteurella multocida multocida" 1 "Spectinomycin" "100μg" 14 10 FALSE +"CLSI 2019" "DISK" "Providencia heimbachae" 2 "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2019" "DISK" "Pasteurella multocida multocida" 1 "Spectinomycin" "100ug" 14 10 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Sparfloxacin" "Table 2E" 0.25 2048 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" "5μg" 19 15 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" "5ug" 19 15 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" "5μg" 19 15 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" "5ug" 19 15 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" 0.5 2 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5μg" 0.5 2 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5ug" 0.5 2 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Sulfonamide" "Table 2B-5" 256 512 FALSE "CLSI 2019" "MIC" "Neisseria meningitidis" 2 "Sulfonamide" "Table 2I" 2 8 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Sulfonamide" "Table 2C" "200μg" 17 12 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Sulfonamide" "Table 2C" "200ug" 17 12 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Sulfonamide" "Table 2C" 256 512 FALSE -"CLSI 2019" "DISK" "Vibrio" 3 "Sulfonamide" "M45 Table 20" "200μg" 17 12 FALSE +"CLSI 2019" "DISK" "Vibrio" 3 "Sulfonamide" "M45 Table 20" "200ug" 17 12 FALSE "CLSI 2019" "MIC" "Vibrio" 3 "Sulfonamide" "M45 Table 20" 256 512 FALSE -"CLSI 2019" "DISK" "Enterococcus" 3 "Streptomycin-high" "Table 2D" "300μg" 10 6 FALSE +"CLSI 2019" "DISK" "Enterococcus" 3 "Streptomycin-high" "Table 2D" "300ug" 10 6 FALSE "CLSI 2019" "MIC" "Enterococcus" 3 "Streptomycin-high" "Table 2D" 1024 2048 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300μg" 10 6 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300μg" 1024 2048 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300ug" 10 6 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300ug" 1024 2048 FALSE "CLSI 2019" "MIC" "Brucella" 3 "Streptoduocin" "M45 Table 21" 8 2048 FALSE "CLSI 2019" "MIC" "Enterococcus" 3 "Streptoduocin" "Table 2D" 1024 2048 FALSE "CLSI 2019" "MIC" "Francisella tularensis tularensis" 1 "Streptoduocin" "M45 Table 21" 8 2048 FALSE "CLSI 2019" "MIC" "Yersinia pestis" 2 "Streptoduocin" "M45 Table 21" 4 16 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Streptomycin" "Generic rules" "10μg" 15 11 FALSE -"CLSI 2019" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Streptomycin" "Generic rules" "10ug" 15 11 FALSE +"CLSI 2019" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2019" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" 2 4 FALSE "CLSI 2019" "MIC" "Aerococcus" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE -"CLSI 2019" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2019" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2019" "MIC" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 3" 2 4 FALSE "CLSI 2019" "MIC" "Aggregatibacter" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 9" 0.5 4 FALSE "CLSI 2019" "MIC" "Bacillus" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 4" 2 4 FALSE "CLSI 2019" "MIC" "Brucella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 21" 2 2048 FALSE -"CLSI 2019" "DISK" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2019" "DISK" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2019" "MIC" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" 2 4 FALSE "CLSI 2019" "MIC" "Burkholderia pseudomallei" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 21" 2 4 FALSE "CLSI 2019" "MIC" "Cardiobacterium" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 9" 0.5 4 FALSE "CLSI 2019" "MIC" "Eikenella corrodens" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 9" 0.5 4 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-5" 2 4 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" "1.25μg/23.75μg" 15 10 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" "1.25ug/23.75ug" 15 10 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" 0.5 4 FALSE "CLSI 2019" "MIC" "Kingella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 9" 0.5 4 FALSE "CLSI 2019" "MIC" "Lactococcus" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 12" 2 4 FALSE "CLSI 2019" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 14" 0.5 2048 FALSE -"CLSI 2019" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 16" "1.25μg/23.75μg" 13 10 FALSE +"CLSI 2019" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 16" "1.25ug/23.75ug" 13 10 FALSE "CLSI 2019" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 16" 0.5 4 FALSE -"CLSI 2019" "DISK" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" "1.25μg/23.75μg" 30 25 FALSE +"CLSI 2019" "DISK" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" "1.25ug/23.75ug" 30 25 FALSE "CLSI 2019" "MIC" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" 0.125 0.5 FALSE "CLSI 2019" "MIC" "Paenibacillus mucilaginosus" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 19" 2 4 FALSE -"CLSI 2019" "DISK" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 17" "1.25μg/23.75μg" 24 6 FALSE +"CLSI 2019" "DISK" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 17" "1.25ug/23.75ug" 24 6 FALSE "CLSI 2019" "MIC" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 17" 0.5 2048 FALSE -"CLSI 2019" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" "30μg" 16 10 FALSE +"CLSI 2019" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" "30ug" 16 10 FALSE "CLSI 2019" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" 2 4 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" 2 4 FALSE -"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" "1.25μg/23.75μg" 19 15 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" "1.25ug/23.75ug" 19 15 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" 0.5 4 FALSE -"CLSI 2019" "DISK" "Vibrio" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 20" "1.25μg" 16 10 FALSE +"CLSI 2019" "DISK" "Vibrio" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 20" "1.25ug" 16 10 FALSE "CLSI 2019" "MIC" "Vibrio" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 20" 2 4 FALSE "CLSI 2019" "MIC" "Yersinia pestis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 21" 2 4 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75μg" 16 10 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75μg" 2 4 FALSE -"CLSI 2019" "DISK" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" "75μg" 20 14 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 16 10 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 2 4 FALSE +"CLSI 2019" "DISK" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" "75ug" 20 14 FALSE "CLSI 2019" "MIC" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" 16 128 FALSE "CLSI 2019" "MIC" "Burkholderia cepacia" 2 "Ticarcillin/clavulanic acid" "Table 2B-3" 16 128 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Ticarcillin/clavulanic acid" "Table 2B-5" 16 128 FALSE -"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" "75μg" 24 15 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" "75ug" 24 15 FALSE "CLSI 2019" "MIC" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" 16 128 FALSE "CLSI 2019" "MIC" "Stenotrophomonas maltophilia" 2 "Ticarcillin/clavulanic acid" "Table 2B-4" 16 128 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15μg" 20 14 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15μg" 16 128 FALSE -"CLSI 2019" "DISK" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" "30μg" 15 11 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15ug" 20 14 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15ug" 16 128 FALSE +"CLSI 2019" "DISK" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" "30ug" 15 11 FALSE "CLSI 2019" "MIC" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" 4 16 FALSE "CLSI 2019" "MIC" "Aerococcus" 3 "Tetracycline" "M45 Table 2" 2 8 FALSE -"CLSI 2019" "DISK" "Aeromonas" 3 "Tetracycline" "M45 Table 2" "30μg" 15 11 FALSE +"CLSI 2019" "DISK" "Aeromonas" 3 "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE "CLSI 2019" "MIC" "Aeromonas" 3 "Tetracycline" "M45 Table 3" 4 16 FALSE "CLSI 2019" "MIC" "Aggregatibacter" 3 "Tetracycline" "M45 Table 9" 2 8 FALSE "CLSI 2019" "MIC" "Bacillus" 3 "Tetracycline" "M45 Table 4" 4 16 FALSE @@ -11234,104 +11234,104 @@ "CLSI 2019" "MIC" "Campylobacter" 3 "Tetracycline" "M45 Table 5" 4 16 FALSE "CLSI 2019" "MIC" "Cardiobacterium" 3 "Tetracycline" "M45 Table 9" 2 8 FALSE "CLSI 2019" "MIC" "Eikenella corrodens" 2 "Tetracycline" "M45 Table 9" 2 8 FALSE -"CLSI 2019" "DISK" "Enterococcus" 3 "Tetracycline" "Table 2D" "30μg" 19 14 FALSE +"CLSI 2019" "DISK" "Enterococcus" 3 "Tetracycline" "Table 2D" "30ug" 19 14 FALSE "CLSI 2019" "MIC" "Enterococcus" 3 "Tetracycline" "Table 2D" 4 16 FALSE "CLSI 2019" "MIC" "Francisella tularensis tularensis" 1 "Tetracycline" "M45 Table 21" 4 2048 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Tetracycline" "Table 2B-5" 4 16 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Tetracycline" "Table 2E" "30μg" 29 25 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Tetracycline" "Table 2E" "30ug" 29 25 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Tetracycline" "Table 2E" 2 8 FALSE "CLSI 2019" "MIC" "Kingella" 3 "Tetracycline" "M45 Table 9" 2 8 FALSE "CLSI 2019" "MIC" "Lactococcus" 3 "Tetracycline" "M45 Table 12" 2 8 FALSE -"CLSI 2019" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 16" "30μg" 29 24 FALSE +"CLSI 2019" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 16" "30ug" 29 24 FALSE "CLSI 2019" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 16" 2 8 FALSE -"CLSI 2019" "DISK" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" "30μg" 38 30 FALSE +"CLSI 2019" "DISK" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" "30ug" 38 30 FALSE "CLSI 2019" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" 0.25 2 FALSE -"CLSI 2019" "DISK" "Pasteurella" 3 "Tetracycline" "M45 Table 17" "30μg" 23 6 FALSE +"CLSI 2019" "DISK" "Pasteurella" 3 "Tetracycline" "M45 Table 17" "30ug" 23 6 FALSE "CLSI 2019" "MIC" "Pasteurella" 3 "Tetracycline" "M45 Table 17" 1 2048 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Tetracycline" "Table 2C" "30μg" 19 14 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Tetracycline" "Table 2C" "30ug" 19 14 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Tetracycline" "Table 2C" 4 16 FALSE -"CLSI 2019" "DISK" "Streptococcus" 3 "Tetracycline" "Table 2H-1" "30μg" 23 18 FALSE +"CLSI 2019" "DISK" "Streptococcus" 3 "Tetracycline" "Table 2H-1" "30ug" 23 18 FALSE "CLSI 2019" "MIC" "Streptococcus" 3 "Tetracycline" "Table 2H-1" 2 8 FALSE -"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" "30μg" 28 24 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" "30ug" 28 24 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" 1 4 FALSE -"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" "30μg" 23 18 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" "30ug" 23 18 FALSE "CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" 2 8 FALSE -"CLSI 2019" "DISK" "Vibrio" 3 "Tetracycline" "M45 Table 20" "30μg" 15 11 FALSE +"CLSI 2019" "DISK" "Vibrio" 3 "Tetracycline" "M45 Table 20" "30ug" 15 11 FALSE "CLSI 2019" "MIC" "Vibrio" 3 "Tetracycline" "M45 Table 20" 4 16 FALSE "CLSI 2019" "MIC" "Yersinia pestis" 2 "Tetracycline" "M45 Table 21" 4 16 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Tetracycline" "Generic rules" "30μg" 15 11 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Tetracycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2019" "DISK" "Enterococcus" 3 "Teicoplanin" "Table 2D" "30μg" 14 10 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Tetracycline" "Generic rules" "30ug" 15 11 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Tetracycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2019" "DISK" "Enterococcus" 3 "Teicoplanin" "Table 2D" "30ug" 14 10 FALSE "CLSI 2019" "MIC" "Enterococcus" 3 "Teicoplanin" "Table 2D" 8 32 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Teicoplanin" "Table 2C" "30μg" 14 10 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Teicoplanin" "Table 2C" "30ug" 14 10 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Teicoplanin" "Table 2C" 8 32 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30μg" 14 10 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Tiamulin" "Generic rules" "30μg" 9 8 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Tiamulin" "Generic rules" "30μg" 16 32 FALSE -"CLSI 2019" "DISK" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" "Vet Table" "15μg" 11 10 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30ug" 14 10 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Tiamulin" "Generic rules" "30ug" 9 8 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Tiamulin" "Generic rules" "30ug" 16 32 FALSE +"CLSI 2019" "DISK" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE "CLSI 2019" "MIC" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" "Vet Table" 16 32 FALSE -"CLSI 2019" "DISK" "Pasteurella multocida multocida" 1 "Tilmicosin" "Vet Table" "15μg" 11 10 FALSE +"CLSI 2019" "DISK" "Pasteurella multocida multocida" 1 "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE "CLSI 2019" "MIC" "Pasteurella multocida multocida" 1 "Tilmicosin" "Vet Table" 16 32 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15μg" 14 10 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15μg" 8 32 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30μg" 2 8 FALSE -"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" "15μg" 19 15 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15ug" 14 10 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15ug" 8 32 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30ug" 2 8 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" "15ug" 19 15 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" 1 4 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Telithromycin" "Generic rules" "15μg" 22 18 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Telithromycin" "Generic rules" "15μg" 1 4 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Telithromycin" "Generic rules" "15ug" 22 18 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Telithromycin" "Generic rules" "15ug" 1 4 FALSE "CLSI 2019" "MIC" "Enterococcus" 3 "Telavancin" "Table 2D" 0.125 2048 FALSE "CLSI 2019" "MIC" "Staphylococcus aureus aureus" 1 "Telavancin" "Table 2C" 0.125 2048 FALSE "CLSI 2019" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Telavancin" "Table 2C" 0.125 2048 FALSE "CLSI 2019" "MIC" "Streptococcus" 3 "Telavancin" "Table 2H-1" 0.125 2048 FALSE "CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Telavancin" "Table 2H-2" 0.125 2048 FALSE -"CLSI 2019" "DISK" "Staphylococcus" 3 "Trimethoprim" "Table 2C" "5μg" 16 10 FALSE +"CLSI 2019" "DISK" "Staphylococcus" 3 "Trimethoprim" "Table 2C" "5ug" 16 10 FALSE "CLSI 2019" "MIC" "Staphylococcus" 3 "Trimethoprim" "Table 2C" 8 16 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5μg" 16 10 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5μg" 8 16 FALSE -"CLSI 2019" "DISK" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" "10μg" 15 12 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 16 10 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 8 16 FALSE +"CLSI 2019" "DISK" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" "10ug" 15 12 FALSE "CLSI 2019" "MIC" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" 4 16 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Tobramycin" "Table 2B-5" 4 16 FALSE -"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" "10μg" 15 12 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" "10ug" 15 12 FALSE "CLSI 2019" "MIC" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" 4 16 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Tobramycin" "Generic rules" "10μg" 15 12 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Tobramycin" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Tulathromycin" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Tulathromycin" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Trovafloxacin" "Table 2E" "10μg" 22 6 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 15 12 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Tulathromycin" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Tulathromycin" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Trovafloxacin" "Table 2E" "10ug" 22 6 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Trovafloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2019" "DISK" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" "10μg" 34 6 FALSE +"CLSI 2019" "DISK" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" "10ug" 34 6 FALSE "CLSI 2019" "MIC" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" 0.25 2048 FALSE -"CLSI 2019" "DISK" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" "10μg" 19 15 FALSE +"CLSI 2019" "DISK" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" "10ug" 19 15 FALSE "CLSI 2019" "MIC" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" 1 4 FALSE -"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" "10μg" 19 15 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" "10ug" 19 15 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" 1 4 FALSE -"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" "10μg" 19 15 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" "10ug" 19 15 FALSE "CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" 1 4 FALSE "CLSI 2019" "MIC" "Enterococcus" 3 "Tedizolid" "Table 2D" 0.5 2048 FALSE "CLSI 2019" "MIC" "Staphylococcus aureus aureus" 1 "Tedizolid" "Table 2C" 0.5 2 FALSE "CLSI 2019" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Tedizolid" "Table 2C" 0.5 2 FALSE "CLSI 2019" "MIC" "Streptococcus" 3 "Tedizolid" "Table 2H-1" 0.5 2048 FALSE "CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Tedizolid" "Table 2H-2" 0.25 2048 FALSE -"CLSI 2019" "DISK" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" "100μg" 21 17 FALSE +"CLSI 2019" "DISK" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" "100ug" 21 17 FALSE "CLSI 2019" "MIC" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" 16 128 FALSE -"CLSI 2019" "DISK" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100μg" 21 17 FALSE +"CLSI 2019" "DISK" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE "CLSI 2019" "MIC" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 3" 16 128 FALSE "CLSI 2019" "MIC" "(unknown Gram-negatives)" 2 "Piperacillin/tazobactam" "Table 2B-5" 16 128 FALSE -"CLSI 2019" "DISK" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" "100μg" 21 6 FALSE +"CLSI 2019" "DISK" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" "100ug" 21 6 FALSE "CLSI 2019" "MIC" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" 1 2 FALSE -"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" "100μg" 21 14 FALSE +"CLSI 2019" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" "100ug" 21 14 FALSE "CLSI 2019" "MIC" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" 16 128 FALSE -"CLSI 2019" "DISK" "Vibrio" 3 "Piperacillin/tazobactam" "M45 Table 20" "100μg" 21 17 FALSE +"CLSI 2019" "DISK" "Vibrio" 3 "Piperacillin/tazobactam" "M45 Table 20" "100ug" 21 17 FALSE "CLSI 2019" "MIC" "Vibrio" 3 "Piperacillin/tazobactam" "M45 Table 20" 16 128 FALSE -"CLSI 2019" "DISK" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10μg" 21 17 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10μg" 16 128 FALSE +"CLSI 2019" "DISK" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10ug" 21 17 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10ug" 16 128 FALSE "CLSI 2019" "MIC" "Abiotrophia" 3 "Vancomycin" "M45 Table 1" 1 2048 FALSE "CLSI 2019" "MIC" "Aerococcus" 3 "Vancomycin" "M45 Table 2" 1 2048 FALSE "CLSI 2019" "MIC" "Bacillus" 3 "Vancomycin" "M45 Table 4" 4 2048 FALSE "CLSI 2019" "MIC" "Cutibacterium acnes" 2 "Vancomycin" "Table 2J-2" 2 4 FALSE -"CLSI 2019" "DISK" "Enterococcus" 3 "Vancomycin" "Table 2D" "30μg" 17 14 FALSE +"CLSI 2019" "DISK" "Enterococcus" 3 "Vancomycin" "Table 2D" "30ug" 17 14 FALSE "CLSI 2019" "MIC" "Enterococcus" 3 "Vancomycin" "Table 2D" 4 32 FALSE "CLSI 2019" "MIC" "Gemella" 3 "Vancomycin" "M45 Table 8" 1 2048 FALSE "CLSI 2019" "MIC" "Granulicatella" 3 "Vancomycin" "M45 Table 1" 1 2048 FALSE @@ -11342,13 +11342,13 @@ "CLSI 2019" "MIC" "Staphylococcus" 3 "Vancomycin" "Table 2C" 4 32 FALSE "CLSI 2019" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" "Table 2C" 2 16 FALSE "CLSI 2019" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Vancomycin" "Table 2C" 2 16 FALSE -"CLSI 2019" "DISK" "Streptococcus" 3 "Vancomycin" "Table 2H-1" "30μg" 17 6 FALSE +"CLSI 2019" "DISK" "Streptococcus" 3 "Vancomycin" "Table 2H-1" "30ug" 17 6 FALSE "CLSI 2019" "MIC" "Streptococcus" 3 "Vancomycin" "Table 2H-1" 1 2048 FALSE -"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" "30μg" 17 6 FALSE +"CLSI 2019" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" "30ug" 17 6 FALSE "CLSI 2019" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" 1 2048 FALSE -"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" "30μg" 17 6 FALSE +"CLSI 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" "30ug" 17 6 FALSE "CLSI 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" 1 2048 FALSE -"CLSI 2019" "MIC" "(unknown name)" 6 "Vancomycin" "Generic rules" "30μg" 4 32 FALSE +"CLSI 2019" "MIC" "(unknown name)" 6 "Vancomycin" "Generic rules" "30ug" 4 32 FALSE "CLSI 2019" "DISK" "Candida albicans" 2 "Voriconazole" "Table 1" 17 14 FALSE "CLSI 2019" "MIC" "Candida albicans" 2 "Voriconazole" "Table 1" 0.125 1 FALSE "CLSI 2019" "DISK" "Candida krusei" 2 "Voriconazole" "Table 1" 15 12 FALSE @@ -11359,190 +11359,190 @@ "CLSI 2019" "MIC" "Candida tropicalis" 2 "Voriconazole" "Table 1" 0.125 1 FALSE "CLSI 2019" "DISK" "Pichia" 3 "Voriconazole" "Table 1" 15 12 FALSE "CLSI 2019" "MIC" "Pichia" 3 "Voriconazole" "Table 1" 0.5 2 FALSE -"CLSI 2018" "DISK" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20μg" 18 13 FALSE +"CLSI 2018" "DISK" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE "CLSI 2018" "MIC" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" 8 32 FALSE "CLSI 2018" "MIC" "Aggregatibacter" 3 "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE "CLSI 2018" "MIC" "Burkholderia pseudomallei" 2 "Amoxicillin/clavulanic acid" "M45 Table 16" 8 32 FALSE "CLSI 2018" "MIC" "Cardiobacterium" 3 "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE "CLSI 2018" "MIC" "Eikenella" 3 "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" "20/10μg" 20 19 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" "20/10ug" 20 19 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" 4 8 FALSE -"CLSI 2018" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 12" "20μg" 24 23 FALSE +"CLSI 2018" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 12" "20ug" 24 23 FALSE "CLSI 2018" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 12" 4 8 FALSE -"CLSI 2018" "DISK" "Plesiomonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20μg" 18 13 FALSE +"CLSI 2018" "DISK" "Plesiomonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE "CLSI 2018" "MIC" "Plesiomonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" 8 32 FALSE -"CLSI 2018" "DISK" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 13" "20μg" 27 6 FALSE +"CLSI 2018" "DISK" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 13" "20ug" 27 6 FALSE "CLSI 2018" "MIC" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 13" 0.5 2048 FALSE "CLSI 2018" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Amoxicillin/clavulanic acid" "Table 2G" 2 8 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10μg" 18 13 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10μg" 8 32 FALSE -"CLSI 2018" "DISK" "Acinetobacter" 3 "Amikacin" "Table 2B-2" "30μg" 17 14 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 18 13 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 8 32 FALSE +"CLSI 2018" "DISK" "Acinetobacter" 3 "Amikacin" "Table 2B-2" "30ug" 17 14 FALSE "CLSI 2018" "MIC" "Acinetobacter" 3 "Amikacin" "Table 2B-2" 16 64 FALSE -"CLSI 2018" "DISK" "Aeromonas" 3 "Amikacin" "M45 Table 2" "30μg" 17 14 FALSE +"CLSI 2018" "DISK" "Aeromonas" 3 "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE "CLSI 2018" "MIC" "Aeromonas" 3 "Amikacin" "M45 Table 2" 16 64 FALSE "CLSI 2018" "MIC" "Bacillus" 3 "Amikacin" "M45 Table 3" 16 64 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Amikacin" "Table 2B-5" 16 64 FALSE -"CLSI 2018" "DISK" "Plesiomonas" 3 "Amikacin" "M45 Table 2" "30μg" 17 14 FALSE +"CLSI 2018" "DISK" "Plesiomonas" 3 "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE "CLSI 2018" "MIC" "Plesiomonas" 3 "Amikacin" "M45 Table 2" 16 64 FALSE -"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" "30μg" 17 14 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" "30ug" 17 14 FALSE "CLSI 2018" "MIC" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" 16 64 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Amikacin" "Generic rules" "30μg" 17 14 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Amikacin" "Generic rules" "30μg" 16 64 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 17 14 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 16 64 FALSE "CLSI 2018" "MIC" "Aggregatibacter" 3 "Ampicillin" "M45 Table 7" 1 4 FALSE "CLSI 2018" "MIC" "Bacillus" 3 "Ampicillin" "M45 Table 3" 0.25 0.5 FALSE "CLSI 2018" "MIC" "Cardiobacterium" 3 "Ampicillin" "M45 Table 7" 1 4 FALSE "CLSI 2018" "MIC" "Eikenella" 3 "Ampicillin" "M45 Table 7" 1 4 FALSE -"CLSI 2018" "DISK" "Enterococcus" 3 "Ampicillin" "Table 2D" "10μg" 17 16 FALSE +"CLSI 2018" "DISK" "Enterococcus" 3 "Ampicillin" "Table 2D" "10ug" 17 16 FALSE "CLSI 2018" "MIC" "Enterococcus" 3 "Ampicillin" "Table 2D" 8 16 FALSE "CLSI 2018" "MIC" "Erysipelothrix rhusiopathiae" 2 "Ampicillin" "M45 Table 6" 0.25 2048 FALSE "CLSI 2018" "MIC" "Granulicatella" 3 "Ampicillin" "M45 Table 1" 0.25 8 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Ampicillin" "Table 2E" "10μg" 22 18 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Ampicillin" "Table 2E" "10ug" 22 18 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Ampicillin" "Table 2E" 1 4 FALSE "CLSI 2018" "MIC" "Leuconostoc" 3 "Ampicillin" "M45 Table 10" 8 2048 FALSE "CLSI 2018" "MIC" "Lactobacillus" 3 "Ampicillin" "M45 Table 9" 8 2048 FALSE "CLSI 2018" "MIC" "Listeria monocytogenes" 2 "Ampicillin" "M45 Table 11" 2 2048 FALSE "CLSI 2018" "MIC" "Neisseria meningitidis" 2 "Ampicillin" "Table 2I" 0.125 2 FALSE "CLSI 2018" "MIC" "Pediococcus" 3 "Ampicillin" "M45 Table 14" 8 2048 FALSE -"CLSI 2018" "DISK" "Pasteurella" 3 "Ampicillin" "M45 Table 13" "10μg" 27 6 FALSE +"CLSI 2018" "DISK" "Pasteurella" 3 "Ampicillin" "M45 Table 13" "10ug" 27 6 FALSE "CLSI 2018" "MIC" "Pasteurella" 3 "Ampicillin" "M45 Table 13" 0.5 2048 FALSE -"CLSI 2018" "DISK" "Streptococcus" 3 "Ampicillin" "Table 2H-1" "10μg" 24 6 FALSE +"CLSI 2018" "DISK" "Streptococcus" 3 "Ampicillin" "Table 2H-1" "10ug" 24 6 FALSE "CLSI 2018" "MIC" "Streptococcus" 3 "Ampicillin" "Table 2H-1" 0.25 2048 FALSE "CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Table 2H-2" 0.25 8 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Ampicillin" "Generic rules" "10μg" 17 13 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Ampicillin" "Generic rules" "2μg" 8 32 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Ampicillin" "Generic rules" "10ug" 17 13 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Ampicillin" "Generic rules" "2ug" 8 32 FALSE "CLSI 2018" "MIC" "Pasteurella" 3 "Amoxicillin" "M45 Table 13" 0.5 2048 FALSE "CLSI 2018" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Amoxicillin" "Table 2G" 2 8 FALSE -"CLSI 2018" "DISK" "Aeromonas" 3 "Aztreonam" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2018" "DISK" "Aeromonas" 3 "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2018" "MIC" "Aeromonas" 3 "Aztreonam" "M45 Table 2" 4 16 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Aztreonam" "Table 2B-5" 8 32 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Aztreonam" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Aztreonam" "Table 2E" "30ug" 26 6 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Aztreonam" "Table 2E" 2 2048 FALSE -"CLSI 2018" "DISK" "Plesiomonas" 3 "Aztreonam" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2018" "DISK" "Plesiomonas" 3 "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2018" "MIC" "Plesiomonas" 3 "Aztreonam" "M45 Table 2" 4 16 FALSE -"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" "30μg" 22 15 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" "30ug" 22 15 FALSE "CLSI 2018" "MIC" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" 8 32 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Aztreonam" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Aztreonam" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Azlocillin" "Generic rules" "75μg" 18 17 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Azlocillin" "Generic rules" "75μg" 64 128 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Azlocillin" "Generic rules" "75ug" 18 17 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Azlocillin" "Generic rules" "75ug" 64 128 FALSE "CLSI 2018" "MIC" "Aggregatibacter" 3 "Azithromycin" "M45 Table 7" 4 2048 FALSE "CLSI 2018" "MIC" "Cardiobacterium" 3 "Azithromycin" "M45 Table 7" 4 2048 FALSE "CLSI 2018" "MIC" "Eikenella" 3 "Azithromycin" "M45 Table 7" 4 2048 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Azithromycin" "Table 2E" "15μg" 12 6 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Azithromycin" "Table 2E" "15ug" 12 6 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Azithromycin" "Table 2E" 4 2048 FALSE "CLSI 2018" "MIC" "Kingella" 3 "Azithromycin" "M45 Table 7" 4 2048 FALSE -"CLSI 2018" "DISK" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 12" "15μg" 26 6 FALSE +"CLSI 2018" "DISK" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 12" "15ug" 26 6 FALSE "CLSI 2018" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 12" 0.25 2048 FALSE -"CLSI 2018" "DISK" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" "15μg" 20 6 FALSE +"CLSI 2018" "DISK" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" "15ug" 20 6 FALSE "CLSI 2018" "MIC" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" 2 2048 FALSE -"CLSI 2018" "DISK" "Pasteurella" 3 "Azithromycin" "M45 Table 13" "15μg" 20 6 FALSE +"CLSI 2018" "DISK" "Pasteurella" 3 "Azithromycin" "M45 Table 13" "15ug" 20 6 FALSE "CLSI 2018" "MIC" "Pasteurella" 3 "Azithromycin" "M45 Table 13" 1 2048 FALSE "CLSI 2018" "DISK" "Salmonella enterica" 2 "Azithromycin" "Table 2A" 13 12 FALSE "CLSI 2018" "MIC" "Salmonella enterica" 2 "Azithromycin" "Table 2A" 16 32 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Azithromycin" "Table 2C" "15μg" 18 13 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Azithromycin" "Table 2C" "15ug" 18 13 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Azithromycin" "Table 2C" 2 8 FALSE -"CLSI 2018" "DISK" "Streptococcus" 3 "Azithromycin" "Table 2H-1" "15μg" 18 13 FALSE +"CLSI 2018" "DISK" "Streptococcus" 3 "Azithromycin" "Table 2H-1" "15ug" 18 13 FALSE "CLSI 2018" "MIC" "Streptococcus" 3 "Azithromycin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" "15μg" 18 13 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" "15ug" 18 13 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" 0.5 2 FALSE -"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" "15μg" 18 13 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" "15ug" 18 13 FALSE "CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" 0.5 2 FALSE -"CLSI 2018" "MIC" "Vibrio cholerae" 2 "Azithromycin" "M45 Table 14" "30μg" 2 2048 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Azithromycin" "Generic rules" "15μg" 18 13 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Azithromycin" "Generic rules" "15μg" 2 8 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Cefetamet" "Table 2E" "10μg" 18 14 FALSE +"CLSI 2018" "MIC" "Vibrio cholerae" 2 "Azithromycin" "M45 Table 14" "30ug" 2 2048 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Azithromycin" "Generic rules" "15ug" 18 13 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Azithromycin" "Generic rules" "15ug" 2 8 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Cefetamet" "Table 2E" "10ug" 18 14 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Cefetamet" "Table 2E" 4 16 FALSE -"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Cefetamet" "Table 2F" "10μg" 29 6 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Cefetamet" "Table 2F" "10ug" 29 6 FALSE "CLSI 2018" "MIC" "Neisseria gonorrhoeae" 2 "Cefetamet" "Table 2F" 0.5 2048 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Cefetamet" "Generic rules" "10μg" 18 14 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Cefetamet" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2018" "DISK" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" "30μg" 18 14 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Cefetamet" "Generic rules" "10ug" 18 14 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Cefetamet" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2018" "DISK" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" "30ug" 18 14 FALSE "CLSI 2018" "MIC" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" 8 32 FALSE -"CLSI 2018" "DISK" "Aeromonas" 3 "Ceftazidime" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2018" "DISK" "Aeromonas" 3 "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2018" "MIC" "Aeromonas" 3 "Ceftazidime" "M45 Table 2" 4 16 FALSE "CLSI 2018" "MIC" "Bacillus" 3 "Ceftazidime" "M45 Table 3" 8 32 FALSE -"CLSI 2018" "DISK" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" "30μg" 21 17 FALSE +"CLSI 2018" "DISK" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" "30ug" 21 17 FALSE "CLSI 2018" "MIC" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" 8 32 FALSE "CLSI 2018" "MIC" "Burkholderia mallei" 2 "Ceftazidime" "M45 Table 16" 8 32 FALSE "CLSI 2018" "MIC" "Burkholderia pseudomallei" 2 "Ceftazidime" "M45 Table 16" 8 32 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Ceftazidime" "Table 2B-5" 8 32 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Ceftazidime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Ceftazidime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Ceftazidime" "Table 2E" 2 2048 FALSE "CLSI 2018" "MIC" "Moraxella catarrhalis" 2 "Ceftazidime" "M45 Table 12" 2 2048 FALSE -"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Ceftazidime" "Table 2F" "30μg" 31 6 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Ceftazidime" "Table 2F" "30ug" 31 6 FALSE "CLSI 2018" "MIC" "Neisseria gonorrhoeae" 2 "Ceftazidime" "Table 2F" 0.5 2048 FALSE -"CLSI 2018" "DISK" "Plesiomonas" 3 "Ceftazidime" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2018" "DISK" "Plesiomonas" 3 "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2018" "MIC" "Plesiomonas" 3 "Ceftazidime" "M45 Table 2" 4 16 FALSE -"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" "30μg" 18 14 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" "30ug" 18 14 FALSE "CLSI 2018" "MIC" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" 8 32 FALSE "CLSI 2018" "MIC" "Stenotrophomonas maltophilia" 2 "Ceftazidime" "Table 2B-4" 8 32 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Cefdinir" "Table 2E" "5μg" 20 6 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Cefdinir" "Table 2E" "5ug" 20 6 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Cefdinir" "Table 2E" 1 2048 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Cefdinir" "Table 2G" 0.5 2 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Cefdinir" "Generic rules" "5μg" 20 16 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Cefdinir" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Cefaclor" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Cefdinir" "Generic rules" "5ug" 20 16 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Cefdinir" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Cefaclor" "Table 2E" "30ug" 20 16 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Cefaclor" "Table 2E" 8 32 FALSE "CLSI 2018" "MIC" "Moraxella catarrhalis" 2 "Cefaclor" "M45 Table 12" 8 32 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" "Table 2G" 1 4 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Cefaclor" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Cefaclor" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Cefixime" "Table 2E" "5μg" 21 6 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Cefaclor" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Cefaclor" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Cefixime" "Table 2E" "5ug" 21 6 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Cefixime" "Table 2E" 1 2048 FALSE -"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" "5μg" 31 6 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" "5ug" 31 6 FALSE "CLSI 2018" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" 0.25 2048 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Cefixime" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Cefixime" "Generic rules" "5μg" 1 4 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 1 4 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Cefoperazone" "Table 2B-5" 16 64 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75μg" 21 15 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75μg" 16 64 FALSE -"CLSI 2018" "DISK" "Aeromonas" 3 "Chloramphenicol" "M45 Table 2" "30μg" 18 12 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75ug" 21 15 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75ug" 16 64 FALSE +"CLSI 2018" "DISK" "Aeromonas" 3 "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE "CLSI 2018" "MIC" "Aeromonas" 3 "Chloramphenicol" "M45 Table 2" 8 32 FALSE "CLSI 2018" "MIC" "Aggregatibacter" 3 "Chloramphenicol" "M45 Table 7" 4 16 FALSE "CLSI 2018" "MIC" "Bacillus" 3 "Chloramphenicol" "M45 Table 3" 8 32 FALSE "CLSI 2018" "MIC" "Burkholderia cepacia" 2 "Chloramphenicol" "Table 2B-3" 8 32 FALSE "CLSI 2018" "MIC" "Cardiobacterium" 3 "Chloramphenicol" "M45 Table 7" 4 16 FALSE "CLSI 2018" "MIC" "Eikenella" 3 "Chloramphenicol" "M45 Table 7" 4 16 FALSE -"CLSI 2018" "DISK" "Enterococcus" 3 "Chloramphenicol" "Table 2D" "30μg" 18 12 FALSE +"CLSI 2018" "DISK" "Enterococcus" 3 "Chloramphenicol" "Table 2D" "30ug" 18 12 FALSE "CLSI 2018" "MIC" "Enterococcus" 3 "Chloramphenicol" "Table 2D" 8 32 FALSE "CLSI 2018" "MIC" "Francisella tularensis tularensis" 1 "Chloramphenicol" "M45 Table 16" 8 2048 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Chloramphenicol" "Table 2B-5" 8 32 FALSE "CLSI 2018" "MIC" "Granulicatella" 3 "Chloramphenicol" "M45 Table 1" 4 8 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Chloramphenicol" "Table 2E" "30μg" 29 25 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Chloramphenicol" "Table 2E" "30ug" 29 25 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Chloramphenicol" "Table 2E" 2 8 FALSE "CLSI 2018" "MIC" "Kingella" 3 "Chloramphenicol" "M45 Table 7" 4 16 FALSE "CLSI 2018" "MIC" "Leuconostoc" 3 "Chloramphenicol" "M45 Table 10" 8 32 FALSE "CLSI 2018" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" "M45 Table 12" 2 8 FALSE -"CLSI 2018" "DISK" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" "30μg" 26 19 FALSE +"CLSI 2018" "DISK" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" "30ug" 26 19 FALSE "CLSI 2018" "MIC" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" 2 8 FALSE "CLSI 2018" "MIC" "Pediococcus" 3 "Chloramphenicol" "M45 Table 14" 8 32 FALSE -"CLSI 2018" "DISK" "Plesiomonas" 3 "Chloramphenicol" "M45 Table 2" "30μg" 18 12 FALSE +"CLSI 2018" "DISK" "Plesiomonas" 3 "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE "CLSI 2018" "MIC" "Plesiomonas" 3 "Chloramphenicol" "M45 Table 2" 8 32 FALSE -"CLSI 2018" "DISK" "Pasteurella" 3 "Chloramphenicol" "M45 Table 13" "30μg" 28 6 FALSE +"CLSI 2018" "DISK" "Pasteurella" 3 "Chloramphenicol" "M45 Table 13" "30ug" 28 6 FALSE "CLSI 2018" "MIC" "Pasteurella" 3 "Chloramphenicol" "M45 Table 13" 2 2048 FALSE "CLSI 2018" "MIC" "Stenotrophomonas maltophilia" 2 "Chloramphenicol" "Table 2B-4" 8 32 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" "30μg" 18 12 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" "30ug" 18 12 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" 8 32 FALSE -"CLSI 2018" "DISK" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" "30μg" 21 17 FALSE +"CLSI 2018" "DISK" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" "30ug" 21 17 FALSE "CLSI 2018" "MIC" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" 4 16 FALSE -"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" "30μg" 21 20 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" "30ug" 21 20 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" 4 8 FALSE -"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" "30μg" 21 17 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" "30ug" 21 17 FALSE "CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" 4 16 FALSE "CLSI 2018" "MIC" "Yersinia pestis" 2 "Chloramphenicol" "M45 Table 16" 8 32 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30μg" 18 12 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Cefonicid" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 18 12 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Cefonicid" "Table 2E" "30ug" 20 16 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Cefonicid" "Table 2E" 4 16 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Cefonicid" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Cefonicid" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100μg" 19 14 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100μg" 16 64 FALSE -"CLSI 2018" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" "5μg" 21 15 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Cefonicid" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Cefonicid" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100ug" 19 14 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100ug" 16 64 FALSE +"CLSI 2018" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" "5ug" 21 15 FALSE "CLSI 2018" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" 1 4 FALSE -"CLSI 2018" "DISK" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 2" "5μg" 21 15 FALSE +"CLSI 2018" "DISK" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE "CLSI 2018" "MIC" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 2" 1 4 FALSE "CLSI 2018" "MIC" "Aggregatibacter" 3 "Ciprofloxacin" "M45 Table 7" 1 4 FALSE "CLSI 2018" "MIC" "Bacillus" 3 "Ciprofloxacin" "M45 Table 3" 1 4 FALSE @@ -11550,101 +11550,101 @@ "CLSI 2018" "MIC" "Campylobacter" 3 "Ciprofloxacin" "M45 Table 3" 1 4 FALSE "CLSI 2018" "MIC" "Cardiobacterium" 3 "Ciprofloxacin" "M45 Table 7" 1 4 FALSE "CLSI 2018" "MIC" "Eikenella" 3 "Ciprofloxacin" "M45 Table 7" 1 4 FALSE -"CLSI 2018" "DISK" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" "5μg" 21 15 FALSE +"CLSI 2018" "DISK" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" "5ug" 21 15 FALSE "CLSI 2018" "MIC" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" 1 4 FALSE "CLSI 2018" "MIC" "Erysipelothrix rhusiopathiae" 2 "Ciprofloxacin" "M45 Table 6" 1 2048 FALSE "CLSI 2018" "MIC" "Francisella tularensis tularensis" 1 "Ciprofloxacin" "M45 Table 16" 0.5 2048 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Ciprofloxacin" "Table 2B-5" 1 4 FALSE "CLSI 2018" "MIC" "Granulicatella" 3 "Ciprofloxacin" "M45 Table 1" 1 4 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" "5μg" 21 6 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" "5ug" 21 6 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" 1 2048 FALSE "CLSI 2018" "MIC" "Kingella" 3 "Ciprofloxacin" "M45 Table 7" 1 4 FALSE "CLSI 2018" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M45 Table 12" 1 2048 FALSE -"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" "5μg" 41 27 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" "5ug" 41 27 FALSE "CLSI 2018" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" 0.064 1 FALSE -"CLSI 2018" "DISK" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" "5μg" 35 32 FALSE +"CLSI 2018" "DISK" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" "5ug" 35 32 FALSE "CLSI 2018" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" 0.032 0.12 FALSE -"CLSI 2018" "DISK" "Plesiomonas" 3 "Ciprofloxacin" "M45 Table 2" "5μg" 21 15 FALSE +"CLSI 2018" "DISK" "Plesiomonas" 3 "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE "CLSI 2018" "MIC" "Plesiomonas" 3 "Ciprofloxacin" "M45 Table 2" 1 4 FALSE -"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" "5μg" 21 15 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" "5ug" 21 15 FALSE "CLSI 2018" "MIC" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" 1 4 FALSE -"CLSI 2018" "DISK" "Extraintestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5μg" 31 20 FALSE -"CLSI 2018" "DISK" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5μg" 31 20 FALSE +"CLSI 2018" "DISK" "Extraintestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE +"CLSI 2018" "DISK" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE "CLSI 2018" "MIC" "Extraintestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" 0.064 1 FALSE "CLSI 2018" "MIC" "Salmonella" 3 "Ciprofloxacin" "Table 2A" 0.064 1 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" "5μg" 21 15 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" "5ug" 21 15 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" 1 4 FALSE "CLSI 2018" "MIC" "Yersinia pestis" 2 "Ciprofloxacin" "M45 Table 16" 0.25 2048 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5μg" 21 15 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5μg" 1 4 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 21 15 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 1 4 FALSE "CLSI 2018" "MIC" "Bacillus" 3 "Clindamycin" "M45 Table 3" 0.5 4 FALSE "CLSI 2018" "MIC" "Erysipelothrix rhusiopathiae" 2 "Clindamycin" "M45 Table 6" 0.25 1 FALSE "CLSI 2018" "MIC" "Granulicatella" 3 "Clindamycin" "M45 Table 1" 0.25 1 FALSE "CLSI 2018" "MIC" "Lactobacillus" 3 "Clindamycin" "M45 Table 9" 0.5 2 FALSE "CLSI 2018" "MIC" "Moraxella catarrhalis" 2 "Clindamycin" "M45 Table 12" 0.5 4 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Clindamycin" "Table 2C" "2μg" 21 14 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Clindamycin" "Table 2C" "2ug" 21 14 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Clindamycin" "Table 2C" 0.5 4 FALSE -"CLSI 2018" "DISK" "Streptococcus" 3 "Clindamycin" "Table 2H-1" "2μg" 19 15 FALSE +"CLSI 2018" "DISK" "Streptococcus" 3 "Clindamycin" "Table 2H-1" "2ug" 19 15 FALSE "CLSI 2018" "MIC" "Streptococcus" 3 "Clindamycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" "2μg" 19 15 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" "2ug" 19 15 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" 0.25 1 FALSE -"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" "2μg" 19 15 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" "2ug" 19 15 FALSE "CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Clindamycin" "Generic rules" "2μg" 21 14 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Clindamycin" "Generic rules" "2μg" 0.5 4 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Clindamycin" "Generic rules" "2ug" 21 14 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Clindamycin" "Generic rules" "2ug" 0.5 4 FALSE "CLSI 2018" "MIC" "Aggregatibacter" 3 "Clarithromycin" "M45 Table 7" 8 32 FALSE "CLSI 2018" "MIC" "Cardiobacterium" 3 "Clarithromycin" "M45 Table 7" 8 32 FALSE "CLSI 2018" "MIC" "Eikenella" 3 "Clarithromycin" "M45 Table 7" 8 32 FALSE "CLSI 2018" "MIC" "Helicobacter pylori" 2 "Clarithromycin" "M45 Table 8" 0.25 1 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Clarithromycin" "Table 2E" "15μg" 13 10 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Clarithromycin" "Table 2E" "15ug" 13 10 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Clarithromycin" "Table 2E" 8 32 FALSE "CLSI 2018" "MIC" "Kingella" 3 "Clarithromycin" "M45 Table 7" 8 32 FALSE -"CLSI 2018" "DISK" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 12" "15μg" 24 6 FALSE +"CLSI 2018" "DISK" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 12" "15ug" 24 6 FALSE "CLSI 2018" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 12" 1 2048 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Clarithromycin" "Table 2C" "15μg" 18 13 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Clarithromycin" "Table 2C" "15ug" 18 13 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Clarithromycin" "Table 2C" 2 8 FALSE -"CLSI 2018" "DISK" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" "15μg" 21 16 FALSE +"CLSI 2018" "DISK" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" "15ug" 21 16 FALSE "CLSI 2018" "MIC" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" "15μg" 21 16 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" "15ug" 21 16 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" 0.25 1 FALSE -"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" "15μg" 21 16 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" "15ug" 21 16 FALSE "CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15μg" 18 13 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15μg" 2 8 FALSE -"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Cefmetazole" "Table 2F" "30μg" 33 27 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15ug" 18 13 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15ug" 2 8 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Cefmetazole" "Table 2F" "30ug" 33 27 FALSE "CLSI 2018" "MIC" "Neisseria gonorrhoeae" 2 "Cefmetazole" "Table 2F" 2 8 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30μg" 16 64 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30ug" 16 64 FALSE "CLSI 2018" "MIC" "Acinetobacter" 3 "Colistin" "Table 2B-2" 2 4 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Colistin" "Table 2B-5" 2 8 FALSE "CLSI 2018" "MIC" "Pseudomonas aeruginosa" 2 "Colistin" "Table 2B-1" 2 4 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Colistin" "Generic rules" "10μg" 11 10 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Colistin" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Cefpodoxime" "Table 2E" "10μg" 21 6 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Colistin" "Generic rules" "10ug" 11 10 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Colistin" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Cefpodoxime" "Table 2E" "10ug" 21 6 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Cefpodoxime" "Table 2E" 2 2048 FALSE -"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" "10μg" 29 6 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" "10ug" 29 6 FALSE "CLSI 2018" "MIC" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" 0.5 2048 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" "Table 2G" 0.5 2 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10μg" 21 17 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Cefprozil" "Table 2E" "30μg" 18 14 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 21 17 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Cefprozil" "Table 2E" "30ug" 18 14 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Cefprozil" "Table 2E" 8 32 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Cefprozil" "Table 2G" 2 8 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Cefprozil" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Cefprozil" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2018" "DISK" "Haemophilus influenzae" 2 "Ceftaroline" "Table 2E" "30μg" 30 6 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Cefprozil" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Cefprozil" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2018" "DISK" "Haemophilus influenzae" 2 "Ceftaroline" "Table 2E" "30ug" 30 6 FALSE "CLSI 2018" "MIC" "Haemophilus influenzae" 2 "Ceftaroline" "Table 2E" 0.5 2048 FALSE -"CLSI 2018" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Table 2C" "30μg" 24 20 FALSE +"CLSI 2018" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Table 2C" "30ug" 24 20 FALSE "CLSI 2018" "MIC" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Table 2C" 1 4 FALSE -"CLSI 2018" "DISK" "Streptococcus" 3 "Ceftaroline" "Table 2H-1" "30μg" 26 6 FALSE +"CLSI 2018" "DISK" "Streptococcus" 3 "Ceftaroline" "Table 2H-1" "30ug" 26 6 FALSE "CLSI 2018" "MIC" "Streptococcus" 3 "Ceftaroline" "Table 2H-1" 0.5 2048 FALSE "CLSI 2018" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Ceftaroline" "Table 2G" 0.5 2048 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30μg" 0.5 2 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30ug" 0.5 2 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Carbenicillin" "Table 2B-5" 16 64 FALSE -"CLSI 2018" "DISK" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" "30μg" 21 13 FALSE +"CLSI 2018" "DISK" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" "30ug" 21 13 FALSE "CLSI 2018" "MIC" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" 8 64 FALSE -"CLSI 2018" "DISK" "Aeromonas" 3 "Ceftriaxone" "M45 Table 2" "30μg" 23 19 FALSE +"CLSI 2018" "DISK" "Aeromonas" 3 "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE "CLSI 2018" "MIC" "Aeromonas" 3 "Ceftriaxone" "M45 Table 2" 1 4 FALSE "CLSI 2018" "MIC" "Aggregatibacter" 3 "Ceftriaxone" "M45 Table 7" 2 2048 FALSE "CLSI 2018" "MIC" "Bacillus" 3 "Ceftriaxone" "M45 Table 3" 8 64 FALSE @@ -11653,37 +11653,37 @@ "CLSI 2018" "MIC" "Erysipelothrix rhusiopathiae" 2 "Ceftriaxone" "M45 Table 6" 1 2048 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Ceftriaxone" "Table 2B-5" 8 64 FALSE "CLSI 2018" "MIC" "Granulicatella" 3 "Ceftriaxone" "M45 Table 1" 1 4 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Ceftriaxone" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Ceftriaxone" "Table 2E" "30ug" 26 6 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Ceftriaxone" "Table 2E" 2 2048 FALSE "CLSI 2018" "MIC" "Kingella" 3 "Ceftriaxone" "M45 Table 7" 2 2048 FALSE "CLSI 2018" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" "M45 Table 12" 2 2048 FALSE -"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" "30μg" 35 6 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" "30ug" 35 6 FALSE "CLSI 2018" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" 0.25 2048 FALSE -"CLSI 2018" "DISK" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" "30μg" 34 6 FALSE +"CLSI 2018" "DISK" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" "30ug" 34 6 FALSE "CLSI 2018" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" 0.125 2048 FALSE -"CLSI 2018" "DISK" "Plesiomonas" 3 "Ceftriaxone" "M45 Table 2" "30μg" 23 19 FALSE +"CLSI 2018" "DISK" "Plesiomonas" 3 "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE "CLSI 2018" "MIC" "Plesiomonas" 3 "Ceftriaxone" "M45 Table 2" 1 4 FALSE -"CLSI 2018" "DISK" "Pasteurella" 3 "Ceftriaxone" "M45 Table 13" "30μg" 34 6 FALSE +"CLSI 2018" "DISK" "Pasteurella" 3 "Ceftriaxone" "M45 Table 13" "30ug" 34 6 FALSE "CLSI 2018" "MIC" "Pasteurella" 3 "Ceftriaxone" "M45 Table 13" 0.125 2048 FALSE -"CLSI 2018" "DISK" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2018" "DISK" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2018" "MIC" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" 0.5 2048 FALSE "CLSI 2018" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Table 2G" 0.5 2 FALSE "CLSI 2018" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Table 2G" 1 4 FALSE -"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" "30μg" 27 24 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" "30ug" 27 24 FALSE "CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" 1 4 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30μg" 1 4 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Ceftibuten" "Table 2E" "30μg" 28 6 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 1 4 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Ceftibuten" "Table 2E" "30ug" 28 6 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Ceftibuten" "Table 2E" 2 2048 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" "30μg" 26 19 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" "30ug" 26 19 FALSE "CLSI 2018" "MIC" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" 2 8 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Cefotetan" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Cefotetan" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2018" "DISK" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" "30μg" 23 14 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Cefotetan" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Cefotetan" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2018" "DISK" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" "30ug" 23 14 FALSE "CLSI 2018" "MIC" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" 8 64 FALSE -"CLSI 2018" "DISK" "Aeromonas" 3 "Cefotaxime" "M45 Table 2" "30μg" 26 22 FALSE +"CLSI 2018" "DISK" "Aeromonas" 3 "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE "CLSI 2018" "MIC" "Aeromonas" 3 "Cefotaxime" "M45 Table 2" 1 4 FALSE "CLSI 2018" "MIC" "Aggregatibacter" 3 "Cefotaxime" "M45 Table 7" 2 2048 FALSE "CLSI 2018" "MIC" "Bacillus" 3 "Cefotaxime" "M45 Table 3" 8 64 FALSE @@ -11692,256 +11692,256 @@ "CLSI 2018" "MIC" "Erysipelothrix rhusiopathiae" 2 "Cefotaxime" "M45 Table 6" 1 2048 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Cefotaxime" "Table 2B-5" 8 64 FALSE "CLSI 2018" "MIC" "Granulicatella" 3 "Cefotaxime" "M45 Table 1" 1 4 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Cefotaxime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Cefotaxime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Cefotaxime" "Table 2E" 2 2048 FALSE "CLSI 2018" "MIC" "Kingella" 3 "Cefotaxime" "M45 Table 7" 2 2048 FALSE "CLSI 2018" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" "M45 Table 12" 2 2048 FALSE -"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" "30μg" 31 6 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" "30ug" 31 6 FALSE "CLSI 2018" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" 0.5 2048 FALSE -"CLSI 2018" "DISK" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" "30μg" 34 6 FALSE +"CLSI 2018" "DISK" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" "30ug" 34 6 FALSE "CLSI 2018" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" 0.125 2048 FALSE -"CLSI 2018" "DISK" "Plesiomonas" 3 "Cefotaxime" "M45 Table 2" "30μg" 26 22 FALSE +"CLSI 2018" "DISK" "Plesiomonas" 3 "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE "CLSI 2018" "MIC" "Plesiomonas" 3 "Cefotaxime" "M45 Table 2" 1 4 FALSE -"CLSI 2018" "DISK" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2018" "DISK" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2018" "MIC" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" 0.5 2048 FALSE "CLSI 2018" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Cefotaxime" "Table 2G" 0.5 2 FALSE "CLSI 2018" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Cefotaxime" "Table 2G" 1 4 FALSE -"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" "30μg" 28 25 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" "30ug" 28 25 FALSE "CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" 1 4 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30μg" 26 22 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30μg" 1 4 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30ug" 26 22 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30ug" 1 4 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" "30ug" 20 16 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" 4 16 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Cefuroxime axetil" "Table 2G" 1 4 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30μg" 23 14 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30μg" 4 32 FALSE -"CLSI 2018" "DISK" "Aeromonas" 3 "Cefuroxime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 23 14 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 4 32 FALSE +"CLSI 2018" "DISK" "Aeromonas" 3 "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2018" "MIC" "Aeromonas" 3 "Cefuroxime" "M45 Table 2" 8 32 FALSE -"CLSI 2018" "DISK" "Oral" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30μg" 20 16 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2018" "DISK" "Oral" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE "CLSI 2018" "MIC" "Oral" "Haemophilus" 3 "Cefuroxime" "Table 2E" 4 16 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Cefuroxime" "Table 2E" 4 16 FALSE "CLSI 2018" "MIC" "Moraxella catarrhalis" 2 "Cefuroxime" "M45 Table 12" 4 16 FALSE -"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Cefuroxime" "Table 2F" "30μg" 31 25 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Cefuroxime" "Table 2F" "30ug" 31 25 FALSE "CLSI 2018" "MIC" "Neisseria gonorrhoeae" 2 "Cefuroxime" "Table 2F" 1 4 FALSE -"CLSI 2018" "DISK" "Plesiomonas" 3 "Cefuroxime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2018" "DISK" "Plesiomonas" 3 "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2018" "MIC" "Plesiomonas" 3 "Cefuroxime" "M45 Table 2" 8 32 FALSE "CLSI 2018" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Table 2G" 1 4 FALSE "CLSI 2018" "MIC" "Parenteral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Table 2G" 0.5 2 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30μg" 8 32 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 8 32 FALSE "CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Ceftazidime/avibactam" "Table 2B-1" 21 20 FALSE "CLSI 2018" "MIC" "Pseudomonas aeruginosa" 2 "Ceftazidime/avibactam" "Table 2B-1" 8 16 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Ceftazidime/avibactam" "Generic rules" "30/20μg" 21 20 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Ceftazidime/avibactam" "Generic rules" "30/20μg" 8 16 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Ceftazidime/avibactam" "Generic rules" "30/20ug" 21 20 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Ceftazidime/avibactam" "Generic rules" "30/20ug" 8 16 FALSE "CLSI 2018" "DISK" "Urine" "Enterobacterales" 5 "Cefazolin" "Table 2A" 15 14 TRUE "CLSI 2018" "MIC" "Urine" "Enterobacterales" 5 "Cefazolin" "Table 2A" 16 32 TRUE "CLSI 2018" "MIC" "Aeromonas" 3 "Cefazolin" "M45 Table 2" 1 4 FALSE "CLSI 2018" "MIC" "Bacillus" 3 "Cefazolin" "M45 Table 3" 8 16 FALSE "CLSI 2018" "MIC" "Plesiomonas" 3 "Cefazolin" "M45 Table 2" 1 4 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Cefazolin" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Cefazolin" "Generic rules" "30μg" 2 8 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Cefazolin" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Cefazolin" "Generic rules" "30ug" 2 8 FALSE "CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Ceftolozane/tazobactam" "30/10" 21 16 FALSE "CLSI 2018" "MIC" "Pseudomonas aeruginosa" 2 "Ceftolozane/tazobactam" 4 16 FALSE "CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftolozane/tazobactam" "Table 2H-2" 8 32 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Ceftolozane/tazobactam" "Generic rules" "30/10μg" 21 17 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Ceftolozane/tazobactam" "Generic rules" "30/10μg" 2 8 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Ceftolozane/tazobactam" "Generic rules" "30/10ug" 21 17 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Ceftolozane/tazobactam" "Generic rules" "30/10ug" 2 8 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Ceftizoxime" "Table 2B-5" 8 64 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Ceftizoxime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Ceftizoxime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Ceftizoxime" "Table 2E" 2 2048 FALSE -"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" "30μg" 38 6 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" "30ug" 38 6 FALSE "CLSI 2018" "MIC" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" 0.5 2048 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30μg" 25 21 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30μg" 1 4 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30ug" 25 21 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30ug" 1 4 FALSE "CLSI 2018" "MIC" "Enterococcus faecalis" 2 "Dalbavancin" "Table 2D" 0.25 2048 FALSE "CLSI 2018" "MIC" "Streptococcus" 3 "Dalbavancin" "Table 2H-1" 0.25 2048 FALSE "CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Dalbavancin" "Table 2H-2" 0.25 2048 FALSE "CLSI 2018" "MIC" "Enterococcus" 3 "Daptomycin" "Table 2D" 4 2048 FALSE "CLSI 2018" "MIC" "Lactobacillus" 3 "Daptomycin" "M45 Table 9" 4 2048 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Daptomycin" "Table 2C" 1 2048 FALSE -"CLSI 2018" "DISK" "Streptococcus" 3 "Daptomycin" "Table 2H-1" "30μg" 16 6 FALSE +"CLSI 2018" "DISK" "Streptococcus" 3 "Daptomycin" "Table 2H-1" "30ug" 16 6 FALSE "CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Daptomycin" "Table 2H-2" 1 2048 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Daptomycin" "Generic rules" "30μg" 1 2048 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Difloxacin" "Generic rules" "10μg" 21 17 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Difloxacin" "Generic rules" "10μg" 0.5 4 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Dirithromycin" "Table 2C" "15μg" 19 15 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Daptomycin" "Generic rules" "30ug" 1 2048 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Difloxacin" "Generic rules" "10ug" 21 17 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Difloxacin" "Generic rules" "10ug" 0.5 4 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Dirithromycin" "Table 2C" "15ug" 19 15 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Dirithromycin" "Table 2C" 2 8 FALSE -"CLSI 2018" "DISK" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" "15μg" 18 13 FALSE +"CLSI 2018" "DISK" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" "15ug" 18 13 FALSE "CLSI 2018" "MIC" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" "15μg" 18 13 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" "15ug" 18 13 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" 0.5 2 FALSE -"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" "15μg" 18 13 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" "15ug" 18 13 FALSE "CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" 0.5 2 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15μg" 19 15 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15μg" 2 8 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15ug" 19 15 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15ug" 2 8 FALSE "CLSI 2018" "DISK" "Acinetobacter" 3 "Doripenem" "Table 2B-2" 18 14 FALSE "CLSI 2018" "MIC" "Acinetobacter" 3 "Doripenem" "Table 2B-2" 2 8 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Doripenem" "Table 2E" "10μg" 16 6 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Doripenem" "Table 2E" "10ug" 16 6 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Doripenem" "Table 2E" 1 2048 FALSE -"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2018" "MIC" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" 2 8 FALSE "CLSI 2018" "MIC" "Streptococcus" 3 "Doripenem" "Table 2H-1" 0.125 2048 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" "Table 2G" 1 2048 FALSE "CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" "Table 2H-2" 1 2048 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Doripenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Doripenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2018" "DISK" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" "30μg" 13 9 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Doripenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Doripenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2018" "DISK" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" "30ug" 13 9 FALSE "CLSI 2018" "MIC" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" 4 16 FALSE "CLSI 2018" "MIC" "Bacillus anthracis" 2 "Doxycycline" "M45 Table 16" 1 2048 FALSE "CLSI 2018" "MIC" "Brucella" 3 "Doxycycline" "M45 Table 16" 1 2048 FALSE "CLSI 2018" "MIC" "Burkholderia mallei" 2 "Doxycycline" "M45 Table 16" 4 16 FALSE "CLSI 2018" "MIC" "Burkholderia pseudomallei" 2 "Doxycycline" "M45 Table 16" 4 16 FALSE "CLSI 2018" "MIC" "Campylobacter" 3 "Doxycycline" "M45 Table 3" 2 8 FALSE -"CLSI 2018" "DISK" "Enterococcus" 3 "Doxycycline" "Table 2D" "30μg" 16 12 FALSE +"CLSI 2018" "DISK" "Enterococcus" 3 "Doxycycline" "Table 2D" "30ug" 16 12 FALSE "CLSI 2018" "MIC" "Enterococcus" 3 "Doxycycline" "Table 2D" 4 16 FALSE "CLSI 2018" "MIC" "Francisella tularensis tularensis" 1 "Doxycycline" "M45 Table 16" 4 2048 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Doxycycline" "Table 2B-5" 4 16 FALSE -"CLSI 2018" "DISK" "Pasteurella" 3 "Doxycycline" "M45 Table 13" "30μg" 23 6 FALSE +"CLSI 2018" "DISK" "Pasteurella" 3 "Doxycycline" "M45 Table 13" "30ug" 23 6 FALSE "CLSI 2018" "MIC" "Pasteurella" 3 "Doxycycline" "M45 Table 13" 0.5 2048 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Doxycycline" "Table 2C" "30μg" 16 12 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Doxycycline" "Table 2C" "30ug" 16 12 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Doxycycline" "Table 2C" 4 16 FALSE -"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Doxycycline" "Table 2G" "30μg" 28 24 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Doxycycline" "Table 2G" "30ug" 28 24 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" "Table 2G" 0.25 1 FALSE -"CLSI 2018" "MIC" "Vibrio cholerae" 2 "Doxycycline" "M45 Table 14" "30μg" 4 16 FALSE +"CLSI 2018" "MIC" "Vibrio cholerae" 2 "Doxycycline" "M45 Table 14" "30ug" 4 16 FALSE "CLSI 2018" "MIC" "Yersinia pestis" 2 "Doxycycline" "M45 Table 16" 4 16 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Doxycycline" "Generic rules" "30μg" 14 10 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Doxycycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2018" "DISK" "Histophilus somni" 2 "Enrofloxacin" "Vet Table" "5μg" 21 16 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Doxycycline" "Generic rules" "30ug" 14 10 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Doxycycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2018" "DISK" "Histophilus somni" 2 "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE "CLSI 2018" "MIC" "Histophilus somni" 2 "Enrofloxacin" "Vet Table" 0.25 2 FALSE -"CLSI 2018" "DISK" "Providencia heimbachae" 2 "Enrofloxacin" "Vet Table" "5μg" 21 16 FALSE -"CLSI 2018" "DISK" "Pasteurella multocida multocida" 1 "Enrofloxacin" "Vet Table" "5μg" 21 16 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5μg" 23 16 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5μg" 0.25 2 FALSE -"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Enoxacin" "Table 2F" "10μg" 36 31 FALSE +"CLSI 2018" "DISK" "Providencia heimbachae" 2 "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2018" "DISK" "Pasteurella multocida multocida" 1 "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5ug" 23 16 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5ug" 0.25 2 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Enoxacin" "Table 2F" "10ug" 36 31 FALSE "CLSI 2018" "MIC" "Neisseria gonorrhoeae" 2 "Enoxacin" "Table 2F" 0.5 2 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Enoxacin" "Table 2C" "10μg" 18 14 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Enoxacin" "Table 2C" "10ug" 18 14 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Enoxacin" "Table 2C" 2 8 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Enoxacin" "Generic rules" "10μg" 18 14 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Enoxacin" "Generic rules" "10μg" 2 8 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Enoxacin" "Generic rules" "10ug" 18 14 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Enoxacin" "Generic rules" "10ug" 2 8 FALSE "CLSI 2018" "MIC" "Bacillus" 3 "Erythromycin" "M45 Table 3" 0.5 8 FALSE "CLSI 2018" "MIC" "Campylobacter" 3 "Erythromycin" "M45 Table 3" 8 32 FALSE -"CLSI 2018" "DISK" "Enterococcus" 3 "Erythromycin" "Table 2D" "15μg" 23 13 FALSE +"CLSI 2018" "DISK" "Enterococcus" 3 "Erythromycin" "Table 2D" "15ug" 23 13 FALSE "CLSI 2018" "MIC" "Enterococcus" 3 "Erythromycin" "Table 2D" 0.5 8 FALSE "CLSI 2018" "MIC" "Erysipelothrix rhusiopathiae" 2 "Erythromycin" "M45 Table 6" 0.25 1 FALSE "CLSI 2018" "MIC" "Granulicatella" 3 "Erythromycin" "M45 Table 1" 0.25 1 FALSE "CLSI 2018" "MIC" "Lactobacillus" 3 "Erythromycin" "M45 Table 9" 0.5 8 FALSE -"CLSI 2018" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 12" "15μg" 21 6 FALSE +"CLSI 2018" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 12" "15ug" 21 6 FALSE "CLSI 2018" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 12" 2 2048 FALSE -"CLSI 2018" "DISK" "Pasteurella" 3 "Erythromycin" "M45 Table 13" "15μg" 27 24 FALSE +"CLSI 2018" "DISK" "Pasteurella" 3 "Erythromycin" "M45 Table 13" "15ug" 27 24 FALSE "CLSI 2018" "MIC" "Pasteurella" 3 "Erythromycin" "M45 Table 13" 0.5 2 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Erythromycin" "Table 2C" "15μg" 23 13 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Erythromycin" "Table 2C" "15ug" 23 13 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Erythromycin" "Table 2C" 0.5 8 FALSE -"CLSI 2018" "DISK" "Streptococcus" 3 "Erythromycin" "Table 2H-1" "15μg" 21 15 FALSE +"CLSI 2018" "DISK" "Streptococcus" 3 "Erythromycin" "Table 2H-1" "15ug" 21 15 FALSE "CLSI 2018" "MIC" "Streptococcus" 3 "Erythromycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" "15μg" 21 15 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" "15ug" 21 15 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" 0.25 1 FALSE -"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" "15μg" 21 15 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" "15ug" 21 15 FALSE "CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Erythromycin" "Generic rules" "15μg" 23 13 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Erythromycin" "Generic rules" "15μg" 0.5 8 FALSE -"CLSI 2018" "DISK" "Aeromonas" 3 "Ertapenem" "M45 Table 2" "10μg" 19 15 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Erythromycin" "Generic rules" "15ug" 23 13 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Erythromycin" "Generic rules" "15ug" 0.5 8 FALSE +"CLSI 2018" "DISK" "Aeromonas" 3 "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE "CLSI 2018" "MIC" "Aeromonas" 3 "Ertapenem" "M45 Table 2" 2 8 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Ertapenem" "Table 2E" "10μg" 19 6 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Ertapenem" "Table 2E" "10ug" 19 6 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Ertapenem" "Table 2E" 0.5 2048 FALSE -"CLSI 2018" "DISK" "Plesiomonas" 3 "Ertapenem" "M45 Table 2" "10μg" 19 15 FALSE +"CLSI 2018" "DISK" "Plesiomonas" 3 "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE "CLSI 2018" "MIC" "Plesiomonas" 3 "Ertapenem" "M45 Table 2" 2 8 FALSE "CLSI 2018" "MIC" "Streptococcus" 3 "Ertapenem" "Table 2H-1" 1 2048 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" "Table 2G" 1 4 FALSE "CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "Table 2H-2" 1 2048 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Ertapenem" "Generic rules" "10μg" 22 18 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Ertapenem" "Generic rules" "10μg" 0.5 2 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "5-fluorocytosine" "Generic rules" "10μg" 4 32 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 22 18 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 0.5 2 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "5-fluorocytosine" "Generic rules" "10ug" 4 32 FALSE "CLSI 2018" "MIC" "Abiotrophia" 3 "Cefepime" "M45 Table 1" 1 4 FALSE -"CLSI 2018" "DISK" "Acinetobacter" 3 "Cefepime" "Table 2B-2" "30μg" 18 14 FALSE +"CLSI 2018" "DISK" "Acinetobacter" 3 "Cefepime" "Table 2B-2" "30ug" 18 14 FALSE "CLSI 2018" "MIC" "Acinetobacter" 3 "Cefepime" "Table 2B-2" 8 32 FALSE -"CLSI 2018" "DISK" "Aeromonas" 3 "Cefepime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2018" "DISK" "Aeromonas" 3 "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2018" "MIC" "Aeromonas" 3 "Cefepime" "M45 Table 2" 8 32 FALSE "CLSI 2018" "MIC" "Erysipelothrix rhusiopathiae" 2 "Cefepime" "M45 Table 6" 1 2048 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Cefepime" "Table 2B-5" 8 32 FALSE "CLSI 2018" "MIC" "Granulicatella" 3 "Cefepime" "M45 Table 1" 1 4 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Cefepime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Cefepime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Cefepime" "Table 2E" 2 2048 FALSE -"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" "30μg" 31 6 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" "30ug" 31 6 FALSE "CLSI 2018" "MIC" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" 0.5 2048 FALSE -"CLSI 2018" "DISK" "Plesiomonas" 3 "Cefepime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2018" "DISK" "Plesiomonas" 3 "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2018" "MIC" "Plesiomonas" 3 "Cefepime" "M45 Table 2" 8 32 FALSE -"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" "30μg" 18 14 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" "30ug" 18 14 FALSE "CLSI 2018" "MIC" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" 8 32 FALSE -"CLSI 2018" "DISK" "Streptococcus" 3 "Cefepime" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2018" "DISK" "Streptococcus" 3 "Cefepime" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2018" "MIC" "Streptococcus" 3 "Cefepime" "Table 2H-1" 0.5 2048 FALSE "CLSI 2018" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Cefepime" "Table 2G" 0.5 2 FALSE "CLSI 2018" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Cefepime" "Table 2G" 1 4 FALSE -"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" "30μg" 24 21 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" "30ug" 24 21 FALSE "CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" 1 4 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Cefepime" "Generic rules" "30μg" 25 18 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Cefepime" "Generic rules" "30μg" 2 16 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Fleroxacin" "Table 2E" "5μg" 19 6 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 25 18 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 2 16 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Fleroxacin" "Table 2E" "5ug" 19 6 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Fleroxacin" "Table 2E" 2 2048 FALSE -"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Fleroxacin" "Table 2F" "5μg" 35 28 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Fleroxacin" "Table 2F" "5ug" 35 28 FALSE "CLSI 2018" "MIC" "Neisseria gonorrhoeae" 2 "Fleroxacin" "Table 2F" 0.25 1 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Fleroxacin" "Table 2C" "5μg" 19 15 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Fleroxacin" "Table 2C" "5ug" 19 15 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Fleroxacin" "Table 2C" 2 8 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Florfenicol" "Generic rules" "30μg" 19 14 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Florfenicol" "Generic rules" "30μg" 2 8 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Fluconazole" "Generic rules" "25μg" 19 14 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Fluconazole" "Generic rules" "25μg" 8 64 FALSE -"CLSI 2018" "DISK" "Enterococcus" 3 "Fosfomycin" "Table 2D" "200μg" 16 12 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Florfenicol" "Generic rules" "30ug" 19 14 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Florfenicol" "Generic rules" "30ug" 2 8 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Fluconazole" "Generic rules" "25ug" 19 14 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Fluconazole" "Generic rules" "25ug" 8 64 FALSE +"CLSI 2018" "DISK" "Enterococcus" 3 "Fosfomycin" "Table 2D" "200ug" 16 12 FALSE "CLSI 2018" "MIC" "Enterococcus" 3 "Fosfomycin" "Table 2D" 64 256 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200μg" 16 12 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200μg" 64 256 FALSE -"CLSI 2018" "DISK" "Aeromonas" 3 "Cefoxitin" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200ug" 16 12 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200ug" 64 256 FALSE +"CLSI 2018" "DISK" "Aeromonas" 3 "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2018" "MIC" "Aeromonas" 3 "Cefoxitin" "M45 Table 2" 8 32 FALSE -"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" "30μg" 28 23 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" "30ug" 28 23 FALSE "CLSI 2018" "MIC" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" 2 8 FALSE -"CLSI 2018" "DISK" "Plesiomonas" 3 "Cefoxitin" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2018" "DISK" "Plesiomonas" 3 "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2018" "MIC" "Plesiomonas" 3 "Cefoxitin" "M45 Table 2" 8 32 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Cefoxitin" "Table 2C" "30μg" 25 24 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Cefoxitin" "Table 2C" "30ug" 25 24 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2018" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" "30μg" 22 21 FALSE +"CLSI 2018" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE "CLSI 2018" "MIC" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2018" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" "30μg" 22 21 FALSE +"CLSI 2018" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE "CLSI 2018" "MIC" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30μg" 8 32 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30ug" 8 32 FALSE "CLSI 2018" "MIC" "Abiotrophia" 3 "Gatifloxacin" "M45 Table 1" 1 4 FALSE -"CLSI 2018" "DISK" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" "5μg" 18 14 FALSE +"CLSI 2018" "DISK" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" "5ug" 18 14 FALSE "CLSI 2018" "MIC" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" 2 8 FALSE -"CLSI 2018" "DISK" "Enterococcus" 3 "Gatifloxacin" "Table 2D" "5μg" 18 14 FALSE +"CLSI 2018" "DISK" "Enterococcus" 3 "Gatifloxacin" "Table 2D" "5ug" 18 14 FALSE "CLSI 2018" "MIC" "Enterococcus" 3 "Gatifloxacin" "Table 2D" 2 8 FALSE "CLSI 2018" "MIC" "Erysipelothrix rhusiopathiae" 2 "Gatifloxacin" "M45 Table 6" 1 2048 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Gatifloxacin" "Table 2B-5" 2 8 FALSE "CLSI 2018" "MIC" "Granulicatella" 3 "Gatifloxacin" "M45 Table 1" 1 4 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Gatifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Gatifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Gatifloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" "5μg" 38 33 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" "5ug" 38 33 FALSE "CLSI 2018" "MIC" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" 0.125 0.5 FALSE -"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" "5μg" 18 14 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" "5ug" 18 14 FALSE "CLSI 2018" "MIC" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" 2 8 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" "10μg" 23 19 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" "10ug" 23 19 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2018" "DISK" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" "5μg" 21 17 FALSE +"CLSI 2018" "DISK" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" "5ug" 21 17 FALSE "CLSI 2018" "MIC" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" 1 4 FALSE -"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" "5μg" 21 17 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" "5ug" 21 17 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" 1 4 FALSE -"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" "5μg" 21 17 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" "5ug" 21 17 FALSE "CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" 1 4 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5μg" 18 14 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2018" "DISK" "Enterococcus" 3 "Gentamicin-high" "Table 2D" "120μg" 10 6 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5ug" 18 14 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2018" "DISK" "Enterococcus" 3 "Gentamicin-high" "Table 2D" "120ug" 10 6 FALSE "CLSI 2018" "MIC" "Enterococcus" 3 "Gentamicin-high" "Table 2D" 512 560 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120μg" 10 6 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120μg" 512 560 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Gemifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120ug" 10 6 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120ug" 512 560 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Gemifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Gemifloxacin" "Table 2E" 0.125 2048 FALSE -"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" "5μg" 23 19 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" "5ug" 23 19 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" 0.125 0.5 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5μg" 20 15 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5μg" 0.25 1 FALSE -"CLSI 2018" "DISK" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" "10μg" 15 12 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5ug" 20 15 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5ug" 0.25 1 FALSE +"CLSI 2018" "DISK" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" "10ug" 15 12 FALSE "CLSI 2018" "MIC" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" 4 16 FALSE -"CLSI 2018" "DISK" "Aeromonas" 3 "Gentamicin" "M45 Table 2" "10μg" 15 12 FALSE +"CLSI 2018" "DISK" "Aeromonas" 3 "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE "CLSI 2018" "MIC" "Aeromonas" 3 "Gentamicin" "M45 Table 2" 4 16 FALSE "CLSI 2018" "MIC" "Bacillus" 3 "Gentamicin" "M45 Table 3" 4 16 FALSE "CLSI 2018" "MIC" "Brucella" 3 "Gentamicin" "M45 Table 16" 4 2048 FALSE @@ -11951,33 +11951,33 @@ "CLSI 2018" "MIC" "Leuconostoc" 3 "Gentamicin" "M45 Table 10" 4 16 FALSE "CLSI 2018" "MIC" "Lactobacillus" 3 "Gentamicin" "M45 Table 9" 4 16 FALSE "CLSI 2018" "MIC" "Pediococcus" 3 "Gentamicin" "M45 Table 14" 4 16 FALSE -"CLSI 2018" "DISK" "Plesiomonas" 3 "Gentamicin" "M45 Table 2" "10μg" 15 12 FALSE +"CLSI 2018" "DISK" "Plesiomonas" 3 "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE "CLSI 2018" "MIC" "Plesiomonas" 3 "Gentamicin" "M45 Table 2" 4 16 FALSE -"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" "10μg" 15 12 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" "10ug" 15 12 FALSE "CLSI 2018" "MIC" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" 4 16 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Gentamicin" "Table 2C" "10μg" 15 12 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Gentamicin" "Table 2C" "10ug" 15 12 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Gentamicin" "Table 2C" 4 16 FALSE "CLSI 2018" "MIC" "Yersinia pestis" 2 "Gentamicin" "M45 Table 16" 4 16 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Gentamicin" "Generic rules" "10μg" 15 12 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Gentamicin" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Grepafloxacin" "Table 2E" "5μg" 24 6 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 15 12 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Grepafloxacin" "Table 2E" "5ug" 24 6 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Grepafloxacin" "Table 2E" 0.5 2048 FALSE -"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" "5μg" 37 27 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" "5ug" 37 27 FALSE "CLSI 2018" "MIC" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" 0.064 1 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" "5μg" 18 14 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" "5ug" 18 14 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" 1 4 FALSE -"CLSI 2018" "DISK" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" "5μg" 19 15 FALSE +"CLSI 2018" "DISK" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" "5ug" 19 15 FALSE "CLSI 2018" "MIC" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" "5μg" 19 15 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" "5ug" 19 15 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" 0.5 2 FALSE -"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" "5μg" 19 15 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" "5ug" 19 15 FALSE "CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" 0.5 2 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5μg" 18 14 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5μg" 1 4 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5ug" 18 14 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5ug" 1 4 FALSE "CLSI 2018" "MIC" "Abiotrophia" 3 "Imipenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2018" "DISK" "Acinetobacter" 3 "Imipenem" "Table 2B-2" "10μg" 22 18 FALSE +"CLSI 2018" "DISK" "Acinetobacter" 3 "Imipenem" "Table 2B-2" "10ug" 22 18 FALSE "CLSI 2018" "MIC" "Acinetobacter" 3 "Imipenem" "Table 2B-2" 2 8 FALSE -"CLSI 2018" "DISK" "Aeromonas" 3 "Imipenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2018" "DISK" "Aeromonas" 3 "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2018" "MIC" "Aeromonas" 3 "Imipenem" "M45 Table 2" 4 16 FALSE "CLSI 2018" "MIC" "Aggregatibacter" 3 "Imipenem" "M45 Table 7" 4 16 FALSE "CLSI 2018" "MIC" "Bacillus" 3 "Imipenem" "M45 Table 3" 4 16 FALSE @@ -11988,56 +11988,56 @@ "CLSI 2018" "MIC" "Erysipelothrix rhusiopathiae" 2 "Imipenem" "M45 Table 6" 0.5 2048 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Imipenem" "Table 2B-5" 4 16 FALSE "CLSI 2018" "MIC" "Granulicatella" 3 "Imipenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Imipenem" "Table 2E" "10μg" 16 6 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Imipenem" "Table 2E" "10ug" 16 6 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Imipenem" "Table 2E" 4 2048 FALSE "CLSI 2018" "MIC" "Kingella" 3 "Imipenem" "M45 Table 7" 0.5 2 FALSE "CLSI 2018" "MIC" "Lactobacillus" 3 "Imipenem" "M45 Table 9" 0.5 2 FALSE "CLSI 2018" "MIC" "Pediococcus" 3 "Imipenem" "M45 Table 14" 0.5 2048 FALSE -"CLSI 2018" "DISK" "Plesiomonas" 3 "Imipenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2018" "DISK" "Plesiomonas" 3 "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2018" "MIC" "Plesiomonas" 3 "Imipenem" "M45 Table 2" 4 16 FALSE -"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2018" "MIC" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" 2 8 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" "Table 2G" 0.125 1 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Imipenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Imipenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Kanamycin" "Generic rules" "30μg" 18 13 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Kanamycin" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2018" "DISK" "Enterococcus" 3 "Linezolid" "Table 2D" "30μg" 23 20 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Kanamycin" "Generic rules" "30ug" 18 13 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Kanamycin" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2018" "DISK" "Enterococcus" 3 "Linezolid" "Table 2D" "30ug" 23 20 FALSE "CLSI 2018" "MIC" "Enterococcus" 3 "Linezolid" "Table 2D" 2 8 FALSE "CLSI 2018" "MIC" "Lactobacillus" 3 "Linezolid" "M45 Table 9" 4 2048 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Linezolid" "Table 2C" "30μg" 21 20 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Linezolid" "Table 2C" "30ug" 21 20 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Linezolid" "Table 2C" 4 8 FALSE -"CLSI 2018" "DISK" "Streptococcus" 3 "Linezolid" "Table 2H-1" "30μg" 21 6 FALSE +"CLSI 2018" "DISK" "Streptococcus" 3 "Linezolid" "Table 2H-1" "30ug" 21 6 FALSE "CLSI 2018" "MIC" "Streptococcus" 3 "Linezolid" "Table 2H-1" 2 2048 FALSE -"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" "30μg" 21 6 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" "30ug" 21 6 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" 2 2048 FALSE -"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" "30μg" 21 6 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" "30ug" 21 6 FALSE "CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" 2 2048 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Linezolid" "Generic rules" "30μg" 21 20 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Linezolid" "Generic rules" "30μg" 4 8 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Linezolid" "Generic rules" "30ug" 21 20 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Linezolid" "Generic rules" "30ug" 4 8 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Lomefloxacin" "Table 2B-5" 2 8 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Lomefloxacin" "Table 2E" "10μg" 22 6 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Lomefloxacin" "Table 2E" "10ug" 22 6 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Lomefloxacin" "Table 2E" 2 2048 FALSE -"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Lomefloxacin" "Table 2F" "10μg" 38 26 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Lomefloxacin" "Table 2F" "10ug" 38 26 FALSE "CLSI 2018" "MIC" "Neisseria gonorrhoeae" 2 "Lomefloxacin" "Table 2F" 0.125 2 FALSE -"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" "10μg" 22 18 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" "10ug" 22 18 FALSE "CLSI 2018" "MIC" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" 2 8 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" "10μg" 22 18 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" "10ug" 22 18 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" 2 8 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10μg" 22 18 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Loracarbef" "Table 2E" "30μg" 19 15 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10ug" 22 18 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Loracarbef" "Table 2E" "30ug" 19 15 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Loracarbef" "Table 2E" 8 32 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Loracarbef" "Table 2G" 2 8 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Loracarbef" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Loracarbef" "Generic rules" "30μg" 8 32 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Loracarbef" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Loracarbef" "Generic rules" "30ug" 8 32 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Latamoxef" "Table 2B-5" 8 64 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Latamoxef" "Generic rules" "30μg" 23 14 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Latamoxef" "Generic rules" "30μg" 8 64 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Latamoxef" "Generic rules" "30ug" 23 14 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Latamoxef" "Generic rules" "30ug" 8 64 FALSE "CLSI 2018" "MIC" "Abiotrophia" 3 "Levofloxacin" "M45 Table 1" 2 8 FALSE -"CLSI 2018" "DISK" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" "5μg" 17 13 FALSE +"CLSI 2018" "DISK" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" "5ug" 17 13 FALSE "CLSI 2018" "MIC" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" 2 8 FALSE -"CLSI 2018" "DISK" "Aeromonas" 3 "Levofloxacin" "M45 Table 2" "5μg" 17 13 FALSE +"CLSI 2018" "DISK" "Aeromonas" 3 "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE "CLSI 2018" "MIC" "Aeromonas" 3 "Levofloxacin" "M45 Table 2" 2 8 FALSE "CLSI 2018" "MIC" "Aggregatibacter" 3 "Levofloxacin" "M45 Table 7" 2 8 FALSE "CLSI 2018" "MIC" "Bacillus" 3 "Levofloxacin" "M45 Table 3" 2 8 FALSE @@ -12045,162 +12045,162 @@ "CLSI 2018" "MIC" "Burkholderia cepacia" 2 "Levofloxacin" "Table 2B-3" 2 8 FALSE "CLSI 2018" "MIC" "Cardiobacterium" 3 "Levofloxacin" "M45 Table 7" 2 8 FALSE "CLSI 2018" "MIC" "Eikenella" 3 "Levofloxacin" "M45 Table 7" 2 8 FALSE -"CLSI 2018" "DISK" "Enterococcus" 3 "Levofloxacin" "Table 2D" "5μg" 17 13 FALSE +"CLSI 2018" "DISK" "Enterococcus" 3 "Levofloxacin" "Table 2D" "5ug" 17 13 FALSE "CLSI 2018" "MIC" "Enterococcus" 3 "Levofloxacin" "Table 2D" 2 8 FALSE "CLSI 2018" "MIC" "Erysipelothrix rhusiopathiae" 2 "Levofloxacin" "M45 Table 6" 2 2048 FALSE "CLSI 2018" "MIC" "Francisella tularensis tularensis" 1 "Levofloxacin" "M45 Table 16" 0.5 2048 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Levofloxacin" "Table 2B-5" 2 8 FALSE "CLSI 2018" "MIC" "Granulicatella" 3 "Levofloxacin" "M45 Table 1" 2 8 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Levofloxacin" "Table 2E" "5μg" 17 6 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Levofloxacin" "Table 2E" "5ug" 17 6 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Levofloxacin" "Table 2E" 2 2048 FALSE "CLSI 2018" "MIC" "Kingella" 3 "Levofloxacin" "M45 Table 7" 2 8 FALSE "CLSI 2018" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" "M45 Table 12" 2 2048 FALSE "CLSI 2018" "MIC" "Neisseria meningitidis" 2 "Levofloxacin" "Table 2I" 0.032 0.12 FALSE -"CLSI 2018" "DISK" "Plesiomonas" 3 "Levofloxacin" "M45 Table 2" "5μg" 17 13 FALSE +"CLSI 2018" "DISK" "Plesiomonas" 3 "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE "CLSI 2018" "MIC" "Plesiomonas" 3 "Levofloxacin" "M45 Table 2" 2 8 FALSE -"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" "5μg" 17 13 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" "5ug" 17 13 FALSE "CLSI 2018" "MIC" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" 2 8 FALSE -"CLSI 2018" "DISK" "Pasteurella" 3 "Levofloxacin" "M45 Table 13" "5μg" 28 6 FALSE +"CLSI 2018" "DISK" "Pasteurella" 3 "Levofloxacin" "M45 Table 13" "5ug" 28 6 FALSE "CLSI 2018" "MIC" "Pasteurella" 3 "Levofloxacin" "M45 Table 13" 0.064 2048 FALSE "CLSI 2018" "MIC" "Salmonella" 3 "Levofloxacin" "Table 2A" 0.125 2 FALSE "CLSI 2018" "MIC" "Extraintestinal" "Salmonella" 3 "Levofloxacin" "Table 2A" 0.125 2 FALSE -"CLSI 2018" "DISK" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" "75μg" 17 13 FALSE +"CLSI 2018" "DISK" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" "75ug" 17 13 FALSE "CLSI 2018" "MIC" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" 2 8 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Levofloxacin" "Table 2C" "10μg" 19 15 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Levofloxacin" "Table 2C" "10ug" 19 15 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Levofloxacin" "Table 2C" 1 4 FALSE -"CLSI 2018" "DISK" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" "5μg" 17 13 FALSE +"CLSI 2018" "DISK" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" "5ug" 17 13 FALSE "CLSI 2018" "MIC" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" 2 8 FALSE -"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" "5μg" 17 13 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" "5ug" 17 13 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" 2 8 FALSE -"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" "5μg" 17 13 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" "5ug" 17 13 FALSE "CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" 2 8 FALSE "CLSI 2018" "MIC" "Yersinia pestis" 2 "Levofloxacin" "M45 Table 16" 0.25 2048 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5μg" 17 13 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5μg" 2 8 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 17 13 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 2 8 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Cefamandole" "Table 2E" 4 16 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Cefamandole" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Cefamandole" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Marbofloxacin" "Generic rules" "5μg" 20 14 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Marbofloxacin" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Mecillinam" "Generic rules" "10μg" 15 11 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Mecillinam" "Generic rules" "10μg" 8 32 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Cefamandole" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Cefamandole" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Marbofloxacin" "Generic rules" "5ug" 20 14 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Marbofloxacin" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 15 11 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 8 32 FALSE "CLSI 2018" "MIC" "Abiotrophia" 3 "Meropenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2018" "DISK" "Acinetobacter" 3 "Meropenem" "Table 2B-2" "10μg" 18 14 FALSE +"CLSI 2018" "DISK" "Acinetobacter" 3 "Meropenem" "Table 2B-2" "10ug" 18 14 FALSE "CLSI 2018" "MIC" "Acinetobacter" 3 "Meropenem" "Table 2B-2" 2 8 FALSE -"CLSI 2018" "DISK" "Aeromonas" 3 "Meropenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2018" "DISK" "Aeromonas" 3 "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2018" "MIC" "Aeromonas" 3 "Meropenem" "M45 Table 2" 4 16 FALSE "CLSI 2018" "MIC" "Aggregatibacter" 3 "Meropenem" "M45 Table 7" 4 16 FALSE -"CLSI 2018" "DISK" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" "10μg" 20 15 FALSE +"CLSI 2018" "DISK" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" "10ug" 20 15 FALSE "CLSI 2018" "MIC" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" 4 16 FALSE "CLSI 2018" "MIC" "Cardiobacterium" 3 "Meropenem" "M45 Table 7" 0.5 2 FALSE "CLSI 2018" "MIC" "Eikenella" 3 "Meropenem" "M45 Table 7" 0.5 2 FALSE "CLSI 2018" "MIC" "Erysipelothrix rhusiopathiae" 2 "Meropenem" "M45 Table 6" 0.5 2048 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Meropenem" "Table 2B-5" 4 16 FALSE "CLSI 2018" "MIC" "Granulicatella" 3 "Meropenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Meropenem" "Table 2E" "10μg" 20 6 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Meropenem" "Table 2E" "10ug" 20 6 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Meropenem" "Table 2E" 0.5 2048 FALSE "CLSI 2018" "MIC" "Kingella" 3 "Meropenem" "M45 Table 7" 0.5 2 FALSE -"CLSI 2018" "DISK" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" "10μg" 30 6 FALSE +"CLSI 2018" "DISK" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" "10ug" 30 6 FALSE "CLSI 2018" "MIC" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" 0.25 2048 FALSE -"CLSI 2018" "DISK" "Plesiomonas" 3 "Meropenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2018" "DISK" "Plesiomonas" 3 "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2018" "MIC" "Plesiomonas" 3 "Meropenem" "M45 Table 2" 4 16 FALSE -"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2018" "MIC" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" 2 8 FALSE "CLSI 2018" "MIC" "Streptococcus" 3 "Meropenem" "Table 2H-1" 0.5 2048 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Meropenem" "Table 2G" 0.25 1 FALSE "CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "Table 2H-2" 0.5 2048 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Meropenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Meropenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Methicillin" "Generic rules" "5μg" 14 9 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Methicillin" "Generic rules" "5μg" 8 16 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Moxifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Methicillin" "Generic rules" "5ug" 14 9 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Methicillin" "Generic rules" "5ug" 8 16 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Moxifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Moxifloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2018" "DISK" "Pasteurella" 3 "Moxifloxacin" "M45 Table 13" "5μg" 28 6 FALSE +"CLSI 2018" "DISK" "Pasteurella" 3 "Moxifloxacin" "M45 Table 13" "5ug" 28 6 FALSE "CLSI 2018" "MIC" "Pasteurella" 3 "Moxifloxacin" "M45 Table 13" 0.064 2048 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" "5μg" 24 20 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" "5ug" 24 20 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" "5μg" 18 14 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" "5ug" 18 14 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" 1 4 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5μg" 24 20 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5μg" 0.5 2 FALSE -"CLSI 2018" "DISK" "Acinetobacter" 3 "Minocycline" "Table 2B-2" "30μg" 16 12 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 24 20 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 0.5 2 FALSE +"CLSI 2018" "DISK" "Acinetobacter" 3 "Minocycline" "Table 2B-2" "30ug" 16 12 FALSE "CLSI 2018" "MIC" "Acinetobacter" 3 "Minocycline" "Table 2B-2" 4 16 FALSE -"CLSI 2018" "DISK" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" "30μg" 19 14 FALSE +"CLSI 2018" "DISK" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" "30ug" 19 14 FALSE "CLSI 2018" "MIC" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" 4 16 FALSE -"CLSI 2018" "DISK" "Enterococcus" 3 "Minocycline" "Table 2D" "30μg" 19 14 FALSE +"CLSI 2018" "DISK" "Enterococcus" 3 "Minocycline" "Table 2D" "30ug" 19 14 FALSE "CLSI 2018" "MIC" "Enterococcus" 3 "Minocycline" "Table 2D" 4 16 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Minocycline" "Table 2B-5" 4 16 FALSE "CLSI 2018" "MIC" "Leuconostoc" 3 "Minocycline" "M45 Table 10" 4 16 FALSE -"CLSI 2018" "DISK" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" "30μg" 26 6 FALSE +"CLSI 2018" "DISK" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" "30ug" 26 6 FALSE "CLSI 2018" "MIC" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" 2 2048 FALSE -"CLSI 2018" "DISK" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" "30μg" 19 14 FALSE +"CLSI 2018" "DISK" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" "30ug" 19 14 FALSE "CLSI 2018" "MIC" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" 4 16 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Minocycline" "Table 2C" "30μg" 19 14 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Minocycline" "Table 2C" "30ug" 19 14 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Minocycline" "Table 2C" 4 16 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Minocycline" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Minocycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Nafcillin" "Generic rules" "1μg" 13 10 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Nafcillin" "Generic rules" "1μg" 2 4 FALSE -"CLSI 2018" "DISK" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" "30μg" 26 25 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Minocycline" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Minocycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Nafcillin" "Generic rules" "1ug" 13 10 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Nafcillin" "Generic rules" "1ug" 2 4 FALSE +"CLSI 2018" "DISK" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" "30ug" 26 25 FALSE "CLSI 2018" "MIC" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" 4 8 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30μg" 19 13 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30μg" 16 32 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 19 13 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 16 32 FALSE "CLSI 2018" "MIC" "Acinetobacter" 3 "Netilmicin" "Table 2B-2" 8 32 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Netilmicin" "Table 2B-5" 8 32 FALSE -"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" "30μg" 15 12 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" "30ug" 15 12 FALSE "CLSI 2018" "MIC" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" 8 32 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Netilmicin" "Generic rules" "30μg" 15 12 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Netilmicin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2018" "DISK" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" "300μg" 17 14 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Netilmicin" "Generic rules" "30ug" 15 12 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Netilmicin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2018" "DISK" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" "300ug" 17 14 FALSE "CLSI 2018" "MIC" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" 32 128 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" "300μg" 17 14 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" "300ug" 17 14 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" 32 128 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "300μg" 17 14 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100μg" 32 128 FALSE -"CLSI 2018" "DISK" "Enterococcus" 3 "Norfloxacin" "Table 2D" "10μg" 17 12 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "300ug" 17 14 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100ug" 32 128 FALSE +"CLSI 2018" "DISK" "Enterococcus" 3 "Norfloxacin" "Table 2D" "10ug" 17 12 FALSE "CLSI 2018" "MIC" "Enterococcus" 3 "Norfloxacin" "Table 2D" 4 16 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Norfloxacin" "Table 2B-5" 4 16 FALSE -"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Norfloxacin" "Table 2B-1" "10μg" 17 12 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Norfloxacin" "Table 2B-1" "10ug" 17 12 FALSE "CLSI 2018" "MIC" "Pseudomonas aeruginosa" 2 "Norfloxacin" "Table 2B-1" 4 16 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Norfloxacin" "Table 2C" "10μg" 17 12 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Norfloxacin" "Table 2C" "10ug" 17 12 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Norfloxacin" "Table 2C" 4 16 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10μg" 17 12 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10μg" 4 16 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10ug" 17 12 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10ug" 4 16 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Ofloxacin" "Table 2B-5" 2 8 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Ofloxacin" "Table 2E" "5μg" 16 6 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Ofloxacin" "Table 2E" "5ug" 16 6 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Ofloxacin" "Table 2E" 2 2048 FALSE -"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Ofloxacin" "Table 2F" "5μg" 31 24 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Ofloxacin" "Table 2F" "5ug" 31 24 FALSE "CLSI 2018" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" "Table 2F" 0.25 2 FALSE -"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" "5μg" 16 12 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" "5ug" 16 12 FALSE "CLSI 2018" "MIC" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" 2 8 FALSE "CLSI 2018" "MIC" "Salmonella" 3 "Ofloxacin" "Table 2A" 0.125 2 FALSE "CLSI 2018" "MIC" "Extraintestinal" "Salmonella" 3 "Ofloxacin" "Table 2A" 0.125 2 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Ofloxacin" "Table 2C" "5μg" 18 14 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Ofloxacin" "Table 2C" "5ug" 18 14 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Ofloxacin" "Table 2C" 1 4 FALSE -"CLSI 2018" "DISK" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" "5μg" 16 12 FALSE +"CLSI 2018" "DISK" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" "5ug" 16 12 FALSE "CLSI 2018" "MIC" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" 2 8 FALSE -"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" "5μg" 16 12 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" "5ug" 16 12 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" 2 8 FALSE -"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" "5μg" 16 12 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" "5ug" 16 12 FALSE "CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" 2 8 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5μg" 16 12 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10μg" 23 17 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10μg" 1 8 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 16 12 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10ug" 23 17 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10ug" 1 8 FALSE "CLSI 2018" "MIC" "Enterococcus" 3 "Oritavancin" "Table 2D" 0.125 2048 FALSE "CLSI 2018" "MIC" "Streptococcus" 3 "Oritavancin" "Table 2H-1" 0.25 2048 FALSE "CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Oritavancin" "Table 2H-2" 0.25 2048 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Oxacillin" "Table 2C" "1μg" 13 10 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Oxacillin" "Table 2C" "1ug" 13 10 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Oxacillin" "Table 2C" 2 4 FALSE -"CLSI 2018" "DISK" "Staphylococcus aureus aureus" 1 "Oxacillin" "Table 2C" "1μg" 13 10 FALSE +"CLSI 2018" "DISK" "Staphylococcus aureus aureus" 1 "Oxacillin" "Table 2C" "1ug" 13 10 FALSE "CLSI 2018" "MIC" "Staphylococcus aureus aureus" 1 "Oxacillin" "Table 2C" 2 4 FALSE "CLSI 2018" "MIC" "Staphylococcus lugdunensis" 2 "Oxacillin" "Table 2C" 2 4 FALSE -"CLSI 2018" "DISK" "Staphylococcus pseudintermedius" 2 "Oxacillin" "Table 2C" "1μg" 18 17 FALSE +"CLSI 2018" "DISK" "Staphylococcus pseudintermedius" 2 "Oxacillin" "Table 2C" "1ug" 18 17 FALSE "CLSI 2018" "MIC" "Staphylococcus pseudintermedius" 2 "Oxacillin" "Table 2C" 0.25 0.5 FALSE "CLSI 2018" "DISK" "Staphylococcus schleiferi" 2 "Oxacillin" "Table 2C" 18 17 FALSE -"CLSI 2018" "MIC" "Staphylococcus schleiferi" 2 "Oxacillin" "Table 2C" "1μg" 0.25 0.5 FALSE -"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "Table 2G" "1μg" 20 6 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Oxacillin" "Generic rules" "1μg" 0.25 0.5 FALSE +"CLSI 2018" "MIC" "Staphylococcus schleiferi" 2 "Oxacillin" "Table 2C" "1ug" 0.25 0.5 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "Table 2G" "1ug" 20 6 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Oxacillin" "Generic rules" "1ug" 0.25 0.5 FALSE "CLSI 2018" "DISK" "Salmonella" 3 "Pefloxacin" "Table 2A" 24 23 FALSE "CLSI 2018" "MIC" "Abiotrophia" 3 "Benzylpenicillin" "M45 Table 1" 0.125 4 FALSE "CLSI 2018" "MIC" "Aggregatibacter" 3 "Benzylpenicillin" "M45 Table 7" 1 4 FALSE @@ -12222,7 +12222,7 @@ "CLSI 2018" "MIC" "Pediococcus" 3 "Benzylpenicillin" "M45 Table 14" 8 2048 FALSE "CLSI 2018" "DISK" "Pasteurella" 3 "Benzylpenicillin" "M45 Table 13" "10 Units" 25 6 FALSE "CLSI 2018" "MIC" "Pasteurella" 3 "Benzylpenicillin" "M45 Table 13" 0.5 2048 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" "10μg" 29 28 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" "10ug" 29 28 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" 0.125 0.25 FALSE "CLSI 2018" "DISK" "Streptococcus" 3 "Benzylpenicillin" "Table 2H-1" "10units" 24 6 FALSE "CLSI 2018" "MIC" "Streptococcus" 3 "Benzylpenicillin" "Table 2H-1" 0.125 2048 FALSE @@ -12233,147 +12233,147 @@ "CLSI 2018" "DISK" "(unknown name)" 6 "Benzylpenicillin" "Generic rules" "10units" 29 28 FALSE "CLSI 2018" "MIC" "(unknown name)" 6 "Benzylpenicillin" "Generic rules" "10units" 0.125 0.25 FALSE "CLSI 2018" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Phenoxymethylpenicillin" "Table 2G" 0.064 2 FALSE -"CLSI 2018" "DISK" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" "100μg" 21 17 FALSE +"CLSI 2018" "DISK" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" "100ug" 21 17 FALSE "CLSI 2018" "MIC" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" 16 128 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Piperacillin" "Table 2B-5" 16 128 FALSE -"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" "100μg" 21 14 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" "100ug" 21 14 FALSE "CLSI 2018" "MIC" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" 16 128 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Piperacillin" "Generic rules" "100μg" 21 17 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Piperacillin" "Generic rules" "100μg" 16 128 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Piperacillin" "Generic rules" "100ug" 21 17 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Piperacillin" "Generic rules" "100ug" 16 128 FALSE "CLSI 2018" "MIC" "Acinetobacter" 3 "Polymyxin B" "Table 2B-2" 2 4 FALSE "CLSI 2018" "MIC" "Pseudomonas aeruginosa" 2 "Polymyxin B" "Table 2B-1" 2 8 FALSE "CLSI 2018" "DISK" "(unknown name)" 6 "Polymyxin B" "Generic rules" "300units" 12 11 FALSE "CLSI 2018" "MIC" "(unknown name)" 6 "Polymyxin B" "Generic rules" "300units" 2 8 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30μg" 18 14 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30μg" 1 4 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2μg" 13 12 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2μg" 2 4 FALSE -"CLSI 2018" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" "15μg" 19 15 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30ug" 18 14 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30ug" 1 4 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2ug" 13 12 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2ug" 2 4 FALSE +"CLSI 2018" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" "15ug" 19 15 FALSE "CLSI 2018" "MIC" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" 1 4 FALSE -"CLSI 2018" "DISK" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" "15μg" 19 15 FALSE +"CLSI 2018" "DISK" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" "15ug" 19 15 FALSE "CLSI 2018" "MIC" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" 1 4 FALSE -"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" "15μg" 19 15 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" "15ug" 19 15 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" 1 4 FALSE -"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" "15μg" 19 15 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" "15ug" 19 15 FALSE "CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" 1 4 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15μg" 19 15 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15μg" 1 4 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15ug" 19 15 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15ug" 1 4 FALSE "CLSI 2018" "MIC" "Aggregatibacter" 3 "Rifampicin" "M45 Table 7" 1 4 FALSE "CLSI 2018" "MIC" "Bacillus" 3 "Rifampicin" "M45 Table 3" 1 4 FALSE "CLSI 2018" "MIC" "Cardiobacterium" 3 "Rifampicin" "M45 Table 7" 1 4 FALSE "CLSI 2018" "MIC" "Eikenella" 3 "Rifampicin" "M45 Table 7" 1 4 FALSE -"CLSI 2018" "DISK" "Enterococcus" 3 "Rifampicin" "Table 2D" "5μg" 20 16 FALSE +"CLSI 2018" "DISK" "Enterococcus" 3 "Rifampicin" "Table 2D" "5ug" 20 16 FALSE "CLSI 2018" "MIC" "Enterococcus" 3 "Rifampicin" "Table 2D" 1 4 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Rifampicin" "Table 2E" "5μg" 20 16 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Rifampicin" "Table 2E" "5ug" 20 16 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Rifampicin" "Table 2E" 1 4 FALSE "CLSI 2018" "MIC" "Kingella" 3 "Rifampicin" "M45 Table 7" 1 4 FALSE "CLSI 2018" "MIC" "Moraxella catarrhalis" 2 "Rifampicin" "M45 Table 12" 1 4 FALSE -"CLSI 2018" "DISK" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" "5μg" 25 19 FALSE +"CLSI 2018" "DISK" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" "5ug" 25 19 FALSE "CLSI 2018" "MIC" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" 0.5 2 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Rifampicin" "Table 2C" "5μg" 20 16 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Rifampicin" "Table 2C" "5ug" 20 16 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Rifampicin" "Table 2C" 1 4 FALSE -"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" "5μg" 19 16 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" "5ug" 19 16 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" 1 4 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Rifampicin" "Generic rules" "5μg" 20 16 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Rifampicin" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2018" "DISK" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" "10μg" 15 11 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Rifampicin" "Generic rules" "5ug" 20 16 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Rifampicin" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2018" "DISK" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" "10ug" 15 11 FALSE "CLSI 2018" "MIC" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" 8 32 FALSE -"CLSI 2018" "DISK" "Aeromonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10μg" 15 11 FALSE +"CLSI 2018" "DISK" "Aeromonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE "CLSI 2018" "MIC" "Aeromonas" 3 "Ampicillin/sulbactam" "M45 Table 2" 8 32 FALSE "CLSI 2018" "MIC" "Aggregatibacter" 3 "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE "CLSI 2018" "MIC" "Cardiobacterium" 3 "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE "CLSI 2018" "MIC" "Eikenella" 3 "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" "10/10μg" 20 19 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" "10/10ug" 20 19 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" 2 4 FALSE -"CLSI 2018" "DISK" "Plesiomonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10μg" 15 11 FALSE +"CLSI 2018" "DISK" "Plesiomonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE "CLSI 2018" "MIC" "Plesiomonas" 3 "Ampicillin/sulbactam" "M45 Table 2" 8 32 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10μg" 15 11 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10μg" 8 32 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300μg" 256 512 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10ug" 15 11 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10ug" 8 32 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300ug" 256 512 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Sulfamethoxazole" "Table 2B-5" 256 512 FALSE "CLSI 2018" "MIC" "Neisseria meningitidis" 2 "Sulfamethoxazole" "Table 2I" 2 8 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" "200μg" 17 12 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" "200ug" 17 12 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" 256 512 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300μg" 256 512 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300ug" 256 512 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Sulfisoxazole" "Table 2B-5" 256 512 FALSE "CLSI 2018" "MIC" "Neisseria meningitidis" 2 "Sulfisoxazole" "Table 2I" 2 8 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" "200μg" 17 12 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" "200ug" 17 12 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" 256 512 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300μg" 256 512 FALSE -"CLSI 2018" "DISK" "Histophilus somni" 2 "Spectinomycin" "Vet Table" "100μg" 14 10 FALSE -"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" "100μg" 18 14 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300ug" 256 512 FALSE +"CLSI 2018" "DISK" "Histophilus somni" 2 "Spectinomycin" "Vet Table" "100ug" 14 10 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" "100ug" 18 14 FALSE "CLSI 2018" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" 32 128 FALSE -"CLSI 2018" "DISK" "Providencia heimbachae" 2 "Spectinomycin" "100μg" 14 10 FALSE -"CLSI 2018" "DISK" "Pasteurella multocida multocida" 1 "Spectinomycin" "100μg" 14 10 FALSE +"CLSI 2018" "DISK" "Providencia heimbachae" 2 "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2018" "DISK" "Pasteurella multocida multocida" 1 "Spectinomycin" "100ug" 14 10 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Sparfloxacin" "Table 2E" 0.25 2048 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" "5μg" 19 15 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" "5ug" 19 15 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" "5μg" 19 15 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" "5ug" 19 15 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" 0.5 2 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5μg" 0.5 2 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5ug" 0.5 2 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Sulfonamide" "Table 2B-5" 256 512 FALSE "CLSI 2018" "MIC" "Neisseria meningitidis" 2 "Sulfonamide" "Table 2I" 2 8 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Sulfonamide" "Table 2C" "200μg" 17 12 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Sulfonamide" "Table 2C" "200ug" 17 12 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Sulfonamide" "Table 2C" 256 512 FALSE -"CLSI 2018" "DISK" "Enterococcus" 3 "Streptomycin-high" "Table 2D" "300μg" 10 6 FALSE +"CLSI 2018" "DISK" "Enterococcus" 3 "Streptomycin-high" "Table 2D" "300ug" 10 6 FALSE "CLSI 2018" "MIC" "Enterococcus" 3 "Streptomycin-high" "Table 2D" 1024 2048 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300μg" 10 6 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300μg" 1024 2048 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300ug" 10 6 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300ug" 1024 2048 FALSE "CLSI 2018" "MIC" "Brucella" 3 "Streptoduocin" "M45 Table 16" 8 2048 FALSE "CLSI 2018" "MIC" "Enterococcus" 3 "Streptoduocin" "Table 2D" 1024 2048 FALSE "CLSI 2018" "MIC" "Francisella tularensis tularensis" 1 "Streptoduocin" "M45 Table 16" 8 2048 FALSE "CLSI 2018" "MIC" "Yersinia pestis" 2 "Streptoduocin" "M45 Table 16" 4 16 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Streptomycin" "Generic rules" "10μg" 15 11 FALSE -"CLSI 2018" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Streptomycin" "Generic rules" "10ug" 15 11 FALSE +"CLSI 2018" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2018" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" 2 4 FALSE -"CLSI 2018" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2018" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2018" "MIC" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE "CLSI 2018" "MIC" "Aggregatibacter" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE "CLSI 2018" "MIC" "Bacillus" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 3" 2 4 FALSE "CLSI 2018" "MIC" "Brucella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 2048 FALSE -"CLSI 2018" "DISK" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2018" "DISK" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2018" "MIC" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" 2 4 FALSE "CLSI 2018" "MIC" "Burkholderia pseudomallei" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 4 FALSE "CLSI 2018" "MIC" "Cardiobacterium" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE "CLSI 2018" "MIC" "Eikenella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-5" 2 4 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" "1.25μg/23.75μg" 15 10 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" "1.25ug/23.75ug" 15 10 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" 0.5 4 FALSE "CLSI 2018" "MIC" "Kingella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE "CLSI 2018" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 11" 0.5 4 FALSE -"CLSI 2018" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 12" "1.25μg/23.75μg" 13 10 FALSE +"CLSI 2018" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 12" "1.25ug/23.75ug" 13 10 FALSE "CLSI 2018" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 12" 0.5 4 FALSE -"CLSI 2018" "DISK" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" "1.25μg/23.75μg" 30 25 FALSE +"CLSI 2018" "DISK" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" "1.25ug/23.75ug" 30 25 FALSE "CLSI 2018" "MIC" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" 0.125 0.5 FALSE -"CLSI 2018" "DISK" "Plesiomonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2018" "DISK" "Plesiomonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2018" "MIC" "Plesiomonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE -"CLSI 2018" "DISK" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 13" "1.25μg/23.75μg" 24 6 FALSE +"CLSI 2018" "DISK" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 13" "1.25ug/23.75ug" 24 6 FALSE "CLSI 2018" "MIC" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 13" 0.5 2048 FALSE -"CLSI 2018" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" "30μg" 16 10 FALSE +"CLSI 2018" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" "30ug" 16 10 FALSE "CLSI 2018" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" 2 4 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" 2 4 FALSE -"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" "1.25μg/23.75μg" 19 15 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" "1.25ug/23.75ug" 19 15 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" 0.5 4 FALSE "CLSI 2018" "MIC" "Yersinia pestis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 4 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75μg" 16 10 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75μg" 2 4 FALSE -"CLSI 2018" "DISK" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" "75μg" 20 14 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 16 10 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 2 4 FALSE +"CLSI 2018" "DISK" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" "75ug" 20 14 FALSE "CLSI 2018" "MIC" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" 16 128 FALSE "CLSI 2018" "MIC" "Burkholderia cepacia" 2 "Ticarcillin/clavulanic acid" "Table 2B-3" 16 128 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Ticarcillin/clavulanic acid" "Table 2B-5" 16 128 FALSE -"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" "75μg" 24 15 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" "75ug" 24 15 FALSE "CLSI 2018" "MIC" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" 16 128 FALSE "CLSI 2018" "MIC" "Stenotrophomonas maltophilia" 2 "Ticarcillin/clavulanic acid" "Table 2B-4" 16 128 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15μg" 20 14 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15μg" 16 128 FALSE -"CLSI 2018" "DISK" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" "30μg" 15 11 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15ug" 20 14 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15ug" 16 128 FALSE +"CLSI 2018" "DISK" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" "30ug" 15 11 FALSE "CLSI 2018" "MIC" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" 4 16 FALSE -"CLSI 2018" "DISK" "Aeromonas" 3 "Tetracycline" "M45 Table 2" "30μg" 15 11 FALSE +"CLSI 2018" "DISK" "Aeromonas" 3 "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE "CLSI 2018" "MIC" "Aeromonas" 3 "Tetracycline" "M45 Table 2" 4 16 FALSE "CLSI 2018" "MIC" "Aggregatibacter" 3 "Tetracycline" "M45 Table 7" 2 8 FALSE "CLSI 2018" "MIC" "Bacillus" 3 "Tetracycline" "M45 Table 3" 4 16 FALSE @@ -12384,296 +12384,296 @@ "CLSI 2018" "MIC" "Campylobacter" 3 "Tetracycline" "M45 Table 3" 4 16 FALSE "CLSI 2018" "MIC" "Cardiobacterium" 3 "Tetracycline" "M45 Table 7" 2 8 FALSE "CLSI 2018" "MIC" "Eikenella" 3 "Tetracycline" "M45 Table 7" 2 8 FALSE -"CLSI 2018" "DISK" "Enterococcus" 3 "Tetracycline" "Table 2D" "30μg" 19 14 FALSE +"CLSI 2018" "DISK" "Enterococcus" 3 "Tetracycline" "Table 2D" "30ug" 19 14 FALSE "CLSI 2018" "MIC" "Enterococcus" 3 "Tetracycline" "Table 2D" 4 16 FALSE "CLSI 2018" "MIC" "Francisella tularensis tularensis" 1 "Tetracycline" "M45 Table 16" 4 2048 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Tetracycline" "Table 2B-5" 4 16 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Tetracycline" "Table 2E" "30μg" 29 25 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Tetracycline" "Table 2E" "30ug" 29 25 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Tetracycline" "Table 2E" 2 8 FALSE "CLSI 2018" "MIC" "Kingella" 3 "Tetracycline" "M45 Table 7" 2 8 FALSE -"CLSI 2018" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 12" "30μg" 29 24 FALSE +"CLSI 2018" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 12" "30ug" 29 24 FALSE "CLSI 2018" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 12" 2 8 FALSE -"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" "30μg" 38 30 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" "30ug" 38 30 FALSE "CLSI 2018" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" 0.25 2 FALSE -"CLSI 2018" "DISK" "Plesiomonas" 3 "Tetracycline" "M45 Table 2" "30μg" 15 11 FALSE +"CLSI 2018" "DISK" "Plesiomonas" 3 "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE "CLSI 2018" "MIC" "Plesiomonas" 3 "Tetracycline" "M45 Table 2" 4 16 FALSE -"CLSI 2018" "DISK" "Pasteurella" 3 "Tetracycline" "M45 Table 13" "30μg" 23 6 FALSE +"CLSI 2018" "DISK" "Pasteurella" 3 "Tetracycline" "M45 Table 13" "30ug" 23 6 FALSE "CLSI 2018" "MIC" "Pasteurella" 3 "Tetracycline" "M45 Table 13" 1 2048 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Tetracycline" "Table 2C" "30μg" 19 14 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Tetracycline" "Table 2C" "30ug" 19 14 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Tetracycline" "Table 2C" 4 16 FALSE -"CLSI 2018" "DISK" "Streptococcus" 3 "Tetracycline" "Table 2H-1" "30μg" 23 18 FALSE +"CLSI 2018" "DISK" "Streptococcus" 3 "Tetracycline" "Table 2H-1" "30ug" 23 18 FALSE "CLSI 2018" "MIC" "Streptococcus" 3 "Tetracycline" "Table 2H-1" 2 8 FALSE -"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" "30μg" 28 24 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" "30ug" 28 24 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" 1 4 FALSE -"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" "30μg" 23 18 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" "30ug" 23 18 FALSE "CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" 2 8 FALSE "CLSI 2018" "MIC" "Yersinia pestis" 2 "Tetracycline" "M45 Table 16" 4 16 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Tetracycline" "Generic rules" "30μg" 15 11 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Tetracycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2018" "DISK" "Enterococcus" 3 "Teicoplanin" "Table 2D" "30μg" 14 10 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Tetracycline" "Generic rules" "30ug" 15 11 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Tetracycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2018" "DISK" "Enterococcus" 3 "Teicoplanin" "Table 2D" "30ug" 14 10 FALSE "CLSI 2018" "MIC" "Enterococcus" 3 "Teicoplanin" "Table 2D" 8 32 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Teicoplanin" "Table 2C" "30μg" 14 10 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Teicoplanin" "Table 2C" "30ug" 14 10 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Teicoplanin" "Table 2C" 8 32 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30μg" 14 10 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Tiamulin" "Generic rules" "30μg" 9 8 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Tiamulin" "Generic rules" "30μg" 16 32 FALSE -"CLSI 2018" "DISK" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" "Vet Table" "15μg" 11 10 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30ug" 14 10 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Tiamulin" "Generic rules" "30ug" 9 8 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Tiamulin" "Generic rules" "30ug" 16 32 FALSE +"CLSI 2018" "DISK" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE "CLSI 2018" "MIC" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" "Vet Table" 16 32 FALSE -"CLSI 2018" "DISK" "Pasteurella multocida multocida" 1 "Tilmicosin" "Vet Table" "15μg" 11 10 FALSE +"CLSI 2018" "DISK" "Pasteurella multocida multocida" 1 "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE "CLSI 2018" "MIC" "Pasteurella multocida multocida" 1 "Tilmicosin" "Vet Table" 16 32 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15μg" 14 10 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15μg" 8 32 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30μg" 2 8 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Telithromycin" "Table 2E" "15μg" 15 11 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15ug" 14 10 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15ug" 8 32 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30ug" 2 8 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Telithromycin" "Table 2E" "15ug" 15 11 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Telithromycin" "Table 2E" 4 16 FALSE -"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" "15μg" 19 15 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" "15ug" 19 15 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" 1 4 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Telithromycin" "Generic rules" "15μg" 22 18 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Telithromycin" "Generic rules" "15μg" 1 4 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Telithromycin" "Generic rules" "15ug" 22 18 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Telithromycin" "Generic rules" "15ug" 1 4 FALSE "CLSI 2018" "MIC" "Enterococcus" 3 "Telavancin" "Table 2D" 0.125 2048 FALSE "CLSI 2018" "MIC" "Streptococcus" 3 "Telavancin" "Table 2H-1" 0.125 2048 FALSE "CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Telavancin" "Table 2H-2" 0.125 2048 FALSE -"CLSI 2018" "DISK" "Staphylococcus" 3 "Trimethoprim" "Table 2C" "5μg" 16 10 FALSE +"CLSI 2018" "DISK" "Staphylococcus" 3 "Trimethoprim" "Table 2C" "5ug" 16 10 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Trimethoprim" "Table 2C" 8 16 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5μg" 16 10 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5μg" 8 16 FALSE -"CLSI 2018" "DISK" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" "10μg" 15 12 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 16 10 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 8 16 FALSE +"CLSI 2018" "DISK" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" "10ug" 15 12 FALSE "CLSI 2018" "MIC" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" 4 16 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Tobramycin" "Table 2B-5" 4 16 FALSE -"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" "10μg" 15 12 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" "10ug" 15 12 FALSE "CLSI 2018" "MIC" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" 4 16 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Tobramycin" "Generic rules" "10μg" 15 12 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Tobramycin" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Tulathromycin" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Tulathromycin" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Trovafloxacin" "Table 2E" "10μg" 22 6 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 15 12 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Tulathromycin" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Tulathromycin" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Trovafloxacin" "Table 2E" "10ug" 22 6 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Trovafloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" "10μg" 34 6 FALSE +"CLSI 2018" "DISK" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" "10ug" 34 6 FALSE "CLSI 2018" "MIC" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" 0.25 2048 FALSE -"CLSI 2018" "DISK" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" "10μg" 19 15 FALSE +"CLSI 2018" "DISK" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" "10ug" 19 15 FALSE "CLSI 2018" "MIC" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" 1 4 FALSE -"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" "10μg" 19 15 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" "10ug" 19 15 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" 1 4 FALSE -"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" "10μg" 19 15 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" "10ug" 19 15 FALSE "CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" 1 4 FALSE "CLSI 2018" "MIC" "Enterococcus" 3 "Tedizolid" "Table 2D" 0.5 2048 FALSE "CLSI 2018" "MIC" "Streptococcus" 3 "Tedizolid" "Table 2H-1" 0.5 2048 FALSE "CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Tedizolid" "Table 2H-2" 0.25 2048 FALSE -"CLSI 2018" "DISK" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" "100μg" 21 17 FALSE +"CLSI 2018" "DISK" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" "100ug" 21 17 FALSE "CLSI 2018" "MIC" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" 16 128 FALSE -"CLSI 2018" "DISK" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100μg" 21 17 FALSE +"CLSI 2018" "DISK" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE "CLSI 2018" "MIC" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 2" 16 128 FALSE "CLSI 2018" "MIC" "(unknown Gram-negatives)" 2 "Piperacillin/tazobactam" "Table 2B-5" 16 128 FALSE -"CLSI 2018" "DISK" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" "100μg" 21 6 FALSE +"CLSI 2018" "DISK" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" "100ug" 21 6 FALSE "CLSI 2018" "MIC" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" 1 2 FALSE -"CLSI 2018" "DISK" "Plesiomonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100μg" 21 17 FALSE +"CLSI 2018" "DISK" "Plesiomonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE "CLSI 2018" "MIC" "Plesiomonas" 3 "Piperacillin/tazobactam" "M45 Table 2" 16 128 FALSE -"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" "100μg" 21 14 FALSE +"CLSI 2018" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" "100ug" 21 14 FALSE "CLSI 2018" "MIC" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" 16 128 FALSE -"CLSI 2018" "DISK" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10μg" 21 17 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10μg" 16 128 FALSE +"CLSI 2018" "DISK" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10ug" 21 17 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10ug" 16 128 FALSE "CLSI 2018" "MIC" "Abiotrophia" 3 "Vancomycin" "M45 Table 1" 1 2048 FALSE "CLSI 2018" "MIC" "Bacillus" 3 "Vancomycin" "M45 Table 3" 4 2048 FALSE "CLSI 2018" "MIC" "Cutibacterium acnes" 2 "Vancomycin" "Table 2J-2" 2 4 FALSE -"CLSI 2018" "DISK" "Enterococcus" 3 "Vancomycin" "Table 2D" "30μg" 17 14 FALSE +"CLSI 2018" "DISK" "Enterococcus" 3 "Vancomycin" "Table 2D" "30ug" 17 14 FALSE "CLSI 2018" "MIC" "Enterococcus" 3 "Vancomycin" "Table 2D" 4 32 FALSE "CLSI 2018" "MIC" "Granulicatella" 3 "Vancomycin" "M45 Table 1" 1 2048 FALSE "CLSI 2018" "MIC" "Lactobacillus" 3 "Vancomycin" "M45 Table 9" 2 16 FALSE "CLSI 2018" "MIC" "Staphylococcus" 3 "Vancomycin" "Table 2C" 4 32 FALSE "CLSI 2018" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" "Table 2C" 2 16 FALSE -"CLSI 2018" "DISK" "Streptococcus" 3 "Vancomycin" "Table 2H-1" "30μg" 17 6 FALSE +"CLSI 2018" "DISK" "Streptococcus" 3 "Vancomycin" "Table 2H-1" "30ug" 17 6 FALSE "CLSI 2018" "MIC" "Streptococcus" 3 "Vancomycin" "Table 2H-1" 1 2048 FALSE -"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" "30μg" 17 6 FALSE +"CLSI 2018" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" "30ug" 17 6 FALSE "CLSI 2018" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" 1 2048 FALSE -"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" "30μg" 17 6 FALSE +"CLSI 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" "30ug" 17 6 FALSE "CLSI 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" 1 2048 FALSE -"CLSI 2018" "MIC" "(unknown name)" 6 "Vancomycin" "Generic rules" "30μg" 4 32 FALSE -"CLSI 2017" "DISK" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20μg" 18 13 FALSE +"CLSI 2018" "MIC" "(unknown name)" 6 "Vancomycin" "Generic rules" "30ug" 4 32 FALSE +"CLSI 2017" "DISK" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE "CLSI 2017" "MIC" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" 8 32 FALSE "CLSI 2017" "MIC" "Aggregatibacter" 3 "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE "CLSI 2017" "MIC" "Burkholderia pseudomallei" 2 "Amoxicillin/clavulanic acid" "M45 Table 16" 8 32 FALSE "CLSI 2017" "MIC" "Cardiobacterium" 3 "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE "CLSI 2017" "MIC" "Eikenella" 3 "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" "20/10μg" 20 19 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" "20/10ug" 20 19 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" 4 8 FALSE -"CLSI 2017" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 12" "20μg" 24 23 FALSE +"CLSI 2017" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 12" "20ug" 24 23 FALSE "CLSI 2017" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 12" 4 8 FALSE -"CLSI 2017" "DISK" "Plesiomonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20μg" 18 13 FALSE +"CLSI 2017" "DISK" "Plesiomonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE "CLSI 2017" "MIC" "Plesiomonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" 8 32 FALSE -"CLSI 2017" "DISK" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 13" "20μg" 27 6 FALSE +"CLSI 2017" "DISK" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 13" "20ug" 27 6 FALSE "CLSI 2017" "MIC" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 13" 0.5 2048 FALSE "CLSI 2017" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Amoxicillin/clavulanic acid" "Table 2G" 2 8 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10μg" 18 13 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10μg" 8 32 FALSE -"CLSI 2017" "DISK" "Acinetobacter" 3 "Amikacin" "Table 2B-2" "30μg" 17 14 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 18 13 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 8 32 FALSE +"CLSI 2017" "DISK" "Acinetobacter" 3 "Amikacin" "Table 2B-2" "30ug" 17 14 FALSE "CLSI 2017" "MIC" "Acinetobacter" 3 "Amikacin" "Table 2B-2" 16 64 FALSE -"CLSI 2017" "DISK" "Aeromonas" 3 "Amikacin" "M45 Table 2" "30μg" 17 14 FALSE +"CLSI 2017" "DISK" "Aeromonas" 3 "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE "CLSI 2017" "MIC" "Aeromonas" 3 "Amikacin" "M45 Table 2" 16 64 FALSE "CLSI 2017" "MIC" "Bacillus" 3 "Amikacin" "M45 Table 3" 16 64 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Amikacin" "Table 2B-5" 16 64 FALSE -"CLSI 2017" "DISK" "Plesiomonas" 3 "Amikacin" "M45 Table 2" "30μg" 17 14 FALSE +"CLSI 2017" "DISK" "Plesiomonas" 3 "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE "CLSI 2017" "MIC" "Plesiomonas" 3 "Amikacin" "M45 Table 2" 16 64 FALSE -"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" "30μg" 17 14 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" "30ug" 17 14 FALSE "CLSI 2017" "MIC" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" 16 64 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Amikacin" "Generic rules" "30μg" 17 14 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Amikacin" "Generic rules" "30μg" 16 64 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 17 14 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 16 64 FALSE "CLSI 2017" "MIC" "Aggregatibacter" 3 "Ampicillin" "M45 Table 7" 1 4 FALSE "CLSI 2017" "MIC" "Bacillus" 3 "Ampicillin" "M45 Table 3" 0.25 0.5 FALSE "CLSI 2017" "MIC" "Cardiobacterium" 3 "Ampicillin" "M45 Table 7" 1 4 FALSE "CLSI 2017" "MIC" "Eikenella" 3 "Ampicillin" "M45 Table 7" 1 4 FALSE -"CLSI 2017" "DISK" "Enterococcus" 3 "Ampicillin" "Table 2D" "10μg" 17 16 FALSE +"CLSI 2017" "DISK" "Enterococcus" 3 "Ampicillin" "Table 2D" "10ug" 17 16 FALSE "CLSI 2017" "MIC" "Enterococcus" 3 "Ampicillin" "Table 2D" 8 16 FALSE "CLSI 2017" "MIC" "Erysipelothrix rhusiopathiae" 2 "Ampicillin" "M45 Table 6" 0.25 2048 FALSE "CLSI 2017" "MIC" "Granulicatella" 3 "Ampicillin" "M45 Table 1" 0.25 8 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Ampicillin" "Table 2E" "10μg" 22 18 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Ampicillin" "Table 2E" "10ug" 22 18 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Ampicillin" "Table 2E" 1 4 FALSE "CLSI 2017" "MIC" "Leuconostoc" 3 "Ampicillin" "M45 Table 10" 8 2048 FALSE "CLSI 2017" "MIC" "Lactobacillus" 3 "Ampicillin" "M45 Table 9" 8 2048 FALSE "CLSI 2017" "MIC" "Listeria monocytogenes" 2 "Ampicillin" "M45 Table 11" 2 2048 FALSE "CLSI 2017" "MIC" "Neisseria meningitidis" 2 "Ampicillin" "Table 2I" 0.125 2 FALSE "CLSI 2017" "MIC" "Pediococcus" 3 "Ampicillin" "M45 Table 14" 8 2048 FALSE -"CLSI 2017" "DISK" "Pasteurella" 3 "Ampicillin" "M45 Table 13" "10μg" 27 6 FALSE +"CLSI 2017" "DISK" "Pasteurella" 3 "Ampicillin" "M45 Table 13" "10ug" 27 6 FALSE "CLSI 2017" "MIC" "Pasteurella" 3 "Ampicillin" "M45 Table 13" 0.5 2048 FALSE -"CLSI 2017" "DISK" "Streptococcus" 3 "Ampicillin" "Table 2H-1" "10μg" 24 6 FALSE +"CLSI 2017" "DISK" "Streptococcus" 3 "Ampicillin" "Table 2H-1" "10ug" 24 6 FALSE "CLSI 2017" "MIC" "Streptococcus" 3 "Ampicillin" "Table 2H-1" 0.25 2048 FALSE "CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Table 2H-2" 0.25 8 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Ampicillin" "Generic rules" "10μg" 17 13 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Ampicillin" "Generic rules" "2μg" 8 32 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Ampicillin" "Generic rules" "10ug" 17 13 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Ampicillin" "Generic rules" "2ug" 8 32 FALSE "CLSI 2017" "MIC" "Pasteurella" 3 "Amoxicillin" "M45 Table 13" 0.5 2048 FALSE "CLSI 2017" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Amoxicillin" "Table 2G" 2 8 FALSE -"CLSI 2017" "DISK" "Aeromonas" 3 "Aztreonam" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2017" "DISK" "Aeromonas" 3 "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2017" "MIC" "Aeromonas" 3 "Aztreonam" "M45 Table 2" 4 16 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Aztreonam" "Table 2B-5" 8 32 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Aztreonam" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Aztreonam" "Table 2E" "30ug" 26 6 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Aztreonam" "Table 2E" 2 2048 FALSE -"CLSI 2017" "DISK" "Plesiomonas" 3 "Aztreonam" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2017" "DISK" "Plesiomonas" 3 "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2017" "MIC" "Plesiomonas" 3 "Aztreonam" "M45 Table 2" 4 16 FALSE -"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" "30μg" 22 15 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" "30ug" 22 15 FALSE "CLSI 2017" "MIC" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" 8 32 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Aztreonam" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Aztreonam" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Azlocillin" "Generic rules" "75μg" 18 17 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Azlocillin" "Generic rules" "75μg" 64 128 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Azlocillin" "Generic rules" "75ug" 18 17 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Azlocillin" "Generic rules" "75ug" 64 128 FALSE "CLSI 2017" "MIC" "Aggregatibacter" 3 "Azithromycin" "M45 Table 7" 4 2048 FALSE "CLSI 2017" "MIC" "Cardiobacterium" 3 "Azithromycin" "M45 Table 7" 4 2048 FALSE "CLSI 2017" "MIC" "Eikenella" 3 "Azithromycin" "M45 Table 7" 4 2048 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Azithromycin" "Table 2E" "15μg" 12 6 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Azithromycin" "Table 2E" "15ug" 12 6 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Azithromycin" "Table 2E" 4 2048 FALSE "CLSI 2017" "MIC" "Kingella" 3 "Azithromycin" "M45 Table 7" 4 2048 FALSE -"CLSI 2017" "DISK" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 12" "15μg" 26 6 FALSE +"CLSI 2017" "DISK" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 12" "15ug" 26 6 FALSE "CLSI 2017" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 12" 0.25 2048 FALSE -"CLSI 2017" "DISK" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" "15μg" 20 6 FALSE +"CLSI 2017" "DISK" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" "15ug" 20 6 FALSE "CLSI 2017" "MIC" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" 2 2048 FALSE -"CLSI 2017" "DISK" "Pasteurella" 3 "Azithromycin" "M45 Table 13" "15μg" 20 6 FALSE +"CLSI 2017" "DISK" "Pasteurella" 3 "Azithromycin" "M45 Table 13" "15ug" 20 6 FALSE "CLSI 2017" "MIC" "Pasteurella" 3 "Azithromycin" "M45 Table 13" 1 2048 FALSE "CLSI 2017" "DISK" "Salmonella enterica" 2 "Azithromycin" "Table 2A" 13 12 FALSE "CLSI 2017" "MIC" "Salmonella enterica" 2 "Azithromycin" "Table 2A" 16 32 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Azithromycin" "Table 2C" "15μg" 18 13 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Azithromycin" "Table 2C" "15ug" 18 13 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Azithromycin" "Table 2C" 2 8 FALSE -"CLSI 2017" "DISK" "Streptococcus" 3 "Azithromycin" "Table 2H-1" "15μg" 18 13 FALSE +"CLSI 2017" "DISK" "Streptococcus" 3 "Azithromycin" "Table 2H-1" "15ug" 18 13 FALSE "CLSI 2017" "MIC" "Streptococcus" 3 "Azithromycin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" "15μg" 18 13 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" "15ug" 18 13 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" 0.5 2 FALSE -"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" "15μg" 18 13 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" "15ug" 18 13 FALSE "CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" 0.5 2 FALSE -"CLSI 2017" "MIC" "Vibrio cholerae" 2 "Azithromycin" "M45 Table 14" "30μg" 2 2048 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Azithromycin" "Generic rules" "15μg" 18 13 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Azithromycin" "Generic rules" "15μg" 2 8 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Cefetamet" "Table 2E" "10μg" 18 14 FALSE +"CLSI 2017" "MIC" "Vibrio cholerae" 2 "Azithromycin" "M45 Table 14" "30ug" 2 2048 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Azithromycin" "Generic rules" "15ug" 18 13 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Azithromycin" "Generic rules" "15ug" 2 8 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Cefetamet" "Table 2E" "10ug" 18 14 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Cefetamet" "Table 2E" 4 16 FALSE -"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Cefetamet" "Table 2F" "10μg" 29 6 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Cefetamet" "Table 2F" "10ug" 29 6 FALSE "CLSI 2017" "MIC" "Neisseria gonorrhoeae" 2 "Cefetamet" "Table 2F" 0.5 2048 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Cefetamet" "Generic rules" "10μg" 18 14 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Cefetamet" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2017" "DISK" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" "30μg" 18 14 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Cefetamet" "Generic rules" "10ug" 18 14 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Cefetamet" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2017" "DISK" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" "30ug" 18 14 FALSE "CLSI 2017" "MIC" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" 8 32 FALSE -"CLSI 2017" "DISK" "Aeromonas" 3 "Ceftazidime" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2017" "DISK" "Aeromonas" 3 "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2017" "MIC" "Aeromonas" 3 "Ceftazidime" "M45 Table 2" 4 16 FALSE "CLSI 2017" "MIC" "Bacillus" 3 "Ceftazidime" "M45 Table 3" 8 32 FALSE -"CLSI 2017" "DISK" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" "30μg" 21 17 FALSE +"CLSI 2017" "DISK" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" "30ug" 21 17 FALSE "CLSI 2017" "MIC" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" 8 32 FALSE "CLSI 2017" "MIC" "Burkholderia mallei" 2 "Ceftazidime" "M45 Table 16" 8 32 FALSE "CLSI 2017" "MIC" "Burkholderia pseudomallei" 2 "Ceftazidime" "M45 Table 16" 8 32 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Ceftazidime" "Table 2B-5" 8 32 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Ceftazidime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Ceftazidime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Ceftazidime" "Table 2E" 2 2048 FALSE "CLSI 2017" "MIC" "Moraxella catarrhalis" 2 "Ceftazidime" "M45 Table 12" 2 2048 FALSE -"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Ceftazidime" "Table 2F" "30μg" 31 6 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Ceftazidime" "Table 2F" "30ug" 31 6 FALSE "CLSI 2017" "MIC" "Neisseria gonorrhoeae" 2 "Ceftazidime" "Table 2F" 0.5 2048 FALSE -"CLSI 2017" "DISK" "Plesiomonas" 3 "Ceftazidime" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2017" "DISK" "Plesiomonas" 3 "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2017" "MIC" "Plesiomonas" 3 "Ceftazidime" "M45 Table 2" 4 16 FALSE -"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" "30μg" 18 14 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" "30ug" 18 14 FALSE "CLSI 2017" "MIC" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" 8 32 FALSE "CLSI 2017" "MIC" "Stenotrophomonas maltophilia" 2 "Ceftazidime" "Table 2B-4" 8 32 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Cefdinir" "Table 2E" "5μg" 20 6 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Cefdinir" "Table 2E" "5ug" 20 6 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Cefdinir" "Table 2E" 1 2048 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Cefdinir" "Table 2G" 0.5 2 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Cefdinir" "Generic rules" "5μg" 20 16 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Cefdinir" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Cefaclor" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Cefdinir" "Generic rules" "5ug" 20 16 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Cefdinir" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Cefaclor" "Table 2E" "30ug" 20 16 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Cefaclor" "Table 2E" 8 32 FALSE "CLSI 2017" "MIC" "Moraxella catarrhalis" 2 "Cefaclor" "M45 Table 12" 8 32 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" "Table 2G" 1 4 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Cefaclor" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Cefaclor" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Cefixime" "Table 2E" "5μg" 21 6 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Cefaclor" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Cefaclor" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Cefixime" "Table 2E" "5ug" 21 6 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Cefixime" "Table 2E" 1 2048 FALSE -"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" "5μg" 31 6 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" "5ug" 31 6 FALSE "CLSI 2017" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" 0.25 2048 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Cefixime" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Cefixime" "Generic rules" "5μg" 1 4 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 1 4 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Cefoperazone" "Table 2B-5" 16 64 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75μg" 21 15 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75μg" 16 64 FALSE -"CLSI 2017" "DISK" "Aeromonas" 3 "Chloramphenicol" "M45 Table 2" "30μg" 18 12 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75ug" 21 15 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75ug" 16 64 FALSE +"CLSI 2017" "DISK" "Aeromonas" 3 "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE "CLSI 2017" "MIC" "Aeromonas" 3 "Chloramphenicol" "M45 Table 2" 8 32 FALSE "CLSI 2017" "MIC" "Aggregatibacter" 3 "Chloramphenicol" "M45 Table 7" 4 16 FALSE "CLSI 2017" "MIC" "Bacillus" 3 "Chloramphenicol" "M45 Table 3" 8 32 FALSE "CLSI 2017" "MIC" "Burkholderia cepacia" 2 "Chloramphenicol" "Table 2B-3" 8 32 FALSE "CLSI 2017" "MIC" "Cardiobacterium" 3 "Chloramphenicol" "M45 Table 7" 4 16 FALSE "CLSI 2017" "MIC" "Eikenella" 3 "Chloramphenicol" "M45 Table 7" 4 16 FALSE -"CLSI 2017" "DISK" "Enterococcus" 3 "Chloramphenicol" "Table 2D" "30μg" 18 12 FALSE +"CLSI 2017" "DISK" "Enterococcus" 3 "Chloramphenicol" "Table 2D" "30ug" 18 12 FALSE "CLSI 2017" "MIC" "Enterococcus" 3 "Chloramphenicol" "Table 2D" 8 32 FALSE "CLSI 2017" "MIC" "Francisella tularensis tularensis" 1 "Chloramphenicol" "M45 Table 16" 8 2048 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Chloramphenicol" "Table 2B-5" 8 32 FALSE "CLSI 2017" "MIC" "Granulicatella" 3 "Chloramphenicol" "M45 Table 1" 4 8 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Chloramphenicol" "Table 2E" "30μg" 29 25 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Chloramphenicol" "Table 2E" "30ug" 29 25 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Chloramphenicol" "Table 2E" 2 8 FALSE "CLSI 2017" "MIC" "Kingella" 3 "Chloramphenicol" "M45 Table 7" 4 16 FALSE "CLSI 2017" "MIC" "Leuconostoc" 3 "Chloramphenicol" "M45 Table 10" 8 32 FALSE "CLSI 2017" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" "M45 Table 12" 2 8 FALSE -"CLSI 2017" "DISK" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" "30μg" 26 19 FALSE +"CLSI 2017" "DISK" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" "30ug" 26 19 FALSE "CLSI 2017" "MIC" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" 2 8 FALSE "CLSI 2017" "MIC" "Pediococcus" 3 "Chloramphenicol" "M45 Table 14" 8 32 FALSE -"CLSI 2017" "DISK" "Plesiomonas" 3 "Chloramphenicol" "M45 Table 2" "30μg" 18 12 FALSE +"CLSI 2017" "DISK" "Plesiomonas" 3 "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE "CLSI 2017" "MIC" "Plesiomonas" 3 "Chloramphenicol" "M45 Table 2" 8 32 FALSE -"CLSI 2017" "DISK" "Pasteurella" 3 "Chloramphenicol" "M45 Table 13" "30μg" 28 6 FALSE +"CLSI 2017" "DISK" "Pasteurella" 3 "Chloramphenicol" "M45 Table 13" "30ug" 28 6 FALSE "CLSI 2017" "MIC" "Pasteurella" 3 "Chloramphenicol" "M45 Table 13" 2 2048 FALSE "CLSI 2017" "MIC" "Stenotrophomonas maltophilia" 2 "Chloramphenicol" "Table 2B-4" 8 32 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" "30μg" 18 12 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" "30ug" 18 12 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" 8 32 FALSE -"CLSI 2017" "DISK" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" "30μg" 21 17 FALSE +"CLSI 2017" "DISK" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" "30ug" 21 17 FALSE "CLSI 2017" "MIC" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" 4 16 FALSE -"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" "30μg" 21 20 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" "30ug" 21 20 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" 4 8 FALSE -"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" "30μg" 21 17 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" "30ug" 21 17 FALSE "CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" 4 16 FALSE "CLSI 2017" "MIC" "Yersinia pestis" 2 "Chloramphenicol" "M45 Table 16" 8 32 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30μg" 18 12 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Cefonicid" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 18 12 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Cefonicid" "Table 2E" "30ug" 20 16 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Cefonicid" "Table 2E" 4 16 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Cefonicid" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Cefonicid" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100μg" 19 14 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100μg" 16 64 FALSE -"CLSI 2017" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" "5μg" 21 15 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Cefonicid" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Cefonicid" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100ug" 19 14 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100ug" 16 64 FALSE +"CLSI 2017" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" "5ug" 21 15 FALSE "CLSI 2017" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" 1 4 FALSE -"CLSI 2017" "DISK" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 2" "5μg" 21 15 FALSE +"CLSI 2017" "DISK" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE "CLSI 2017" "MIC" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 2" 1 4 FALSE "CLSI 2017" "MIC" "Aggregatibacter" 3 "Ciprofloxacin" "M45 Table 7" 1 4 FALSE "CLSI 2017" "MIC" "Bacillus" 3 "Ciprofloxacin" "M45 Table 3" 1 4 FALSE @@ -12681,101 +12681,101 @@ "CLSI 2017" "MIC" "Campylobacter" 3 "Ciprofloxacin" "M45 Table 3" 1 4 FALSE "CLSI 2017" "MIC" "Cardiobacterium" 3 "Ciprofloxacin" "M45 Table 7" 1 4 FALSE "CLSI 2017" "MIC" "Eikenella" 3 "Ciprofloxacin" "M45 Table 7" 1 4 FALSE -"CLSI 2017" "DISK" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" "5μg" 21 15 FALSE +"CLSI 2017" "DISK" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" "5ug" 21 15 FALSE "CLSI 2017" "MIC" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" 1 4 FALSE "CLSI 2017" "MIC" "Erysipelothrix rhusiopathiae" 2 "Ciprofloxacin" "M45 Table 6" 1 2048 FALSE "CLSI 2017" "MIC" "Francisella tularensis tularensis" 1 "Ciprofloxacin" "M45 Table 16" 0.5 2048 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Ciprofloxacin" "Table 2B-5" 1 4 FALSE "CLSI 2017" "MIC" "Granulicatella" 3 "Ciprofloxacin" "M45 Table 1" 1 4 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" "5μg" 21 6 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" "5ug" 21 6 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" 1 2048 FALSE "CLSI 2017" "MIC" "Kingella" 3 "Ciprofloxacin" "M45 Table 7" 1 4 FALSE "CLSI 2017" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M45 Table 12" 1 2048 FALSE -"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" "5μg" 41 27 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" "5ug" 41 27 FALSE "CLSI 2017" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" 0.064 1 FALSE -"CLSI 2017" "DISK" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" "5μg" 35 32 FALSE +"CLSI 2017" "DISK" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" "5ug" 35 32 FALSE "CLSI 2017" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" 0.032 0.12 FALSE -"CLSI 2017" "DISK" "Plesiomonas" 3 "Ciprofloxacin" "M45 Table 2" "5μg" 21 15 FALSE +"CLSI 2017" "DISK" "Plesiomonas" 3 "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE "CLSI 2017" "MIC" "Plesiomonas" 3 "Ciprofloxacin" "M45 Table 2" 1 4 FALSE -"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" "5μg" 21 15 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" "5ug" 21 15 FALSE "CLSI 2017" "MIC" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" 1 4 FALSE -"CLSI 2017" "DISK" "Extraintestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5μg" 31 20 FALSE -"CLSI 2017" "DISK" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5μg" 31 20 FALSE +"CLSI 2017" "DISK" "Extraintestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE +"CLSI 2017" "DISK" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE "CLSI 2017" "MIC" "Extraintestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" 0.064 1 FALSE "CLSI 2017" "MIC" "Salmonella" 3 "Ciprofloxacin" "Table 2A" 0.064 1 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" "5μg" 21 15 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" "5ug" 21 15 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" 1 4 FALSE "CLSI 2017" "MIC" "Yersinia pestis" 2 "Ciprofloxacin" "M45 Table 16" 0.25 2048 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5μg" 21 15 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5μg" 1 4 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 21 15 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 1 4 FALSE "CLSI 2017" "MIC" "Bacillus" 3 "Clindamycin" "M45 Table 3" 0.5 4 FALSE "CLSI 2017" "MIC" "Erysipelothrix rhusiopathiae" 2 "Clindamycin" "M45 Table 6" 0.25 1 FALSE "CLSI 2017" "MIC" "Granulicatella" 3 "Clindamycin" "M45 Table 1" 0.25 1 FALSE "CLSI 2017" "MIC" "Lactobacillus" 3 "Clindamycin" "M45 Table 9" 0.5 2 FALSE "CLSI 2017" "MIC" "Moraxella catarrhalis" 2 "Clindamycin" "M45 Table 12" 0.5 4 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Clindamycin" "Table 2C" "2μg" 21 14 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Clindamycin" "Table 2C" "2ug" 21 14 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Clindamycin" "Table 2C" 0.5 4 FALSE -"CLSI 2017" "DISK" "Streptococcus" 3 "Clindamycin" "Table 2H-1" "2μg" 19 15 FALSE +"CLSI 2017" "DISK" "Streptococcus" 3 "Clindamycin" "Table 2H-1" "2ug" 19 15 FALSE "CLSI 2017" "MIC" "Streptococcus" 3 "Clindamycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" "2μg" 19 15 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" "2ug" 19 15 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" 0.25 1 FALSE -"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" "2μg" 19 15 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" "2ug" 19 15 FALSE "CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Clindamycin" "Generic rules" "2μg" 21 14 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Clindamycin" "Generic rules" "2μg" 0.5 4 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Clindamycin" "Generic rules" "2ug" 21 14 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Clindamycin" "Generic rules" "2ug" 0.5 4 FALSE "CLSI 2017" "MIC" "Aggregatibacter" 3 "Clarithromycin" "M45 Table 7" 8 32 FALSE "CLSI 2017" "MIC" "Cardiobacterium" 3 "Clarithromycin" "M45 Table 7" 8 32 FALSE "CLSI 2017" "MIC" "Eikenella" 3 "Clarithromycin" "M45 Table 7" 8 32 FALSE "CLSI 2017" "MIC" "Helicobacter pylori" 2 "Clarithromycin" "M45 Table 8" 0.25 1 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Clarithromycin" "Table 2E" "15μg" 13 10 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Clarithromycin" "Table 2E" "15ug" 13 10 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Clarithromycin" "Table 2E" 8 32 FALSE "CLSI 2017" "MIC" "Kingella" 3 "Clarithromycin" "M45 Table 7" 8 32 FALSE -"CLSI 2017" "DISK" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 12" "15μg" 24 6 FALSE +"CLSI 2017" "DISK" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 12" "15ug" 24 6 FALSE "CLSI 2017" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 12" 1 2048 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Clarithromycin" "Table 2C" "15μg" 18 13 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Clarithromycin" "Table 2C" "15ug" 18 13 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Clarithromycin" "Table 2C" 2 8 FALSE -"CLSI 2017" "DISK" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" "15μg" 21 16 FALSE +"CLSI 2017" "DISK" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" "15ug" 21 16 FALSE "CLSI 2017" "MIC" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" "15μg" 21 16 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" "15ug" 21 16 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" 0.25 1 FALSE -"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" "15μg" 21 16 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" "15ug" 21 16 FALSE "CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15μg" 18 13 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15μg" 2 8 FALSE -"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Cefmetazole" "Table 2F" "30μg" 33 27 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15ug" 18 13 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15ug" 2 8 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Cefmetazole" "Table 2F" "30ug" 33 27 FALSE "CLSI 2017" "MIC" "Neisseria gonorrhoeae" 2 "Cefmetazole" "Table 2F" 2 8 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30μg" 16 64 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30ug" 16 64 FALSE "CLSI 2017" "MIC" "Acinetobacter" 3 "Colistin" "Table 2B-2" 2 4 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Colistin" "Table 2B-5" 2 8 FALSE "CLSI 2017" "MIC" "Pseudomonas aeruginosa" 2 "Colistin" "Table 2B-1" 2 4 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Colistin" "Generic rules" "10μg" 11 10 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Colistin" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Cefpodoxime" "Table 2E" "10μg" 21 6 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Colistin" "Generic rules" "10ug" 11 10 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Colistin" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Cefpodoxime" "Table 2E" "10ug" 21 6 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Cefpodoxime" "Table 2E" 2 2048 FALSE -"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" "10μg" 29 6 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" "10ug" 29 6 FALSE "CLSI 2017" "MIC" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" 0.5 2048 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" "Table 2G" 0.5 2 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10μg" 21 17 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Cefprozil" "Table 2E" "30μg" 18 14 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 21 17 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Cefprozil" "Table 2E" "30ug" 18 14 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Cefprozil" "Table 2E" 8 32 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Cefprozil" "Table 2G" 2 8 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Cefprozil" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Cefprozil" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2017" "DISK" "Haemophilus influenzae" 2 "Ceftaroline" "Table 2E" "30μg" 30 6 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Cefprozil" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Cefprozil" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2017" "DISK" "Haemophilus influenzae" 2 "Ceftaroline" "Table 2E" "30ug" 30 6 FALSE "CLSI 2017" "MIC" "Haemophilus influenzae" 2 "Ceftaroline" "Table 2E" 0.5 2048 FALSE -"CLSI 2017" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Table 2C" "30μg" 24 20 FALSE +"CLSI 2017" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Table 2C" "30ug" 24 20 FALSE "CLSI 2017" "MIC" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Table 2C" 1 4 FALSE -"CLSI 2017" "DISK" "Streptococcus" 3 "Ceftaroline" "Table 2H-1" "30μg" 26 6 FALSE +"CLSI 2017" "DISK" "Streptococcus" 3 "Ceftaroline" "Table 2H-1" "30ug" 26 6 FALSE "CLSI 2017" "MIC" "Streptococcus" 3 "Ceftaroline" "Table 2H-1" 0.5 2048 FALSE "CLSI 2017" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Ceftaroline" "Table 2G" 0.5 2048 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30μg" 0.5 2 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30ug" 0.5 2 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Carbenicillin" "Table 2B-5" 16 64 FALSE -"CLSI 2017" "DISK" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" "30μg" 21 13 FALSE +"CLSI 2017" "DISK" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" "30ug" 21 13 FALSE "CLSI 2017" "MIC" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" 8 64 FALSE -"CLSI 2017" "DISK" "Aeromonas" 3 "Ceftriaxone" "M45 Table 2" "30μg" 23 19 FALSE +"CLSI 2017" "DISK" "Aeromonas" 3 "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE "CLSI 2017" "MIC" "Aeromonas" 3 "Ceftriaxone" "M45 Table 2" 1 4 FALSE "CLSI 2017" "MIC" "Aggregatibacter" 3 "Ceftriaxone" "M45 Table 7" 2 2048 FALSE "CLSI 2017" "MIC" "Bacillus" 3 "Ceftriaxone" "M45 Table 3" 8 64 FALSE @@ -12784,37 +12784,37 @@ "CLSI 2017" "MIC" "Erysipelothrix rhusiopathiae" 2 "Ceftriaxone" "M45 Table 6" 1 2048 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Ceftriaxone" "Table 2B-5" 8 64 FALSE "CLSI 2017" "MIC" "Granulicatella" 3 "Ceftriaxone" "M45 Table 1" 1 4 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Ceftriaxone" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Ceftriaxone" "Table 2E" "30ug" 26 6 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Ceftriaxone" "Table 2E" 2 2048 FALSE "CLSI 2017" "MIC" "Kingella" 3 "Ceftriaxone" "M45 Table 7" 2 2048 FALSE "CLSI 2017" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" "M45 Table 12" 2 2048 FALSE -"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" "30μg" 35 6 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" "30ug" 35 6 FALSE "CLSI 2017" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" 0.25 2048 FALSE -"CLSI 2017" "DISK" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" "30μg" 34 6 FALSE +"CLSI 2017" "DISK" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" "30ug" 34 6 FALSE "CLSI 2017" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" 0.125 2048 FALSE -"CLSI 2017" "DISK" "Plesiomonas" 3 "Ceftriaxone" "M45 Table 2" "30μg" 23 19 FALSE +"CLSI 2017" "DISK" "Plesiomonas" 3 "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE "CLSI 2017" "MIC" "Plesiomonas" 3 "Ceftriaxone" "M45 Table 2" 1 4 FALSE -"CLSI 2017" "DISK" "Pasteurella" 3 "Ceftriaxone" "M45 Table 13" "30μg" 34 6 FALSE +"CLSI 2017" "DISK" "Pasteurella" 3 "Ceftriaxone" "M45 Table 13" "30ug" 34 6 FALSE "CLSI 2017" "MIC" "Pasteurella" 3 "Ceftriaxone" "M45 Table 13" 0.125 2048 FALSE -"CLSI 2017" "DISK" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2017" "DISK" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2017" "MIC" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" 0.5 2048 FALSE "CLSI 2017" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Table 2G" 0.5 2 FALSE "CLSI 2017" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Table 2G" 1 4 FALSE -"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" "30μg" 27 24 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" "30ug" 27 24 FALSE "CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" 1 4 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30μg" 1 4 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Ceftibuten" "Table 2E" "30μg" 28 6 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 1 4 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Ceftibuten" "Table 2E" "30ug" 28 6 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Ceftibuten" "Table 2E" 2 2048 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" "30μg" 26 19 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" "30ug" 26 19 FALSE "CLSI 2017" "MIC" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" 2 8 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Cefotetan" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Cefotetan" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2017" "DISK" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" "30μg" 23 14 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Cefotetan" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Cefotetan" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2017" "DISK" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" "30ug" 23 14 FALSE "CLSI 2017" "MIC" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" 8 64 FALSE -"CLSI 2017" "DISK" "Aeromonas" 3 "Cefotaxime" "M45 Table 2" "30μg" 26 22 FALSE +"CLSI 2017" "DISK" "Aeromonas" 3 "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE "CLSI 2017" "MIC" "Aeromonas" 3 "Cefotaxime" "M45 Table 2" 1 4 FALSE "CLSI 2017" "MIC" "Aggregatibacter" 3 "Cefotaxime" "M45 Table 7" 2 2048 FALSE "CLSI 2017" "MIC" "Bacillus" 3 "Cefotaxime" "M45 Table 3" 8 64 FALSE @@ -12823,248 +12823,248 @@ "CLSI 2017" "MIC" "Erysipelothrix rhusiopathiae" 2 "Cefotaxime" "M45 Table 6" 1 2048 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Cefotaxime" "Table 2B-5" 8 64 FALSE "CLSI 2017" "MIC" "Granulicatella" 3 "Cefotaxime" "M45 Table 1" 1 4 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Cefotaxime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Cefotaxime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Cefotaxime" "Table 2E" 2 2048 FALSE "CLSI 2017" "MIC" "Kingella" 3 "Cefotaxime" "M45 Table 7" 2 2048 FALSE "CLSI 2017" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" "M45 Table 12" 2 2048 FALSE -"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" "30μg" 31 6 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" "30ug" 31 6 FALSE "CLSI 2017" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" 0.5 2048 FALSE -"CLSI 2017" "DISK" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" "30μg" 34 6 FALSE +"CLSI 2017" "DISK" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" "30ug" 34 6 FALSE "CLSI 2017" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" 0.125 2048 FALSE -"CLSI 2017" "DISK" "Plesiomonas" 3 "Cefotaxime" "M45 Table 2" "30μg" 26 22 FALSE +"CLSI 2017" "DISK" "Plesiomonas" 3 "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE "CLSI 2017" "MIC" "Plesiomonas" 3 "Cefotaxime" "M45 Table 2" 1 4 FALSE -"CLSI 2017" "DISK" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2017" "DISK" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2017" "MIC" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" 0.5 2048 FALSE "CLSI 2017" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Cefotaxime" "Table 2G" 0.5 2 FALSE "CLSI 2017" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Cefotaxime" "Table 2G" 1 4 FALSE -"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" "30μg" 28 25 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" "30ug" 28 25 FALSE "CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" 1 4 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30μg" 26 22 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30μg" 1 4 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30ug" 26 22 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30ug" 1 4 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" "30ug" 20 16 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" 4 16 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Cefuroxime axetil" "Table 2G" 1 4 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30μg" 23 14 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30μg" 4 32 FALSE -"CLSI 2017" "DISK" "Aeromonas" 3 "Cefuroxime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 23 14 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 4 32 FALSE +"CLSI 2017" "DISK" "Aeromonas" 3 "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2017" "MIC" "Aeromonas" 3 "Cefuroxime" "M45 Table 2" 8 32 FALSE -"CLSI 2017" "DISK" "Oral" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30μg" 20 16 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2017" "DISK" "Oral" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE "CLSI 2017" "MIC" "Oral" "Haemophilus" 3 "Cefuroxime" "Table 2E" 4 16 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Cefuroxime" "Table 2E" 4 16 FALSE "CLSI 2017" "MIC" "Moraxella catarrhalis" 2 "Cefuroxime" "M45 Table 12" 4 16 FALSE -"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Cefuroxime" "Table 2F" "30μg" 31 25 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Cefuroxime" "Table 2F" "30ug" 31 25 FALSE "CLSI 2017" "MIC" "Neisseria gonorrhoeae" 2 "Cefuroxime" "Table 2F" 1 4 FALSE -"CLSI 2017" "DISK" "Plesiomonas" 3 "Cefuroxime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2017" "DISK" "Plesiomonas" 3 "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2017" "MIC" "Plesiomonas" 3 "Cefuroxime" "M45 Table 2" 8 32 FALSE "CLSI 2017" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Table 2G" 1 4 FALSE "CLSI 2017" "MIC" "Parenteral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Table 2G" 0.5 2 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30μg" 8 32 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 8 32 FALSE "CLSI 2017" "DISK" "Urine" "Enterobacterales" 5 "Cefazolin" "Table 2A" 15 14 TRUE "CLSI 2017" "MIC" "Urine" "Enterobacterales" 5 "Cefazolin" "Table 2A" 16 32 TRUE "CLSI 2017" "MIC" "Aeromonas" 3 "Cefazolin" "M45 Table 2" 1 4 FALSE "CLSI 2017" "MIC" "Bacillus" 3 "Cefazolin" "M45 Table 3" 8 16 FALSE "CLSI 2017" "MIC" "Plesiomonas" 3 "Cefazolin" "M45 Table 2" 1 4 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Cefazolin" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Cefazolin" "Generic rules" "30μg" 2 8 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Cefazolin" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Cefazolin" "Generic rules" "30ug" 2 8 FALSE "CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Ceftolozane/tazobactam" "30/10" 21 16 FALSE "CLSI 2017" "MIC" "Pseudomonas aeruginosa" 2 "Ceftolozane/tazobactam" 4 16 FALSE "CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftolozane/tazobactam" "Table 2H-2" 8 32 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Ceftolozane/tazobactam" "Generic rules" "30/10μg" 2 8 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Ceftolozane/tazobactam" "Generic rules" "30/10ug" 2 8 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Ceftizoxime" "Table 2B-5" 8 64 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Ceftizoxime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Ceftizoxime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Ceftizoxime" "Table 2E" 2 2048 FALSE -"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" "30μg" 38 6 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" "30ug" 38 6 FALSE "CLSI 2017" "MIC" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" 0.5 2048 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30μg" 25 21 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30μg" 1 4 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30ug" 25 21 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30ug" 1 4 FALSE "CLSI 2017" "MIC" "Enterococcus" 3 "Daptomycin" "Table 2D" 4 2048 FALSE "CLSI 2017" "MIC" "Lactobacillus" 3 "Daptomycin" "M45 Table 9" 4 2048 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Daptomycin" "Table 2C" 1 2048 FALSE -"CLSI 2017" "DISK" "Streptococcus" 3 "Daptomycin" "Table 2H-1" "30μg" 16 6 FALSE +"CLSI 2017" "DISK" "Streptococcus" 3 "Daptomycin" "Table 2H-1" "30ug" 16 6 FALSE "CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Daptomycin" "Table 2H-2" 1 2048 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Daptomycin" "Generic rules" "30μg" 1 2048 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Difloxacin" "Generic rules" "10μg" 21 17 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Difloxacin" "Generic rules" "10μg" 0.5 4 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Dirithromycin" "Table 2C" "15μg" 19 15 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Daptomycin" "Generic rules" "30ug" 1 2048 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Difloxacin" "Generic rules" "10ug" 21 17 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Difloxacin" "Generic rules" "10ug" 0.5 4 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Dirithromycin" "Table 2C" "15ug" 19 15 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Dirithromycin" "Table 2C" 2 8 FALSE -"CLSI 2017" "DISK" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" "15μg" 18 13 FALSE +"CLSI 2017" "DISK" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" "15ug" 18 13 FALSE "CLSI 2017" "MIC" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" "15μg" 18 13 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" "15ug" 18 13 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" 0.5 2 FALSE -"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" "15μg" 18 13 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" "15ug" 18 13 FALSE "CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" 0.5 2 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15μg" 19 15 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15μg" 2 8 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15ug" 19 15 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15ug" 2 8 FALSE "CLSI 2017" "DISK" "Acinetobacter" 3 "Doripenem" "Table 2B-2" 18 14 FALSE "CLSI 2017" "MIC" "Acinetobacter" 3 "Doripenem" "Table 2B-2" 2 8 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Doripenem" "Table 2E" "10μg" 16 6 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Doripenem" "Table 2E" "10ug" 16 6 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Doripenem" "Table 2E" 1 2048 FALSE -"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2017" "MIC" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" 2 8 FALSE "CLSI 2017" "MIC" "Streptococcus" 3 "Doripenem" "Table 2H-1" 0.125 2048 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" "Table 2G" 1 2048 FALSE "CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" "Table 2H-2" 1 2048 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Doripenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Doripenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2017" "DISK" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" "30μg" 13 9 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Doripenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Doripenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2017" "DISK" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" "30ug" 13 9 FALSE "CLSI 2017" "MIC" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" 4 16 FALSE "CLSI 2017" "MIC" "Bacillus anthracis" 2 "Doxycycline" "M45 Table 16" 1 2048 FALSE "CLSI 2017" "MIC" "Brucella" 3 "Doxycycline" "M45 Table 16" 1 2048 FALSE "CLSI 2017" "MIC" "Burkholderia mallei" 2 "Doxycycline" "M45 Table 16" 4 16 FALSE "CLSI 2017" "MIC" "Burkholderia pseudomallei" 2 "Doxycycline" "M45 Table 16" 4 16 FALSE "CLSI 2017" "MIC" "Campylobacter" 3 "Doxycycline" "M45 Table 3" 2 8 FALSE -"CLSI 2017" "DISK" "Enterococcus" 3 "Doxycycline" "Table 2D" "30μg" 16 12 FALSE +"CLSI 2017" "DISK" "Enterococcus" 3 "Doxycycline" "Table 2D" "30ug" 16 12 FALSE "CLSI 2017" "MIC" "Enterococcus" 3 "Doxycycline" "Table 2D" 4 16 FALSE "CLSI 2017" "MIC" "Francisella tularensis tularensis" 1 "Doxycycline" "M45 Table 16" 4 2048 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Doxycycline" "Table 2B-5" 4 16 FALSE -"CLSI 2017" "DISK" "Pasteurella" 3 "Doxycycline" "M45 Table 13" "30μg" 23 6 FALSE +"CLSI 2017" "DISK" "Pasteurella" 3 "Doxycycline" "M45 Table 13" "30ug" 23 6 FALSE "CLSI 2017" "MIC" "Pasteurella" 3 "Doxycycline" "M45 Table 13" 0.5 2048 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Doxycycline" "Table 2C" "30μg" 16 12 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Doxycycline" "Table 2C" "30ug" 16 12 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Doxycycline" "Table 2C" 4 16 FALSE -"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Doxycycline" "Table 2G" "30μg" 28 24 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Doxycycline" "Table 2G" "30ug" 28 24 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" "Table 2G" 0.25 1 FALSE -"CLSI 2017" "MIC" "Vibrio cholerae" 2 "Doxycycline" "M45 Table 14" "30μg" 4 16 FALSE +"CLSI 2017" "MIC" "Vibrio cholerae" 2 "Doxycycline" "M45 Table 14" "30ug" 4 16 FALSE "CLSI 2017" "MIC" "Yersinia pestis" 2 "Doxycycline" "M45 Table 16" 4 16 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Doxycycline" "Generic rules" "30μg" 14 10 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Doxycycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2017" "DISK" "Histophilus somni" 2 "Enrofloxacin" "Vet Table" "5μg" 21 16 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Doxycycline" "Generic rules" "30ug" 14 10 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Doxycycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2017" "DISK" "Histophilus somni" 2 "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE "CLSI 2017" "MIC" "Histophilus somni" 2 "Enrofloxacin" "Vet Table" 0.25 2 FALSE -"CLSI 2017" "DISK" "Providencia heimbachae" 2 "Enrofloxacin" "Vet Table" "5μg" 21 16 FALSE -"CLSI 2017" "DISK" "Pasteurella multocida multocida" 1 "Enrofloxacin" "Vet Table" "5μg" 21 16 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5μg" 23 16 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5μg" 0.25 2 FALSE -"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Enoxacin" "Table 2F" "10μg" 36 31 FALSE +"CLSI 2017" "DISK" "Providencia heimbachae" 2 "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2017" "DISK" "Pasteurella multocida multocida" 1 "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5ug" 23 16 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5ug" 0.25 2 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Enoxacin" "Table 2F" "10ug" 36 31 FALSE "CLSI 2017" "MIC" "Neisseria gonorrhoeae" 2 "Enoxacin" "Table 2F" 0.5 2 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Enoxacin" "Table 2C" "10μg" 18 14 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Enoxacin" "Table 2C" "10ug" 18 14 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Enoxacin" "Table 2C" 2 8 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Enoxacin" "Generic rules" "10μg" 18 14 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Enoxacin" "Generic rules" "10μg" 2 8 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Enoxacin" "Generic rules" "10ug" 18 14 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Enoxacin" "Generic rules" "10ug" 2 8 FALSE "CLSI 2017" "MIC" "Bacillus" 3 "Erythromycin" "M45 Table 3" 0.5 8 FALSE "CLSI 2017" "MIC" "Campylobacter" 3 "Erythromycin" "M45 Table 3" 8 32 FALSE -"CLSI 2017" "DISK" "Enterococcus" 3 "Erythromycin" "Table 2D" "15μg" 23 13 FALSE +"CLSI 2017" "DISK" "Enterococcus" 3 "Erythromycin" "Table 2D" "15ug" 23 13 FALSE "CLSI 2017" "MIC" "Enterococcus" 3 "Erythromycin" "Table 2D" 0.5 8 FALSE "CLSI 2017" "MIC" "Erysipelothrix rhusiopathiae" 2 "Erythromycin" "M45 Table 6" 0.25 1 FALSE "CLSI 2017" "MIC" "Granulicatella" 3 "Erythromycin" "M45 Table 1" 0.25 1 FALSE "CLSI 2017" "MIC" "Lactobacillus" 3 "Erythromycin" "M45 Table 9" 0.5 8 FALSE -"CLSI 2017" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 12" "15μg" 21 6 FALSE +"CLSI 2017" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 12" "15ug" 21 6 FALSE "CLSI 2017" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 12" 2 2048 FALSE -"CLSI 2017" "DISK" "Pasteurella" 3 "Erythromycin" "M45 Table 13" "15μg" 27 24 FALSE +"CLSI 2017" "DISK" "Pasteurella" 3 "Erythromycin" "M45 Table 13" "15ug" 27 24 FALSE "CLSI 2017" "MIC" "Pasteurella" 3 "Erythromycin" "M45 Table 13" 0.5 2 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Erythromycin" "Table 2C" "15μg" 23 13 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Erythromycin" "Table 2C" "15ug" 23 13 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Erythromycin" "Table 2C" 0.5 8 FALSE -"CLSI 2017" "DISK" "Streptococcus" 3 "Erythromycin" "Table 2H-1" "15μg" 21 15 FALSE +"CLSI 2017" "DISK" "Streptococcus" 3 "Erythromycin" "Table 2H-1" "15ug" 21 15 FALSE "CLSI 2017" "MIC" "Streptococcus" 3 "Erythromycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" "15μg" 21 15 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" "15ug" 21 15 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" 0.25 1 FALSE -"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" "15μg" 21 15 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" "15ug" 21 15 FALSE "CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Erythromycin" "Generic rules" "15μg" 23 13 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Erythromycin" "Generic rules" "15μg" 0.5 8 FALSE -"CLSI 2017" "DISK" "Aeromonas" 3 "Ertapenem" "M45 Table 2" "10μg" 19 15 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Erythromycin" "Generic rules" "15ug" 23 13 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Erythromycin" "Generic rules" "15ug" 0.5 8 FALSE +"CLSI 2017" "DISK" "Aeromonas" 3 "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE "CLSI 2017" "MIC" "Aeromonas" 3 "Ertapenem" "M45 Table 2" 2 8 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Ertapenem" "Table 2E" "10μg" 19 6 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Ertapenem" "Table 2E" "10ug" 19 6 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Ertapenem" "Table 2E" 0.5 2048 FALSE -"CLSI 2017" "DISK" "Plesiomonas" 3 "Ertapenem" "M45 Table 2" "10μg" 19 15 FALSE +"CLSI 2017" "DISK" "Plesiomonas" 3 "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE "CLSI 2017" "MIC" "Plesiomonas" 3 "Ertapenem" "M45 Table 2" 2 8 FALSE "CLSI 2017" "MIC" "Streptococcus" 3 "Ertapenem" "Table 2H-1" 1 2048 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" "Table 2G" 1 4 FALSE "CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "Table 2H-2" 1 2048 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Ertapenem" "Generic rules" "10μg" 22 18 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Ertapenem" "Generic rules" "10μg" 0.5 2 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "5-fluorocytosine" "Generic rules" "10μg" 4 32 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 22 18 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 0.5 2 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "5-fluorocytosine" "Generic rules" "10ug" 4 32 FALSE "CLSI 2017" "MIC" "Abiotrophia" 3 "Cefepime" "M45 Table 1" 1 4 FALSE -"CLSI 2017" "DISK" "Acinetobacter" 3 "Cefepime" "Table 2B-2" "30μg" 18 14 FALSE +"CLSI 2017" "DISK" "Acinetobacter" 3 "Cefepime" "Table 2B-2" "30ug" 18 14 FALSE "CLSI 2017" "MIC" "Acinetobacter" 3 "Cefepime" "Table 2B-2" 8 32 FALSE -"CLSI 2017" "DISK" "Aeromonas" 3 "Cefepime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2017" "DISK" "Aeromonas" 3 "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2017" "MIC" "Aeromonas" 3 "Cefepime" "M45 Table 2" 8 32 FALSE "CLSI 2017" "MIC" "Erysipelothrix rhusiopathiae" 2 "Cefepime" "M45 Table 6" 1 2048 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Cefepime" "Table 2B-5" 8 32 FALSE "CLSI 2017" "MIC" "Granulicatella" 3 "Cefepime" "M45 Table 1" 1 4 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Cefepime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Cefepime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Cefepime" "Table 2E" 2 2048 FALSE -"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" "30μg" 31 6 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" "30ug" 31 6 FALSE "CLSI 2017" "MIC" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" 0.5 2048 FALSE -"CLSI 2017" "DISK" "Plesiomonas" 3 "Cefepime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2017" "DISK" "Plesiomonas" 3 "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2017" "MIC" "Plesiomonas" 3 "Cefepime" "M45 Table 2" 8 32 FALSE -"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" "30μg" 18 14 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" "30ug" 18 14 FALSE "CLSI 2017" "MIC" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" 8 32 FALSE -"CLSI 2017" "DISK" "Streptococcus" 3 "Cefepime" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2017" "DISK" "Streptococcus" 3 "Cefepime" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2017" "MIC" "Streptococcus" 3 "Cefepime" "Table 2H-1" 0.5 2048 FALSE "CLSI 2017" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Cefepime" "Table 2G" 0.5 2 FALSE "CLSI 2017" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Cefepime" "Table 2G" 1 4 FALSE -"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" "30μg" 24 21 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" "30ug" 24 21 FALSE "CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" 1 4 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Cefepime" "Generic rules" "30μg" 25 18 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Cefepime" "Generic rules" "30μg" 2 16 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Fleroxacin" "Table 2E" "5μg" 19 6 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 25 18 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 2 16 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Fleroxacin" "Table 2E" "5ug" 19 6 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Fleroxacin" "Table 2E" 2 2048 FALSE -"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Fleroxacin" "Table 2F" "5μg" 35 28 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Fleroxacin" "Table 2F" "5ug" 35 28 FALSE "CLSI 2017" "MIC" "Neisseria gonorrhoeae" 2 "Fleroxacin" "Table 2F" 0.25 1 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Fleroxacin" "Table 2C" "5μg" 19 15 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Fleroxacin" "Table 2C" "5ug" 19 15 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Fleroxacin" "Table 2C" 2 8 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Florfenicol" "Generic rules" "30μg" 19 14 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Florfenicol" "Generic rules" "30μg" 2 8 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Fluconazole" "Generic rules" "25μg" 19 14 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Fluconazole" "Generic rules" "25μg" 8 64 FALSE -"CLSI 2017" "DISK" "Enterococcus" 3 "Fosfomycin" "Table 2D" "200μg" 16 12 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Florfenicol" "Generic rules" "30ug" 19 14 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Florfenicol" "Generic rules" "30ug" 2 8 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Fluconazole" "Generic rules" "25ug" 19 14 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Fluconazole" "Generic rules" "25ug" 8 64 FALSE +"CLSI 2017" "DISK" "Enterococcus" 3 "Fosfomycin" "Table 2D" "200ug" 16 12 FALSE "CLSI 2017" "MIC" "Enterococcus" 3 "Fosfomycin" "Table 2D" 64 256 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200μg" 16 12 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200μg" 64 256 FALSE -"CLSI 2017" "DISK" "Aeromonas" 3 "Cefoxitin" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200ug" 16 12 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200ug" 64 256 FALSE +"CLSI 2017" "DISK" "Aeromonas" 3 "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2017" "MIC" "Aeromonas" 3 "Cefoxitin" "M45 Table 2" 8 32 FALSE -"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" "30μg" 28 23 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" "30ug" 28 23 FALSE "CLSI 2017" "MIC" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" 2 8 FALSE -"CLSI 2017" "DISK" "Plesiomonas" 3 "Cefoxitin" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2017" "DISK" "Plesiomonas" 3 "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2017" "MIC" "Plesiomonas" 3 "Cefoxitin" "M45 Table 2" 8 32 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Cefoxitin" "Table 2C" "30μg" 25 24 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Cefoxitin" "Table 2C" "30ug" 25 24 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2017" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" "30μg" 22 21 FALSE +"CLSI 2017" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE "CLSI 2017" "MIC" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2017" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" "30μg" 22 21 FALSE +"CLSI 2017" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE "CLSI 2017" "MIC" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30μg" 8 32 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30ug" 8 32 FALSE "CLSI 2017" "MIC" "Abiotrophia" 3 "Gatifloxacin" "M45 Table 1" 1 4 FALSE -"CLSI 2017" "DISK" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" "5μg" 18 14 FALSE +"CLSI 2017" "DISK" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" "5ug" 18 14 FALSE "CLSI 2017" "MIC" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" 2 8 FALSE -"CLSI 2017" "DISK" "Enterococcus" 3 "Gatifloxacin" "Table 2D" "5μg" 18 14 FALSE +"CLSI 2017" "DISK" "Enterococcus" 3 "Gatifloxacin" "Table 2D" "5ug" 18 14 FALSE "CLSI 2017" "MIC" "Enterococcus" 3 "Gatifloxacin" "Table 2D" 2 8 FALSE "CLSI 2017" "MIC" "Erysipelothrix rhusiopathiae" 2 "Gatifloxacin" "M45 Table 6" 1 2048 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Gatifloxacin" "Table 2B-5" 2 8 FALSE "CLSI 2017" "MIC" "Granulicatella" 3 "Gatifloxacin" "M45 Table 1" 1 4 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Gatifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Gatifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Gatifloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" "5μg" 38 33 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" "5ug" 38 33 FALSE "CLSI 2017" "MIC" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" 0.125 0.5 FALSE -"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" "5μg" 18 14 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" "5ug" 18 14 FALSE "CLSI 2017" "MIC" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" 2 8 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" "10μg" 23 19 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" "10ug" 23 19 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2017" "DISK" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" "5μg" 21 17 FALSE +"CLSI 2017" "DISK" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" "5ug" 21 17 FALSE "CLSI 2017" "MIC" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" 1 4 FALSE -"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" "5μg" 21 17 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" "5ug" 21 17 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" 1 4 FALSE -"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" "5μg" 21 17 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" "5ug" 21 17 FALSE "CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" 1 4 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5μg" 18 14 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2017" "DISK" "Enterococcus" 3 "Gentamicin-high" "Table 2D" "120μg" 10 6 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5ug" 18 14 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2017" "DISK" "Enterococcus" 3 "Gentamicin-high" "Table 2D" "120ug" 10 6 FALSE "CLSI 2017" "MIC" "Enterococcus" 3 "Gentamicin-high" "Table 2D" 512 560 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120μg" 10 6 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120μg" 512 560 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Gemifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120ug" 10 6 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120ug" 512 560 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Gemifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Gemifloxacin" "Table 2E" 0.125 2048 FALSE -"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" "5μg" 23 19 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" "5ug" 23 19 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" 0.125 0.5 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5μg" 20 15 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5μg" 0.25 1 FALSE -"CLSI 2017" "DISK" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" "10μg" 15 12 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5ug" 20 15 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5ug" 0.25 1 FALSE +"CLSI 2017" "DISK" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" "10ug" 15 12 FALSE "CLSI 2017" "MIC" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" 4 16 FALSE -"CLSI 2017" "DISK" "Aeromonas" 3 "Gentamicin" "M45 Table 2" "10μg" 15 12 FALSE +"CLSI 2017" "DISK" "Aeromonas" 3 "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE "CLSI 2017" "MIC" "Aeromonas" 3 "Gentamicin" "M45 Table 2" 4 16 FALSE "CLSI 2017" "MIC" "Bacillus" 3 "Gentamicin" "M45 Table 3" 4 16 FALSE "CLSI 2017" "MIC" "Brucella" 3 "Gentamicin" "M45 Table 16" 4 2048 FALSE @@ -13074,33 +13074,33 @@ "CLSI 2017" "MIC" "Leuconostoc" 3 "Gentamicin" "M45 Table 10" 4 16 FALSE "CLSI 2017" "MIC" "Lactobacillus" 3 "Gentamicin" "M45 Table 9" 4 16 FALSE "CLSI 2017" "MIC" "Pediococcus" 3 "Gentamicin" "M45 Table 14" 4 16 FALSE -"CLSI 2017" "DISK" "Plesiomonas" 3 "Gentamicin" "M45 Table 2" "10μg" 15 12 FALSE +"CLSI 2017" "DISK" "Plesiomonas" 3 "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE "CLSI 2017" "MIC" "Plesiomonas" 3 "Gentamicin" "M45 Table 2" 4 16 FALSE -"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" "10μg" 15 12 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" "10ug" 15 12 FALSE "CLSI 2017" "MIC" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" 4 16 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Gentamicin" "Table 2C" "10μg" 15 12 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Gentamicin" "Table 2C" "10ug" 15 12 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Gentamicin" "Table 2C" 4 16 FALSE "CLSI 2017" "MIC" "Yersinia pestis" 2 "Gentamicin" "M45 Table 16" 4 16 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Gentamicin" "Generic rules" "10μg" 15 12 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Gentamicin" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Grepafloxacin" "Table 2E" "5μg" 24 6 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 15 12 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Grepafloxacin" "Table 2E" "5ug" 24 6 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Grepafloxacin" "Table 2E" 0.5 2048 FALSE -"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" "5μg" 37 27 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" "5ug" 37 27 FALSE "CLSI 2017" "MIC" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" 0.064 1 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" "5μg" 18 14 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" "5ug" 18 14 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" 1 4 FALSE -"CLSI 2017" "DISK" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" "5μg" 19 15 FALSE +"CLSI 2017" "DISK" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" "5ug" 19 15 FALSE "CLSI 2017" "MIC" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" "5μg" 19 15 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" "5ug" 19 15 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" 0.5 2 FALSE -"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" "5μg" 19 15 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" "5ug" 19 15 FALSE "CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" 0.5 2 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5μg" 18 14 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5μg" 1 4 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5ug" 18 14 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5ug" 1 4 FALSE "CLSI 2017" "MIC" "Abiotrophia" 3 "Imipenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2017" "DISK" "Acinetobacter" 3 "Imipenem" "Table 2B-2" "10μg" 22 18 FALSE +"CLSI 2017" "DISK" "Acinetobacter" 3 "Imipenem" "Table 2B-2" "10ug" 22 18 FALSE "CLSI 2017" "MIC" "Acinetobacter" 3 "Imipenem" "Table 2B-2" 2 8 FALSE -"CLSI 2017" "DISK" "Aeromonas" 3 "Imipenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2017" "DISK" "Aeromonas" 3 "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2017" "MIC" "Aeromonas" 3 "Imipenem" "M45 Table 2" 4 16 FALSE "CLSI 2017" "MIC" "Aggregatibacter" 3 "Imipenem" "M45 Table 7" 4 16 FALSE "CLSI 2017" "MIC" "Bacillus" 3 "Imipenem" "M45 Table 3" 4 16 FALSE @@ -13111,56 +13111,56 @@ "CLSI 2017" "MIC" "Erysipelothrix rhusiopathiae" 2 "Imipenem" "M45 Table 6" 0.5 2048 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Imipenem" "Table 2B-5" 4 16 FALSE "CLSI 2017" "MIC" "Granulicatella" 3 "Imipenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Imipenem" "Table 2E" "10μg" 16 6 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Imipenem" "Table 2E" "10ug" 16 6 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Imipenem" "Table 2E" 4 2048 FALSE "CLSI 2017" "MIC" "Kingella" 3 "Imipenem" "M45 Table 7" 0.5 2 FALSE "CLSI 2017" "MIC" "Lactobacillus" 3 "Imipenem" "M45 Table 9" 0.5 2 FALSE "CLSI 2017" "MIC" "Pediococcus" 3 "Imipenem" "M45 Table 14" 0.5 2048 FALSE -"CLSI 2017" "DISK" "Plesiomonas" 3 "Imipenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2017" "DISK" "Plesiomonas" 3 "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2017" "MIC" "Plesiomonas" 3 "Imipenem" "M45 Table 2" 4 16 FALSE -"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2017" "MIC" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" 2 8 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" "Table 2G" 0.125 1 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Imipenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Imipenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Kanamycin" "Generic rules" "30μg" 18 13 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Kanamycin" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2017" "DISK" "Enterococcus" 3 "Linezolid" "Table 2D" "30μg" 23 20 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Kanamycin" "Generic rules" "30ug" 18 13 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Kanamycin" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2017" "DISK" "Enterococcus" 3 "Linezolid" "Table 2D" "30ug" 23 20 FALSE "CLSI 2017" "MIC" "Enterococcus" 3 "Linezolid" "Table 2D" 2 8 FALSE "CLSI 2017" "MIC" "Lactobacillus" 3 "Linezolid" "M45 Table 9" 4 2048 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Linezolid" "Table 2C" "30μg" 21 20 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Linezolid" "Table 2C" "30ug" 21 20 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Linezolid" "Table 2C" 4 8 FALSE -"CLSI 2017" "DISK" "Streptococcus" 3 "Linezolid" "Table 2H-1" "30μg" 21 6 FALSE +"CLSI 2017" "DISK" "Streptococcus" 3 "Linezolid" "Table 2H-1" "30ug" 21 6 FALSE "CLSI 2017" "MIC" "Streptococcus" 3 "Linezolid" "Table 2H-1" 2 2048 FALSE -"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" "30μg" 21 6 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" "30ug" 21 6 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" 2 2048 FALSE -"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" "30μg" 21 6 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" "30ug" 21 6 FALSE "CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" 2 2048 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Linezolid" "Generic rules" "30μg" 21 20 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Linezolid" "Generic rules" "30μg" 4 8 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Linezolid" "Generic rules" "30ug" 21 20 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Linezolid" "Generic rules" "30ug" 4 8 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Lomefloxacin" "Table 2B-5" 2 8 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Lomefloxacin" "Table 2E" "10μg" 22 6 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Lomefloxacin" "Table 2E" "10ug" 22 6 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Lomefloxacin" "Table 2E" 2 2048 FALSE -"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Lomefloxacin" "Table 2F" "10μg" 38 26 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Lomefloxacin" "Table 2F" "10ug" 38 26 FALSE "CLSI 2017" "MIC" "Neisseria gonorrhoeae" 2 "Lomefloxacin" "Table 2F" 0.125 2 FALSE -"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" "10μg" 22 18 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" "10ug" 22 18 FALSE "CLSI 2017" "MIC" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" 2 8 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" "10μg" 22 18 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" "10ug" 22 18 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" 2 8 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10μg" 22 18 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Loracarbef" "Table 2E" "30μg" 19 15 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10ug" 22 18 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Loracarbef" "Table 2E" "30ug" 19 15 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Loracarbef" "Table 2E" 8 32 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Loracarbef" "Table 2G" 2 8 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Loracarbef" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Loracarbef" "Generic rules" "30μg" 8 32 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Loracarbef" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Loracarbef" "Generic rules" "30ug" 8 32 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Latamoxef" "Table 2B-5" 8 64 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Latamoxef" "Generic rules" "30μg" 23 14 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Latamoxef" "Generic rules" "30μg" 8 64 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Latamoxef" "Generic rules" "30ug" 23 14 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Latamoxef" "Generic rules" "30ug" 8 64 FALSE "CLSI 2017" "MIC" "Abiotrophia" 3 "Levofloxacin" "M45 Table 1" 2 8 FALSE -"CLSI 2017" "DISK" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" "5μg" 17 13 FALSE +"CLSI 2017" "DISK" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" "5ug" 17 13 FALSE "CLSI 2017" "MIC" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" 2 8 FALSE -"CLSI 2017" "DISK" "Aeromonas" 3 "Levofloxacin" "M45 Table 2" "5μg" 17 13 FALSE +"CLSI 2017" "DISK" "Aeromonas" 3 "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE "CLSI 2017" "MIC" "Aeromonas" 3 "Levofloxacin" "M45 Table 2" 2 8 FALSE "CLSI 2017" "MIC" "Aggregatibacter" 3 "Levofloxacin" "M45 Table 7" 2 8 FALSE "CLSI 2017" "MIC" "Bacillus" 3 "Levofloxacin" "M45 Table 3" 2 8 FALSE @@ -13168,160 +13168,160 @@ "CLSI 2017" "MIC" "Burkholderia cepacia" 2 "Levofloxacin" "Table 2B-3" 2 8 FALSE "CLSI 2017" "MIC" "Cardiobacterium" 3 "Levofloxacin" "M45 Table 7" 2 8 FALSE "CLSI 2017" "MIC" "Eikenella" 3 "Levofloxacin" "M45 Table 7" 2 8 FALSE -"CLSI 2017" "DISK" "Enterococcus" 3 "Levofloxacin" "Table 2D" "5μg" 17 13 FALSE +"CLSI 2017" "DISK" "Enterococcus" 3 "Levofloxacin" "Table 2D" "5ug" 17 13 FALSE "CLSI 2017" "MIC" "Enterococcus" 3 "Levofloxacin" "Table 2D" 2 8 FALSE "CLSI 2017" "MIC" "Erysipelothrix rhusiopathiae" 2 "Levofloxacin" "M45 Table 6" 2 2048 FALSE "CLSI 2017" "MIC" "Francisella tularensis tularensis" 1 "Levofloxacin" "M45 Table 16" 0.5 2048 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Levofloxacin" "Table 2B-5" 2 8 FALSE "CLSI 2017" "MIC" "Granulicatella" 3 "Levofloxacin" "M45 Table 1" 2 8 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Levofloxacin" "Table 2E" "5μg" 17 6 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Levofloxacin" "Table 2E" "5ug" 17 6 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Levofloxacin" "Table 2E" 2 2048 FALSE "CLSI 2017" "MIC" "Kingella" 3 "Levofloxacin" "M45 Table 7" 2 8 FALSE "CLSI 2017" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" "M45 Table 12" 2 2048 FALSE "CLSI 2017" "MIC" "Neisseria meningitidis" 2 "Levofloxacin" "Table 2I" 0.032 0.12 FALSE -"CLSI 2017" "DISK" "Plesiomonas" 3 "Levofloxacin" "M45 Table 2" "5μg" 17 13 FALSE +"CLSI 2017" "DISK" "Plesiomonas" 3 "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE "CLSI 2017" "MIC" "Plesiomonas" 3 "Levofloxacin" "M45 Table 2" 2 8 FALSE -"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" "5μg" 17 13 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" "5ug" 17 13 FALSE "CLSI 2017" "MIC" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" 2 8 FALSE -"CLSI 2017" "DISK" "Pasteurella" 3 "Levofloxacin" "M45 Table 13" "5μg" 28 6 FALSE +"CLSI 2017" "DISK" "Pasteurella" 3 "Levofloxacin" "M45 Table 13" "5ug" 28 6 FALSE "CLSI 2017" "MIC" "Pasteurella" 3 "Levofloxacin" "M45 Table 13" 0.064 2048 FALSE "CLSI 2017" "MIC" "Salmonella" 3 "Levofloxacin" "Table 2A" 0.125 2 FALSE "CLSI 2017" "MIC" "Extraintestinal" "Salmonella" 3 "Levofloxacin" "Table 2A" 0.125 2 FALSE -"CLSI 2017" "DISK" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" "75μg" 17 13 FALSE +"CLSI 2017" "DISK" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" "75ug" 17 13 FALSE "CLSI 2017" "MIC" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" 2 8 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Levofloxacin" "Table 2C" "10μg" 19 15 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Levofloxacin" "Table 2C" "10ug" 19 15 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Levofloxacin" "Table 2C" 1 4 FALSE -"CLSI 2017" "DISK" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" "5μg" 17 13 FALSE +"CLSI 2017" "DISK" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" "5ug" 17 13 FALSE "CLSI 2017" "MIC" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" 2 8 FALSE -"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" "5μg" 17 13 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" "5ug" 17 13 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" 2 8 FALSE -"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" "5μg" 17 13 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" "5ug" 17 13 FALSE "CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" 2 8 FALSE "CLSI 2017" "MIC" "Yersinia pestis" 2 "Levofloxacin" "M45 Table 16" 0.25 2048 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5μg" 17 13 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5μg" 2 8 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 17 13 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 2 8 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Cefamandole" "Table 2E" 4 16 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Cefamandole" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Cefamandole" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Marbofloxacin" "Generic rules" "5μg" 20 14 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Marbofloxacin" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Mecillinam" "Generic rules" "10μg" 15 11 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Mecillinam" "Generic rules" "10μg" 8 32 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Cefamandole" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Cefamandole" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Marbofloxacin" "Generic rules" "5ug" 20 14 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Marbofloxacin" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 15 11 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 8 32 FALSE "CLSI 2017" "MIC" "Abiotrophia" 3 "Meropenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2017" "DISK" "Acinetobacter" 3 "Meropenem" "Table 2B-2" "10μg" 18 14 FALSE +"CLSI 2017" "DISK" "Acinetobacter" 3 "Meropenem" "Table 2B-2" "10ug" 18 14 FALSE "CLSI 2017" "MIC" "Acinetobacter" 3 "Meropenem" "Table 2B-2" 2 8 FALSE -"CLSI 2017" "DISK" "Aeromonas" 3 "Meropenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2017" "DISK" "Aeromonas" 3 "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2017" "MIC" "Aeromonas" 3 "Meropenem" "M45 Table 2" 4 16 FALSE "CLSI 2017" "MIC" "Aggregatibacter" 3 "Meropenem" "M45 Table 7" 4 16 FALSE -"CLSI 2017" "DISK" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" "10μg" 20 15 FALSE +"CLSI 2017" "DISK" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" "10ug" 20 15 FALSE "CLSI 2017" "MIC" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" 4 16 FALSE "CLSI 2017" "MIC" "Cardiobacterium" 3 "Meropenem" "M45 Table 7" 0.5 2 FALSE "CLSI 2017" "MIC" "Eikenella" 3 "Meropenem" "M45 Table 7" 0.5 2 FALSE "CLSI 2017" "MIC" "Erysipelothrix rhusiopathiae" 2 "Meropenem" "M45 Table 6" 0.5 2048 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Meropenem" "Table 2B-5" 4 16 FALSE "CLSI 2017" "MIC" "Granulicatella" 3 "Meropenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Meropenem" "Table 2E" "10μg" 20 6 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Meropenem" "Table 2E" "10ug" 20 6 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Meropenem" "Table 2E" 0.5 2048 FALSE "CLSI 2017" "MIC" "Kingella" 3 "Meropenem" "M45 Table 7" 0.5 2 FALSE -"CLSI 2017" "DISK" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" "10μg" 30 6 FALSE +"CLSI 2017" "DISK" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" "10ug" 30 6 FALSE "CLSI 2017" "MIC" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" 0.25 2048 FALSE -"CLSI 2017" "DISK" "Plesiomonas" 3 "Meropenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2017" "DISK" "Plesiomonas" 3 "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2017" "MIC" "Plesiomonas" 3 "Meropenem" "M45 Table 2" 4 16 FALSE -"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2017" "MIC" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" 2 8 FALSE "CLSI 2017" "MIC" "Streptococcus" 3 "Meropenem" "Table 2H-1" 0.5 2048 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Meropenem" "Table 2G" 0.25 1 FALSE "CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "Table 2H-2" 0.5 2048 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Meropenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Meropenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Methicillin" "Generic rules" "5μg" 14 9 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Methicillin" "Generic rules" "5μg" 8 16 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Moxifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Methicillin" "Generic rules" "5ug" 14 9 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Methicillin" "Generic rules" "5ug" 8 16 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Moxifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Moxifloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2017" "DISK" "Pasteurella" 3 "Moxifloxacin" "M45 Table 13" "5μg" 28 6 FALSE +"CLSI 2017" "DISK" "Pasteurella" 3 "Moxifloxacin" "M45 Table 13" "5ug" 28 6 FALSE "CLSI 2017" "MIC" "Pasteurella" 3 "Moxifloxacin" "M45 Table 13" 0.064 2048 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" "5μg" 24 20 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" "5ug" 24 20 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" "5μg" 18 14 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" "5ug" 18 14 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" 1 4 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5μg" 24 20 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5μg" 0.5 2 FALSE -"CLSI 2017" "DISK" "Acinetobacter" 3 "Minocycline" "Table 2B-2" "30μg" 16 12 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 24 20 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 0.5 2 FALSE +"CLSI 2017" "DISK" "Acinetobacter" 3 "Minocycline" "Table 2B-2" "30ug" 16 12 FALSE "CLSI 2017" "MIC" "Acinetobacter" 3 "Minocycline" "Table 2B-2" 4 16 FALSE -"CLSI 2017" "DISK" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" "30μg" 19 14 FALSE +"CLSI 2017" "DISK" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" "30ug" 19 14 FALSE "CLSI 2017" "MIC" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" 4 16 FALSE -"CLSI 2017" "DISK" "Enterococcus" 3 "Minocycline" "Table 2D" "30μg" 19 14 FALSE +"CLSI 2017" "DISK" "Enterococcus" 3 "Minocycline" "Table 2D" "30ug" 19 14 FALSE "CLSI 2017" "MIC" "Enterococcus" 3 "Minocycline" "Table 2D" 4 16 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Minocycline" "Table 2B-5" 4 16 FALSE "CLSI 2017" "MIC" "Leuconostoc" 3 "Minocycline" "M45 Table 10" 4 16 FALSE -"CLSI 2017" "DISK" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" "30μg" 26 6 FALSE +"CLSI 2017" "DISK" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" "30ug" 26 6 FALSE "CLSI 2017" "MIC" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" 2 2048 FALSE -"CLSI 2017" "DISK" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" "30μg" 19 14 FALSE +"CLSI 2017" "DISK" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" "30ug" 19 14 FALSE "CLSI 2017" "MIC" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" 4 16 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Minocycline" "Table 2C" "30μg" 19 14 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Minocycline" "Table 2C" "30ug" 19 14 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Minocycline" "Table 2C" 4 16 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Minocycline" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Minocycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Nafcillin" "Generic rules" "1μg" 13 10 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Nafcillin" "Generic rules" "1μg" 2 4 FALSE -"CLSI 2017" "DISK" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" "30μg" 26 25 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Minocycline" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Minocycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Nafcillin" "Generic rules" "1ug" 13 10 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Nafcillin" "Generic rules" "1ug" 2 4 FALSE +"CLSI 2017" "DISK" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" "30ug" 26 25 FALSE "CLSI 2017" "MIC" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" 4 8 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30μg" 19 13 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30μg" 16 32 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 19 13 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 16 32 FALSE "CLSI 2017" "MIC" "Acinetobacter" 3 "Netilmicin" "Table 2B-2" 8 32 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Netilmicin" "Table 2B-5" 8 32 FALSE -"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" "30μg" 15 12 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" "30ug" 15 12 FALSE "CLSI 2017" "MIC" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" 8 32 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Netilmicin" "Generic rules" "30μg" 15 12 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Netilmicin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2017" "DISK" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" "300μg" 17 14 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Netilmicin" "Generic rules" "30ug" 15 12 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Netilmicin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2017" "DISK" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" "300ug" 17 14 FALSE "CLSI 2017" "MIC" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" 32 128 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" "300μg" 17 14 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" "300ug" 17 14 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" 32 128 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "300μg" 17 14 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100μg" 32 128 FALSE -"CLSI 2017" "DISK" "Enterococcus" 3 "Norfloxacin" "Table 2D" "10μg" 17 12 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "300ug" 17 14 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100ug" 32 128 FALSE +"CLSI 2017" "DISK" "Enterococcus" 3 "Norfloxacin" "Table 2D" "10ug" 17 12 FALSE "CLSI 2017" "MIC" "Enterococcus" 3 "Norfloxacin" "Table 2D" 4 16 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Norfloxacin" "Table 2B-5" 4 16 FALSE -"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Norfloxacin" "Table 2B-1" "10μg" 17 12 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Norfloxacin" "Table 2B-1" "10ug" 17 12 FALSE "CLSI 2017" "MIC" "Pseudomonas aeruginosa" 2 "Norfloxacin" "Table 2B-1" 4 16 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Norfloxacin" "Table 2C" "10μg" 17 12 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Norfloxacin" "Table 2C" "10ug" 17 12 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Norfloxacin" "Table 2C" 4 16 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10μg" 17 12 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10μg" 4 16 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10ug" 17 12 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10ug" 4 16 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Ofloxacin" "Table 2B-5" 2 8 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Ofloxacin" "Table 2E" "5μg" 16 6 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Ofloxacin" "Table 2E" "5ug" 16 6 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Ofloxacin" "Table 2E" 2 2048 FALSE -"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Ofloxacin" "Table 2F" "5μg" 31 24 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Ofloxacin" "Table 2F" "5ug" 31 24 FALSE "CLSI 2017" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" "Table 2F" 0.25 2 FALSE -"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" "5μg" 16 12 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" "5ug" 16 12 FALSE "CLSI 2017" "MIC" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" 2 8 FALSE "CLSI 2017" "MIC" "Salmonella" 3 "Ofloxacin" "Table 2A" 0.125 2 FALSE "CLSI 2017" "MIC" "Extraintestinal" "Salmonella" 3 "Ofloxacin" "Table 2A" 0.125 2 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Ofloxacin" "Table 2C" "5μg" 18 14 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Ofloxacin" "Table 2C" "5ug" 18 14 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Ofloxacin" "Table 2C" 1 4 FALSE -"CLSI 2017" "DISK" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" "5μg" 16 12 FALSE +"CLSI 2017" "DISK" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" "5ug" 16 12 FALSE "CLSI 2017" "MIC" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" 2 8 FALSE -"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" "5μg" 16 12 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" "5ug" 16 12 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" 2 8 FALSE -"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" "5μg" 16 12 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" "5ug" 16 12 FALSE "CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" 2 8 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5μg" 16 12 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10μg" 23 17 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10μg" 1 8 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 16 12 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10ug" 23 17 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10ug" 1 8 FALSE "CLSI 2017" "MIC" "Enterococcus" 3 "Oritavancin" "Table 2D" 0.125 2048 FALSE "CLSI 2017" "MIC" "Streptococcus" 3 "Oritavancin" "Table 2H-1" 0.25 2048 FALSE "CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Oritavancin" "Table 2H-2" 0.25 2048 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Oxacillin" "Table 2C" "1μg" 13 10 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Oxacillin" "Table 2C" "1ug" 13 10 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Oxacillin" "Table 2C" 2 4 FALSE -"CLSI 2017" "DISK" "Staphylococcus aureus aureus" 1 "Oxacillin" "Table 2C" "1μg" 13 10 FALSE +"CLSI 2017" "DISK" "Staphylococcus aureus aureus" 1 "Oxacillin" "Table 2C" "1ug" 13 10 FALSE "CLSI 2017" "MIC" "Staphylococcus aureus aureus" 1 "Oxacillin" "Table 2C" 2 4 FALSE "CLSI 2017" "MIC" "Staphylococcus lugdunensis" 2 "Oxacillin" "Table 2C" 2 4 FALSE -"CLSI 2017" "DISK" "Staphylococcus pseudintermedius" 2 "Oxacillin" "Table 2C" "1μg" 18 17 FALSE +"CLSI 2017" "DISK" "Staphylococcus pseudintermedius" 2 "Oxacillin" "Table 2C" "1ug" 18 17 FALSE "CLSI 2017" "MIC" "Staphylococcus pseudintermedius" 2 "Oxacillin" "Table 2C" 0.25 0.5 FALSE -"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "Table 2G" "1μg" 20 6 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Oxacillin" "Generic rules" "1μg" 0.25 0.5 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "Table 2G" "1ug" 20 6 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Oxacillin" "Generic rules" "1ug" 0.25 0.5 FALSE "CLSI 2017" "DISK" "Salmonella" 3 "Pefloxacin" "Table 2A" 24 23 FALSE "CLSI 2017" "MIC" "Abiotrophia" 3 "Benzylpenicillin" "M45 Table 1" 0.125 4 FALSE "CLSI 2017" "MIC" "Aggregatibacter" 3 "Benzylpenicillin" "M45 Table 7" 1 4 FALSE @@ -13343,7 +13343,7 @@ "CLSI 2017" "MIC" "Pediococcus" 3 "Benzylpenicillin" "M45 Table 14" 8 2048 FALSE "CLSI 2017" "DISK" "Pasteurella" 3 "Benzylpenicillin" "M45 Table 13" "10 Units" 25 6 FALSE "CLSI 2017" "MIC" "Pasteurella" 3 "Benzylpenicillin" "M45 Table 13" 0.5 2048 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" "10μg" 29 28 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" "10ug" 29 28 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" 0.125 0.25 FALSE "CLSI 2017" "DISK" "Streptococcus" 3 "Benzylpenicillin" "Table 2H-1" "10units" 24 6 FALSE "CLSI 2017" "MIC" "Streptococcus" 3 "Benzylpenicillin" "Table 2H-1" 0.125 2048 FALSE @@ -13354,147 +13354,147 @@ "CLSI 2017" "DISK" "(unknown name)" 6 "Benzylpenicillin" "Generic rules" "10units" 29 28 FALSE "CLSI 2017" "MIC" "(unknown name)" 6 "Benzylpenicillin" "Generic rules" "10units" 0.125 0.25 FALSE "CLSI 2017" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Phenoxymethylpenicillin" "Table 2G" 0.064 2 FALSE -"CLSI 2017" "DISK" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" "100μg" 21 17 FALSE +"CLSI 2017" "DISK" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" "100ug" 21 17 FALSE "CLSI 2017" "MIC" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" 16 128 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Piperacillin" "Table 2B-5" 16 128 FALSE -"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" "100μg" 21 14 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" "100ug" 21 14 FALSE "CLSI 2017" "MIC" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" 16 128 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Piperacillin" "Generic rules" "100μg" 21 17 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Piperacillin" "Generic rules" "100μg" 16 128 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Piperacillin" "Generic rules" "100ug" 21 17 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Piperacillin" "Generic rules" "100ug" 16 128 FALSE "CLSI 2017" "MIC" "Acinetobacter" 3 "Polymyxin B" "Table 2B-2" 2 4 FALSE "CLSI 2017" "MIC" "Pseudomonas aeruginosa" 2 "Polymyxin B" "Table 2B-1" 2 8 FALSE "CLSI 2017" "DISK" "(unknown name)" 6 "Polymyxin B" "Generic rules" "300units" 12 11 FALSE "CLSI 2017" "MIC" "(unknown name)" 6 "Polymyxin B" "Generic rules" "300units" 2 8 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30μg" 18 14 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30μg" 1 4 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2μg" 13 12 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2μg" 2 4 FALSE -"CLSI 2017" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" "15μg" 19 15 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30ug" 18 14 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30ug" 1 4 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2ug" 13 12 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2ug" 2 4 FALSE +"CLSI 2017" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" "15ug" 19 15 FALSE "CLSI 2017" "MIC" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" 1 4 FALSE -"CLSI 2017" "DISK" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" "15μg" 19 15 FALSE +"CLSI 2017" "DISK" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" "15ug" 19 15 FALSE "CLSI 2017" "MIC" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" 1 4 FALSE -"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" "15μg" 19 15 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" "15ug" 19 15 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" 1 4 FALSE -"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" "15μg" 19 15 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" "15ug" 19 15 FALSE "CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" 1 4 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15μg" 19 15 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15μg" 1 4 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15ug" 19 15 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15ug" 1 4 FALSE "CLSI 2017" "MIC" "Aggregatibacter" 3 "Rifampicin" "M45 Table 7" 1 4 FALSE "CLSI 2017" "MIC" "Bacillus" 3 "Rifampicin" "M45 Table 3" 1 4 FALSE "CLSI 2017" "MIC" "Cardiobacterium" 3 "Rifampicin" "M45 Table 7" 1 4 FALSE "CLSI 2017" "MIC" "Eikenella" 3 "Rifampicin" "M45 Table 7" 1 4 FALSE -"CLSI 2017" "DISK" "Enterococcus" 3 "Rifampicin" "Table 2D" "5μg" 20 16 FALSE +"CLSI 2017" "DISK" "Enterococcus" 3 "Rifampicin" "Table 2D" "5ug" 20 16 FALSE "CLSI 2017" "MIC" "Enterococcus" 3 "Rifampicin" "Table 2D" 1 4 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Rifampicin" "Table 2E" "5μg" 20 16 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Rifampicin" "Table 2E" "5ug" 20 16 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Rifampicin" "Table 2E" 1 4 FALSE "CLSI 2017" "MIC" "Kingella" 3 "Rifampicin" "M45 Table 7" 1 4 FALSE "CLSI 2017" "MIC" "Moraxella catarrhalis" 2 "Rifampicin" "M45 Table 12" 1 4 FALSE -"CLSI 2017" "DISK" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" "5μg" 25 19 FALSE +"CLSI 2017" "DISK" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" "5ug" 25 19 FALSE "CLSI 2017" "MIC" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" 0.5 2 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Rifampicin" "Table 2C" "5μg" 20 16 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Rifampicin" "Table 2C" "5ug" 20 16 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Rifampicin" "Table 2C" 1 4 FALSE -"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" "5μg" 19 16 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" "5ug" 19 16 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" 1 4 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Rifampicin" "Generic rules" "5μg" 20 16 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Rifampicin" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2017" "DISK" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" "10μg" 15 11 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Rifampicin" "Generic rules" "5ug" 20 16 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Rifampicin" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2017" "DISK" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" "10ug" 15 11 FALSE "CLSI 2017" "MIC" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" 8 32 FALSE -"CLSI 2017" "DISK" "Aeromonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10μg" 15 11 FALSE +"CLSI 2017" "DISK" "Aeromonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE "CLSI 2017" "MIC" "Aeromonas" 3 "Ampicillin/sulbactam" "M45 Table 2" 8 32 FALSE "CLSI 2017" "MIC" "Aggregatibacter" 3 "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE "CLSI 2017" "MIC" "Cardiobacterium" 3 "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE "CLSI 2017" "MIC" "Eikenella" 3 "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" "10/10μg" 20 19 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" "10/10ug" 20 19 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" 2 4 FALSE -"CLSI 2017" "DISK" "Plesiomonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10μg" 15 11 FALSE +"CLSI 2017" "DISK" "Plesiomonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE "CLSI 2017" "MIC" "Plesiomonas" 3 "Ampicillin/sulbactam" "M45 Table 2" 8 32 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10μg" 15 11 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10μg" 8 32 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300μg" 256 512 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10ug" 15 11 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10ug" 8 32 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300ug" 256 512 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Sulfamethoxazole" "Table 2B-5" 256 512 FALSE "CLSI 2017" "MIC" "Neisseria meningitidis" 2 "Sulfamethoxazole" "Table 2I" 2 8 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" "200μg" 17 12 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" "200ug" 17 12 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" 256 512 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300μg" 256 512 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300ug" 256 512 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Sulfisoxazole" "Table 2B-5" 256 512 FALSE "CLSI 2017" "MIC" "Neisseria meningitidis" 2 "Sulfisoxazole" "Table 2I" 2 8 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" "200μg" 17 12 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" "200ug" 17 12 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" 256 512 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300μg" 256 512 FALSE -"CLSI 2017" "DISK" "Histophilus somni" 2 "Spectinomycin" "Vet Table" "100μg" 14 10 FALSE -"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" "100μg" 18 14 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300ug" 256 512 FALSE +"CLSI 2017" "DISK" "Histophilus somni" 2 "Spectinomycin" "Vet Table" "100ug" 14 10 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" "100ug" 18 14 FALSE "CLSI 2017" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" 32 128 FALSE -"CLSI 2017" "DISK" "Providencia heimbachae" 2 "Spectinomycin" "100μg" 14 10 FALSE -"CLSI 2017" "DISK" "Pasteurella multocida multocida" 1 "Spectinomycin" "100μg" 14 10 FALSE +"CLSI 2017" "DISK" "Providencia heimbachae" 2 "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2017" "DISK" "Pasteurella multocida multocida" 1 "Spectinomycin" "100ug" 14 10 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Sparfloxacin" "Table 2E" 0.25 2048 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" "5μg" 19 15 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" "5ug" 19 15 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" "5μg" 19 15 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" "5ug" 19 15 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" 0.5 2 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5μg" 0.5 2 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5ug" 0.5 2 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Sulfonamide" "Table 2B-5" 256 512 FALSE "CLSI 2017" "MIC" "Neisseria meningitidis" 2 "Sulfonamide" "Table 2I" 2 8 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Sulfonamide" "Table 2C" "200μg" 17 12 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Sulfonamide" "Table 2C" "200ug" 17 12 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Sulfonamide" "Table 2C" 256 512 FALSE -"CLSI 2017" "DISK" "Enterococcus" 3 "Streptomycin-high" "Table 2D" "300μg" 10 6 FALSE +"CLSI 2017" "DISK" "Enterococcus" 3 "Streptomycin-high" "Table 2D" "300ug" 10 6 FALSE "CLSI 2017" "MIC" "Enterococcus" 3 "Streptomycin-high" "Table 2D" 1024 2048 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300μg" 10 6 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300μg" 1024 2048 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300ug" 10 6 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300ug" 1024 2048 FALSE "CLSI 2017" "MIC" "Brucella" 3 "Streptoduocin" "M45 Table 16" 8 2048 FALSE "CLSI 2017" "MIC" "Enterococcus" 3 "Streptoduocin" "Table 2D" 1024 2048 FALSE "CLSI 2017" "MIC" "Francisella tularensis tularensis" 1 "Streptoduocin" "M45 Table 16" 8 2048 FALSE "CLSI 2017" "MIC" "Yersinia pestis" 2 "Streptoduocin" "M45 Table 16" 4 16 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Streptomycin" "Generic rules" "10μg" 15 11 FALSE -"CLSI 2017" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Streptomycin" "Generic rules" "10ug" 15 11 FALSE +"CLSI 2017" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2017" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" 2 4 FALSE -"CLSI 2017" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2017" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2017" "MIC" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE "CLSI 2017" "MIC" "Aggregatibacter" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE "CLSI 2017" "MIC" "Bacillus" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 3" 2 4 FALSE "CLSI 2017" "MIC" "Brucella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 2048 FALSE -"CLSI 2017" "DISK" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2017" "DISK" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2017" "MIC" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" 2 4 FALSE "CLSI 2017" "MIC" "Burkholderia pseudomallei" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 4 FALSE "CLSI 2017" "MIC" "Cardiobacterium" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE "CLSI 2017" "MIC" "Eikenella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-5" 2 4 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" "1.25μg/23.75μg" 15 10 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" "1.25ug/23.75ug" 15 10 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" 0.5 4 FALSE "CLSI 2017" "MIC" "Kingella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE "CLSI 2017" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 11" 0.5 4 FALSE -"CLSI 2017" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 12" "1.25μg/23.75μg" 13 10 FALSE +"CLSI 2017" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 12" "1.25ug/23.75ug" 13 10 FALSE "CLSI 2017" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 12" 0.5 4 FALSE -"CLSI 2017" "DISK" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" "1.25μg/23.75μg" 30 25 FALSE +"CLSI 2017" "DISK" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" "1.25ug/23.75ug" 30 25 FALSE "CLSI 2017" "MIC" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" 0.125 0.5 FALSE -"CLSI 2017" "DISK" "Plesiomonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2017" "DISK" "Plesiomonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2017" "MIC" "Plesiomonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE -"CLSI 2017" "DISK" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 13" "1.25μg/23.75μg" 24 6 FALSE +"CLSI 2017" "DISK" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 13" "1.25ug/23.75ug" 24 6 FALSE "CLSI 2017" "MIC" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 13" 0.5 2048 FALSE -"CLSI 2017" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" "30μg" 16 10 FALSE +"CLSI 2017" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" "30ug" 16 10 FALSE "CLSI 2017" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" 2 4 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" 2 4 FALSE -"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" "1.25μg/23.75μg" 19 15 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" "1.25ug/23.75ug" 19 15 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" 0.5 4 FALSE "CLSI 2017" "MIC" "Yersinia pestis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 4 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75μg" 16 10 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75μg" 2 4 FALSE -"CLSI 2017" "DISK" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" "75μg" 20 14 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 16 10 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 2 4 FALSE +"CLSI 2017" "DISK" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" "75ug" 20 14 FALSE "CLSI 2017" "MIC" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" 16 128 FALSE "CLSI 2017" "MIC" "Burkholderia cepacia" 2 "Ticarcillin/clavulanic acid" "Table 2B-3" 16 128 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Ticarcillin/clavulanic acid" "Table 2B-5" 16 128 FALSE -"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" "75μg" 24 15 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" "75ug" 24 15 FALSE "CLSI 2017" "MIC" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" 16 128 FALSE "CLSI 2017" "MIC" "Stenotrophomonas maltophilia" 2 "Ticarcillin/clavulanic acid" "Table 2B-4" 16 128 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15μg" 20 14 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15μg" 16 128 FALSE -"CLSI 2017" "DISK" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" "30μg" 15 11 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15ug" 20 14 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15ug" 16 128 FALSE +"CLSI 2017" "DISK" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" "30ug" 15 11 FALSE "CLSI 2017" "MIC" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" 4 16 FALSE -"CLSI 2017" "DISK" "Aeromonas" 3 "Tetracycline" "M45 Table 2" "30μg" 15 11 FALSE +"CLSI 2017" "DISK" "Aeromonas" 3 "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE "CLSI 2017" "MIC" "Aeromonas" 3 "Tetracycline" "M45 Table 2" 4 16 FALSE "CLSI 2017" "MIC" "Aggregatibacter" 3 "Tetracycline" "M45 Table 7" 2 8 FALSE "CLSI 2017" "MIC" "Bacillus" 3 "Tetracycline" "M45 Table 3" 4 16 FALSE @@ -13505,296 +13505,296 @@ "CLSI 2017" "MIC" "Campylobacter" 3 "Tetracycline" "M45 Table 3" 4 16 FALSE "CLSI 2017" "MIC" "Cardiobacterium" 3 "Tetracycline" "M45 Table 7" 2 8 FALSE "CLSI 2017" "MIC" "Eikenella" 3 "Tetracycline" "M45 Table 7" 2 8 FALSE -"CLSI 2017" "DISK" "Enterococcus" 3 "Tetracycline" "Table 2D" "30μg" 19 14 FALSE +"CLSI 2017" "DISK" "Enterococcus" 3 "Tetracycline" "Table 2D" "30ug" 19 14 FALSE "CLSI 2017" "MIC" "Enterococcus" 3 "Tetracycline" "Table 2D" 4 16 FALSE "CLSI 2017" "MIC" "Francisella tularensis tularensis" 1 "Tetracycline" "M45 Table 16" 4 2048 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Tetracycline" "Table 2B-5" 4 16 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Tetracycline" "Table 2E" "30μg" 29 25 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Tetracycline" "Table 2E" "30ug" 29 25 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Tetracycline" "Table 2E" 2 8 FALSE "CLSI 2017" "MIC" "Kingella" 3 "Tetracycline" "M45 Table 7" 2 8 FALSE -"CLSI 2017" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 12" "30μg" 29 24 FALSE +"CLSI 2017" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 12" "30ug" 29 24 FALSE "CLSI 2017" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 12" 2 8 FALSE -"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" "30μg" 38 30 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" "30ug" 38 30 FALSE "CLSI 2017" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" 0.25 2 FALSE -"CLSI 2017" "DISK" "Plesiomonas" 3 "Tetracycline" "M45 Table 2" "30μg" 15 11 FALSE +"CLSI 2017" "DISK" "Plesiomonas" 3 "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE "CLSI 2017" "MIC" "Plesiomonas" 3 "Tetracycline" "M45 Table 2" 4 16 FALSE -"CLSI 2017" "DISK" "Pasteurella" 3 "Tetracycline" "M45 Table 13" "30μg" 23 6 FALSE +"CLSI 2017" "DISK" "Pasteurella" 3 "Tetracycline" "M45 Table 13" "30ug" 23 6 FALSE "CLSI 2017" "MIC" "Pasteurella" 3 "Tetracycline" "M45 Table 13" 1 2048 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Tetracycline" "Table 2C" "30μg" 19 14 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Tetracycline" "Table 2C" "30ug" 19 14 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Tetracycline" "Table 2C" 4 16 FALSE -"CLSI 2017" "DISK" "Streptococcus" 3 "Tetracycline" "Table 2H-1" "30μg" 23 18 FALSE +"CLSI 2017" "DISK" "Streptococcus" 3 "Tetracycline" "Table 2H-1" "30ug" 23 18 FALSE "CLSI 2017" "MIC" "Streptococcus" 3 "Tetracycline" "Table 2H-1" 2 8 FALSE -"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" "30μg" 28 24 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" "30ug" 28 24 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" 1 4 FALSE -"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" "30μg" 23 18 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" "30ug" 23 18 FALSE "CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" 2 8 FALSE "CLSI 2017" "MIC" "Yersinia pestis" 2 "Tetracycline" "M45 Table 16" 4 16 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Tetracycline" "Generic rules" "30μg" 15 11 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Tetracycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2017" "DISK" "Enterococcus" 3 "Teicoplanin" "Table 2D" "30μg" 14 10 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Tetracycline" "Generic rules" "30ug" 15 11 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Tetracycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2017" "DISK" "Enterococcus" 3 "Teicoplanin" "Table 2D" "30ug" 14 10 FALSE "CLSI 2017" "MIC" "Enterococcus" 3 "Teicoplanin" "Table 2D" 8 32 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Teicoplanin" "Table 2C" "30μg" 14 10 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Teicoplanin" "Table 2C" "30ug" 14 10 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Teicoplanin" "Table 2C" 8 32 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30μg" 14 10 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Tiamulin" "Generic rules" "30μg" 9 8 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Tiamulin" "Generic rules" "30μg" 16 32 FALSE -"CLSI 2017" "DISK" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" "Vet Table" "15μg" 11 10 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30ug" 14 10 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Tiamulin" "Generic rules" "30ug" 9 8 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Tiamulin" "Generic rules" "30ug" 16 32 FALSE +"CLSI 2017" "DISK" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE "CLSI 2017" "MIC" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" "Vet Table" 16 32 FALSE -"CLSI 2017" "DISK" "Pasteurella multocida multocida" 1 "Tilmicosin" "Vet Table" "15μg" 11 10 FALSE +"CLSI 2017" "DISK" "Pasteurella multocida multocida" 1 "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE "CLSI 2017" "MIC" "Pasteurella multocida multocida" 1 "Tilmicosin" "Vet Table" 16 32 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15μg" 14 10 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15μg" 8 32 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30μg" 2 8 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Telithromycin" "Table 2E" "15μg" 15 11 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15ug" 14 10 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15ug" 8 32 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30ug" 2 8 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Telithromycin" "Table 2E" "15ug" 15 11 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Telithromycin" "Table 2E" 4 16 FALSE -"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" "15μg" 19 15 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" "15ug" 19 15 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" 1 4 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Telithromycin" "Generic rules" "15μg" 22 18 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Telithromycin" "Generic rules" "15μg" 1 4 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Telithromycin" "Generic rules" "15ug" 22 18 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Telithromycin" "Generic rules" "15ug" 1 4 FALSE "CLSI 2017" "MIC" "Enterococcus" 3 "Telavancin" "Table 2D" 0.125 2048 FALSE "CLSI 2017" "MIC" "Streptococcus" 3 "Telavancin" "Table 2H-1" 0.125 2048 FALSE "CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Telavancin" "Table 2H-2" 0.125 2048 FALSE -"CLSI 2017" "DISK" "Staphylococcus" 3 "Trimethoprim" "Table 2C" "5μg" 16 10 FALSE +"CLSI 2017" "DISK" "Staphylococcus" 3 "Trimethoprim" "Table 2C" "5ug" 16 10 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Trimethoprim" "Table 2C" 8 16 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5μg" 16 10 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5μg" 8 16 FALSE -"CLSI 2017" "DISK" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" "10μg" 15 12 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 16 10 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 8 16 FALSE +"CLSI 2017" "DISK" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" "10ug" 15 12 FALSE "CLSI 2017" "MIC" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" 4 16 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Tobramycin" "Table 2B-5" 4 16 FALSE -"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" "10μg" 15 12 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" "10ug" 15 12 FALSE "CLSI 2017" "MIC" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" 4 16 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Tobramycin" "Generic rules" "10μg" 15 12 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Tobramycin" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Tulathromycin" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Tulathromycin" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Trovafloxacin" "Table 2E" "10μg" 22 6 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 15 12 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Tulathromycin" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Tulathromycin" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Trovafloxacin" "Table 2E" "10ug" 22 6 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Trovafloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" "10μg" 34 6 FALSE +"CLSI 2017" "DISK" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" "10ug" 34 6 FALSE "CLSI 2017" "MIC" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" 0.25 2048 FALSE -"CLSI 2017" "DISK" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" "10μg" 19 15 FALSE +"CLSI 2017" "DISK" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" "10ug" 19 15 FALSE "CLSI 2017" "MIC" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" 1 4 FALSE -"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" "10μg" 19 15 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" "10ug" 19 15 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" 1 4 FALSE -"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" "10μg" 19 15 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" "10ug" 19 15 FALSE "CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" 1 4 FALSE "CLSI 2017" "MIC" "Enterococcus" 3 "Tedizolid" "Table 2D" 0.5 2048 FALSE "CLSI 2017" "MIC" "Streptococcus" 3 "Tedizolid" "Table 2H-1" 0.5 2048 FALSE "CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Tedizolid" "Table 2H-2" 0.25 2048 FALSE -"CLSI 2017" "DISK" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" "100μg" 21 17 FALSE +"CLSI 2017" "DISK" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" "100ug" 21 17 FALSE "CLSI 2017" "MIC" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" 16 128 FALSE -"CLSI 2017" "DISK" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100μg" 21 17 FALSE +"CLSI 2017" "DISK" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE "CLSI 2017" "MIC" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 2" 16 128 FALSE "CLSI 2017" "MIC" "(unknown Gram-negatives)" 2 "Piperacillin/tazobactam" "Table 2B-5" 16 128 FALSE -"CLSI 2017" "DISK" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" "100μg" 21 6 FALSE +"CLSI 2017" "DISK" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" "100ug" 21 6 FALSE "CLSI 2017" "MIC" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" 1 2 FALSE -"CLSI 2017" "DISK" "Plesiomonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100μg" 21 17 FALSE +"CLSI 2017" "DISK" "Plesiomonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE "CLSI 2017" "MIC" "Plesiomonas" 3 "Piperacillin/tazobactam" "M45 Table 2" 16 128 FALSE -"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" "100μg" 21 14 FALSE +"CLSI 2017" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" "100ug" 21 14 FALSE "CLSI 2017" "MIC" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" 16 128 FALSE -"CLSI 2017" "DISK" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10μg" 21 17 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10μg" 16 128 FALSE +"CLSI 2017" "DISK" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10ug" 21 17 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10ug" 16 128 FALSE "CLSI 2017" "MIC" "Abiotrophia" 3 "Vancomycin" "M45 Table 1" 1 2048 FALSE "CLSI 2017" "MIC" "Bacillus" 3 "Vancomycin" "M45 Table 3" 4 2048 FALSE "CLSI 2017" "MIC" "Cutibacterium acnes" 2 "Vancomycin" "Table 2J-2" 2 4 FALSE -"CLSI 2017" "DISK" "Enterococcus" 3 "Vancomycin" "Table 2D" "30μg" 17 14 FALSE +"CLSI 2017" "DISK" "Enterococcus" 3 "Vancomycin" "Table 2D" "30ug" 17 14 FALSE "CLSI 2017" "MIC" "Enterococcus" 3 "Vancomycin" "Table 2D" 4 32 FALSE "CLSI 2017" "MIC" "Granulicatella" 3 "Vancomycin" "M45 Table 1" 1 2048 FALSE "CLSI 2017" "MIC" "Lactobacillus" 3 "Vancomycin" "M45 Table 9" 2 16 FALSE "CLSI 2017" "MIC" "Staphylococcus" 3 "Vancomycin" "Table 2C" 4 32 FALSE "CLSI 2017" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" "Table 2C" 2 16 FALSE -"CLSI 2017" "DISK" "Streptococcus" 3 "Vancomycin" "Table 2H-1" "30μg" 17 6 FALSE +"CLSI 2017" "DISK" "Streptococcus" 3 "Vancomycin" "Table 2H-1" "30ug" 17 6 FALSE "CLSI 2017" "MIC" "Streptococcus" 3 "Vancomycin" "Table 2H-1" 1 2048 FALSE -"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" "30μg" 17 6 FALSE +"CLSI 2017" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" "30ug" 17 6 FALSE "CLSI 2017" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" 1 2048 FALSE -"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" "30μg" 17 6 FALSE +"CLSI 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" "30ug" 17 6 FALSE "CLSI 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" 1 2048 FALSE -"CLSI 2017" "MIC" "(unknown name)" 6 "Vancomycin" "Generic rules" "30μg" 4 32 FALSE -"CLSI 2016" "DISK" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20μg" 18 13 FALSE +"CLSI 2017" "MIC" "(unknown name)" 6 "Vancomycin" "Generic rules" "30ug" 4 32 FALSE +"CLSI 2016" "DISK" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE "CLSI 2016" "MIC" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" 8 32 FALSE "CLSI 2016" "MIC" "Aggregatibacter" 3 "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE "CLSI 2016" "MIC" "Burkholderia pseudomallei" 2 "Amoxicillin/clavulanic acid" "M45 Table 16" 8 32 FALSE "CLSI 2016" "MIC" "Cardiobacterium" 3 "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE "CLSI 2016" "MIC" "Eikenella" 3 "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" "20/10μg" 20 19 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" "20/10ug" 20 19 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" 4 8 FALSE -"CLSI 2016" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 12" "20μg" 24 23 FALSE +"CLSI 2016" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 12" "20ug" 24 23 FALSE "CLSI 2016" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 12" 4 8 FALSE -"CLSI 2016" "DISK" "Plesiomonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20μg" 18 13 FALSE +"CLSI 2016" "DISK" "Plesiomonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE "CLSI 2016" "MIC" "Plesiomonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" 8 32 FALSE -"CLSI 2016" "DISK" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 13" "20μg" 27 6 FALSE +"CLSI 2016" "DISK" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 13" "20ug" 27 6 FALSE "CLSI 2016" "MIC" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 13" 0.5 2048 FALSE "CLSI 2016" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Amoxicillin/clavulanic acid" "Table 2G" 2 8 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10μg" 18 13 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10μg" 8 32 FALSE -"CLSI 2016" "DISK" "Acinetobacter" 3 "Amikacin" "Table 2B-2" "30μg" 17 14 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 18 13 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 8 32 FALSE +"CLSI 2016" "DISK" "Acinetobacter" 3 "Amikacin" "Table 2B-2" "30ug" 17 14 FALSE "CLSI 2016" "MIC" "Acinetobacter" 3 "Amikacin" "Table 2B-2" 16 64 FALSE -"CLSI 2016" "DISK" "Aeromonas" 3 "Amikacin" "M45 Table 2" "30μg" 17 14 FALSE +"CLSI 2016" "DISK" "Aeromonas" 3 "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE "CLSI 2016" "MIC" "Aeromonas" 3 "Amikacin" "M45 Table 2" 16 64 FALSE "CLSI 2016" "MIC" "Bacillus" 3 "Amikacin" "M45 Table 3" 16 64 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Amikacin" "Table 2B-5" 16 64 FALSE -"CLSI 2016" "DISK" "Plesiomonas" 3 "Amikacin" "M45 Table 2" "30μg" 17 14 FALSE +"CLSI 2016" "DISK" "Plesiomonas" 3 "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE "CLSI 2016" "MIC" "Plesiomonas" 3 "Amikacin" "M45 Table 2" 16 64 FALSE -"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" "30μg" 17 14 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" "30ug" 17 14 FALSE "CLSI 2016" "MIC" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" 16 64 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Amikacin" "Generic rules" "30μg" 17 14 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Amikacin" "Generic rules" "30μg" 16 64 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 17 14 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 16 64 FALSE "CLSI 2016" "MIC" "Aggregatibacter" 3 "Ampicillin" "M45 Table 7" 1 4 FALSE "CLSI 2016" "MIC" "Bacillus" 3 "Ampicillin" "M45 Table 3" 0.25 0.5 FALSE "CLSI 2016" "MIC" "Cardiobacterium" 3 "Ampicillin" "M45 Table 7" 1 4 FALSE "CLSI 2016" "MIC" "Eikenella" 3 "Ampicillin" "M45 Table 7" 1 4 FALSE -"CLSI 2016" "DISK" "Enterococcus" 3 "Ampicillin" "Table 2D" "10μg" 17 16 FALSE +"CLSI 2016" "DISK" "Enterococcus" 3 "Ampicillin" "Table 2D" "10ug" 17 16 FALSE "CLSI 2016" "MIC" "Enterococcus" 3 "Ampicillin" "Table 2D" 8 16 FALSE "CLSI 2016" "MIC" "Erysipelothrix rhusiopathiae" 2 "Ampicillin" "M45 Table 6" 0.25 2048 FALSE "CLSI 2016" "MIC" "Granulicatella" 3 "Ampicillin" "M45 Table 1" 0.25 8 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Ampicillin" "Table 2E" "10μg" 22 18 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Ampicillin" "Table 2E" "10ug" 22 18 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Ampicillin" "Table 2E" 1 4 FALSE "CLSI 2016" "MIC" "Leuconostoc" 3 "Ampicillin" "M45 Table 10" 8 2048 FALSE "CLSI 2016" "MIC" "Lactobacillus" 3 "Ampicillin" "M45 Table 9" 8 2048 FALSE "CLSI 2016" "MIC" "Listeria monocytogenes" 2 "Ampicillin" "M45 Table 11" 2 2048 FALSE "CLSI 2016" "MIC" "Neisseria meningitidis" 2 "Ampicillin" "Table 2I" 0.125 2 FALSE "CLSI 2016" "MIC" "Pediococcus" 3 "Ampicillin" "M45 Table 14" 8 2048 FALSE -"CLSI 2016" "DISK" "Pasteurella" 3 "Ampicillin" "M45 Table 13" "10μg" 27 6 FALSE +"CLSI 2016" "DISK" "Pasteurella" 3 "Ampicillin" "M45 Table 13" "10ug" 27 6 FALSE "CLSI 2016" "MIC" "Pasteurella" 3 "Ampicillin" "M45 Table 13" 0.5 2048 FALSE -"CLSI 2016" "DISK" "Streptococcus" 3 "Ampicillin" "Table 2H-1" "10μg" 24 6 FALSE +"CLSI 2016" "DISK" "Streptococcus" 3 "Ampicillin" "Table 2H-1" "10ug" 24 6 FALSE "CLSI 2016" "MIC" "Streptococcus" 3 "Ampicillin" "Table 2H-1" 0.25 2048 FALSE "CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Table 2H-2" 0.25 8 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Ampicillin" "Generic rules" "10μg" 17 13 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Ampicillin" "Generic rules" "2μg" 8 32 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Ampicillin" "Generic rules" "10ug" 17 13 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Ampicillin" "Generic rules" "2ug" 8 32 FALSE "CLSI 2016" "MIC" "Pasteurella" 3 "Amoxicillin" "M45 Table 13" 0.5 2048 FALSE "CLSI 2016" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Amoxicillin" "Table 2G" 2 8 FALSE -"CLSI 2016" "DISK" "Aeromonas" 3 "Aztreonam" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2016" "DISK" "Aeromonas" 3 "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2016" "MIC" "Aeromonas" 3 "Aztreonam" "M45 Table 2" 4 16 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Aztreonam" "Table 2B-5" 8 32 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Aztreonam" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Aztreonam" "Table 2E" "30ug" 26 6 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Aztreonam" "Table 2E" 2 2048 FALSE -"CLSI 2016" "DISK" "Plesiomonas" 3 "Aztreonam" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2016" "DISK" "Plesiomonas" 3 "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2016" "MIC" "Plesiomonas" 3 "Aztreonam" "M45 Table 2" 4 16 FALSE -"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" "30μg" 22 15 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" "30ug" 22 15 FALSE "CLSI 2016" "MIC" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" 8 32 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Aztreonam" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Aztreonam" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Azlocillin" "Generic rules" "75μg" 18 17 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Azlocillin" "Generic rules" "75μg" 64 128 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Azlocillin" "Generic rules" "75ug" 18 17 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Azlocillin" "Generic rules" "75ug" 64 128 FALSE "CLSI 2016" "MIC" "Aggregatibacter" 3 "Azithromycin" "M45 Table 7" 4 2048 FALSE "CLSI 2016" "MIC" "Cardiobacterium" 3 "Azithromycin" "M45 Table 7" 4 2048 FALSE "CLSI 2016" "MIC" "Eikenella" 3 "Azithromycin" "M45 Table 7" 4 2048 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Azithromycin" "Table 2E" "15μg" 12 6 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Azithromycin" "Table 2E" "15ug" 12 6 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Azithromycin" "Table 2E" 4 2048 FALSE "CLSI 2016" "MIC" "Kingella" 3 "Azithromycin" "M45 Table 7" 4 2048 FALSE -"CLSI 2016" "DISK" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 12" "15μg" 26 6 FALSE +"CLSI 2016" "DISK" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 12" "15ug" 26 6 FALSE "CLSI 2016" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 12" 0.25 2048 FALSE -"CLSI 2016" "DISK" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" "15μg" 20 6 FALSE +"CLSI 2016" "DISK" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" "15ug" 20 6 FALSE "CLSI 2016" "MIC" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" 2 2048 FALSE -"CLSI 2016" "DISK" "Pasteurella" 3 "Azithromycin" "M45 Table 13" "15μg" 20 6 FALSE +"CLSI 2016" "DISK" "Pasteurella" 3 "Azithromycin" "M45 Table 13" "15ug" 20 6 FALSE "CLSI 2016" "MIC" "Pasteurella" 3 "Azithromycin" "M45 Table 13" 1 2048 FALSE "CLSI 2016" "DISK" "Salmonella enterica" 2 "Azithromycin" "Table 2A" 13 12 FALSE "CLSI 2016" "MIC" "Salmonella enterica" 2 "Azithromycin" "Table 2A" 16 32 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Azithromycin" "Table 2C" "15μg" 18 13 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Azithromycin" "Table 2C" "15ug" 18 13 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Azithromycin" "Table 2C" 2 8 FALSE -"CLSI 2016" "DISK" "Streptococcus" 3 "Azithromycin" "Table 2H-1" "15μg" 18 13 FALSE +"CLSI 2016" "DISK" "Streptococcus" 3 "Azithromycin" "Table 2H-1" "15ug" 18 13 FALSE "CLSI 2016" "MIC" "Streptococcus" 3 "Azithromycin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" "15μg" 18 13 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" "15ug" 18 13 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" 0.5 2 FALSE -"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" "15μg" 18 13 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" "15ug" 18 13 FALSE "CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" 0.5 2 FALSE -"CLSI 2016" "MIC" "Vibrio cholerae" 2 "Azithromycin" "M45 Table 14" "30μg" 2 2048 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Azithromycin" "Generic rules" "15μg" 18 13 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Azithromycin" "Generic rules" "15μg" 2 8 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Cefetamet" "Table 2E" "10μg" 18 14 FALSE +"CLSI 2016" "MIC" "Vibrio cholerae" 2 "Azithromycin" "M45 Table 14" "30ug" 2 2048 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Azithromycin" "Generic rules" "15ug" 18 13 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Azithromycin" "Generic rules" "15ug" 2 8 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Cefetamet" "Table 2E" "10ug" 18 14 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Cefetamet" "Table 2E" 4 16 FALSE -"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Cefetamet" "Table 2F" "10μg" 29 6 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Cefetamet" "Table 2F" "10ug" 29 6 FALSE "CLSI 2016" "MIC" "Neisseria gonorrhoeae" 2 "Cefetamet" "Table 2F" 0.5 2048 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Cefetamet" "Generic rules" "10μg" 18 14 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Cefetamet" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2016" "DISK" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" "30μg" 18 14 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Cefetamet" "Generic rules" "10ug" 18 14 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Cefetamet" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2016" "DISK" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" "30ug" 18 14 FALSE "CLSI 2016" "MIC" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" 8 32 FALSE -"CLSI 2016" "DISK" "Aeromonas" 3 "Ceftazidime" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2016" "DISK" "Aeromonas" 3 "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2016" "MIC" "Aeromonas" 3 "Ceftazidime" "M45 Table 2" 4 16 FALSE "CLSI 2016" "MIC" "Bacillus" 3 "Ceftazidime" "M45 Table 3" 8 32 FALSE -"CLSI 2016" "DISK" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" "30μg" 21 17 FALSE +"CLSI 2016" "DISK" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" "30ug" 21 17 FALSE "CLSI 2016" "MIC" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" 8 32 FALSE "CLSI 2016" "MIC" "Burkholderia mallei" 2 "Ceftazidime" "M45 Table 16" 8 32 FALSE "CLSI 2016" "MIC" "Burkholderia pseudomallei" 2 "Ceftazidime" "M45 Table 16" 8 32 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Ceftazidime" "Table 2B-5" 8 32 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Ceftazidime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Ceftazidime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Ceftazidime" "Table 2E" 2 2048 FALSE "CLSI 2016" "MIC" "Moraxella catarrhalis" 2 "Ceftazidime" "M45 Table 12" 2 2048 FALSE -"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Ceftazidime" "Table 2F" "30μg" 31 6 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Ceftazidime" "Table 2F" "30ug" 31 6 FALSE "CLSI 2016" "MIC" "Neisseria gonorrhoeae" 2 "Ceftazidime" "Table 2F" 0.5 2048 FALSE -"CLSI 2016" "DISK" "Plesiomonas" 3 "Ceftazidime" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2016" "DISK" "Plesiomonas" 3 "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2016" "MIC" "Plesiomonas" 3 "Ceftazidime" "M45 Table 2" 4 16 FALSE -"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" "30μg" 18 14 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" "30ug" 18 14 FALSE "CLSI 2016" "MIC" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" 8 32 FALSE "CLSI 2016" "MIC" "Stenotrophomonas maltophilia" 2 "Ceftazidime" "Table 2B-4" 8 32 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Cefdinir" "Table 2E" "5μg" 20 6 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Cefdinir" "Table 2E" "5ug" 20 6 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Cefdinir" "Table 2E" 1 2048 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Cefdinir" "Table 2G" 0.5 2 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Cefdinir" "Generic rules" "5μg" 20 16 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Cefdinir" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Cefaclor" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Cefdinir" "Generic rules" "5ug" 20 16 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Cefdinir" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Cefaclor" "Table 2E" "30ug" 20 16 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Cefaclor" "Table 2E" 8 32 FALSE "CLSI 2016" "MIC" "Moraxella catarrhalis" 2 "Cefaclor" "M45 Table 12" 8 32 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" "Table 2G" 1 4 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Cefaclor" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Cefaclor" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Cefixime" "Table 2E" "5μg" 21 6 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Cefaclor" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Cefaclor" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Cefixime" "Table 2E" "5ug" 21 6 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Cefixime" "Table 2E" 1 2048 FALSE -"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" "5μg" 31 6 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" "5ug" 31 6 FALSE "CLSI 2016" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" 0.25 2048 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Cefixime" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Cefixime" "Generic rules" "5μg" 1 4 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 1 4 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Cefoperazone" "Table 2B-5" 16 64 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75μg" 21 15 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75μg" 16 64 FALSE -"CLSI 2016" "DISK" "Aeromonas" 3 "Chloramphenicol" "M45 Table 2" "30μg" 18 12 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75ug" 21 15 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75ug" 16 64 FALSE +"CLSI 2016" "DISK" "Aeromonas" 3 "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE "CLSI 2016" "MIC" "Aeromonas" 3 "Chloramphenicol" "M45 Table 2" 8 32 FALSE "CLSI 2016" "MIC" "Aggregatibacter" 3 "Chloramphenicol" "M45 Table 7" 4 16 FALSE "CLSI 2016" "MIC" "Bacillus" 3 "Chloramphenicol" "M45 Table 3" 8 32 FALSE "CLSI 2016" "MIC" "Burkholderia cepacia" 2 "Chloramphenicol" "Table 2B-3" 8 32 FALSE "CLSI 2016" "MIC" "Cardiobacterium" 3 "Chloramphenicol" "M45 Table 7" 4 16 FALSE "CLSI 2016" "MIC" "Eikenella" 3 "Chloramphenicol" "M45 Table 7" 4 16 FALSE -"CLSI 2016" "DISK" "Enterococcus" 3 "Chloramphenicol" "Table 2D" "30μg" 18 12 FALSE +"CLSI 2016" "DISK" "Enterococcus" 3 "Chloramphenicol" "Table 2D" "30ug" 18 12 FALSE "CLSI 2016" "MIC" "Enterococcus" 3 "Chloramphenicol" "Table 2D" 8 32 FALSE "CLSI 2016" "MIC" "Francisella tularensis tularensis" 1 "Chloramphenicol" "M45 Table 16" 8 2048 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Chloramphenicol" "Table 2B-5" 8 32 FALSE "CLSI 2016" "MIC" "Granulicatella" 3 "Chloramphenicol" "M45 Table 1" 4 8 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Chloramphenicol" "Table 2E" "30μg" 29 25 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Chloramphenicol" "Table 2E" "30ug" 29 25 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Chloramphenicol" "Table 2E" 2 8 FALSE "CLSI 2016" "MIC" "Kingella" 3 "Chloramphenicol" "M45 Table 7" 4 16 FALSE "CLSI 2016" "MIC" "Leuconostoc" 3 "Chloramphenicol" "M45 Table 10" 8 32 FALSE "CLSI 2016" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" "M45 Table 12" 2 8 FALSE -"CLSI 2016" "DISK" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" "30μg" 26 19 FALSE +"CLSI 2016" "DISK" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" "30ug" 26 19 FALSE "CLSI 2016" "MIC" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" 2 8 FALSE "CLSI 2016" "MIC" "Pediococcus" 3 "Chloramphenicol" "M45 Table 14" 8 32 FALSE -"CLSI 2016" "DISK" "Plesiomonas" 3 "Chloramphenicol" "M45 Table 2" "30μg" 18 12 FALSE +"CLSI 2016" "DISK" "Plesiomonas" 3 "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE "CLSI 2016" "MIC" "Plesiomonas" 3 "Chloramphenicol" "M45 Table 2" 8 32 FALSE -"CLSI 2016" "DISK" "Pasteurella" 3 "Chloramphenicol" "M45 Table 13" "30μg" 28 6 FALSE +"CLSI 2016" "DISK" "Pasteurella" 3 "Chloramphenicol" "M45 Table 13" "30ug" 28 6 FALSE "CLSI 2016" "MIC" "Pasteurella" 3 "Chloramphenicol" "M45 Table 13" 2 2048 FALSE "CLSI 2016" "MIC" "Stenotrophomonas maltophilia" 2 "Chloramphenicol" "Table 2B-4" 8 32 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" "30μg" 18 12 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" "30ug" 18 12 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" 8 32 FALSE -"CLSI 2016" "DISK" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" "30μg" 21 17 FALSE +"CLSI 2016" "DISK" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" "30ug" 21 17 FALSE "CLSI 2016" "MIC" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" 4 16 FALSE -"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" "30μg" 21 20 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" "30ug" 21 20 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" 4 8 FALSE -"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" "30μg" 21 17 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" "30ug" 21 17 FALSE "CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" 4 16 FALSE "CLSI 2016" "MIC" "Yersinia pestis" 2 "Chloramphenicol" "M45 Table 16" 8 32 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30μg" 18 12 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Cefonicid" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 18 12 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Cefonicid" "Table 2E" "30ug" 20 16 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Cefonicid" "Table 2E" 4 16 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Cefonicid" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Cefonicid" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100μg" 19 14 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100μg" 16 64 FALSE -"CLSI 2016" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" "5μg" 21 15 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Cefonicid" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Cefonicid" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100ug" 19 14 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100ug" 16 64 FALSE +"CLSI 2016" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" "5ug" 21 15 FALSE "CLSI 2016" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" 1 4 FALSE -"CLSI 2016" "DISK" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 2" "5μg" 21 15 FALSE +"CLSI 2016" "DISK" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE "CLSI 2016" "MIC" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 2" 1 4 FALSE "CLSI 2016" "MIC" "Aggregatibacter" 3 "Ciprofloxacin" "M45 Table 7" 1 4 FALSE "CLSI 2016" "MIC" "Bacillus" 3 "Ciprofloxacin" "M45 Table 3" 1 4 FALSE @@ -13802,102 +13802,102 @@ "CLSI 2016" "MIC" "Campylobacter" 3 "Ciprofloxacin" "M45 Table 3" 1 4 FALSE "CLSI 2016" "MIC" "Cardiobacterium" 3 "Ciprofloxacin" "M45 Table 7" 1 4 FALSE "CLSI 2016" "MIC" "Eikenella" 3 "Ciprofloxacin" "M45 Table 7" 1 4 FALSE -"CLSI 2016" "DISK" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" "5μg" 21 15 FALSE +"CLSI 2016" "DISK" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" "5ug" 21 15 FALSE "CLSI 2016" "MIC" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" 1 4 FALSE "CLSI 2016" "MIC" "Erysipelothrix rhusiopathiae" 2 "Ciprofloxacin" "M45 Table 6" 1 2048 FALSE "CLSI 2016" "MIC" "Francisella tularensis tularensis" 1 "Ciprofloxacin" "M45 Table 16" 0.5 2048 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Ciprofloxacin" "Table 2B-5" 1 4 FALSE "CLSI 2016" "MIC" "Granulicatella" 3 "Ciprofloxacin" "M45 Table 1" 1 4 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" "5μg" 21 6 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" "5ug" 21 6 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" 1 2048 FALSE "CLSI 2016" "MIC" "Kingella" 3 "Ciprofloxacin" "M45 Table 7" 1 4 FALSE "CLSI 2016" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M45 Table 12" 1 2048 FALSE -"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" "5μg" 41 27 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" "5ug" 41 27 FALSE "CLSI 2016" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" 0.064 1 FALSE -"CLSI 2016" "DISK" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" "5μg" 35 32 FALSE +"CLSI 2016" "DISK" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" "5ug" 35 32 FALSE "CLSI 2016" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" 0.032 0.12 FALSE -"CLSI 2016" "DISK" "Plesiomonas" 3 "Ciprofloxacin" "M45 Table 2" "5μg" 21 15 FALSE +"CLSI 2016" "DISK" "Plesiomonas" 3 "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE "CLSI 2016" "MIC" "Plesiomonas" 3 "Ciprofloxacin" "M45 Table 2" 1 4 FALSE -"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" "5μg" 21 15 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" "5ug" 21 15 FALSE "CLSI 2016" "MIC" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" 1 4 FALSE -"CLSI 2016" "DISK" "Extraintestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5μg" 31 20 FALSE -"CLSI 2016" "DISK" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5μg" 31 20 FALSE +"CLSI 2016" "DISK" "Extraintestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE +"CLSI 2016" "DISK" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE "CLSI 2016" "MIC" "Extraintestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" 0.064 1 FALSE "CLSI 2016" "MIC" "Salmonella" 3 "Ciprofloxacin" "Table 2A" 0.064 1 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" "5μg" 21 15 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" "5ug" 21 15 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" 1 4 FALSE "CLSI 2016" "MIC" "Yersinia pestis" 2 "Ciprofloxacin" "M45 Table 16" 0.25 2048 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5μg" 21 15 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5μg" 1 4 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 21 15 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 1 4 FALSE "CLSI 2016" "MIC" "Bacillus" 3 "Clindamycin" "M45 Table 3" 0.5 4 FALSE "CLSI 2016" "MIC" "Erysipelothrix rhusiopathiae" 2 "Clindamycin" "M45 Table 6" 0.25 1 FALSE "CLSI 2016" "MIC" "Granulicatella" 3 "Clindamycin" "M45 Table 1" 0.25 1 FALSE "CLSI 2016" "MIC" "Lactobacillus" 3 "Clindamycin" "M45 Table 9" 0.5 2 FALSE "CLSI 2016" "MIC" "Moraxella catarrhalis" 2 "Clindamycin" "M45 Table 12" 0.5 4 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Clindamycin" "Table 2C" "2μg" 21 14 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Clindamycin" "Table 2C" "2ug" 21 14 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Clindamycin" "Table 2C" 0.5 4 FALSE -"CLSI 2016" "DISK" "Streptococcus" 3 "Clindamycin" "Table 2H-1" "2μg" 19 15 FALSE +"CLSI 2016" "DISK" "Streptococcus" 3 "Clindamycin" "Table 2H-1" "2ug" 19 15 FALSE "CLSI 2016" "MIC" "Streptococcus" 3 "Clindamycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" "2μg" 19 15 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" "2ug" 19 15 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" 0.25 1 FALSE -"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" "2μg" 19 15 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" "2ug" 19 15 FALSE "CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Clindamycin" "Generic rules" "2μg" 21 14 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Clindamycin" "Generic rules" "2μg" 0.5 4 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Clindamycin" "Generic rules" "2ug" 21 14 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Clindamycin" "Generic rules" "2ug" 0.5 4 FALSE "CLSI 2016" "MIC" "Aggregatibacter" 3 "Clarithromycin" "M45 Table 7" 8 32 FALSE "CLSI 2016" "MIC" "Cardiobacterium" 3 "Clarithromycin" "M45 Table 7" 8 32 FALSE "CLSI 2016" "MIC" "Eikenella" 3 "Clarithromycin" "M45 Table 7" 8 32 FALSE "CLSI 2016" "MIC" "Helicobacter pylori" 2 "Clarithromycin" "M45 Table 8" 0.25 1 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Clarithromycin" "Table 2E" "15μg" 13 10 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Clarithromycin" "Table 2E" "15ug" 13 10 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Clarithromycin" "Table 2E" 8 32 FALSE "CLSI 2016" "MIC" "Kingella" 3 "Clarithromycin" "M45 Table 7" 8 32 FALSE -"CLSI 2016" "DISK" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 12" "15μg" 24 6 FALSE +"CLSI 2016" "DISK" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 12" "15ug" 24 6 FALSE "CLSI 2016" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 12" 1 2048 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Clarithromycin" "Table 2C" "15μg" 18 13 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Clarithromycin" "Table 2C" "15ug" 18 13 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Clarithromycin" "Table 2C" 2 8 FALSE -"CLSI 2016" "DISK" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" "15μg" 21 16 FALSE +"CLSI 2016" "DISK" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" "15ug" 21 16 FALSE "CLSI 2016" "MIC" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" "15μg" 21 16 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" "15ug" 21 16 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" 0.25 1 FALSE -"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" "15μg" 21 16 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" "15ug" 21 16 FALSE "CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15μg" 18 13 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15μg" 2 8 FALSE -"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Cefmetazole" "Table 2F" "30μg" 33 27 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15ug" 18 13 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15ug" 2 8 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Cefmetazole" "Table 2F" "30ug" 33 27 FALSE "CLSI 2016" "MIC" "Neisseria gonorrhoeae" 2 "Cefmetazole" "Table 2F" 2 8 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30μg" 16 64 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30ug" 16 64 FALSE "CLSI 2016" "MIC" "Acinetobacter" 3 "Colistin" "Table 2B-2" 2 4 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Colistin" "Table 2B-5" 2 8 FALSE -"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Colistin" "Table 2B-1" "10μg" 11 10 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Colistin" "Table 2B-1" "10ug" 11 10 FALSE "CLSI 2016" "MIC" "Pseudomonas aeruginosa" 2 "Colistin" "Table 2B-1" 2 8 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Colistin" "Generic rules" "10μg" 11 10 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Colistin" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Cefpodoxime" "Table 2E" "10μg" 21 6 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Colistin" "Generic rules" "10ug" 11 10 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Colistin" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Cefpodoxime" "Table 2E" "10ug" 21 6 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Cefpodoxime" "Table 2E" 2 2048 FALSE -"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" "10μg" 29 6 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" "10ug" 29 6 FALSE "CLSI 2016" "MIC" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" 0.5 2048 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" "Table 2G" 0.5 2 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10μg" 21 17 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Cefprozil" "Table 2E" "30μg" 18 14 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 21 17 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Cefprozil" "Table 2E" "30ug" 18 14 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Cefprozil" "Table 2E" 8 32 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Cefprozil" "Table 2G" 2 8 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Cefprozil" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Cefprozil" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2016" "DISK" "Haemophilus influenzae" 2 "Ceftaroline" "Table 2E" "30μg" 30 6 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Cefprozil" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Cefprozil" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2016" "DISK" "Haemophilus influenzae" 2 "Ceftaroline" "Table 2E" "30ug" 30 6 FALSE "CLSI 2016" "MIC" "Haemophilus influenzae" 2 "Ceftaroline" "Table 2E" 0.5 2048 FALSE -"CLSI 2016" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Table 2C" "30μg" 24 20 FALSE +"CLSI 2016" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Table 2C" "30ug" 24 20 FALSE "CLSI 2016" "MIC" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Table 2C" 1 4 FALSE -"CLSI 2016" "DISK" "Streptococcus" 3 "Ceftaroline" "Table 2H-1" "30μg" 26 6 FALSE +"CLSI 2016" "DISK" "Streptococcus" 3 "Ceftaroline" "Table 2H-1" "30ug" 26 6 FALSE "CLSI 2016" "MIC" "Streptococcus" 3 "Ceftaroline" "Table 2H-1" 0.5 2048 FALSE "CLSI 2016" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Ceftaroline" "Table 2G" 0.5 2048 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30μg" 0.5 2 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30ug" 0.5 2 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Carbenicillin" "Table 2B-5" 16 64 FALSE -"CLSI 2016" "DISK" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" "30μg" 21 13 FALSE +"CLSI 2016" "DISK" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" "30ug" 21 13 FALSE "CLSI 2016" "MIC" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" 8 64 FALSE -"CLSI 2016" "DISK" "Aeromonas" 3 "Ceftriaxone" "M45 Table 2" "30μg" 23 19 FALSE +"CLSI 2016" "DISK" "Aeromonas" 3 "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE "CLSI 2016" "MIC" "Aeromonas" 3 "Ceftriaxone" "M45 Table 2" 1 4 FALSE "CLSI 2016" "MIC" "Aggregatibacter" 3 "Ceftriaxone" "M45 Table 7" 2 2048 FALSE "CLSI 2016" "MIC" "Bacillus" 3 "Ceftriaxone" "M45 Table 3" 8 64 FALSE @@ -13906,37 +13906,37 @@ "CLSI 2016" "MIC" "Erysipelothrix rhusiopathiae" 2 "Ceftriaxone" "M45 Table 6" 1 2048 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Ceftriaxone" "Table 2B-5" 8 64 FALSE "CLSI 2016" "MIC" "Granulicatella" 3 "Ceftriaxone" "M45 Table 1" 1 4 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Ceftriaxone" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Ceftriaxone" "Table 2E" "30ug" 26 6 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Ceftriaxone" "Table 2E" 2 2048 FALSE "CLSI 2016" "MIC" "Kingella" 3 "Ceftriaxone" "M45 Table 7" 2 2048 FALSE "CLSI 2016" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" "M45 Table 12" 2 2048 FALSE -"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" "30μg" 35 6 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" "30ug" 35 6 FALSE "CLSI 2016" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" 0.25 2048 FALSE -"CLSI 2016" "DISK" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" "30μg" 34 6 FALSE +"CLSI 2016" "DISK" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" "30ug" 34 6 FALSE "CLSI 2016" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" 0.125 2048 FALSE -"CLSI 2016" "DISK" "Plesiomonas" 3 "Ceftriaxone" "M45 Table 2" "30μg" 23 19 FALSE +"CLSI 2016" "DISK" "Plesiomonas" 3 "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE "CLSI 2016" "MIC" "Plesiomonas" 3 "Ceftriaxone" "M45 Table 2" 1 4 FALSE -"CLSI 2016" "DISK" "Pasteurella" 3 "Ceftriaxone" "M45 Table 13" "30μg" 34 6 FALSE +"CLSI 2016" "DISK" "Pasteurella" 3 "Ceftriaxone" "M45 Table 13" "30ug" 34 6 FALSE "CLSI 2016" "MIC" "Pasteurella" 3 "Ceftriaxone" "M45 Table 13" 0.125 2048 FALSE -"CLSI 2016" "DISK" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2016" "DISK" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2016" "MIC" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" 0.5 2048 FALSE "CLSI 2016" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Table 2G" 0.5 2 FALSE "CLSI 2016" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Table 2G" 1 4 FALSE -"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" "30μg" 27 24 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" "30ug" 27 24 FALSE "CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" 1 4 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30μg" 1 4 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Ceftibuten" "Table 2E" "30μg" 28 6 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 1 4 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Ceftibuten" "Table 2E" "30ug" 28 6 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Ceftibuten" "Table 2E" 2 2048 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" "30μg" 26 19 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" "30ug" 26 19 FALSE "CLSI 2016" "MIC" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" 2 8 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Cefotetan" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Cefotetan" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2016" "DISK" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" "30μg" 23 14 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Cefotetan" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Cefotetan" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2016" "DISK" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" "30ug" 23 14 FALSE "CLSI 2016" "MIC" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" 8 64 FALSE -"CLSI 2016" "DISK" "Aeromonas" 3 "Cefotaxime" "M45 Table 2" "30μg" 26 22 FALSE +"CLSI 2016" "DISK" "Aeromonas" 3 "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE "CLSI 2016" "MIC" "Aeromonas" 3 "Cefotaxime" "M45 Table 2" 1 4 FALSE "CLSI 2016" "MIC" "Aggregatibacter" 3 "Cefotaxime" "M45 Table 7" 2 2048 FALSE "CLSI 2016" "MIC" "Bacillus" 3 "Cefotaxime" "M45 Table 3" 8 64 FALSE @@ -13945,248 +13945,248 @@ "CLSI 2016" "MIC" "Erysipelothrix rhusiopathiae" 2 "Cefotaxime" "M45 Table 6" 1 2048 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Cefotaxime" "Table 2B-5" 8 64 FALSE "CLSI 2016" "MIC" "Granulicatella" 3 "Cefotaxime" "M45 Table 1" 1 4 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Cefotaxime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Cefotaxime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Cefotaxime" "Table 2E" 2 2048 FALSE "CLSI 2016" "MIC" "Kingella" 3 "Cefotaxime" "M45 Table 7" 2 2048 FALSE "CLSI 2016" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" "M45 Table 12" 2 2048 FALSE -"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" "30μg" 31 6 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" "30ug" 31 6 FALSE "CLSI 2016" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" 0.5 2048 FALSE -"CLSI 2016" "DISK" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" "30μg" 34 6 FALSE +"CLSI 2016" "DISK" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" "30ug" 34 6 FALSE "CLSI 2016" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" 0.125 2048 FALSE -"CLSI 2016" "DISK" "Plesiomonas" 3 "Cefotaxime" "M45 Table 2" "30μg" 26 22 FALSE +"CLSI 2016" "DISK" "Plesiomonas" 3 "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE "CLSI 2016" "MIC" "Plesiomonas" 3 "Cefotaxime" "M45 Table 2" 1 4 FALSE -"CLSI 2016" "DISK" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2016" "DISK" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2016" "MIC" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" 0.5 2048 FALSE "CLSI 2016" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Cefotaxime" "Table 2G" 0.5 2 FALSE "CLSI 2016" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Cefotaxime" "Table 2G" 1 4 FALSE -"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" "30μg" 28 25 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" "30ug" 28 25 FALSE "CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" 1 4 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30μg" 26 22 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30μg" 1 4 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30ug" 26 22 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30ug" 1 4 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" "30ug" 20 16 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" 4 16 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Cefuroxime axetil" "Table 2G" 1 4 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30μg" 23 14 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30μg" 4 32 FALSE -"CLSI 2016" "DISK" "Aeromonas" 3 "Cefuroxime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 23 14 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 4 32 FALSE +"CLSI 2016" "DISK" "Aeromonas" 3 "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2016" "MIC" "Aeromonas" 3 "Cefuroxime" "M45 Table 2" 8 32 FALSE -"CLSI 2016" "DISK" "Oral" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30μg" 20 16 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2016" "DISK" "Oral" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE "CLSI 2016" "MIC" "Oral" "Haemophilus" 3 "Cefuroxime" "Table 2E" 4 16 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Cefuroxime" "Table 2E" 4 16 FALSE "CLSI 2016" "MIC" "Moraxella catarrhalis" 2 "Cefuroxime" "M45 Table 12" 4 16 FALSE -"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Cefuroxime" "Table 2F" "30μg" 31 25 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Cefuroxime" "Table 2F" "30ug" 31 25 FALSE "CLSI 2016" "MIC" "Neisseria gonorrhoeae" 2 "Cefuroxime" "Table 2F" 1 4 FALSE -"CLSI 2016" "DISK" "Plesiomonas" 3 "Cefuroxime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2016" "DISK" "Plesiomonas" 3 "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2016" "MIC" "Plesiomonas" 3 "Cefuroxime" "M45 Table 2" 8 32 FALSE "CLSI 2016" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Table 2G" 1 4 FALSE "CLSI 2016" "MIC" "Parenteral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Table 2G" 0.5 2 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30μg" 8 32 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 8 32 FALSE "CLSI 2016" "DISK" "Urine" "Enterobacterales" 5 "Cefazolin" "Table 2A" 15 14 TRUE "CLSI 2016" "MIC" "Urine" "Enterobacterales" 5 "Cefazolin" "Table 2A" 16 32 TRUE "CLSI 2016" "MIC" "Aeromonas" 3 "Cefazolin" "M45 Table 2" 1 4 FALSE "CLSI 2016" "MIC" "Bacillus" 3 "Cefazolin" "M45 Table 3" 8 16 FALSE "CLSI 2016" "MIC" "Plesiomonas" 3 "Cefazolin" "M45 Table 2" 1 4 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Cefazolin" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Cefazolin" "Generic rules" "30μg" 2 8 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Cefazolin" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Cefazolin" "Generic rules" "30ug" 2 8 FALSE "CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Ceftolozane/tazobactam" "30/10" 21 16 FALSE "CLSI 2016" "MIC" "Pseudomonas aeruginosa" 2 "Ceftolozane/tazobactam" 4 16 FALSE "CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftolozane/tazobactam" "Table 2H-2" 8 32 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Ceftolozane/tazobactam" "Generic rules" "30/10μg" 2 8 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Ceftolozane/tazobactam" "Generic rules" "30/10ug" 2 8 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Ceftizoxime" "Table 2B-5" 8 64 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Ceftizoxime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Ceftizoxime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Ceftizoxime" "Table 2E" 2 2048 FALSE -"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" "30μg" 38 6 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" "30ug" 38 6 FALSE "CLSI 2016" "MIC" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" 0.5 2048 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30μg" 25 21 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30μg" 1 4 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30ug" 25 21 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30ug" 1 4 FALSE "CLSI 2016" "MIC" "Enterococcus" 3 "Daptomycin" "Table 2D" 4 2048 FALSE "CLSI 2016" "MIC" "Lactobacillus" 3 "Daptomycin" "M45 Table 9" 4 2048 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Daptomycin" "Table 2C" 1 2048 FALSE -"CLSI 2016" "DISK" "Streptococcus" 3 "Daptomycin" "Table 2H-1" "30μg" 16 6 FALSE +"CLSI 2016" "DISK" "Streptococcus" 3 "Daptomycin" "Table 2H-1" "30ug" 16 6 FALSE "CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Daptomycin" "Table 2H-2" 1 2048 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Daptomycin" "Generic rules" "30μg" 1 2048 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Difloxacin" "Generic rules" "10μg" 21 17 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Difloxacin" "Generic rules" "10μg" 0.5 4 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Dirithromycin" "Table 2C" "15μg" 19 15 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Daptomycin" "Generic rules" "30ug" 1 2048 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Difloxacin" "Generic rules" "10ug" 21 17 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Difloxacin" "Generic rules" "10ug" 0.5 4 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Dirithromycin" "Table 2C" "15ug" 19 15 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Dirithromycin" "Table 2C" 2 8 FALSE -"CLSI 2016" "DISK" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" "15μg" 18 13 FALSE +"CLSI 2016" "DISK" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" "15ug" 18 13 FALSE "CLSI 2016" "MIC" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" "15μg" 18 13 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" "15ug" 18 13 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" 0.5 2 FALSE -"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" "15μg" 18 13 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" "15ug" 18 13 FALSE "CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" 0.5 2 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15μg" 19 15 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15μg" 2 8 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15ug" 19 15 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15ug" 2 8 FALSE "CLSI 2016" "DISK" "Acinetobacter" 3 "Doripenem" "Table 2B-2" 18 14 FALSE "CLSI 2016" "MIC" "Acinetobacter" 3 "Doripenem" "Table 2B-2" 2 8 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Doripenem" "Table 2E" "10μg" 16 6 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Doripenem" "Table 2E" "10ug" 16 6 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Doripenem" "Table 2E" 1 2048 FALSE -"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2016" "MIC" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" 2 8 FALSE "CLSI 2016" "MIC" "Streptococcus" 3 "Doripenem" "Table 2H-1" 0.125 2048 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" "Table 2G" 1 2048 FALSE "CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" "Table 2H-2" 1 2048 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Doripenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Doripenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2016" "DISK" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" "30μg" 13 9 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Doripenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Doripenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2016" "DISK" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" "30ug" 13 9 FALSE "CLSI 2016" "MIC" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" 4 16 FALSE "CLSI 2016" "MIC" "Bacillus anthracis" 2 "Doxycycline" "M45 Table 16" 1 2048 FALSE "CLSI 2016" "MIC" "Brucella" 3 "Doxycycline" "M45 Table 16" 1 2048 FALSE "CLSI 2016" "MIC" "Burkholderia mallei" 2 "Doxycycline" "M45 Table 16" 4 16 FALSE "CLSI 2016" "MIC" "Burkholderia pseudomallei" 2 "Doxycycline" "M45 Table 16" 4 16 FALSE "CLSI 2016" "MIC" "Campylobacter" 3 "Doxycycline" "M45 Table 3" 2 8 FALSE -"CLSI 2016" "DISK" "Enterococcus" 3 "Doxycycline" "Table 2D" "30μg" 16 12 FALSE +"CLSI 2016" "DISK" "Enterococcus" 3 "Doxycycline" "Table 2D" "30ug" 16 12 FALSE "CLSI 2016" "MIC" "Enterococcus" 3 "Doxycycline" "Table 2D" 4 16 FALSE "CLSI 2016" "MIC" "Francisella tularensis tularensis" 1 "Doxycycline" "M45 Table 16" 4 2048 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Doxycycline" "Table 2B-5" 4 16 FALSE -"CLSI 2016" "DISK" "Pasteurella" 3 "Doxycycline" "M45 Table 13" "30μg" 23 6 FALSE +"CLSI 2016" "DISK" "Pasteurella" 3 "Doxycycline" "M45 Table 13" "30ug" 23 6 FALSE "CLSI 2016" "MIC" "Pasteurella" 3 "Doxycycline" "M45 Table 13" 0.5 2048 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Doxycycline" "Table 2C" "30μg" 16 12 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Doxycycline" "Table 2C" "30ug" 16 12 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Doxycycline" "Table 2C" 4 16 FALSE -"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Doxycycline" "Table 2G" "30μg" 28 24 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Doxycycline" "Table 2G" "30ug" 28 24 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" "Table 2G" 0.25 1 FALSE -"CLSI 2016" "MIC" "Vibrio cholerae" 2 "Doxycycline" "M45 Table 14" "30μg" 4 16 FALSE +"CLSI 2016" "MIC" "Vibrio cholerae" 2 "Doxycycline" "M45 Table 14" "30ug" 4 16 FALSE "CLSI 2016" "MIC" "Yersinia pestis" 2 "Doxycycline" "M45 Table 16" 4 16 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Doxycycline" "Generic rules" "30μg" 14 10 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Doxycycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2016" "DISK" "Histophilus somni" 2 "Enrofloxacin" "Vet Table" "5μg" 21 16 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Doxycycline" "Generic rules" "30ug" 14 10 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Doxycycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2016" "DISK" "Histophilus somni" 2 "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE "CLSI 2016" "MIC" "Histophilus somni" 2 "Enrofloxacin" "Vet Table" 0.25 2 FALSE -"CLSI 2016" "DISK" "Providencia heimbachae" 2 "Enrofloxacin" "Vet Table" "5μg" 21 16 FALSE -"CLSI 2016" "DISK" "Pasteurella multocida multocida" 1 "Enrofloxacin" "Vet Table" "5μg" 21 16 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5μg" 23 16 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5μg" 0.25 2 FALSE -"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Enoxacin" "Table 2F" "10μg" 36 31 FALSE +"CLSI 2016" "DISK" "Providencia heimbachae" 2 "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2016" "DISK" "Pasteurella multocida multocida" 1 "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5ug" 23 16 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5ug" 0.25 2 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Enoxacin" "Table 2F" "10ug" 36 31 FALSE "CLSI 2016" "MIC" "Neisseria gonorrhoeae" 2 "Enoxacin" "Table 2F" 0.5 2 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Enoxacin" "Table 2C" "10μg" 18 14 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Enoxacin" "Table 2C" "10ug" 18 14 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Enoxacin" "Table 2C" 2 8 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Enoxacin" "Generic rules" "10μg" 18 14 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Enoxacin" "Generic rules" "10μg" 2 8 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Enoxacin" "Generic rules" "10ug" 18 14 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Enoxacin" "Generic rules" "10ug" 2 8 FALSE "CLSI 2016" "MIC" "Bacillus" 3 "Erythromycin" "M45 Table 3" 0.5 8 FALSE "CLSI 2016" "MIC" "Campylobacter" 3 "Erythromycin" "M45 Table 3" 8 32 FALSE -"CLSI 2016" "DISK" "Enterococcus" 3 "Erythromycin" "Table 2D" "15μg" 23 13 FALSE +"CLSI 2016" "DISK" "Enterococcus" 3 "Erythromycin" "Table 2D" "15ug" 23 13 FALSE "CLSI 2016" "MIC" "Enterococcus" 3 "Erythromycin" "Table 2D" 0.5 8 FALSE "CLSI 2016" "MIC" "Erysipelothrix rhusiopathiae" 2 "Erythromycin" "M45 Table 6" 0.25 1 FALSE "CLSI 2016" "MIC" "Granulicatella" 3 "Erythromycin" "M45 Table 1" 0.25 1 FALSE "CLSI 2016" "MIC" "Lactobacillus" 3 "Erythromycin" "M45 Table 9" 0.5 8 FALSE -"CLSI 2016" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 12" "15μg" 21 6 FALSE +"CLSI 2016" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 12" "15ug" 21 6 FALSE "CLSI 2016" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 12" 2 2048 FALSE -"CLSI 2016" "DISK" "Pasteurella" 3 "Erythromycin" "M45 Table 13" "15μg" 27 24 FALSE +"CLSI 2016" "DISK" "Pasteurella" 3 "Erythromycin" "M45 Table 13" "15ug" 27 24 FALSE "CLSI 2016" "MIC" "Pasteurella" 3 "Erythromycin" "M45 Table 13" 0.5 2 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Erythromycin" "Table 2C" "15μg" 23 13 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Erythromycin" "Table 2C" "15ug" 23 13 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Erythromycin" "Table 2C" 0.5 8 FALSE -"CLSI 2016" "DISK" "Streptococcus" 3 "Erythromycin" "Table 2H-1" "15μg" 21 15 FALSE +"CLSI 2016" "DISK" "Streptococcus" 3 "Erythromycin" "Table 2H-1" "15ug" 21 15 FALSE "CLSI 2016" "MIC" "Streptococcus" 3 "Erythromycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" "15μg" 21 15 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" "15ug" 21 15 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" 0.25 1 FALSE -"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" "15μg" 21 15 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" "15ug" 21 15 FALSE "CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Erythromycin" "Generic rules" "15μg" 23 13 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Erythromycin" "Generic rules" "15μg" 0.5 8 FALSE -"CLSI 2016" "DISK" "Aeromonas" 3 "Ertapenem" "M45 Table 2" "10μg" 19 15 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Erythromycin" "Generic rules" "15ug" 23 13 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Erythromycin" "Generic rules" "15ug" 0.5 8 FALSE +"CLSI 2016" "DISK" "Aeromonas" 3 "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE "CLSI 2016" "MIC" "Aeromonas" 3 "Ertapenem" "M45 Table 2" 2 8 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Ertapenem" "Table 2E" "10μg" 19 6 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Ertapenem" "Table 2E" "10ug" 19 6 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Ertapenem" "Table 2E" 0.5 2048 FALSE -"CLSI 2016" "DISK" "Plesiomonas" 3 "Ertapenem" "M45 Table 2" "10μg" 19 15 FALSE +"CLSI 2016" "DISK" "Plesiomonas" 3 "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE "CLSI 2016" "MIC" "Plesiomonas" 3 "Ertapenem" "M45 Table 2" 2 8 FALSE "CLSI 2016" "MIC" "Streptococcus" 3 "Ertapenem" "Table 2H-1" 1 2048 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" "Table 2G" 1 4 FALSE "CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "Table 2H-2" 1 2048 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Ertapenem" "Generic rules" "10μg" 22 18 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Ertapenem" "Generic rules" "10μg" 0.5 2 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "5-fluorocytosine" "Generic rules" "10μg" 4 32 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 22 18 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 0.5 2 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "5-fluorocytosine" "Generic rules" "10ug" 4 32 FALSE "CLSI 2016" "MIC" "Abiotrophia" 3 "Cefepime" "M45 Table 1" 1 4 FALSE -"CLSI 2016" "DISK" "Acinetobacter" 3 "Cefepime" "Table 2B-2" "30μg" 18 14 FALSE +"CLSI 2016" "DISK" "Acinetobacter" 3 "Cefepime" "Table 2B-2" "30ug" 18 14 FALSE "CLSI 2016" "MIC" "Acinetobacter" 3 "Cefepime" "Table 2B-2" 8 32 FALSE -"CLSI 2016" "DISK" "Aeromonas" 3 "Cefepime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2016" "DISK" "Aeromonas" 3 "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2016" "MIC" "Aeromonas" 3 "Cefepime" "M45 Table 2" 8 32 FALSE "CLSI 2016" "MIC" "Erysipelothrix rhusiopathiae" 2 "Cefepime" "M45 Table 6" 1 2048 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Cefepime" "Table 2B-5" 8 32 FALSE "CLSI 2016" "MIC" "Granulicatella" 3 "Cefepime" "M45 Table 1" 1 4 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Cefepime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Cefepime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Cefepime" "Table 2E" 2 2048 FALSE -"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" "30μg" 31 6 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" "30ug" 31 6 FALSE "CLSI 2016" "MIC" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" 0.5 2048 FALSE -"CLSI 2016" "DISK" "Plesiomonas" 3 "Cefepime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2016" "DISK" "Plesiomonas" 3 "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2016" "MIC" "Plesiomonas" 3 "Cefepime" "M45 Table 2" 8 32 FALSE -"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" "30μg" 18 14 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" "30ug" 18 14 FALSE "CLSI 2016" "MIC" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" 8 32 FALSE -"CLSI 2016" "DISK" "Streptococcus" 3 "Cefepime" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2016" "DISK" "Streptococcus" 3 "Cefepime" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2016" "MIC" "Streptococcus" 3 "Cefepime" "Table 2H-1" 0.5 2048 FALSE "CLSI 2016" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Cefepime" "Table 2G" 0.5 2 FALSE "CLSI 2016" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Cefepime" "Table 2G" 1 4 FALSE -"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" "30μg" 24 21 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" "30ug" 24 21 FALSE "CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" 1 4 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Cefepime" "Generic rules" "30μg" 25 18 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Cefepime" "Generic rules" "30μg" 2 16 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Fleroxacin" "Table 2E" "5μg" 19 6 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 25 18 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 2 16 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Fleroxacin" "Table 2E" "5ug" 19 6 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Fleroxacin" "Table 2E" 2 2048 FALSE -"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Fleroxacin" "Table 2F" "5μg" 35 28 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Fleroxacin" "Table 2F" "5ug" 35 28 FALSE "CLSI 2016" "MIC" "Neisseria gonorrhoeae" 2 "Fleroxacin" "Table 2F" 0.25 1 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Fleroxacin" "Table 2C" "5μg" 19 15 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Fleroxacin" "Table 2C" "5ug" 19 15 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Fleroxacin" "Table 2C" 2 8 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Florfenicol" "Generic rules" "30μg" 19 14 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Florfenicol" "Generic rules" "30μg" 2 8 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Fluconazole" "Generic rules" "25μg" 19 14 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Fluconazole" "Generic rules" "25μg" 8 64 FALSE -"CLSI 2016" "DISK" "Enterococcus" 3 "Fosfomycin" "Table 2D" "200μg" 16 12 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Florfenicol" "Generic rules" "30ug" 19 14 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Florfenicol" "Generic rules" "30ug" 2 8 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Fluconazole" "Generic rules" "25ug" 19 14 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Fluconazole" "Generic rules" "25ug" 8 64 FALSE +"CLSI 2016" "DISK" "Enterococcus" 3 "Fosfomycin" "Table 2D" "200ug" 16 12 FALSE "CLSI 2016" "MIC" "Enterococcus" 3 "Fosfomycin" "Table 2D" 64 256 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200μg" 16 12 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200μg" 64 256 FALSE -"CLSI 2016" "DISK" "Aeromonas" 3 "Cefoxitin" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200ug" 16 12 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200ug" 64 256 FALSE +"CLSI 2016" "DISK" "Aeromonas" 3 "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2016" "MIC" "Aeromonas" 3 "Cefoxitin" "M45 Table 2" 8 32 FALSE -"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" "30μg" 28 23 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" "30ug" 28 23 FALSE "CLSI 2016" "MIC" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" 2 8 FALSE -"CLSI 2016" "DISK" "Plesiomonas" 3 "Cefoxitin" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2016" "DISK" "Plesiomonas" 3 "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2016" "MIC" "Plesiomonas" 3 "Cefoxitin" "M45 Table 2" 8 32 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Cefoxitin" "Table 2C" "30μg" 25 24 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Cefoxitin" "Table 2C" "30ug" 25 24 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2016" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" "30μg" 22 21 FALSE +"CLSI 2016" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE "CLSI 2016" "MIC" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2016" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" "30μg" 22 21 FALSE +"CLSI 2016" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE "CLSI 2016" "MIC" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30μg" 8 32 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30ug" 8 32 FALSE "CLSI 2016" "MIC" "Abiotrophia" 3 "Gatifloxacin" "M45 Table 1" 1 4 FALSE -"CLSI 2016" "DISK" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" "5μg" 18 14 FALSE +"CLSI 2016" "DISK" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" "5ug" 18 14 FALSE "CLSI 2016" "MIC" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" 2 8 FALSE -"CLSI 2016" "DISK" "Enterococcus" 3 "Gatifloxacin" "Table 2D" "5μg" 18 14 FALSE +"CLSI 2016" "DISK" "Enterococcus" 3 "Gatifloxacin" "Table 2D" "5ug" 18 14 FALSE "CLSI 2016" "MIC" "Enterococcus" 3 "Gatifloxacin" "Table 2D" 2 8 FALSE "CLSI 2016" "MIC" "Erysipelothrix rhusiopathiae" 2 "Gatifloxacin" "M45 Table 6" 1 2048 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Gatifloxacin" "Table 2B-5" 2 8 FALSE "CLSI 2016" "MIC" "Granulicatella" 3 "Gatifloxacin" "M45 Table 1" 1 4 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Gatifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Gatifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Gatifloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" "5μg" 38 33 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" "5ug" 38 33 FALSE "CLSI 2016" "MIC" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" 0.125 0.5 FALSE -"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" "5μg" 18 14 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" "5ug" 18 14 FALSE "CLSI 2016" "MIC" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" 2 8 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" "10μg" 23 19 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" "10ug" 23 19 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2016" "DISK" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" "5μg" 21 17 FALSE +"CLSI 2016" "DISK" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" "5ug" 21 17 FALSE "CLSI 2016" "MIC" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" 1 4 FALSE -"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" "5μg" 21 17 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" "5ug" 21 17 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" 1 4 FALSE -"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" "5μg" 21 17 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" "5ug" 21 17 FALSE "CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" 1 4 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5μg" 18 14 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2016" "DISK" "Enterococcus" 3 "Gentamicin-high" "Table 2D" "120μg" 10 6 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5ug" 18 14 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2016" "DISK" "Enterococcus" 3 "Gentamicin-high" "Table 2D" "120ug" 10 6 FALSE "CLSI 2016" "MIC" "Enterococcus" 3 "Gentamicin-high" "Table 2D" 512 560 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120μg" 10 6 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120μg" 512 560 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Gemifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120ug" 10 6 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120ug" 512 560 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Gemifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Gemifloxacin" "Table 2E" 0.125 2048 FALSE -"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" "5μg" 23 19 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" "5ug" 23 19 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" 0.125 0.5 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5μg" 20 15 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5μg" 0.25 1 FALSE -"CLSI 2016" "DISK" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" "10μg" 15 12 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5ug" 20 15 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5ug" 0.25 1 FALSE +"CLSI 2016" "DISK" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" "10ug" 15 12 FALSE "CLSI 2016" "MIC" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" 4 16 FALSE -"CLSI 2016" "DISK" "Aeromonas" 3 "Gentamicin" "M45 Table 2" "10μg" 15 12 FALSE +"CLSI 2016" "DISK" "Aeromonas" 3 "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE "CLSI 2016" "MIC" "Aeromonas" 3 "Gentamicin" "M45 Table 2" 4 16 FALSE "CLSI 2016" "MIC" "Bacillus" 3 "Gentamicin" "M45 Table 3" 4 16 FALSE "CLSI 2016" "MIC" "Brucella" 3 "Gentamicin" "M45 Table 16" 4 2048 FALSE @@ -14196,33 +14196,33 @@ "CLSI 2016" "MIC" "Leuconostoc" 3 "Gentamicin" "M45 Table 10" 4 16 FALSE "CLSI 2016" "MIC" "Lactobacillus" 3 "Gentamicin" "M45 Table 9" 4 16 FALSE "CLSI 2016" "MIC" "Pediococcus" 3 "Gentamicin" "M45 Table 14" 4 16 FALSE -"CLSI 2016" "DISK" "Plesiomonas" 3 "Gentamicin" "M45 Table 2" "10μg" 15 12 FALSE +"CLSI 2016" "DISK" "Plesiomonas" 3 "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE "CLSI 2016" "MIC" "Plesiomonas" 3 "Gentamicin" "M45 Table 2" 4 16 FALSE -"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" "10μg" 15 12 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" "10ug" 15 12 FALSE "CLSI 2016" "MIC" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" 4 16 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Gentamicin" "Table 2C" "10μg" 15 12 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Gentamicin" "Table 2C" "10ug" 15 12 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Gentamicin" "Table 2C" 4 16 FALSE "CLSI 2016" "MIC" "Yersinia pestis" 2 "Gentamicin" "M45 Table 16" 4 16 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Gentamicin" "Generic rules" "10μg" 15 12 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Gentamicin" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Grepafloxacin" "Table 2E" "5μg" 24 6 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 15 12 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Grepafloxacin" "Table 2E" "5ug" 24 6 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Grepafloxacin" "Table 2E" 0.5 2048 FALSE -"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" "5μg" 37 27 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" "5ug" 37 27 FALSE "CLSI 2016" "MIC" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" 0.064 1 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" "5μg" 18 14 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" "5ug" 18 14 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" 1 4 FALSE -"CLSI 2016" "DISK" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" "5μg" 19 15 FALSE +"CLSI 2016" "DISK" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" "5ug" 19 15 FALSE "CLSI 2016" "MIC" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" "5μg" 19 15 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" "5ug" 19 15 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" 0.5 2 FALSE -"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" "5μg" 19 15 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" "5ug" 19 15 FALSE "CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" 0.5 2 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5μg" 18 14 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5μg" 1 4 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5ug" 18 14 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5ug" 1 4 FALSE "CLSI 2016" "MIC" "Abiotrophia" 3 "Imipenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2016" "DISK" "Acinetobacter" 3 "Imipenem" "Table 2B-2" "10μg" 22 18 FALSE +"CLSI 2016" "DISK" "Acinetobacter" 3 "Imipenem" "Table 2B-2" "10ug" 22 18 FALSE "CLSI 2016" "MIC" "Acinetobacter" 3 "Imipenem" "Table 2B-2" 2 8 FALSE -"CLSI 2016" "DISK" "Aeromonas" 3 "Imipenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2016" "DISK" "Aeromonas" 3 "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2016" "MIC" "Aeromonas" 3 "Imipenem" "M45 Table 2" 4 16 FALSE "CLSI 2016" "MIC" "Aggregatibacter" 3 "Imipenem" "M45 Table 7" 4 16 FALSE "CLSI 2016" "MIC" "Bacillus" 3 "Imipenem" "M45 Table 3" 4 16 FALSE @@ -14233,56 +14233,56 @@ "CLSI 2016" "MIC" "Erysipelothrix rhusiopathiae" 2 "Imipenem" "M45 Table 6" 0.5 2048 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Imipenem" "Table 2B-5" 4 16 FALSE "CLSI 2016" "MIC" "Granulicatella" 3 "Imipenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Imipenem" "Table 2E" "10μg" 16 6 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Imipenem" "Table 2E" "10ug" 16 6 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Imipenem" "Table 2E" 4 2048 FALSE "CLSI 2016" "MIC" "Kingella" 3 "Imipenem" "M45 Table 7" 0.5 2 FALSE "CLSI 2016" "MIC" "Lactobacillus" 3 "Imipenem" "M45 Table 9" 0.5 2 FALSE "CLSI 2016" "MIC" "Pediococcus" 3 "Imipenem" "M45 Table 14" 0.5 2048 FALSE -"CLSI 2016" "DISK" "Plesiomonas" 3 "Imipenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2016" "DISK" "Plesiomonas" 3 "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2016" "MIC" "Plesiomonas" 3 "Imipenem" "M45 Table 2" 4 16 FALSE -"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2016" "MIC" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" 2 8 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" "Table 2G" 0.125 1 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Imipenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Imipenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Kanamycin" "Generic rules" "30μg" 18 13 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Kanamycin" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2016" "DISK" "Enterococcus" 3 "Linezolid" "Table 2D" "30μg" 23 20 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Kanamycin" "Generic rules" "30ug" 18 13 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Kanamycin" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2016" "DISK" "Enterococcus" 3 "Linezolid" "Table 2D" "30ug" 23 20 FALSE "CLSI 2016" "MIC" "Enterococcus" 3 "Linezolid" "Table 2D" 2 8 FALSE "CLSI 2016" "MIC" "Lactobacillus" 3 "Linezolid" "M45 Table 9" 4 2048 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Linezolid" "Table 2C" "30μg" 21 20 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Linezolid" "Table 2C" "30ug" 21 20 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Linezolid" "Table 2C" 4 8 FALSE -"CLSI 2016" "DISK" "Streptococcus" 3 "Linezolid" "Table 2H-1" "30μg" 21 6 FALSE +"CLSI 2016" "DISK" "Streptococcus" 3 "Linezolid" "Table 2H-1" "30ug" 21 6 FALSE "CLSI 2016" "MIC" "Streptococcus" 3 "Linezolid" "Table 2H-1" 2 2048 FALSE -"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" "30μg" 21 6 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" "30ug" 21 6 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" 2 2048 FALSE -"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" "30μg" 21 6 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" "30ug" 21 6 FALSE "CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" 2 2048 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Linezolid" "Generic rules" "30μg" 21 20 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Linezolid" "Generic rules" "30μg" 4 8 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Linezolid" "Generic rules" "30ug" 21 20 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Linezolid" "Generic rules" "30ug" 4 8 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Lomefloxacin" "Table 2B-5" 2 8 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Lomefloxacin" "Table 2E" "10μg" 22 6 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Lomefloxacin" "Table 2E" "10ug" 22 6 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Lomefloxacin" "Table 2E" 2 2048 FALSE -"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Lomefloxacin" "Table 2F" "10μg" 38 26 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Lomefloxacin" "Table 2F" "10ug" 38 26 FALSE "CLSI 2016" "MIC" "Neisseria gonorrhoeae" 2 "Lomefloxacin" "Table 2F" 0.125 2 FALSE -"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" "10μg" 22 18 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" "10ug" 22 18 FALSE "CLSI 2016" "MIC" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" 2 8 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" "10μg" 22 18 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" "10ug" 22 18 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" 2 8 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10μg" 22 18 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Loracarbef" "Table 2E" "30μg" 19 15 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10ug" 22 18 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Loracarbef" "Table 2E" "30ug" 19 15 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Loracarbef" "Table 2E" 8 32 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Loracarbef" "Table 2G" 2 8 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Loracarbef" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Loracarbef" "Generic rules" "30μg" 8 32 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Loracarbef" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Loracarbef" "Generic rules" "30ug" 8 32 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Latamoxef" "Table 2B-5" 8 64 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Latamoxef" "Generic rules" "30μg" 23 14 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Latamoxef" "Generic rules" "30μg" 8 64 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Latamoxef" "Generic rules" "30ug" 23 14 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Latamoxef" "Generic rules" "30ug" 8 64 FALSE "CLSI 2016" "MIC" "Abiotrophia" 3 "Levofloxacin" "M45 Table 1" 2 8 FALSE -"CLSI 2016" "DISK" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" "5μg" 17 13 FALSE +"CLSI 2016" "DISK" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" "5ug" 17 13 FALSE "CLSI 2016" "MIC" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" 2 8 FALSE -"CLSI 2016" "DISK" "Aeromonas" 3 "Levofloxacin" "M45 Table 2" "5μg" 17 13 FALSE +"CLSI 2016" "DISK" "Aeromonas" 3 "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE "CLSI 2016" "MIC" "Aeromonas" 3 "Levofloxacin" "M45 Table 2" 2 8 FALSE "CLSI 2016" "MIC" "Aggregatibacter" 3 "Levofloxacin" "M45 Table 7" 2 8 FALSE "CLSI 2016" "MIC" "Bacillus" 3 "Levofloxacin" "M45 Table 3" 2 8 FALSE @@ -14290,160 +14290,160 @@ "CLSI 2016" "MIC" "Burkholderia cepacia" 2 "Levofloxacin" "Table 2B-3" 2 8 FALSE "CLSI 2016" "MIC" "Cardiobacterium" 3 "Levofloxacin" "M45 Table 7" 2 8 FALSE "CLSI 2016" "MIC" "Eikenella" 3 "Levofloxacin" "M45 Table 7" 2 8 FALSE -"CLSI 2016" "DISK" "Enterococcus" 3 "Levofloxacin" "Table 2D" "5μg" 17 13 FALSE +"CLSI 2016" "DISK" "Enterococcus" 3 "Levofloxacin" "Table 2D" "5ug" 17 13 FALSE "CLSI 2016" "MIC" "Enterococcus" 3 "Levofloxacin" "Table 2D" 2 8 FALSE "CLSI 2016" "MIC" "Erysipelothrix rhusiopathiae" 2 "Levofloxacin" "M45 Table 6" 2 2048 FALSE "CLSI 2016" "MIC" "Francisella tularensis tularensis" 1 "Levofloxacin" "M45 Table 16" 0.5 2048 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Levofloxacin" "Table 2B-5" 2 8 FALSE "CLSI 2016" "MIC" "Granulicatella" 3 "Levofloxacin" "M45 Table 1" 2 8 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Levofloxacin" "Table 2E" "5μg" 17 6 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Levofloxacin" "Table 2E" "5ug" 17 6 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Levofloxacin" "Table 2E" 2 2048 FALSE "CLSI 2016" "MIC" "Kingella" 3 "Levofloxacin" "M45 Table 7" 2 8 FALSE "CLSI 2016" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" "M45 Table 12" 2 2048 FALSE "CLSI 2016" "MIC" "Neisseria meningitidis" 2 "Levofloxacin" "Table 2I" 0.032 0.12 FALSE -"CLSI 2016" "DISK" "Plesiomonas" 3 "Levofloxacin" "M45 Table 2" "5μg" 17 13 FALSE +"CLSI 2016" "DISK" "Plesiomonas" 3 "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE "CLSI 2016" "MIC" "Plesiomonas" 3 "Levofloxacin" "M45 Table 2" 2 8 FALSE -"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" "5μg" 17 13 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" "5ug" 17 13 FALSE "CLSI 2016" "MIC" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" 2 8 FALSE -"CLSI 2016" "DISK" "Pasteurella" 3 "Levofloxacin" "M45 Table 13" "5μg" 28 6 FALSE +"CLSI 2016" "DISK" "Pasteurella" 3 "Levofloxacin" "M45 Table 13" "5ug" 28 6 FALSE "CLSI 2016" "MIC" "Pasteurella" 3 "Levofloxacin" "M45 Table 13" 0.064 2048 FALSE "CLSI 2016" "MIC" "Salmonella" 3 "Levofloxacin" "Table 2A" 0.125 2 FALSE "CLSI 2016" "MIC" "Extraintestinal" "Salmonella" 3 "Levofloxacin" "Table 2A" 0.125 2 FALSE -"CLSI 2016" "DISK" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" "75μg" 17 13 FALSE +"CLSI 2016" "DISK" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" "75ug" 17 13 FALSE "CLSI 2016" "MIC" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" 2 8 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Levofloxacin" "Table 2C" "10μg" 19 15 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Levofloxacin" "Table 2C" "10ug" 19 15 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Levofloxacin" "Table 2C" 1 4 FALSE -"CLSI 2016" "DISK" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" "5μg" 17 13 FALSE +"CLSI 2016" "DISK" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" "5ug" 17 13 FALSE "CLSI 2016" "MIC" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" 2 8 FALSE -"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" "5μg" 17 13 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" "5ug" 17 13 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" 2 8 FALSE -"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" "5μg" 17 13 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" "5ug" 17 13 FALSE "CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" 2 8 FALSE "CLSI 2016" "MIC" "Yersinia pestis" 2 "Levofloxacin" "M45 Table 16" 0.25 2048 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5μg" 17 13 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5μg" 2 8 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 17 13 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 2 8 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Cefamandole" "Table 2E" 4 16 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Cefamandole" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Cefamandole" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Marbofloxacin" "Generic rules" "5μg" 20 14 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Marbofloxacin" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Mecillinam" "Generic rules" "10μg" 15 11 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Mecillinam" "Generic rules" "10μg" 8 32 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Cefamandole" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Cefamandole" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Marbofloxacin" "Generic rules" "5ug" 20 14 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Marbofloxacin" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 15 11 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 8 32 FALSE "CLSI 2016" "MIC" "Abiotrophia" 3 "Meropenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2016" "DISK" "Acinetobacter" 3 "Meropenem" "Table 2B-2" "10μg" 18 14 FALSE +"CLSI 2016" "DISK" "Acinetobacter" 3 "Meropenem" "Table 2B-2" "10ug" 18 14 FALSE "CLSI 2016" "MIC" "Acinetobacter" 3 "Meropenem" "Table 2B-2" 2 8 FALSE -"CLSI 2016" "DISK" "Aeromonas" 3 "Meropenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2016" "DISK" "Aeromonas" 3 "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2016" "MIC" "Aeromonas" 3 "Meropenem" "M45 Table 2" 4 16 FALSE "CLSI 2016" "MIC" "Aggregatibacter" 3 "Meropenem" "M45 Table 7" 4 16 FALSE -"CLSI 2016" "DISK" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" "10μg" 20 15 FALSE +"CLSI 2016" "DISK" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" "10ug" 20 15 FALSE "CLSI 2016" "MIC" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" 4 16 FALSE "CLSI 2016" "MIC" "Cardiobacterium" 3 "Meropenem" "M45 Table 7" 0.5 2 FALSE "CLSI 2016" "MIC" "Eikenella" 3 "Meropenem" "M45 Table 7" 0.5 2 FALSE "CLSI 2016" "MIC" "Erysipelothrix rhusiopathiae" 2 "Meropenem" "M45 Table 6" 0.5 2048 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Meropenem" "Table 2B-5" 4 16 FALSE "CLSI 2016" "MIC" "Granulicatella" 3 "Meropenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Meropenem" "Table 2E" "10μg" 20 6 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Meropenem" "Table 2E" "10ug" 20 6 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Meropenem" "Table 2E" 0.5 2048 FALSE "CLSI 2016" "MIC" "Kingella" 3 "Meropenem" "M45 Table 7" 0.5 2 FALSE -"CLSI 2016" "DISK" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" "10μg" 30 6 FALSE +"CLSI 2016" "DISK" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" "10ug" 30 6 FALSE "CLSI 2016" "MIC" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" 0.25 2048 FALSE -"CLSI 2016" "DISK" "Plesiomonas" 3 "Meropenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2016" "DISK" "Plesiomonas" 3 "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2016" "MIC" "Plesiomonas" 3 "Meropenem" "M45 Table 2" 4 16 FALSE -"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2016" "MIC" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" 2 8 FALSE "CLSI 2016" "MIC" "Streptococcus" 3 "Meropenem" "Table 2H-1" 0.5 2048 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Meropenem" "Table 2G" 0.25 1 FALSE "CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "Table 2H-2" 0.5 2048 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Meropenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Meropenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Methicillin" "Generic rules" "5μg" 14 9 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Methicillin" "Generic rules" "5μg" 8 16 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Moxifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Methicillin" "Generic rules" "5ug" 14 9 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Methicillin" "Generic rules" "5ug" 8 16 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Moxifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Moxifloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2016" "DISK" "Pasteurella" 3 "Moxifloxacin" "M45 Table 13" "5μg" 28 6 FALSE +"CLSI 2016" "DISK" "Pasteurella" 3 "Moxifloxacin" "M45 Table 13" "5ug" 28 6 FALSE "CLSI 2016" "MIC" "Pasteurella" 3 "Moxifloxacin" "M45 Table 13" 0.064 2048 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" "5μg" 24 20 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" "5ug" 24 20 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" "5μg" 18 14 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" "5ug" 18 14 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" 1 4 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5μg" 24 20 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5μg" 0.5 2 FALSE -"CLSI 2016" "DISK" "Acinetobacter" 3 "Minocycline" "Table 2B-2" "30μg" 16 12 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 24 20 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 0.5 2 FALSE +"CLSI 2016" "DISK" "Acinetobacter" 3 "Minocycline" "Table 2B-2" "30ug" 16 12 FALSE "CLSI 2016" "MIC" "Acinetobacter" 3 "Minocycline" "Table 2B-2" 4 16 FALSE -"CLSI 2016" "DISK" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" "30μg" 19 14 FALSE +"CLSI 2016" "DISK" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" "30ug" 19 14 FALSE "CLSI 2016" "MIC" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" 4 16 FALSE -"CLSI 2016" "DISK" "Enterococcus" 3 "Minocycline" "Table 2D" "30μg" 19 14 FALSE +"CLSI 2016" "DISK" "Enterococcus" 3 "Minocycline" "Table 2D" "30ug" 19 14 FALSE "CLSI 2016" "MIC" "Enterococcus" 3 "Minocycline" "Table 2D" 4 16 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Minocycline" "Table 2B-5" 4 16 FALSE "CLSI 2016" "MIC" "Leuconostoc" 3 "Minocycline" "M45 Table 10" 4 16 FALSE -"CLSI 2016" "DISK" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" "30μg" 26 6 FALSE +"CLSI 2016" "DISK" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" "30ug" 26 6 FALSE "CLSI 2016" "MIC" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" 2 2048 FALSE -"CLSI 2016" "DISK" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" "30μg" 19 14 FALSE +"CLSI 2016" "DISK" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" "30ug" 19 14 FALSE "CLSI 2016" "MIC" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" 4 16 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Minocycline" "Table 2C" "30μg" 19 14 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Minocycline" "Table 2C" "30ug" 19 14 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Minocycline" "Table 2C" 4 16 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Minocycline" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Minocycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Nafcillin" "Generic rules" "1μg" 13 10 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Nafcillin" "Generic rules" "1μg" 2 4 FALSE -"CLSI 2016" "DISK" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" "30μg" 26 25 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Minocycline" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Minocycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Nafcillin" "Generic rules" "1ug" 13 10 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Nafcillin" "Generic rules" "1ug" 2 4 FALSE +"CLSI 2016" "DISK" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" "30ug" 26 25 FALSE "CLSI 2016" "MIC" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" 4 8 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30μg" 19 13 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30μg" 16 32 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 19 13 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 16 32 FALSE "CLSI 2016" "MIC" "Acinetobacter" 3 "Netilmicin" "Table 2B-2" 8 32 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Netilmicin" "Table 2B-5" 8 32 FALSE -"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" "30μg" 15 12 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" "30ug" 15 12 FALSE "CLSI 2016" "MIC" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" 8 32 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Netilmicin" "Generic rules" "30μg" 15 12 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Netilmicin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2016" "DISK" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" "300μg" 17 14 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Netilmicin" "Generic rules" "30ug" 15 12 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Netilmicin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2016" "DISK" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" "300ug" 17 14 FALSE "CLSI 2016" "MIC" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" 32 128 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" "300μg" 17 14 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" "300ug" 17 14 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" 32 128 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "300μg" 17 14 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100μg" 32 128 FALSE -"CLSI 2016" "DISK" "Enterococcus" 3 "Norfloxacin" "Table 2D" "10μg" 17 12 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "300ug" 17 14 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100ug" 32 128 FALSE +"CLSI 2016" "DISK" "Enterococcus" 3 "Norfloxacin" "Table 2D" "10ug" 17 12 FALSE "CLSI 2016" "MIC" "Enterococcus" 3 "Norfloxacin" "Table 2D" 4 16 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Norfloxacin" "Table 2B-5" 4 16 FALSE -"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Norfloxacin" "Table 2B-1" "10μg" 17 12 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Norfloxacin" "Table 2B-1" "10ug" 17 12 FALSE "CLSI 2016" "MIC" "Pseudomonas aeruginosa" 2 "Norfloxacin" "Table 2B-1" 4 16 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Norfloxacin" "Table 2C" "10μg" 17 12 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Norfloxacin" "Table 2C" "10ug" 17 12 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Norfloxacin" "Table 2C" 4 16 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10μg" 17 12 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10μg" 4 16 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10ug" 17 12 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10ug" 4 16 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Ofloxacin" "Table 2B-5" 2 8 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Ofloxacin" "Table 2E" "5μg" 16 6 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Ofloxacin" "Table 2E" "5ug" 16 6 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Ofloxacin" "Table 2E" 2 2048 FALSE -"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Ofloxacin" "Table 2F" "5μg" 31 24 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Ofloxacin" "Table 2F" "5ug" 31 24 FALSE "CLSI 2016" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" "Table 2F" 0.25 2 FALSE -"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" "5μg" 16 12 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" "5ug" 16 12 FALSE "CLSI 2016" "MIC" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" 2 8 FALSE "CLSI 2016" "MIC" "Salmonella" 3 "Ofloxacin" "Table 2A" 0.125 2 FALSE "CLSI 2016" "MIC" "Extraintestinal" "Salmonella" 3 "Ofloxacin" "Table 2A" 0.125 2 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Ofloxacin" "Table 2C" "5μg" 18 14 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Ofloxacin" "Table 2C" "5ug" 18 14 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Ofloxacin" "Table 2C" 1 4 FALSE -"CLSI 2016" "DISK" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" "5μg" 16 12 FALSE +"CLSI 2016" "DISK" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" "5ug" 16 12 FALSE "CLSI 2016" "MIC" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" 2 8 FALSE -"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" "5μg" 16 12 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" "5ug" 16 12 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" 2 8 FALSE -"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" "5μg" 16 12 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" "5ug" 16 12 FALSE "CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" 2 8 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5μg" 16 12 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10μg" 23 17 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10μg" 1 8 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 16 12 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10ug" 23 17 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10ug" 1 8 FALSE "CLSI 2016" "MIC" "Enterococcus" 3 "Oritavancin" "Table 2D" 0.125 2048 FALSE "CLSI 2016" "MIC" "Streptococcus" 3 "Oritavancin" "Table 2H-1" 0.25 2048 FALSE "CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Oritavancin" "Table 2H-2" 0.25 2048 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Oxacillin" "Table 2C" "1μg" 13 10 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Oxacillin" "Table 2C" "1ug" 13 10 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Oxacillin" "Table 2C" 2 4 FALSE -"CLSI 2016" "DISK" "Staphylococcus aureus aureus" 1 "Oxacillin" "Table 2C" "1μg" 13 10 FALSE +"CLSI 2016" "DISK" "Staphylococcus aureus aureus" 1 "Oxacillin" "Table 2C" "1ug" 13 10 FALSE "CLSI 2016" "MIC" "Staphylococcus aureus aureus" 1 "Oxacillin" "Table 2C" 2 4 FALSE "CLSI 2016" "MIC" "Staphylococcus lugdunensis" 2 "Oxacillin" "Table 2C" 2 4 FALSE -"CLSI 2016" "DISK" "Staphylococcus pseudintermedius" 2 "Oxacillin" "Table 2C" "1μg" 18 17 FALSE +"CLSI 2016" "DISK" "Staphylococcus pseudintermedius" 2 "Oxacillin" "Table 2C" "1ug" 18 17 FALSE "CLSI 2016" "MIC" "Staphylococcus pseudintermedius" 2 "Oxacillin" "Table 2C" 0.25 0.5 FALSE -"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "Table 2G" "1μg" 20 6 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Oxacillin" "Generic rules" "1μg" 0.25 0.5 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "Table 2G" "1ug" 20 6 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Oxacillin" "Generic rules" "1ug" 0.25 0.5 FALSE "CLSI 2016" "DISK" "Salmonella" 3 "Pefloxacin" "Table 2A" 24 23 FALSE "CLSI 2016" "MIC" "Abiotrophia" 3 "Benzylpenicillin" "M45 Table 1" 0.125 4 FALSE "CLSI 2016" "MIC" "Aggregatibacter" 3 "Benzylpenicillin" "M45 Table 7" 1 4 FALSE @@ -14465,7 +14465,7 @@ "CLSI 2016" "MIC" "Pediococcus" 3 "Benzylpenicillin" "M45 Table 14" 8 2048 FALSE "CLSI 2016" "DISK" "Pasteurella" 3 "Benzylpenicillin" "M45 Table 13" "10 Units" 25 6 FALSE "CLSI 2016" "MIC" "Pasteurella" 3 "Benzylpenicillin" "M45 Table 13" 0.5 2048 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" "10μg" 29 28 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" "10ug" 29 28 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" 0.125 0.25 FALSE "CLSI 2016" "DISK" "Streptococcus" 3 "Benzylpenicillin" "Table 2H-1" "10units" 24 6 FALSE "CLSI 2016" "MIC" "Streptococcus" 3 "Benzylpenicillin" "Table 2H-1" 0.125 2048 FALSE @@ -14476,149 +14476,149 @@ "CLSI 2016" "DISK" "(unknown name)" 6 "Benzylpenicillin" "Generic rules" "10units" 29 28 FALSE "CLSI 2016" "MIC" "(unknown name)" 6 "Benzylpenicillin" "Generic rules" "10units" 0.125 0.25 FALSE "CLSI 2016" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Phenoxymethylpenicillin" "Table 2G" 0.064 2 FALSE -"CLSI 2016" "DISK" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" "100μg" 21 17 FALSE +"CLSI 2016" "DISK" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" "100ug" 21 17 FALSE "CLSI 2016" "MIC" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" 16 128 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Piperacillin" "Table 2B-5" 16 128 FALSE -"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" "100μg" 21 14 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" "100ug" 21 14 FALSE "CLSI 2016" "MIC" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" 16 128 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Piperacillin" "Generic rules" "100μg" 21 17 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Piperacillin" "Generic rules" "100μg" 16 128 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Piperacillin" "Generic rules" "100ug" 21 17 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Piperacillin" "Generic rules" "100ug" 16 128 FALSE "CLSI 2016" "MIC" "Acinetobacter" 3 "Polymyxin B" "Table 2B-2" 2 4 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Polymyxin B" "Table 2B-5" 2 8 FALSE -"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Polymyxin B" "Table 2B-1" "300μg" 12 11 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Polymyxin B" "Table 2B-1" "300ug" 12 11 FALSE "CLSI 2016" "MIC" "Pseudomonas aeruginosa" 2 "Polymyxin B" "Table 2B-1" 2 8 FALSE "CLSI 2016" "DISK" "(unknown name)" 6 "Polymyxin B" "Generic rules" "300units" 12 11 FALSE "CLSI 2016" "MIC" "(unknown name)" 6 "Polymyxin B" "Generic rules" "300units" 2 8 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30μg" 18 14 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30μg" 1 4 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2μg" 13 12 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2μg" 2 4 FALSE -"CLSI 2016" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" "15μg" 19 15 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30ug" 18 14 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30ug" 1 4 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2ug" 13 12 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2ug" 2 4 FALSE +"CLSI 2016" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" "15ug" 19 15 FALSE "CLSI 2016" "MIC" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" 1 4 FALSE -"CLSI 2016" "DISK" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" "15μg" 19 15 FALSE +"CLSI 2016" "DISK" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" "15ug" 19 15 FALSE "CLSI 2016" "MIC" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" 1 4 FALSE -"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" "15μg" 19 15 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" "15ug" 19 15 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" 1 4 FALSE -"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" "15μg" 19 15 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" "15ug" 19 15 FALSE "CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" 1 4 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15μg" 19 15 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15μg" 1 4 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15ug" 19 15 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15ug" 1 4 FALSE "CLSI 2016" "MIC" "Aggregatibacter" 3 "Rifampicin" "M45 Table 7" 1 4 FALSE "CLSI 2016" "MIC" "Bacillus" 3 "Rifampicin" "M45 Table 3" 1 4 FALSE "CLSI 2016" "MIC" "Cardiobacterium" 3 "Rifampicin" "M45 Table 7" 1 4 FALSE "CLSI 2016" "MIC" "Eikenella" 3 "Rifampicin" "M45 Table 7" 1 4 FALSE -"CLSI 2016" "DISK" "Enterococcus" 3 "Rifampicin" "Table 2D" "5μg" 20 16 FALSE +"CLSI 2016" "DISK" "Enterococcus" 3 "Rifampicin" "Table 2D" "5ug" 20 16 FALSE "CLSI 2016" "MIC" "Enterococcus" 3 "Rifampicin" "Table 2D" 1 4 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Rifampicin" "Table 2E" "5μg" 20 16 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Rifampicin" "Table 2E" "5ug" 20 16 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Rifampicin" "Table 2E" 1 4 FALSE "CLSI 2016" "MIC" "Kingella" 3 "Rifampicin" "M45 Table 7" 1 4 FALSE "CLSI 2016" "MIC" "Moraxella catarrhalis" 2 "Rifampicin" "M45 Table 12" 1 4 FALSE -"CLSI 2016" "DISK" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" "5μg" 25 19 FALSE +"CLSI 2016" "DISK" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" "5ug" 25 19 FALSE "CLSI 2016" "MIC" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" 0.5 2 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Rifampicin" "Table 2C" "5μg" 20 16 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Rifampicin" "Table 2C" "5ug" 20 16 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Rifampicin" "Table 2C" 1 4 FALSE -"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" "5μg" 19 16 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" "5ug" 19 16 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" 1 4 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Rifampicin" "Generic rules" "5μg" 20 16 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Rifampicin" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2016" "DISK" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" "10μg" 15 11 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Rifampicin" "Generic rules" "5ug" 20 16 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Rifampicin" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2016" "DISK" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" "10ug" 15 11 FALSE "CLSI 2016" "MIC" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" 8 32 FALSE -"CLSI 2016" "DISK" "Aeromonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10μg" 15 11 FALSE +"CLSI 2016" "DISK" "Aeromonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE "CLSI 2016" "MIC" "Aeromonas" 3 "Ampicillin/sulbactam" "M45 Table 2" 8 32 FALSE "CLSI 2016" "MIC" "Aggregatibacter" 3 "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE "CLSI 2016" "MIC" "Cardiobacterium" 3 "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE "CLSI 2016" "MIC" "Eikenella" 3 "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" "10/10μg" 20 19 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" "10/10ug" 20 19 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" 2 4 FALSE -"CLSI 2016" "DISK" "Plesiomonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10μg" 15 11 FALSE +"CLSI 2016" "DISK" "Plesiomonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE "CLSI 2016" "MIC" "Plesiomonas" 3 "Ampicillin/sulbactam" "M45 Table 2" 8 32 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10μg" 15 11 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10μg" 8 32 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300μg" 256 512 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10ug" 15 11 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10ug" 8 32 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300ug" 256 512 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Sulfamethoxazole" "Table 2B-5" 256 512 FALSE "CLSI 2016" "MIC" "Neisseria meningitidis" 2 "Sulfamethoxazole" "Table 2I" 2 8 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" "200μg" 17 12 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" "200ug" 17 12 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" 256 512 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300μg" 256 512 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300ug" 256 512 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Sulfisoxazole" "Table 2B-5" 256 512 FALSE "CLSI 2016" "MIC" "Neisseria meningitidis" 2 "Sulfisoxazole" "Table 2I" 2 8 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" "200μg" 17 12 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" "200ug" 17 12 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" 256 512 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300μg" 256 512 FALSE -"CLSI 2016" "DISK" "Histophilus somni" 2 "Spectinomycin" "Vet Table" "100μg" 14 10 FALSE -"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" "100μg" 18 14 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300ug" 256 512 FALSE +"CLSI 2016" "DISK" "Histophilus somni" 2 "Spectinomycin" "Vet Table" "100ug" 14 10 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" "100ug" 18 14 FALSE "CLSI 2016" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" 32 128 FALSE -"CLSI 2016" "DISK" "Providencia heimbachae" 2 "Spectinomycin" "100μg" 14 10 FALSE -"CLSI 2016" "DISK" "Pasteurella multocida multocida" 1 "Spectinomycin" "100μg" 14 10 FALSE +"CLSI 2016" "DISK" "Providencia heimbachae" 2 "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2016" "DISK" "Pasteurella multocida multocida" 1 "Spectinomycin" "100ug" 14 10 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Sparfloxacin" "Table 2E" 0.25 2048 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" "5μg" 19 15 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" "5ug" 19 15 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" "5μg" 19 15 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" "5ug" 19 15 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" 0.5 2 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5μg" 0.5 2 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5ug" 0.5 2 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Sulfonamide" "Table 2B-5" 256 512 FALSE "CLSI 2016" "MIC" "Neisseria meningitidis" 2 "Sulfonamide" "Table 2I" 2 8 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Sulfonamide" "Table 2C" "200μg" 17 12 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Sulfonamide" "Table 2C" "200ug" 17 12 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Sulfonamide" "Table 2C" 256 512 FALSE -"CLSI 2016" "DISK" "Enterococcus" 3 "Streptomycin-high" "Table 2D" "300μg" 10 6 FALSE +"CLSI 2016" "DISK" "Enterococcus" 3 "Streptomycin-high" "Table 2D" "300ug" 10 6 FALSE "CLSI 2016" "MIC" "Enterococcus" 3 "Streptomycin-high" "Table 2D" 1024 2048 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300μg" 10 6 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300μg" 1024 2048 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300ug" 10 6 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300ug" 1024 2048 FALSE "CLSI 2016" "MIC" "Brucella" 3 "Streptoduocin" "M45 Table 16" 8 2048 FALSE "CLSI 2016" "MIC" "Enterococcus" 3 "Streptoduocin" "Table 2D" 1024 2048 FALSE "CLSI 2016" "MIC" "Francisella tularensis tularensis" 1 "Streptoduocin" "M45 Table 16" 8 2048 FALSE "CLSI 2016" "MIC" "Yersinia pestis" 2 "Streptoduocin" "M45 Table 16" 4 16 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Streptomycin" "Generic rules" "10μg" 15 11 FALSE -"CLSI 2016" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Streptomycin" "Generic rules" "10ug" 15 11 FALSE +"CLSI 2016" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2016" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" 2 4 FALSE -"CLSI 2016" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2016" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2016" "MIC" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE "CLSI 2016" "MIC" "Aggregatibacter" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE "CLSI 2016" "MIC" "Bacillus" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 3" 2 4 FALSE "CLSI 2016" "MIC" "Brucella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 2048 FALSE -"CLSI 2016" "DISK" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2016" "DISK" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2016" "MIC" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" 2 4 FALSE "CLSI 2016" "MIC" "Burkholderia pseudomallei" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 4 FALSE "CLSI 2016" "MIC" "Cardiobacterium" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE "CLSI 2016" "MIC" "Eikenella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-5" 2 4 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" "1.25μg/23.75μg" 15 10 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" "1.25ug/23.75ug" 15 10 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" 0.5 4 FALSE "CLSI 2016" "MIC" "Kingella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE "CLSI 2016" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 11" 0.5 4 FALSE -"CLSI 2016" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 12" "1.25μg/23.75μg" 13 10 FALSE +"CLSI 2016" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 12" "1.25ug/23.75ug" 13 10 FALSE "CLSI 2016" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 12" 0.5 4 FALSE -"CLSI 2016" "DISK" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" "1.25μg/23.75μg" 30 25 FALSE +"CLSI 2016" "DISK" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" "1.25ug/23.75ug" 30 25 FALSE "CLSI 2016" "MIC" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" 0.125 0.5 FALSE -"CLSI 2016" "DISK" "Plesiomonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2016" "DISK" "Plesiomonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2016" "MIC" "Plesiomonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE -"CLSI 2016" "DISK" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 13" "1.25μg/23.75μg" 24 6 FALSE +"CLSI 2016" "DISK" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 13" "1.25ug/23.75ug" 24 6 FALSE "CLSI 2016" "MIC" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 13" 0.5 2048 FALSE -"CLSI 2016" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" "30μg" 16 10 FALSE +"CLSI 2016" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" "30ug" 16 10 FALSE "CLSI 2016" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" 2 4 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" 2 4 FALSE -"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" "1.25μg/23.75μg" 19 15 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" "1.25ug/23.75ug" 19 15 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" 0.5 4 FALSE "CLSI 2016" "MIC" "Yersinia pestis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 4 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75μg" 16 10 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75μg" 2 4 FALSE -"CLSI 2016" "DISK" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" "75μg" 20 14 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 16 10 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 2 4 FALSE +"CLSI 2016" "DISK" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" "75ug" 20 14 FALSE "CLSI 2016" "MIC" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" 16 128 FALSE "CLSI 2016" "MIC" "Burkholderia cepacia" 2 "Ticarcillin/clavulanic acid" "Table 2B-3" 16 128 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Ticarcillin/clavulanic acid" "Table 2B-5" 16 128 FALSE -"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" "75μg" 24 15 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" "75ug" 24 15 FALSE "CLSI 2016" "MIC" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" 16 128 FALSE "CLSI 2016" "MIC" "Stenotrophomonas maltophilia" 2 "Ticarcillin/clavulanic acid" "Table 2B-4" 16 128 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15μg" 20 14 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15μg" 16 128 FALSE -"CLSI 2016" "DISK" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" "30μg" 15 11 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15ug" 20 14 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15ug" 16 128 FALSE +"CLSI 2016" "DISK" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" "30ug" 15 11 FALSE "CLSI 2016" "MIC" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" 4 16 FALSE -"CLSI 2016" "DISK" "Aeromonas" 3 "Tetracycline" "M45 Table 2" "30μg" 15 11 FALSE +"CLSI 2016" "DISK" "Aeromonas" 3 "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE "CLSI 2016" "MIC" "Aeromonas" 3 "Tetracycline" "M45 Table 2" 4 16 FALSE "CLSI 2016" "MIC" "Aggregatibacter" 3 "Tetracycline" "M45 Table 7" 2 8 FALSE "CLSI 2016" "MIC" "Bacillus" 3 "Tetracycline" "M45 Table 3" 4 16 FALSE @@ -14629,301 +14629,301 @@ "CLSI 2016" "MIC" "Campylobacter" 3 "Tetracycline" "M45 Table 3" 4 16 FALSE "CLSI 2016" "MIC" "Cardiobacterium" 3 "Tetracycline" "M45 Table 7" 2 8 FALSE "CLSI 2016" "MIC" "Eikenella" 3 "Tetracycline" "M45 Table 7" 2 8 FALSE -"CLSI 2016" "DISK" "Enterococcus" 3 "Tetracycline" "Table 2D" "30μg" 19 14 FALSE +"CLSI 2016" "DISK" "Enterococcus" 3 "Tetracycline" "Table 2D" "30ug" 19 14 FALSE "CLSI 2016" "MIC" "Enterococcus" 3 "Tetracycline" "Table 2D" 4 16 FALSE "CLSI 2016" "MIC" "Francisella tularensis tularensis" 1 "Tetracycline" "M45 Table 16" 4 2048 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Tetracycline" "Table 2B-5" 4 16 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Tetracycline" "Table 2E" "30μg" 29 25 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Tetracycline" "Table 2E" "30ug" 29 25 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Tetracycline" "Table 2E" 2 8 FALSE "CLSI 2016" "MIC" "Kingella" 3 "Tetracycline" "M45 Table 7" 2 8 FALSE -"CLSI 2016" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 12" "30μg" 29 24 FALSE +"CLSI 2016" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 12" "30ug" 29 24 FALSE "CLSI 2016" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 12" 2 8 FALSE -"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" "30μg" 38 30 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" "30ug" 38 30 FALSE "CLSI 2016" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" 0.25 2 FALSE -"CLSI 2016" "DISK" "Plesiomonas" 3 "Tetracycline" "M45 Table 2" "30μg" 15 11 FALSE +"CLSI 2016" "DISK" "Plesiomonas" 3 "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE "CLSI 2016" "MIC" "Plesiomonas" 3 "Tetracycline" "M45 Table 2" 4 16 FALSE -"CLSI 2016" "DISK" "Pasteurella" 3 "Tetracycline" "M45 Table 13" "30μg" 23 6 FALSE +"CLSI 2016" "DISK" "Pasteurella" 3 "Tetracycline" "M45 Table 13" "30ug" 23 6 FALSE "CLSI 2016" "MIC" "Pasteurella" 3 "Tetracycline" "M45 Table 13" 1 2048 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Tetracycline" "Table 2C" "30μg" 19 14 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Tetracycline" "Table 2C" "30ug" 19 14 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Tetracycline" "Table 2C" 4 16 FALSE -"CLSI 2016" "DISK" "Streptococcus" 3 "Tetracycline" "Table 2H-1" "30μg" 23 18 FALSE +"CLSI 2016" "DISK" "Streptococcus" 3 "Tetracycline" "Table 2H-1" "30ug" 23 18 FALSE "CLSI 2016" "MIC" "Streptococcus" 3 "Tetracycline" "Table 2H-1" 2 8 FALSE -"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" "30μg" 28 24 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" "30ug" 28 24 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" 1 4 FALSE -"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" "30μg" 23 18 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" "30ug" 23 18 FALSE "CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" 2 8 FALSE "CLSI 2016" "MIC" "Yersinia pestis" 2 "Tetracycline" "M45 Table 16" 4 16 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Tetracycline" "Generic rules" "30μg" 15 11 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Tetracycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2016" "DISK" "Enterococcus" 3 "Teicoplanin" "Table 2D" "30μg" 14 10 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Tetracycline" "Generic rules" "30ug" 15 11 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Tetracycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2016" "DISK" "Enterococcus" 3 "Teicoplanin" "Table 2D" "30ug" 14 10 FALSE "CLSI 2016" "MIC" "Enterococcus" 3 "Teicoplanin" "Table 2D" 8 32 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Teicoplanin" "Table 2C" "30μg" 14 10 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Teicoplanin" "Table 2C" "30ug" 14 10 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Teicoplanin" "Table 2C" 8 32 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30μg" 14 10 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Tiamulin" "Generic rules" "30μg" 9 8 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Tiamulin" "Generic rules" "30μg" 16 32 FALSE -"CLSI 2016" "DISK" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" "Vet Table" "15μg" 11 10 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30ug" 14 10 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Tiamulin" "Generic rules" "30ug" 9 8 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Tiamulin" "Generic rules" "30ug" 16 32 FALSE +"CLSI 2016" "DISK" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE "CLSI 2016" "MIC" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" "Vet Table" 16 32 FALSE -"CLSI 2016" "DISK" "Pasteurella multocida multocida" 1 "Tilmicosin" "Vet Table" "15μg" 11 10 FALSE +"CLSI 2016" "DISK" "Pasteurella multocida multocida" 1 "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE "CLSI 2016" "MIC" "Pasteurella multocida multocida" 1 "Tilmicosin" "Vet Table" 16 32 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15μg" 14 10 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15μg" 8 32 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30μg" 2 8 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Telithromycin" "Table 2E" "15μg" 15 11 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15ug" 14 10 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15ug" 8 32 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30ug" 2 8 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Telithromycin" "Table 2E" "15ug" 15 11 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Telithromycin" "Table 2E" 4 16 FALSE -"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" "15μg" 19 15 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" "15ug" 19 15 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" 1 4 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Telithromycin" "Generic rules" "15μg" 22 18 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Telithromycin" "Generic rules" "15μg" 1 4 FALSE -"CLSI 2016" "DISK" "Enterococcus" 3 "Telavancin" "Table 2D" "30μg" 15 6 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Telithromycin" "Generic rules" "15ug" 22 18 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Telithromycin" "Generic rules" "15ug" 1 4 FALSE +"CLSI 2016" "DISK" "Enterococcus" 3 "Telavancin" "Table 2D" "30ug" 15 6 FALSE "CLSI 2016" "MIC" "Enterococcus" 3 "Telavancin" "Table 2D" 0.125 2048 FALSE -"CLSI 2016" "DISK" "Streptococcus" 3 "Telavancin" "Table 2H-1" "30μg" 15 6 FALSE +"CLSI 2016" "DISK" "Streptococcus" 3 "Telavancin" "Table 2H-1" "30ug" 15 6 FALSE "CLSI 2016" "MIC" "Streptococcus" 3 "Telavancin" "Table 2H-1" 0.125 2048 FALSE -"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Telavancin" "Table 2H-2" "30μg" 15 6 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Telavancin" "Table 2H-2" "30ug" 15 6 FALSE "CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Telavancin" "Table 2H-2" 0.125 2048 FALSE -"CLSI 2016" "DISK" "Staphylococcus" 3 "Trimethoprim" "Table 2C" "5μg" 16 10 FALSE +"CLSI 2016" "DISK" "Staphylococcus" 3 "Trimethoprim" "Table 2C" "5ug" 16 10 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Trimethoprim" "Table 2C" 8 16 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5μg" 16 10 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5μg" 8 16 FALSE -"CLSI 2016" "DISK" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" "10μg" 15 12 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 16 10 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 8 16 FALSE +"CLSI 2016" "DISK" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" "10ug" 15 12 FALSE "CLSI 2016" "MIC" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" 4 16 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Tobramycin" "Table 2B-5" 4 16 FALSE -"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" "10μg" 15 12 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" "10ug" 15 12 FALSE "CLSI 2016" "MIC" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" 4 16 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Tobramycin" "Generic rules" "10μg" 15 12 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Tobramycin" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Tulathromycin" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Tulathromycin" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Trovafloxacin" "Table 2E" "10μg" 22 6 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 15 12 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Tulathromycin" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Tulathromycin" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Trovafloxacin" "Table 2E" "10ug" 22 6 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Trovafloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" "10μg" 34 6 FALSE +"CLSI 2016" "DISK" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" "10ug" 34 6 FALSE "CLSI 2016" "MIC" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" 0.25 2048 FALSE -"CLSI 2016" "DISK" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" "10μg" 19 15 FALSE +"CLSI 2016" "DISK" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" "10ug" 19 15 FALSE "CLSI 2016" "MIC" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" 1 4 FALSE -"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" "10μg" 19 15 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" "10ug" 19 15 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" 1 4 FALSE -"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" "10μg" 19 15 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" "10ug" 19 15 FALSE "CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" 1 4 FALSE "CLSI 2016" "MIC" "Enterococcus" 3 "Tedizolid" "Table 2D" 0.5 2048 FALSE "CLSI 2016" "MIC" "Streptococcus" 3 "Tedizolid" "Table 2H-1" 0.5 2048 FALSE "CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Tedizolid" "Table 2H-2" 0.25 2048 FALSE -"CLSI 2016" "DISK" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" "100μg" 21 17 FALSE +"CLSI 2016" "DISK" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" "100ug" 21 17 FALSE "CLSI 2016" "MIC" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" 16 128 FALSE -"CLSI 2016" "DISK" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100μg" 21 17 FALSE +"CLSI 2016" "DISK" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE "CLSI 2016" "MIC" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 2" 16 128 FALSE "CLSI 2016" "MIC" "(unknown Gram-negatives)" 2 "Piperacillin/tazobactam" "Table 2B-5" 16 128 FALSE -"CLSI 2016" "DISK" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" "100μg" 21 6 FALSE +"CLSI 2016" "DISK" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" "100ug" 21 6 FALSE "CLSI 2016" "MIC" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" 1 2 FALSE -"CLSI 2016" "DISK" "Plesiomonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100μg" 21 17 FALSE +"CLSI 2016" "DISK" "Plesiomonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE "CLSI 2016" "MIC" "Plesiomonas" 3 "Piperacillin/tazobactam" "M45 Table 2" 16 128 FALSE -"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" "100μg" 21 14 FALSE +"CLSI 2016" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" "100ug" 21 14 FALSE "CLSI 2016" "MIC" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" 16 128 FALSE -"CLSI 2016" "DISK" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10μg" 21 17 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10μg" 16 128 FALSE +"CLSI 2016" "DISK" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10ug" 21 17 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10ug" 16 128 FALSE "CLSI 2016" "MIC" "Abiotrophia" 3 "Vancomycin" "M45 Table 1" 1 2048 FALSE "CLSI 2016" "MIC" "Bacillus" 3 "Vancomycin" "M45 Table 3" 4 2048 FALSE "CLSI 2016" "MIC" "Cutibacterium acnes" 2 "Vancomycin" "Table 2J-2" 2 4 FALSE -"CLSI 2016" "DISK" "Enterococcus" 3 "Vancomycin" "Table 2D" "30μg" 17 14 FALSE +"CLSI 2016" "DISK" "Enterococcus" 3 "Vancomycin" "Table 2D" "30ug" 17 14 FALSE "CLSI 2016" "MIC" "Enterococcus" 3 "Vancomycin" "Table 2D" 4 32 FALSE "CLSI 2016" "MIC" "Granulicatella" 3 "Vancomycin" "M45 Table 1" 1 2048 FALSE "CLSI 2016" "MIC" "Lactobacillus" 3 "Vancomycin" "M45 Table 9" 2 16 FALSE "CLSI 2016" "MIC" "Staphylococcus" 3 "Vancomycin" "Table 2C" 4 32 FALSE "CLSI 2016" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" "Table 2C" 2 16 FALSE -"CLSI 2016" "DISK" "Streptococcus" 3 "Vancomycin" "Table 2H-1" "30μg" 17 6 FALSE +"CLSI 2016" "DISK" "Streptococcus" 3 "Vancomycin" "Table 2H-1" "30ug" 17 6 FALSE "CLSI 2016" "MIC" "Streptococcus" 3 "Vancomycin" "Table 2H-1" 1 2048 FALSE -"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" "30μg" 17 6 FALSE +"CLSI 2016" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" "30ug" 17 6 FALSE "CLSI 2016" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" 1 2048 FALSE -"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" "30μg" 17 6 FALSE +"CLSI 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" "30ug" 17 6 FALSE "CLSI 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" 1 2048 FALSE -"CLSI 2016" "MIC" "(unknown name)" 6 "Vancomycin" "Generic rules" "30μg" 4 32 FALSE -"CLSI 2015" "DISK" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20μg" 18 13 FALSE +"CLSI 2016" "MIC" "(unknown name)" 6 "Vancomycin" "Generic rules" "30ug" 4 32 FALSE +"CLSI 2015" "DISK" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE "CLSI 2015" "MIC" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" 8 32 FALSE "CLSI 2015" "MIC" "Aggregatibacter" 3 "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE "CLSI 2015" "MIC" "Burkholderia pseudomallei" 2 "Amoxicillin/clavulanic acid" "M45 Table 16" 8 32 FALSE "CLSI 2015" "MIC" "Cardiobacterium" 3 "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE "CLSI 2015" "MIC" "Eikenella" 3 "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" "20/10μg" 20 19 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" "20/10ug" 20 19 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" 4 8 FALSE -"CLSI 2015" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 12" "20μg" 24 23 FALSE +"CLSI 2015" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 12" "20ug" 24 23 FALSE "CLSI 2015" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 12" 4 8 FALSE -"CLSI 2015" "DISK" "Plesiomonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20μg" 18 13 FALSE +"CLSI 2015" "DISK" "Plesiomonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE "CLSI 2015" "MIC" "Plesiomonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" 8 32 FALSE -"CLSI 2015" "DISK" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 13" "20μg" 27 6 FALSE +"CLSI 2015" "DISK" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 13" "20ug" 27 6 FALSE "CLSI 2015" "MIC" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 13" 0.5 2048 FALSE "CLSI 2015" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Amoxicillin/clavulanic acid" "Table 2G" 2 8 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10μg" 18 13 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10μg" 8 32 FALSE -"CLSI 2015" "DISK" "Acinetobacter" 3 "Amikacin" "Table 2B-2" "30μg" 17 14 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 18 13 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 8 32 FALSE +"CLSI 2015" "DISK" "Acinetobacter" 3 "Amikacin" "Table 2B-2" "30ug" 17 14 FALSE "CLSI 2015" "MIC" "Acinetobacter" 3 "Amikacin" "Table 2B-2" 16 64 FALSE -"CLSI 2015" "DISK" "Aeromonas" 3 "Amikacin" "M45 Table 2" "30μg" 17 14 FALSE +"CLSI 2015" "DISK" "Aeromonas" 3 "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE "CLSI 2015" "MIC" "Aeromonas" 3 "Amikacin" "M45 Table 2" 16 64 FALSE "CLSI 2015" "MIC" "Bacillus" 3 "Amikacin" "M45 Table 3" 16 64 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Amikacin" "Table 2B-5" 16 64 FALSE -"CLSI 2015" "DISK" "Plesiomonas" 3 "Amikacin" "M45 Table 2" "30μg" 17 14 FALSE +"CLSI 2015" "DISK" "Plesiomonas" 3 "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE "CLSI 2015" "MIC" "Plesiomonas" 3 "Amikacin" "M45 Table 2" 16 64 FALSE -"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" "30μg" 17 14 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" "30ug" 17 14 FALSE "CLSI 2015" "MIC" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" 16 64 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Amikacin" "Generic rules" "30μg" 17 14 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Amikacin" "Generic rules" "30μg" 16 64 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 17 14 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 16 64 FALSE "CLSI 2015" "MIC" "Aggregatibacter" 3 "Ampicillin" "M45 Table 7" 1 4 FALSE "CLSI 2015" "MIC" "Bacillus" 3 "Ampicillin" "M45 Table 3" 0.25 0.5 FALSE "CLSI 2015" "MIC" "Cardiobacterium" 3 "Ampicillin" "M45 Table 7" 1 4 FALSE "CLSI 2015" "MIC" "Eikenella" 3 "Ampicillin" "M45 Table 7" 1 4 FALSE -"CLSI 2015" "DISK" "Enterococcus" 3 "Ampicillin" "Table 2D" "10μg" 17 16 FALSE +"CLSI 2015" "DISK" "Enterococcus" 3 "Ampicillin" "Table 2D" "10ug" 17 16 FALSE "CLSI 2015" "MIC" "Enterococcus" 3 "Ampicillin" "Table 2D" 8 16 FALSE "CLSI 2015" "MIC" "Erysipelothrix rhusiopathiae" 2 "Ampicillin" "M45 Table 6" 0.25 2048 FALSE "CLSI 2015" "MIC" "Granulicatella" 3 "Ampicillin" "M45 Table 1" 0.25 8 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Ampicillin" "Table 2E" "10μg" 22 18 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Ampicillin" "Table 2E" "10ug" 22 18 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Ampicillin" "Table 2E" 1 4 FALSE "CLSI 2015" "MIC" "Leuconostoc" 3 "Ampicillin" "M45 Table 10" 8 2048 FALSE "CLSI 2015" "MIC" "Lactobacillus" 3 "Ampicillin" "M45 Table 9" 8 2048 FALSE "CLSI 2015" "MIC" "Listeria monocytogenes" 2 "Ampicillin" "M45 Table 11" 2 2048 FALSE "CLSI 2015" "MIC" "Neisseria meningitidis" 2 "Ampicillin" "Table 2I" 0.125 2 FALSE "CLSI 2015" "MIC" "Pediococcus" 3 "Ampicillin" "M45 Table 14" 8 2048 FALSE -"CLSI 2015" "DISK" "Pasteurella" 3 "Ampicillin" "M45 Table 13" "10μg" 27 6 FALSE +"CLSI 2015" "DISK" "Pasteurella" 3 "Ampicillin" "M45 Table 13" "10ug" 27 6 FALSE "CLSI 2015" "MIC" "Pasteurella" 3 "Ampicillin" "M45 Table 13" 0.5 2048 FALSE -"CLSI 2015" "DISK" "Streptococcus" 3 "Ampicillin" "Table 2H-1" "10μg" 24 6 FALSE +"CLSI 2015" "DISK" "Streptococcus" 3 "Ampicillin" "Table 2H-1" "10ug" 24 6 FALSE "CLSI 2015" "MIC" "Streptococcus" 3 "Ampicillin" "Table 2H-1" 0.25 2048 FALSE "CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Table 2H-2" 0.25 8 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Ampicillin" "Generic rules" "10μg" 17 13 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Ampicillin" "Generic rules" "2μg" 8 32 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Ampicillin" "Generic rules" "10ug" 17 13 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Ampicillin" "Generic rules" "2ug" 8 32 FALSE "CLSI 2015" "MIC" "Pasteurella" 3 "Amoxicillin" "M45 Table 13" 0.5 2048 FALSE "CLSI 2015" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Amoxicillin" "Table 2G" 2 8 FALSE -"CLSI 2015" "DISK" "Aeromonas" 3 "Aztreonam" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2015" "DISK" "Aeromonas" 3 "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2015" "MIC" "Aeromonas" 3 "Aztreonam" "M45 Table 2" 4 16 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Aztreonam" "Table 2B-5" 8 32 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Aztreonam" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Aztreonam" "Table 2E" "30ug" 26 6 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Aztreonam" "Table 2E" 2 2048 FALSE -"CLSI 2015" "DISK" "Plesiomonas" 3 "Aztreonam" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2015" "DISK" "Plesiomonas" 3 "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2015" "MIC" "Plesiomonas" 3 "Aztreonam" "M45 Table 2" 4 16 FALSE -"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" "30μg" 22 15 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" "30ug" 22 15 FALSE "CLSI 2015" "MIC" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" 8 32 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Aztreonam" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Aztreonam" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Azlocillin" "Generic rules" "75μg" 18 17 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Azlocillin" "Generic rules" "75μg" 64 128 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Azlocillin" "Generic rules" "75ug" 18 17 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Azlocillin" "Generic rules" "75ug" 64 128 FALSE "CLSI 2015" "MIC" "Aggregatibacter" 3 "Azithromycin" "M45 Table 7" 4 2048 FALSE "CLSI 2015" "MIC" "Cardiobacterium" 3 "Azithromycin" "M45 Table 7" 4 2048 FALSE "CLSI 2015" "MIC" "Eikenella" 3 "Azithromycin" "M45 Table 7" 4 2048 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Azithromycin" "Table 2E" "15μg" 12 6 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Azithromycin" "Table 2E" "15ug" 12 6 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Azithromycin" "Table 2E" 4 2048 FALSE "CLSI 2015" "MIC" "Kingella" 3 "Azithromycin" "M45 Table 7" 4 2048 FALSE -"CLSI 2015" "DISK" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 12" "15μg" 26 6 FALSE +"CLSI 2015" "DISK" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 12" "15ug" 26 6 FALSE "CLSI 2015" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 12" 0.25 2048 FALSE -"CLSI 2015" "DISK" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" "15μg" 20 6 FALSE +"CLSI 2015" "DISK" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" "15ug" 20 6 FALSE "CLSI 2015" "MIC" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" 2 2048 FALSE -"CLSI 2015" "DISK" "Pasteurella" 3 "Azithromycin" "M45 Table 13" "15μg" 20 6 FALSE +"CLSI 2015" "DISK" "Pasteurella" 3 "Azithromycin" "M45 Table 13" "15ug" 20 6 FALSE "CLSI 2015" "MIC" "Pasteurella" 3 "Azithromycin" "M45 Table 13" 1 2048 FALSE "CLSI 2015" "DISK" "Salmonella enterica" 2 "Azithromycin" "Table 2A" 13 12 FALSE "CLSI 2015" "MIC" "Salmonella enterica" 2 "Azithromycin" "Table 2A" 16 32 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Azithromycin" "Table 2C" "15μg" 18 13 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Azithromycin" "Table 2C" "15ug" 18 13 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Azithromycin" "Table 2C" 2 8 FALSE -"CLSI 2015" "DISK" "Streptococcus" 3 "Azithromycin" "Table 2H-1" "15μg" 18 13 FALSE +"CLSI 2015" "DISK" "Streptococcus" 3 "Azithromycin" "Table 2H-1" "15ug" 18 13 FALSE "CLSI 2015" "MIC" "Streptococcus" 3 "Azithromycin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" "15μg" 18 13 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" "15ug" 18 13 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" 0.5 2 FALSE -"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" "15μg" 18 13 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" "15ug" 18 13 FALSE "CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" 0.5 2 FALSE -"CLSI 2015" "MIC" "Vibrio cholerae" 2 "Azithromycin" "M45 Table 14" "30μg" 2 2048 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Azithromycin" "Generic rules" "15μg" 18 13 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Azithromycin" "Generic rules" "15μg" 2 8 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Cefetamet" "Table 2E" "10μg" 18 14 FALSE +"CLSI 2015" "MIC" "Vibrio cholerae" 2 "Azithromycin" "M45 Table 14" "30ug" 2 2048 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Azithromycin" "Generic rules" "15ug" 18 13 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Azithromycin" "Generic rules" "15ug" 2 8 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Cefetamet" "Table 2E" "10ug" 18 14 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Cefetamet" "Table 2E" 4 16 FALSE -"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Cefetamet" "Table 2F" "10μg" 29 6 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Cefetamet" "Table 2F" "10ug" 29 6 FALSE "CLSI 2015" "MIC" "Neisseria gonorrhoeae" 2 "Cefetamet" "Table 2F" 0.5 2048 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Cefetamet" "Generic rules" "10μg" 18 14 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Cefetamet" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2015" "DISK" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" "30μg" 18 14 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Cefetamet" "Generic rules" "10ug" 18 14 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Cefetamet" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2015" "DISK" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" "30ug" 18 14 FALSE "CLSI 2015" "MIC" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" 8 32 FALSE -"CLSI 2015" "DISK" "Aeromonas" 3 "Ceftazidime" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2015" "DISK" "Aeromonas" 3 "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2015" "MIC" "Aeromonas" 3 "Ceftazidime" "M45 Table 2" 4 16 FALSE "CLSI 2015" "MIC" "Bacillus" 3 "Ceftazidime" "M45 Table 3" 8 32 FALSE -"CLSI 2015" "DISK" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" "30μg" 21 17 FALSE +"CLSI 2015" "DISK" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" "30ug" 21 17 FALSE "CLSI 2015" "MIC" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" 8 32 FALSE "CLSI 2015" "MIC" "Burkholderia mallei" 2 "Ceftazidime" "M45 Table 16" 8 32 FALSE "CLSI 2015" "MIC" "Burkholderia pseudomallei" 2 "Ceftazidime" "M45 Table 16" 8 32 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Ceftazidime" "Table 2B-5" 8 32 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Ceftazidime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Ceftazidime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Ceftazidime" "Table 2E" 2 2048 FALSE "CLSI 2015" "MIC" "Moraxella catarrhalis" 2 "Ceftazidime" "M45 Table 12" 2 2048 FALSE -"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Ceftazidime" "Table 2F" "30μg" 31 6 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Ceftazidime" "Table 2F" "30ug" 31 6 FALSE "CLSI 2015" "MIC" "Neisseria gonorrhoeae" 2 "Ceftazidime" "Table 2F" 0.5 2048 FALSE -"CLSI 2015" "DISK" "Plesiomonas" 3 "Ceftazidime" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2015" "DISK" "Plesiomonas" 3 "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2015" "MIC" "Plesiomonas" 3 "Ceftazidime" "M45 Table 2" 4 16 FALSE -"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" "30μg" 18 14 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" "30ug" 18 14 FALSE "CLSI 2015" "MIC" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" 8 32 FALSE "CLSI 2015" "MIC" "Stenotrophomonas maltophilia" 2 "Ceftazidime" "Table 2B-4" 8 32 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Cefdinir" "Table 2E" "5μg" 20 6 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Cefdinir" "Table 2E" "5ug" 20 6 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Cefdinir" "Table 2E" 1 2048 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Cefdinir" "Table 2G" 0.5 2 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Cefdinir" "Generic rules" "5μg" 20 16 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Cefdinir" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Cefaclor" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Cefdinir" "Generic rules" "5ug" 20 16 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Cefdinir" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Cefaclor" "Table 2E" "30ug" 20 16 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Cefaclor" "Table 2E" 8 32 FALSE "CLSI 2015" "MIC" "Moraxella catarrhalis" 2 "Cefaclor" "M45 Table 12" 8 32 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" "Table 2G" 1 4 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Cefaclor" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Cefaclor" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Cephalothin" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Cephalothin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Cefixime" "Table 2E" "5μg" 21 6 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Cefaclor" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Cefaclor" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Cephalothin" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Cephalothin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Cefixime" "Table 2E" "5ug" 21 6 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Cefixime" "Table 2E" 1 2048 FALSE -"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" "5μg" 31 6 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" "5ug" 31 6 FALSE "CLSI 2015" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" 0.25 2048 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Cefixime" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Cefixime" "Generic rules" "5μg" 1 4 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 1 4 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Cefoperazone" "Table 2B-5" 16 64 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75μg" 21 15 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75μg" 16 64 FALSE -"CLSI 2015" "DISK" "Aeromonas" 3 "Chloramphenicol" "M45 Table 2" "30μg" 18 12 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75ug" 21 15 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75ug" 16 64 FALSE +"CLSI 2015" "DISK" "Aeromonas" 3 "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE "CLSI 2015" "MIC" "Aeromonas" 3 "Chloramphenicol" "M45 Table 2" 8 32 FALSE "CLSI 2015" "MIC" "Aggregatibacter" 3 "Chloramphenicol" "M45 Table 7" 4 16 FALSE "CLSI 2015" "MIC" "Bacillus" 3 "Chloramphenicol" "M45 Table 3" 8 32 FALSE "CLSI 2015" "MIC" "Burkholderia cepacia" 2 "Chloramphenicol" "Table 2B-3" 8 32 FALSE "CLSI 2015" "MIC" "Cardiobacterium" 3 "Chloramphenicol" "M45 Table 7" 4 16 FALSE "CLSI 2015" "MIC" "Eikenella" 3 "Chloramphenicol" "M45 Table 7" 4 16 FALSE -"CLSI 2015" "DISK" "Enterococcus" 3 "Chloramphenicol" "Table 2D" "30μg" 18 12 FALSE +"CLSI 2015" "DISK" "Enterococcus" 3 "Chloramphenicol" "Table 2D" "30ug" 18 12 FALSE "CLSI 2015" "MIC" "Enterococcus" 3 "Chloramphenicol" "Table 2D" 8 32 FALSE "CLSI 2015" "MIC" "Francisella tularensis tularensis" 1 "Chloramphenicol" "M45 Table 16" 8 2048 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Chloramphenicol" "Table 2B-5" 8 32 FALSE "CLSI 2015" "MIC" "Granulicatella" 3 "Chloramphenicol" "M45 Table 1" 4 8 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Chloramphenicol" "Table 2E" "30μg" 29 25 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Chloramphenicol" "Table 2E" "30ug" 29 25 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Chloramphenicol" "Table 2E" 2 8 FALSE "CLSI 2015" "MIC" "Kingella" 3 "Chloramphenicol" "M45 Table 7" 4 16 FALSE "CLSI 2015" "MIC" "Leuconostoc" 3 "Chloramphenicol" "M45 Table 10" 8 32 FALSE "CLSI 2015" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" "M45 Table 12" 2 8 FALSE -"CLSI 2015" "DISK" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" "30μg" 26 19 FALSE +"CLSI 2015" "DISK" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" "30ug" 26 19 FALSE "CLSI 2015" "MIC" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" 2 8 FALSE "CLSI 2015" "MIC" "Pediococcus" 3 "Chloramphenicol" "M45 Table 14" 8 32 FALSE -"CLSI 2015" "DISK" "Plesiomonas" 3 "Chloramphenicol" "M45 Table 2" "30μg" 18 12 FALSE +"CLSI 2015" "DISK" "Plesiomonas" 3 "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE "CLSI 2015" "MIC" "Plesiomonas" 3 "Chloramphenicol" "M45 Table 2" 8 32 FALSE -"CLSI 2015" "DISK" "Pasteurella" 3 "Chloramphenicol" "M45 Table 13" "30μg" 28 6 FALSE +"CLSI 2015" "DISK" "Pasteurella" 3 "Chloramphenicol" "M45 Table 13" "30ug" 28 6 FALSE "CLSI 2015" "MIC" "Pasteurella" 3 "Chloramphenicol" "M45 Table 13" 2 2048 FALSE "CLSI 2015" "MIC" "Stenotrophomonas maltophilia" 2 "Chloramphenicol" "Table 2B-4" 8 32 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" "30μg" 18 12 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" "30ug" 18 12 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" 8 32 FALSE -"CLSI 2015" "DISK" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" "30μg" 21 17 FALSE +"CLSI 2015" "DISK" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" "30ug" 21 17 FALSE "CLSI 2015" "MIC" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" 4 16 FALSE -"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" "30μg" 21 20 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" "30ug" 21 20 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" 4 8 FALSE -"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" "30μg" 21 17 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" "30ug" 21 17 FALSE "CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" 4 16 FALSE "CLSI 2015" "MIC" "Yersinia pestis" 2 "Chloramphenicol" "M45 Table 16" 8 32 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30μg" 18 12 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Cefonicid" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 18 12 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Cefonicid" "Table 2E" "30ug" 20 16 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Cefonicid" "Table 2E" 4 16 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Cefonicid" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Cefonicid" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100μg" 19 14 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100μg" 16 64 FALSE -"CLSI 2015" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" "5μg" 21 15 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Cefonicid" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Cefonicid" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100ug" 19 14 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100ug" 16 64 FALSE +"CLSI 2015" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" "5ug" 21 15 FALSE "CLSI 2015" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" 1 4 FALSE -"CLSI 2015" "DISK" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 2" "5μg" 21 15 FALSE +"CLSI 2015" "DISK" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE "CLSI 2015" "MIC" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 2" 1 4 FALSE "CLSI 2015" "MIC" "Aggregatibacter" 3 "Ciprofloxacin" "M45 Table 7" 1 4 FALSE "CLSI 2015" "MIC" "Bacillus" 3 "Ciprofloxacin" "M45 Table 3" 1 4 FALSE @@ -14931,102 +14931,102 @@ "CLSI 2015" "MIC" "Campylobacter" 3 "Ciprofloxacin" "M45 Table 3" 1 4 FALSE "CLSI 2015" "MIC" "Cardiobacterium" 3 "Ciprofloxacin" "M45 Table 7" 1 4 FALSE "CLSI 2015" "MIC" "Eikenella" 3 "Ciprofloxacin" "M45 Table 7" 1 4 FALSE -"CLSI 2015" "DISK" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" "5μg" 21 15 FALSE +"CLSI 2015" "DISK" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" "5ug" 21 15 FALSE "CLSI 2015" "MIC" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" 1 4 FALSE "CLSI 2015" "MIC" "Erysipelothrix rhusiopathiae" 2 "Ciprofloxacin" "M45 Table 6" 1 2048 FALSE "CLSI 2015" "MIC" "Francisella tularensis tularensis" 1 "Ciprofloxacin" "M45 Table 16" 0.5 2048 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Ciprofloxacin" "Table 2B-5" 1 4 FALSE "CLSI 2015" "MIC" "Granulicatella" 3 "Ciprofloxacin" "M45 Table 1" 1 4 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" "5μg" 21 6 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" "5ug" 21 6 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" 1 2048 FALSE "CLSI 2015" "MIC" "Kingella" 3 "Ciprofloxacin" "M45 Table 7" 1 4 FALSE "CLSI 2015" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M45 Table 12" 1 2048 FALSE -"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" "5μg" 41 27 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" "5ug" 41 27 FALSE "CLSI 2015" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" 0.064 1 FALSE -"CLSI 2015" "DISK" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" "5μg" 35 32 FALSE +"CLSI 2015" "DISK" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" "5ug" 35 32 FALSE "CLSI 2015" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" 0.032 0.12 FALSE -"CLSI 2015" "DISK" "Plesiomonas" 3 "Ciprofloxacin" "M45 Table 2" "5μg" 21 15 FALSE +"CLSI 2015" "DISK" "Plesiomonas" 3 "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE "CLSI 2015" "MIC" "Plesiomonas" 3 "Ciprofloxacin" "M45 Table 2" 1 4 FALSE -"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" "5μg" 21 15 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" "5ug" 21 15 FALSE "CLSI 2015" "MIC" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" 1 4 FALSE -"CLSI 2015" "DISK" "Extraintestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5μg" 31 20 FALSE -"CLSI 2015" "DISK" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5μg" 31 20 FALSE +"CLSI 2015" "DISK" "Extraintestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE +"CLSI 2015" "DISK" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE "CLSI 2015" "MIC" "Extraintestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" 0.064 1 FALSE "CLSI 2015" "MIC" "Salmonella" 3 "Ciprofloxacin" "Table 2A" 0.064 1 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" "5μg" 21 15 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" "5ug" 21 15 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" 1 4 FALSE "CLSI 2015" "MIC" "Yersinia pestis" 2 "Ciprofloxacin" "M45 Table 16" 0.25 2048 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5μg" 21 15 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5μg" 1 4 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 21 15 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 1 4 FALSE "CLSI 2015" "MIC" "Bacillus" 3 "Clindamycin" "M45 Table 3" 0.5 4 FALSE "CLSI 2015" "MIC" "Erysipelothrix rhusiopathiae" 2 "Clindamycin" "M45 Table 6" 0.25 1 FALSE "CLSI 2015" "MIC" "Granulicatella" 3 "Clindamycin" "M45 Table 1" 0.25 1 FALSE "CLSI 2015" "MIC" "Lactobacillus" 3 "Clindamycin" "M45 Table 9" 0.5 2 FALSE "CLSI 2015" "MIC" "Moraxella catarrhalis" 2 "Clindamycin" "M45 Table 12" 0.5 4 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Clindamycin" "Table 2C" "2μg" 21 14 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Clindamycin" "Table 2C" "2ug" 21 14 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Clindamycin" "Table 2C" 0.5 4 FALSE -"CLSI 2015" "DISK" "Streptococcus" 3 "Clindamycin" "Table 2H-1" "2μg" 19 15 FALSE +"CLSI 2015" "DISK" "Streptococcus" 3 "Clindamycin" "Table 2H-1" "2ug" 19 15 FALSE "CLSI 2015" "MIC" "Streptococcus" 3 "Clindamycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" "2μg" 19 15 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" "2ug" 19 15 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" 0.25 1 FALSE -"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" "2μg" 19 15 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" "2ug" 19 15 FALSE "CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Clindamycin" "Generic rules" "2μg" 21 14 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Clindamycin" "Generic rules" "2μg" 0.5 4 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Clindamycin" "Generic rules" "2ug" 21 14 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Clindamycin" "Generic rules" "2ug" 0.5 4 FALSE "CLSI 2015" "MIC" "Aggregatibacter" 3 "Clarithromycin" "M45 Table 7" 8 32 FALSE "CLSI 2015" "MIC" "Cardiobacterium" 3 "Clarithromycin" "M45 Table 7" 8 32 FALSE "CLSI 2015" "MIC" "Eikenella" 3 "Clarithromycin" "M45 Table 7" 8 32 FALSE "CLSI 2015" "MIC" "Helicobacter pylori" 2 "Clarithromycin" "M45 Table 8" 0.25 1 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Clarithromycin" "Table 2E" "15μg" 13 10 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Clarithromycin" "Table 2E" "15ug" 13 10 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Clarithromycin" "Table 2E" 8 32 FALSE "CLSI 2015" "MIC" "Kingella" 3 "Clarithromycin" "M45 Table 7" 8 32 FALSE -"CLSI 2015" "DISK" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 12" "15μg" 24 6 FALSE +"CLSI 2015" "DISK" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 12" "15ug" 24 6 FALSE "CLSI 2015" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 12" 1 2048 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Clarithromycin" "Table 2C" "15μg" 18 13 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Clarithromycin" "Table 2C" "15ug" 18 13 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Clarithromycin" "Table 2C" 2 8 FALSE -"CLSI 2015" "DISK" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" "15μg" 21 16 FALSE +"CLSI 2015" "DISK" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" "15ug" 21 16 FALSE "CLSI 2015" "MIC" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" "15μg" 21 16 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" "15ug" 21 16 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" 0.25 1 FALSE -"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" "15μg" 21 16 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" "15ug" 21 16 FALSE "CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15μg" 18 13 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15μg" 2 8 FALSE -"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Cefmetazole" "Table 2F" "30μg" 33 27 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15ug" 18 13 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15ug" 2 8 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Cefmetazole" "Table 2F" "30ug" 33 27 FALSE "CLSI 2015" "MIC" "Neisseria gonorrhoeae" 2 "Cefmetazole" "Table 2F" 2 8 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30μg" 16 64 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30ug" 16 64 FALSE "CLSI 2015" "MIC" "Acinetobacter" 3 "Colistin" "Table 2B-2" 2 4 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Colistin" "Table 2B-5" 2 8 FALSE -"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Colistin" "Table 2B-1" "10μg" 11 10 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Colistin" "Table 2B-1" "10ug" 11 10 FALSE "CLSI 2015" "MIC" "Pseudomonas aeruginosa" 2 "Colistin" "Table 2B-1" 2 8 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Colistin" "Generic rules" "10μg" 11 10 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Colistin" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Cefpodoxime" "Table 2E" "10μg" 21 6 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Colistin" "Generic rules" "10ug" 11 10 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Colistin" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Cefpodoxime" "Table 2E" "10ug" 21 6 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Cefpodoxime" "Table 2E" 2 2048 FALSE -"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" "10μg" 29 6 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" "10ug" 29 6 FALSE "CLSI 2015" "MIC" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" 0.5 2048 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" "Table 2G" 0.5 2 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10μg" 21 17 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Cefprozil" "Table 2E" "30μg" 18 14 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 21 17 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Cefprozil" "Table 2E" "30ug" 18 14 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Cefprozil" "Table 2E" 8 32 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Cefprozil" "Table 2G" 2 8 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Cefprozil" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Cefprozil" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2015" "DISK" "Haemophilus influenzae" 2 "Ceftaroline" "Table 2E" "30μg" 30 6 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Cefprozil" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Cefprozil" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2015" "DISK" "Haemophilus influenzae" 2 "Ceftaroline" "Table 2E" "30ug" 30 6 FALSE "CLSI 2015" "MIC" "Haemophilus influenzae" 2 "Ceftaroline" "Table 2E" 0.5 2048 FALSE -"CLSI 2015" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Table 2C" "30μg" 24 20 FALSE +"CLSI 2015" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Table 2C" "30ug" 24 20 FALSE "CLSI 2015" "MIC" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Table 2C" 1 4 FALSE -"CLSI 2015" "DISK" "Streptococcus" 3 "Ceftaroline" "Table 2H-1" "30μg" 26 6 FALSE +"CLSI 2015" "DISK" "Streptococcus" 3 "Ceftaroline" "Table 2H-1" "30ug" 26 6 FALSE "CLSI 2015" "MIC" "Streptococcus" 3 "Ceftaroline" "Table 2H-1" 0.5 2048 FALSE "CLSI 2015" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Ceftaroline" "Table 2G" 0.5 2048 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30μg" 0.5 2 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30ug" 0.5 2 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Carbenicillin" "Table 2B-5" 16 64 FALSE -"CLSI 2015" "DISK" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" "30μg" 21 13 FALSE +"CLSI 2015" "DISK" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" "30ug" 21 13 FALSE "CLSI 2015" "MIC" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" 8 64 FALSE -"CLSI 2015" "DISK" "Aeromonas" 3 "Ceftriaxone" "M45 Table 2" "30μg" 23 19 FALSE +"CLSI 2015" "DISK" "Aeromonas" 3 "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE "CLSI 2015" "MIC" "Aeromonas" 3 "Ceftriaxone" "M45 Table 2" 1 4 FALSE "CLSI 2015" "MIC" "Aggregatibacter" 3 "Ceftriaxone" "M45 Table 7" 2 2048 FALSE "CLSI 2015" "MIC" "Bacillus" 3 "Ceftriaxone" "M45 Table 3" 8 64 FALSE @@ -15035,37 +15035,37 @@ "CLSI 2015" "MIC" "Erysipelothrix rhusiopathiae" 2 "Ceftriaxone" "M45 Table 6" 1 2048 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Ceftriaxone" "Table 2B-5" 8 64 FALSE "CLSI 2015" "MIC" "Granulicatella" 3 "Ceftriaxone" "M45 Table 1" 1 4 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Ceftriaxone" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Ceftriaxone" "Table 2E" "30ug" 26 6 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Ceftriaxone" "Table 2E" 2 2048 FALSE "CLSI 2015" "MIC" "Kingella" 3 "Ceftriaxone" "M45 Table 7" 2 2048 FALSE "CLSI 2015" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" "M45 Table 12" 2 2048 FALSE -"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" "30μg" 35 6 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" "30ug" 35 6 FALSE "CLSI 2015" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" 0.25 2048 FALSE -"CLSI 2015" "DISK" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" "30μg" 34 6 FALSE +"CLSI 2015" "DISK" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" "30ug" 34 6 FALSE "CLSI 2015" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" 0.125 2048 FALSE -"CLSI 2015" "DISK" "Plesiomonas" 3 "Ceftriaxone" "M45 Table 2" "30μg" 23 19 FALSE +"CLSI 2015" "DISK" "Plesiomonas" 3 "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE "CLSI 2015" "MIC" "Plesiomonas" 3 "Ceftriaxone" "M45 Table 2" 1 4 FALSE -"CLSI 2015" "DISK" "Pasteurella" 3 "Ceftriaxone" "M45 Table 13" "30μg" 34 6 FALSE +"CLSI 2015" "DISK" "Pasteurella" 3 "Ceftriaxone" "M45 Table 13" "30ug" 34 6 FALSE "CLSI 2015" "MIC" "Pasteurella" 3 "Ceftriaxone" "M45 Table 13" 0.125 2048 FALSE -"CLSI 2015" "DISK" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2015" "DISK" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2015" "MIC" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" 0.5 2048 FALSE "CLSI 2015" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Table 2G" 0.5 2 FALSE "CLSI 2015" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Table 2G" 1 4 FALSE -"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" "30μg" 27 24 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" "30ug" 27 24 FALSE "CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" 1 4 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30μg" 1 4 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Ceftibuten" "Table 2E" "30μg" 28 6 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 1 4 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Ceftibuten" "Table 2E" "30ug" 28 6 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Ceftibuten" "Table 2E" 2 2048 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" "30μg" 26 19 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" "30ug" 26 19 FALSE "CLSI 2015" "MIC" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" 2 8 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Cefotetan" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Cefotetan" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2015" "DISK" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" "30μg" 23 14 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Cefotetan" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Cefotetan" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2015" "DISK" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" "30ug" 23 14 FALSE "CLSI 2015" "MIC" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" 8 64 FALSE -"CLSI 2015" "DISK" "Aeromonas" 3 "Cefotaxime" "M45 Table 2" "30μg" 26 22 FALSE +"CLSI 2015" "DISK" "Aeromonas" 3 "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE "CLSI 2015" "MIC" "Aeromonas" 3 "Cefotaxime" "M45 Table 2" 1 4 FALSE "CLSI 2015" "MIC" "Aggregatibacter" 3 "Cefotaxime" "M45 Table 7" 2 2048 FALSE "CLSI 2015" "MIC" "Bacillus" 3 "Cefotaxime" "M45 Table 3" 8 64 FALSE @@ -15074,244 +15074,244 @@ "CLSI 2015" "MIC" "Erysipelothrix rhusiopathiae" 2 "Cefotaxime" "M45 Table 6" 1 2048 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Cefotaxime" "Table 2B-5" 8 64 FALSE "CLSI 2015" "MIC" "Granulicatella" 3 "Cefotaxime" "M45 Table 1" 1 4 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Cefotaxime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Cefotaxime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Cefotaxime" "Table 2E" 2 2048 FALSE "CLSI 2015" "MIC" "Kingella" 3 "Cefotaxime" "M45 Table 7" 2 2048 FALSE "CLSI 2015" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" "M45 Table 12" 2 2048 FALSE -"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" "30μg" 31 6 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" "30ug" 31 6 FALSE "CLSI 2015" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" 0.5 2048 FALSE -"CLSI 2015" "DISK" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" "30μg" 34 6 FALSE +"CLSI 2015" "DISK" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" "30ug" 34 6 FALSE "CLSI 2015" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" 0.125 2048 FALSE -"CLSI 2015" "DISK" "Plesiomonas" 3 "Cefotaxime" "M45 Table 2" "30μg" 26 22 FALSE +"CLSI 2015" "DISK" "Plesiomonas" 3 "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE "CLSI 2015" "MIC" "Plesiomonas" 3 "Cefotaxime" "M45 Table 2" 1 4 FALSE -"CLSI 2015" "DISK" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2015" "DISK" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2015" "MIC" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" 0.5 2048 FALSE "CLSI 2015" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Cefotaxime" "Table 2G" 0.5 2 FALSE "CLSI 2015" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Cefotaxime" "Table 2G" 1 4 FALSE -"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" "30μg" 28 25 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" "30ug" 28 25 FALSE "CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" 1 4 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30μg" 26 22 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30μg" 1 4 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30ug" 26 22 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30ug" 1 4 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" "30ug" 20 16 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" 4 16 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Cefuroxime axetil" "Table 2G" 1 4 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30μg" 23 14 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30μg" 4 32 FALSE -"CLSI 2015" "DISK" "Aeromonas" 3 "Cefuroxime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 23 14 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 4 32 FALSE +"CLSI 2015" "DISK" "Aeromonas" 3 "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2015" "MIC" "Aeromonas" 3 "Cefuroxime" "M45 Table 2" 8 32 FALSE -"CLSI 2015" "DISK" "Oral" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30μg" 20 16 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2015" "DISK" "Oral" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE "CLSI 2015" "MIC" "Oral" "Haemophilus" 3 "Cefuroxime" "Table 2E" 4 16 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Cefuroxime" "Table 2E" 4 16 FALSE "CLSI 2015" "MIC" "Moraxella catarrhalis" 2 "Cefuroxime" "M45 Table 12" 4 16 FALSE -"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Cefuroxime" "Table 2F" "30μg" 31 25 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Cefuroxime" "Table 2F" "30ug" 31 25 FALSE "CLSI 2015" "MIC" "Neisseria gonorrhoeae" 2 "Cefuroxime" "Table 2F" 1 4 FALSE -"CLSI 2015" "DISK" "Plesiomonas" 3 "Cefuroxime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2015" "DISK" "Plesiomonas" 3 "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2015" "MIC" "Plesiomonas" 3 "Cefuroxime" "M45 Table 2" 8 32 FALSE "CLSI 2015" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Table 2G" 1 4 FALSE "CLSI 2015" "MIC" "Parenteral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Table 2G" 0.5 2 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30μg" 8 32 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 8 32 FALSE "CLSI 2015" "DISK" "Urine" "Enterobacterales" 5 "Cefazolin" "Table 2A" 15 14 TRUE "CLSI 2015" "MIC" "Urine" "Enterobacterales" 5 "Cefazolin" "Table 2A" 16 32 TRUE "CLSI 2015" "MIC" "Aeromonas" 3 "Cefazolin" "M45 Table 2" 1 4 FALSE "CLSI 2015" "MIC" "Bacillus" 3 "Cefazolin" "M45 Table 3" 8 16 FALSE "CLSI 2015" "MIC" "Plesiomonas" 3 "Cefazolin" "M45 Table 2" 1 4 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Cefazolin" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Cefazolin" "Generic rules" "30μg" 2 8 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Cefazolin" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Cefazolin" "Generic rules" "30ug" 2 8 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Ceftizoxime" "Table 2B-5" 8 64 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Ceftizoxime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Ceftizoxime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Ceftizoxime" "Table 2E" 2 2048 FALSE -"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" "30μg" 38 6 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" "30ug" 38 6 FALSE "CLSI 2015" "MIC" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" 0.5 2048 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30μg" 25 21 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30μg" 1 4 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30ug" 25 21 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30ug" 1 4 FALSE "CLSI 2015" "MIC" "Enterococcus" 3 "Daptomycin" "Table 2D" 4 2048 FALSE "CLSI 2015" "MIC" "Lactobacillus" 3 "Daptomycin" "M45 Table 9" 4 2048 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Daptomycin" "Table 2C" 1 2048 FALSE -"CLSI 2015" "DISK" "Streptococcus" 3 "Daptomycin" "Table 2H-1" "30μg" 16 6 FALSE +"CLSI 2015" "DISK" "Streptococcus" 3 "Daptomycin" "Table 2H-1" "30ug" 16 6 FALSE "CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Daptomycin" "Table 2H-2" 1 2048 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Daptomycin" "Generic rules" "30μg" 1 2048 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Difloxacin" "Generic rules" "10μg" 21 17 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Difloxacin" "Generic rules" "10μg" 0.5 4 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Dirithromycin" "Table 2C" "15μg" 19 15 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Daptomycin" "Generic rules" "30ug" 1 2048 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Difloxacin" "Generic rules" "10ug" 21 17 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Difloxacin" "Generic rules" "10ug" 0.5 4 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Dirithromycin" "Table 2C" "15ug" 19 15 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Dirithromycin" "Table 2C" 2 8 FALSE -"CLSI 2015" "DISK" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" "15μg" 18 13 FALSE +"CLSI 2015" "DISK" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" "15ug" 18 13 FALSE "CLSI 2015" "MIC" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" "15μg" 18 13 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" "15ug" 18 13 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" 0.5 2 FALSE -"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" "15μg" 18 13 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" "15ug" 18 13 FALSE "CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" 0.5 2 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15μg" 19 15 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15μg" 2 8 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15ug" 19 15 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15ug" 2 8 FALSE "CLSI 2015" "DISK" "Acinetobacter" 3 "Doripenem" "Table 2B-2" 18 14 FALSE "CLSI 2015" "MIC" "Acinetobacter" 3 "Doripenem" "Table 2B-2" 2 8 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Doripenem" "Table 2E" "10μg" 16 6 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Doripenem" "Table 2E" "10ug" 16 6 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Doripenem" "Table 2E" 1 2048 FALSE -"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2015" "MIC" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" 2 8 FALSE "CLSI 2015" "MIC" "Streptococcus" 3 "Doripenem" "Table 2H-1" 0.125 2048 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" "Table 2G" 1 2048 FALSE "CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" "Table 2H-2" 1 2048 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Doripenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Doripenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2015" "DISK" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" "30μg" 13 9 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Doripenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Doripenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2015" "DISK" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" "30ug" 13 9 FALSE "CLSI 2015" "MIC" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" 4 16 FALSE "CLSI 2015" "MIC" "Bacillus anthracis" 2 "Doxycycline" "M45 Table 16" 1 2048 FALSE "CLSI 2015" "MIC" "Brucella" 3 "Doxycycline" "M45 Table 16" 1 2048 FALSE "CLSI 2015" "MIC" "Burkholderia mallei" 2 "Doxycycline" "M45 Table 16" 4 16 FALSE "CLSI 2015" "MIC" "Burkholderia pseudomallei" 2 "Doxycycline" "M45 Table 16" 4 16 FALSE "CLSI 2015" "MIC" "Campylobacter" 3 "Doxycycline" "M45 Table 3" 2 8 FALSE -"CLSI 2015" "DISK" "Enterococcus" 3 "Doxycycline" "Table 2D" "30μg" 16 12 FALSE +"CLSI 2015" "DISK" "Enterococcus" 3 "Doxycycline" "Table 2D" "30ug" 16 12 FALSE "CLSI 2015" "MIC" "Enterococcus" 3 "Doxycycline" "Table 2D" 4 16 FALSE "CLSI 2015" "MIC" "Francisella tularensis tularensis" 1 "Doxycycline" "M45 Table 16" 4 2048 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Doxycycline" "Table 2B-5" 4 16 FALSE -"CLSI 2015" "DISK" "Pasteurella" 3 "Doxycycline" "M45 Table 13" "30μg" 23 6 FALSE +"CLSI 2015" "DISK" "Pasteurella" 3 "Doxycycline" "M45 Table 13" "30ug" 23 6 FALSE "CLSI 2015" "MIC" "Pasteurella" 3 "Doxycycline" "M45 Table 13" 0.5 2048 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Doxycycline" "Table 2C" "30μg" 16 12 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Doxycycline" "Table 2C" "30ug" 16 12 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Doxycycline" "Table 2C" 4 16 FALSE -"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Doxycycline" "Table 2G" "30μg" 28 24 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Doxycycline" "Table 2G" "30ug" 28 24 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" "Table 2G" 0.25 1 FALSE -"CLSI 2015" "MIC" "Vibrio cholerae" 2 "Doxycycline" "M45 Table 14" "30μg" 4 16 FALSE +"CLSI 2015" "MIC" "Vibrio cholerae" 2 "Doxycycline" "M45 Table 14" "30ug" 4 16 FALSE "CLSI 2015" "MIC" "Yersinia pestis" 2 "Doxycycline" "M45 Table 16" 4 16 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Doxycycline" "Generic rules" "30μg" 14 10 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Doxycycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2015" "DISK" "Histophilus somni" 2 "Enrofloxacin" "Vet Table" "5μg" 21 16 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Doxycycline" "Generic rules" "30ug" 14 10 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Doxycycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2015" "DISK" "Histophilus somni" 2 "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE "CLSI 2015" "MIC" "Histophilus somni" 2 "Enrofloxacin" "Vet Table" 0.25 2 FALSE -"CLSI 2015" "DISK" "Providencia heimbachae" 2 "Enrofloxacin" "Vet Table" "5μg" 21 16 FALSE -"CLSI 2015" "DISK" "Pasteurella multocida multocida" 1 "Enrofloxacin" "Vet Table" "5μg" 21 16 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5μg" 23 16 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5μg" 0.25 2 FALSE -"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Enoxacin" "Table 2F" "10μg" 36 31 FALSE +"CLSI 2015" "DISK" "Providencia heimbachae" 2 "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2015" "DISK" "Pasteurella multocida multocida" 1 "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5ug" 23 16 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5ug" 0.25 2 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Enoxacin" "Table 2F" "10ug" 36 31 FALSE "CLSI 2015" "MIC" "Neisseria gonorrhoeae" 2 "Enoxacin" "Table 2F" 0.5 2 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Enoxacin" "Table 2C" "10μg" 18 14 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Enoxacin" "Table 2C" "10ug" 18 14 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Enoxacin" "Table 2C" 2 8 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Enoxacin" "Generic rules" "10μg" 18 14 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Enoxacin" "Generic rules" "10μg" 2 8 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Enoxacin" "Generic rules" "10ug" 18 14 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Enoxacin" "Generic rules" "10ug" 2 8 FALSE "CLSI 2015" "MIC" "Bacillus" 3 "Erythromycin" "M45 Table 3" 0.5 8 FALSE "CLSI 2015" "MIC" "Campylobacter" 3 "Erythromycin" "M45 Table 3" 8 32 FALSE -"CLSI 2015" "DISK" "Enterococcus" 3 "Erythromycin" "Table 2D" "15μg" 23 13 FALSE +"CLSI 2015" "DISK" "Enterococcus" 3 "Erythromycin" "Table 2D" "15ug" 23 13 FALSE "CLSI 2015" "MIC" "Enterococcus" 3 "Erythromycin" "Table 2D" 0.5 8 FALSE "CLSI 2015" "MIC" "Erysipelothrix rhusiopathiae" 2 "Erythromycin" "M45 Table 6" 0.25 1 FALSE "CLSI 2015" "MIC" "Granulicatella" 3 "Erythromycin" "M45 Table 1" 0.25 1 FALSE "CLSI 2015" "MIC" "Lactobacillus" 3 "Erythromycin" "M45 Table 9" 0.5 8 FALSE -"CLSI 2015" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 12" "15μg" 21 6 FALSE +"CLSI 2015" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 12" "15ug" 21 6 FALSE "CLSI 2015" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 12" 2 2048 FALSE -"CLSI 2015" "DISK" "Pasteurella" 3 "Erythromycin" "M45 Table 13" "15μg" 27 24 FALSE +"CLSI 2015" "DISK" "Pasteurella" 3 "Erythromycin" "M45 Table 13" "15ug" 27 24 FALSE "CLSI 2015" "MIC" "Pasteurella" 3 "Erythromycin" "M45 Table 13" 0.5 2 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Erythromycin" "Table 2C" "15μg" 23 13 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Erythromycin" "Table 2C" "15ug" 23 13 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Erythromycin" "Table 2C" 0.5 8 FALSE -"CLSI 2015" "DISK" "Streptococcus" 3 "Erythromycin" "Table 2H-1" "15μg" 21 15 FALSE +"CLSI 2015" "DISK" "Streptococcus" 3 "Erythromycin" "Table 2H-1" "15ug" 21 15 FALSE "CLSI 2015" "MIC" "Streptococcus" 3 "Erythromycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" "15μg" 21 15 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" "15ug" 21 15 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" 0.25 1 FALSE -"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" "15μg" 21 15 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" "15ug" 21 15 FALSE "CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Erythromycin" "Generic rules" "15μg" 23 13 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Erythromycin" "Generic rules" "15μg" 0.5 8 FALSE -"CLSI 2015" "DISK" "Aeromonas" 3 "Ertapenem" "M45 Table 2" "10μg" 19 15 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Erythromycin" "Generic rules" "15ug" 23 13 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Erythromycin" "Generic rules" "15ug" 0.5 8 FALSE +"CLSI 2015" "DISK" "Aeromonas" 3 "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE "CLSI 2015" "MIC" "Aeromonas" 3 "Ertapenem" "M45 Table 2" 2 8 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Ertapenem" "Table 2E" "10μg" 19 6 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Ertapenem" "Table 2E" "10ug" 19 6 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Ertapenem" "Table 2E" 0.5 2048 FALSE -"CLSI 2015" "DISK" "Plesiomonas" 3 "Ertapenem" "M45 Table 2" "10μg" 19 15 FALSE +"CLSI 2015" "DISK" "Plesiomonas" 3 "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE "CLSI 2015" "MIC" "Plesiomonas" 3 "Ertapenem" "M45 Table 2" 2 8 FALSE "CLSI 2015" "MIC" "Streptococcus" 3 "Ertapenem" "Table 2H-1" 1 2048 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" "Table 2G" 1 4 FALSE "CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "Table 2H-2" 1 2048 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Ertapenem" "Generic rules" "10μg" 22 18 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Ertapenem" "Generic rules" "10μg" 0.5 2 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "5-fluorocytosine" "Generic rules" "10μg" 4 32 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 22 18 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 0.5 2 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "5-fluorocytosine" "Generic rules" "10ug" 4 32 FALSE "CLSI 2015" "MIC" "Abiotrophia" 3 "Cefepime" "M45 Table 1" 1 4 FALSE -"CLSI 2015" "DISK" "Acinetobacter" 3 "Cefepime" "Table 2B-2" "30μg" 18 14 FALSE +"CLSI 2015" "DISK" "Acinetobacter" 3 "Cefepime" "Table 2B-2" "30ug" 18 14 FALSE "CLSI 2015" "MIC" "Acinetobacter" 3 "Cefepime" "Table 2B-2" 8 32 FALSE -"CLSI 2015" "DISK" "Aeromonas" 3 "Cefepime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2015" "DISK" "Aeromonas" 3 "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2015" "MIC" "Aeromonas" 3 "Cefepime" "M45 Table 2" 8 32 FALSE "CLSI 2015" "MIC" "Erysipelothrix rhusiopathiae" 2 "Cefepime" "M45 Table 6" 1 2048 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Cefepime" "Table 2B-5" 8 32 FALSE "CLSI 2015" "MIC" "Granulicatella" 3 "Cefepime" "M45 Table 1" 1 4 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Cefepime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Cefepime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Cefepime" "Table 2E" 2 2048 FALSE -"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" "30μg" 31 6 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" "30ug" 31 6 FALSE "CLSI 2015" "MIC" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" 0.5 2048 FALSE -"CLSI 2015" "DISK" "Plesiomonas" 3 "Cefepime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2015" "DISK" "Plesiomonas" 3 "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2015" "MIC" "Plesiomonas" 3 "Cefepime" "M45 Table 2" 8 32 FALSE -"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" "30μg" 18 14 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" "30ug" 18 14 FALSE "CLSI 2015" "MIC" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" 8 32 FALSE -"CLSI 2015" "DISK" "Streptococcus" 3 "Cefepime" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2015" "DISK" "Streptococcus" 3 "Cefepime" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2015" "MIC" "Streptococcus" 3 "Cefepime" "Table 2H-1" 0.5 2048 FALSE "CLSI 2015" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Cefepime" "Table 2G" 0.5 2 FALSE "CLSI 2015" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Cefepime" "Table 2G" 1 4 FALSE -"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" "30μg" 24 21 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" "30ug" 24 21 FALSE "CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" 1 4 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Cefepime" "Generic rules" "30μg" 25 18 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Cefepime" "Generic rules" "30μg" 2 16 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Fleroxacin" "Table 2E" "5μg" 19 6 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 25 18 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 2 16 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Fleroxacin" "Table 2E" "5ug" 19 6 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Fleroxacin" "Table 2E" 2 2048 FALSE -"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Fleroxacin" "Table 2F" "5μg" 35 28 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Fleroxacin" "Table 2F" "5ug" 35 28 FALSE "CLSI 2015" "MIC" "Neisseria gonorrhoeae" 2 "Fleroxacin" "Table 2F" 0.25 1 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Fleroxacin" "Table 2C" "5μg" 19 15 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Fleroxacin" "Table 2C" "5ug" 19 15 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Fleroxacin" "Table 2C" 2 8 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Florfenicol" "Generic rules" "30μg" 19 14 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Florfenicol" "Generic rules" "30μg" 2 8 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Fluconazole" "Generic rules" "25μg" 19 14 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Fluconazole" "Generic rules" "25μg" 8 64 FALSE -"CLSI 2015" "DISK" "Enterococcus" 3 "Fosfomycin" "Table 2D" "200μg" 16 12 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Florfenicol" "Generic rules" "30ug" 19 14 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Florfenicol" "Generic rules" "30ug" 2 8 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Fluconazole" "Generic rules" "25ug" 19 14 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Fluconazole" "Generic rules" "25ug" 8 64 FALSE +"CLSI 2015" "DISK" "Enterococcus" 3 "Fosfomycin" "Table 2D" "200ug" 16 12 FALSE "CLSI 2015" "MIC" "Enterococcus" 3 "Fosfomycin" "Table 2D" 64 256 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200μg" 16 12 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200μg" 64 256 FALSE -"CLSI 2015" "DISK" "Aeromonas" 3 "Cefoxitin" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200ug" 16 12 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200ug" 64 256 FALSE +"CLSI 2015" "DISK" "Aeromonas" 3 "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2015" "MIC" "Aeromonas" 3 "Cefoxitin" "M45 Table 2" 8 32 FALSE -"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" "30μg" 28 23 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" "30ug" 28 23 FALSE "CLSI 2015" "MIC" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" 2 8 FALSE -"CLSI 2015" "DISK" "Plesiomonas" 3 "Cefoxitin" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2015" "DISK" "Plesiomonas" 3 "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2015" "MIC" "Plesiomonas" 3 "Cefoxitin" "M45 Table 2" 8 32 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Cefoxitin" "Table 2C" "30μg" 25 24 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Cefoxitin" "Table 2C" "30ug" 25 24 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2015" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" "30μg" 22 21 FALSE +"CLSI 2015" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE "CLSI 2015" "MIC" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2015" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" "30μg" 22 21 FALSE +"CLSI 2015" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE "CLSI 2015" "MIC" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30μg" 8 32 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30ug" 8 32 FALSE "CLSI 2015" "MIC" "Abiotrophia" 3 "Gatifloxacin" "M45 Table 1" 1 4 FALSE -"CLSI 2015" "DISK" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" "5μg" 18 14 FALSE +"CLSI 2015" "DISK" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" "5ug" 18 14 FALSE "CLSI 2015" "MIC" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" 2 8 FALSE -"CLSI 2015" "DISK" "Enterococcus" 3 "Gatifloxacin" "Table 2D" "5μg" 18 14 FALSE +"CLSI 2015" "DISK" "Enterococcus" 3 "Gatifloxacin" "Table 2D" "5ug" 18 14 FALSE "CLSI 2015" "MIC" "Enterococcus" 3 "Gatifloxacin" "Table 2D" 2 8 FALSE "CLSI 2015" "MIC" "Erysipelothrix rhusiopathiae" 2 "Gatifloxacin" "M45 Table 6" 1 2048 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Gatifloxacin" "Table 2B-5" 2 8 FALSE "CLSI 2015" "MIC" "Granulicatella" 3 "Gatifloxacin" "M45 Table 1" 1 4 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Gatifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Gatifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Gatifloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" "5μg" 38 33 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" "5ug" 38 33 FALSE "CLSI 2015" "MIC" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" 0.125 0.5 FALSE -"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" "5μg" 18 14 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" "5ug" 18 14 FALSE "CLSI 2015" "MIC" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" 2 8 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" "10μg" 23 19 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" "10ug" 23 19 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2015" "DISK" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" "5μg" 21 17 FALSE +"CLSI 2015" "DISK" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" "5ug" 21 17 FALSE "CLSI 2015" "MIC" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" 1 4 FALSE -"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" "5μg" 21 17 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" "5ug" 21 17 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" 1 4 FALSE -"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" "5μg" 21 17 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" "5ug" 21 17 FALSE "CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" 1 4 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5μg" 18 14 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2015" "DISK" "Enterococcus" 3 "Gentamicin-high" "Table 2D" "120μg" 10 6 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5ug" 18 14 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2015" "DISK" "Enterococcus" 3 "Gentamicin-high" "Table 2D" "120ug" 10 6 FALSE "CLSI 2015" "MIC" "Enterococcus" 3 "Gentamicin-high" "Table 2D" 512 560 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120μg" 10 6 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120μg" 512 560 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Gemifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120ug" 10 6 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120ug" 512 560 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Gemifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Gemifloxacin" "Table 2E" 0.125 2048 FALSE -"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" "5μg" 23 19 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" "5ug" 23 19 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" 0.125 0.5 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5μg" 20 15 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5μg" 0.25 1 FALSE -"CLSI 2015" "DISK" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" "10μg" 15 12 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5ug" 20 15 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5ug" 0.25 1 FALSE +"CLSI 2015" "DISK" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" "10ug" 15 12 FALSE "CLSI 2015" "MIC" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" 4 16 FALSE -"CLSI 2015" "DISK" "Aeromonas" 3 "Gentamicin" "M45 Table 2" "10μg" 15 12 FALSE +"CLSI 2015" "DISK" "Aeromonas" 3 "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE "CLSI 2015" "MIC" "Aeromonas" 3 "Gentamicin" "M45 Table 2" 4 16 FALSE "CLSI 2015" "MIC" "Bacillus" 3 "Gentamicin" "M45 Table 3" 4 16 FALSE "CLSI 2015" "MIC" "Brucella" 3 "Gentamicin" "M45 Table 16" 4 2048 FALSE @@ -15321,33 +15321,33 @@ "CLSI 2015" "MIC" "Leuconostoc" 3 "Gentamicin" "M45 Table 10" 4 16 FALSE "CLSI 2015" "MIC" "Lactobacillus" 3 "Gentamicin" "M45 Table 9" 4 16 FALSE "CLSI 2015" "MIC" "Pediococcus" 3 "Gentamicin" "M45 Table 14" 4 16 FALSE -"CLSI 2015" "DISK" "Plesiomonas" 3 "Gentamicin" "M45 Table 2" "10μg" 15 12 FALSE +"CLSI 2015" "DISK" "Plesiomonas" 3 "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE "CLSI 2015" "MIC" "Plesiomonas" 3 "Gentamicin" "M45 Table 2" 4 16 FALSE -"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" "10μg" 15 12 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" "10ug" 15 12 FALSE "CLSI 2015" "MIC" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" 4 16 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Gentamicin" "Table 2C" "10μg" 15 12 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Gentamicin" "Table 2C" "10ug" 15 12 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Gentamicin" "Table 2C" 4 16 FALSE "CLSI 2015" "MIC" "Yersinia pestis" 2 "Gentamicin" "M45 Table 16" 4 16 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Gentamicin" "Generic rules" "10μg" 15 12 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Gentamicin" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Grepafloxacin" "Table 2E" "5μg" 24 6 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 15 12 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Grepafloxacin" "Table 2E" "5ug" 24 6 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Grepafloxacin" "Table 2E" 0.5 2048 FALSE -"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" "5μg" 37 27 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" "5ug" 37 27 FALSE "CLSI 2015" "MIC" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" 0.064 1 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" "5μg" 18 14 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" "5ug" 18 14 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" 1 4 FALSE -"CLSI 2015" "DISK" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" "5μg" 19 15 FALSE +"CLSI 2015" "DISK" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" "5ug" 19 15 FALSE "CLSI 2015" "MIC" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" "5μg" 19 15 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" "5ug" 19 15 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" 0.5 2 FALSE -"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" "5μg" 19 15 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" "5ug" 19 15 FALSE "CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" 0.5 2 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5μg" 18 14 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5μg" 1 4 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5ug" 18 14 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5ug" 1 4 FALSE "CLSI 2015" "MIC" "Abiotrophia" 3 "Imipenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2015" "DISK" "Acinetobacter" 3 "Imipenem" "Table 2B-2" "10μg" 22 18 FALSE +"CLSI 2015" "DISK" "Acinetobacter" 3 "Imipenem" "Table 2B-2" "10ug" 22 18 FALSE "CLSI 2015" "MIC" "Acinetobacter" 3 "Imipenem" "Table 2B-2" 2 8 FALSE -"CLSI 2015" "DISK" "Aeromonas" 3 "Imipenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2015" "DISK" "Aeromonas" 3 "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2015" "MIC" "Aeromonas" 3 "Imipenem" "M45 Table 2" 4 16 FALSE "CLSI 2015" "MIC" "Aggregatibacter" 3 "Imipenem" "M45 Table 7" 4 16 FALSE "CLSI 2015" "MIC" "Bacillus" 3 "Imipenem" "M45 Table 3" 4 16 FALSE @@ -15358,56 +15358,56 @@ "CLSI 2015" "MIC" "Erysipelothrix rhusiopathiae" 2 "Imipenem" "M45 Table 6" 0.5 2048 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Imipenem" "Table 2B-5" 4 16 FALSE "CLSI 2015" "MIC" "Granulicatella" 3 "Imipenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Imipenem" "Table 2E" "10μg" 16 6 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Imipenem" "Table 2E" "10ug" 16 6 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Imipenem" "Table 2E" 4 2048 FALSE "CLSI 2015" "MIC" "Kingella" 3 "Imipenem" "M45 Table 7" 0.5 2 FALSE "CLSI 2015" "MIC" "Lactobacillus" 3 "Imipenem" "M45 Table 9" 0.5 2 FALSE "CLSI 2015" "MIC" "Pediococcus" 3 "Imipenem" "M45 Table 14" 0.5 2048 FALSE -"CLSI 2015" "DISK" "Plesiomonas" 3 "Imipenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2015" "DISK" "Plesiomonas" 3 "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2015" "MIC" "Plesiomonas" 3 "Imipenem" "M45 Table 2" 4 16 FALSE -"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2015" "MIC" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" 2 8 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" "Table 2G" 0.125 1 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Imipenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Imipenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Kanamycin" "Generic rules" "30μg" 18 13 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Kanamycin" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2015" "DISK" "Enterococcus" 3 "Linezolid" "Table 2D" "30μg" 23 20 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Kanamycin" "Generic rules" "30ug" 18 13 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Kanamycin" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2015" "DISK" "Enterococcus" 3 "Linezolid" "Table 2D" "30ug" 23 20 FALSE "CLSI 2015" "MIC" "Enterococcus" 3 "Linezolid" "Table 2D" 2 8 FALSE "CLSI 2015" "MIC" "Lactobacillus" 3 "Linezolid" "M45 Table 9" 4 2048 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Linezolid" "Table 2C" "30μg" 21 20 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Linezolid" "Table 2C" "30ug" 21 20 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Linezolid" "Table 2C" 4 8 FALSE -"CLSI 2015" "DISK" "Streptococcus" 3 "Linezolid" "Table 2H-1" "30μg" 21 6 FALSE +"CLSI 2015" "DISK" "Streptococcus" 3 "Linezolid" "Table 2H-1" "30ug" 21 6 FALSE "CLSI 2015" "MIC" "Streptococcus" 3 "Linezolid" "Table 2H-1" 2 2048 FALSE -"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" "30μg" 21 6 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" "30ug" 21 6 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" 2 2048 FALSE -"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" "30μg" 21 6 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" "30ug" 21 6 FALSE "CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" 2 2048 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Linezolid" "Generic rules" "30μg" 21 20 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Linezolid" "Generic rules" "30μg" 4 8 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Linezolid" "Generic rules" "30ug" 21 20 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Linezolid" "Generic rules" "30ug" 4 8 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Lomefloxacin" "Table 2B-5" 2 8 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Lomefloxacin" "Table 2E" "10μg" 22 6 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Lomefloxacin" "Table 2E" "10ug" 22 6 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Lomefloxacin" "Table 2E" 2 2048 FALSE -"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Lomefloxacin" "Table 2F" "10μg" 38 26 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Lomefloxacin" "Table 2F" "10ug" 38 26 FALSE "CLSI 2015" "MIC" "Neisseria gonorrhoeae" 2 "Lomefloxacin" "Table 2F" 0.125 2 FALSE -"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" "10μg" 22 18 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" "10ug" 22 18 FALSE "CLSI 2015" "MIC" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" 2 8 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" "10μg" 22 18 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" "10ug" 22 18 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" 2 8 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10μg" 22 18 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Loracarbef" "Table 2E" "30μg" 19 15 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10ug" 22 18 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Loracarbef" "Table 2E" "30ug" 19 15 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Loracarbef" "Table 2E" 8 32 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Loracarbef" "Table 2G" 2 8 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Loracarbef" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Loracarbef" "Generic rules" "30μg" 8 32 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Loracarbef" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Loracarbef" "Generic rules" "30ug" 8 32 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Latamoxef" "Table 2B-5" 8 64 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Latamoxef" "Generic rules" "30μg" 23 14 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Latamoxef" "Generic rules" "30μg" 8 64 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Latamoxef" "Generic rules" "30ug" 23 14 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Latamoxef" "Generic rules" "30ug" 8 64 FALSE "CLSI 2015" "MIC" "Abiotrophia" 3 "Levofloxacin" "M45 Table 1" 2 8 FALSE -"CLSI 2015" "DISK" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" "5μg" 17 13 FALSE +"CLSI 2015" "DISK" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" "5ug" 17 13 FALSE "CLSI 2015" "MIC" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" 2 8 FALSE -"CLSI 2015" "DISK" "Aeromonas" 3 "Levofloxacin" "M45 Table 2" "5μg" 17 13 FALSE +"CLSI 2015" "DISK" "Aeromonas" 3 "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE "CLSI 2015" "MIC" "Aeromonas" 3 "Levofloxacin" "M45 Table 2" 2 8 FALSE "CLSI 2015" "MIC" "Aggregatibacter" 3 "Levofloxacin" "M45 Table 7" 2 8 FALSE "CLSI 2015" "MIC" "Bacillus" 3 "Levofloxacin" "M45 Table 3" 2 8 FALSE @@ -15415,158 +15415,158 @@ "CLSI 2015" "MIC" "Burkholderia cepacia" 2 "Levofloxacin" "Table 2B-3" 2 8 FALSE "CLSI 2015" "MIC" "Cardiobacterium" 3 "Levofloxacin" "M45 Table 7" 2 8 FALSE "CLSI 2015" "MIC" "Eikenella" 3 "Levofloxacin" "M45 Table 7" 2 8 FALSE -"CLSI 2015" "DISK" "Enterococcus" 3 "Levofloxacin" "Table 2D" "5μg" 17 13 FALSE +"CLSI 2015" "DISK" "Enterococcus" 3 "Levofloxacin" "Table 2D" "5ug" 17 13 FALSE "CLSI 2015" "MIC" "Enterococcus" 3 "Levofloxacin" "Table 2D" 2 8 FALSE "CLSI 2015" "MIC" "Erysipelothrix rhusiopathiae" 2 "Levofloxacin" "M45 Table 6" 2 2048 FALSE "CLSI 2015" "MIC" "Francisella tularensis tularensis" 1 "Levofloxacin" "M45 Table 16" 0.5 2048 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Levofloxacin" "Table 2B-5" 2 8 FALSE "CLSI 2015" "MIC" "Granulicatella" 3 "Levofloxacin" "M45 Table 1" 2 8 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Levofloxacin" "Table 2E" "5μg" 17 6 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Levofloxacin" "Table 2E" "5ug" 17 6 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Levofloxacin" "Table 2E" 2 2048 FALSE "CLSI 2015" "MIC" "Kingella" 3 "Levofloxacin" "M45 Table 7" 2 8 FALSE "CLSI 2015" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" "M45 Table 12" 2 2048 FALSE "CLSI 2015" "MIC" "Neisseria meningitidis" 2 "Levofloxacin" "Table 2I" 0.032 0.12 FALSE -"CLSI 2015" "DISK" "Plesiomonas" 3 "Levofloxacin" "M45 Table 2" "5μg" 17 13 FALSE +"CLSI 2015" "DISK" "Plesiomonas" 3 "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE "CLSI 2015" "MIC" "Plesiomonas" 3 "Levofloxacin" "M45 Table 2" 2 8 FALSE -"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" "5μg" 17 13 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" "5ug" 17 13 FALSE "CLSI 2015" "MIC" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" 2 8 FALSE -"CLSI 2015" "DISK" "Pasteurella" 3 "Levofloxacin" "M45 Table 13" "5μg" 28 6 FALSE +"CLSI 2015" "DISK" "Pasteurella" 3 "Levofloxacin" "M45 Table 13" "5ug" 28 6 FALSE "CLSI 2015" "MIC" "Pasteurella" 3 "Levofloxacin" "M45 Table 13" 0.064 2048 FALSE "CLSI 2015" "MIC" "Salmonella" 3 "Levofloxacin" "Table 2A" 0.125 2 FALSE "CLSI 2015" "MIC" "Extraintestinal" "Salmonella" 3 "Levofloxacin" "Table 2A" 0.125 2 FALSE -"CLSI 2015" "DISK" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" "75μg" 17 13 FALSE +"CLSI 2015" "DISK" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" "75ug" 17 13 FALSE "CLSI 2015" "MIC" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" 2 8 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Levofloxacin" "Table 2C" "10μg" 19 15 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Levofloxacin" "Table 2C" "10ug" 19 15 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Levofloxacin" "Table 2C" 1 4 FALSE -"CLSI 2015" "DISK" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" "5μg" 17 13 FALSE +"CLSI 2015" "DISK" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" "5ug" 17 13 FALSE "CLSI 2015" "MIC" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" 2 8 FALSE -"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" "5μg" 17 13 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" "5ug" 17 13 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" 2 8 FALSE -"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" "5μg" 17 13 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" "5ug" 17 13 FALSE "CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" 2 8 FALSE "CLSI 2015" "MIC" "Yersinia pestis" 2 "Levofloxacin" "M45 Table 16" 0.25 2048 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5μg" 17 13 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5μg" 2 8 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 17 13 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 2 8 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Cefamandole" "Table 2E" 4 16 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Cefamandole" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Cefamandole" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Marbofloxacin" "Generic rules" "5μg" 20 14 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Marbofloxacin" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Mecillinam" "Generic rules" "10μg" 15 11 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Mecillinam" "Generic rules" "10μg" 8 32 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Cefamandole" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Cefamandole" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Marbofloxacin" "Generic rules" "5ug" 20 14 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Marbofloxacin" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 15 11 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 8 32 FALSE "CLSI 2015" "MIC" "Abiotrophia" 3 "Meropenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2015" "DISK" "Acinetobacter" 3 "Meropenem" "Table 2B-2" "10μg" 18 14 FALSE +"CLSI 2015" "DISK" "Acinetobacter" 3 "Meropenem" "Table 2B-2" "10ug" 18 14 FALSE "CLSI 2015" "MIC" "Acinetobacter" 3 "Meropenem" "Table 2B-2" 2 8 FALSE -"CLSI 2015" "DISK" "Aeromonas" 3 "Meropenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2015" "DISK" "Aeromonas" 3 "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2015" "MIC" "Aeromonas" 3 "Meropenem" "M45 Table 2" 4 16 FALSE "CLSI 2015" "MIC" "Aggregatibacter" 3 "Meropenem" "M45 Table 7" 4 16 FALSE -"CLSI 2015" "DISK" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" "10μg" 20 15 FALSE +"CLSI 2015" "DISK" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" "10ug" 20 15 FALSE "CLSI 2015" "MIC" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" 4 16 FALSE "CLSI 2015" "MIC" "Cardiobacterium" 3 "Meropenem" "M45 Table 7" 0.5 2 FALSE "CLSI 2015" "MIC" "Eikenella" 3 "Meropenem" "M45 Table 7" 0.5 2 FALSE "CLSI 2015" "MIC" "Erysipelothrix rhusiopathiae" 2 "Meropenem" "M45 Table 6" 0.5 2048 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Meropenem" "Table 2B-5" 4 16 FALSE "CLSI 2015" "MIC" "Granulicatella" 3 "Meropenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Meropenem" "Table 2E" "10μg" 20 6 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Meropenem" "Table 2E" "10ug" 20 6 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Meropenem" "Table 2E" 0.5 2048 FALSE "CLSI 2015" "MIC" "Kingella" 3 "Meropenem" "M45 Table 7" 0.5 2 FALSE -"CLSI 2015" "DISK" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" "10μg" 30 6 FALSE +"CLSI 2015" "DISK" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" "10ug" 30 6 FALSE "CLSI 2015" "MIC" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" 0.25 2048 FALSE -"CLSI 2015" "DISK" "Plesiomonas" 3 "Meropenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2015" "DISK" "Plesiomonas" 3 "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2015" "MIC" "Plesiomonas" 3 "Meropenem" "M45 Table 2" 4 16 FALSE -"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2015" "MIC" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" 2 8 FALSE "CLSI 2015" "MIC" "Streptococcus" 3 "Meropenem" "Table 2H-1" 0.5 2048 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Meropenem" "Table 2G" 0.25 1 FALSE "CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "Table 2H-2" 0.5 2048 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Meropenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Meropenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Methicillin" "Generic rules" "5μg" 14 9 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Methicillin" "Generic rules" "5μg" 8 16 FALSE -"CLSI 2015" "DISK" "Acinetobacter" 3 "Mezlocillin" "Table 2B-2" "75μg" 21 17 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Methicillin" "Generic rules" "5ug" 14 9 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Methicillin" "Generic rules" "5ug" 8 16 FALSE +"CLSI 2015" "DISK" "Acinetobacter" 3 "Mezlocillin" "Table 2B-2" "75ug" 21 17 FALSE "CLSI 2015" "MIC" "Acinetobacter" 3 "Mezlocillin" "Table 2B-2" 16 128 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Mezlocillin" "Table 2B-5" 16 128 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Moxifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Moxifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Moxifloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2015" "DISK" "Pasteurella" 3 "Moxifloxacin" "M45 Table 13" "5μg" 28 6 FALSE +"CLSI 2015" "DISK" "Pasteurella" 3 "Moxifloxacin" "M45 Table 13" "5ug" 28 6 FALSE "CLSI 2015" "MIC" "Pasteurella" 3 "Moxifloxacin" "M45 Table 13" 0.064 2048 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" "5μg" 24 20 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" "5ug" 24 20 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" "5μg" 18 14 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" "5ug" 18 14 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" 1 4 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5μg" 24 20 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5μg" 0.5 2 FALSE -"CLSI 2015" "DISK" "Acinetobacter" 3 "Minocycline" "Table 2B-2" "30μg" 16 12 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 24 20 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 0.5 2 FALSE +"CLSI 2015" "DISK" "Acinetobacter" 3 "Minocycline" "Table 2B-2" "30ug" 16 12 FALSE "CLSI 2015" "MIC" "Acinetobacter" 3 "Minocycline" "Table 2B-2" 4 16 FALSE -"CLSI 2015" "DISK" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" "30μg" 19 14 FALSE +"CLSI 2015" "DISK" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" "30ug" 19 14 FALSE "CLSI 2015" "MIC" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" 4 16 FALSE -"CLSI 2015" "DISK" "Enterococcus" 3 "Minocycline" "Table 2D" "30μg" 19 14 FALSE +"CLSI 2015" "DISK" "Enterococcus" 3 "Minocycline" "Table 2D" "30ug" 19 14 FALSE "CLSI 2015" "MIC" "Enterococcus" 3 "Minocycline" "Table 2D" 4 16 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Minocycline" "Table 2B-5" 4 16 FALSE "CLSI 2015" "MIC" "Leuconostoc" 3 "Minocycline" "M45 Table 10" 4 16 FALSE -"CLSI 2015" "DISK" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" "30μg" 26 6 FALSE +"CLSI 2015" "DISK" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" "30ug" 26 6 FALSE "CLSI 2015" "MIC" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" 2 2048 FALSE -"CLSI 2015" "DISK" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" "30μg" 19 14 FALSE +"CLSI 2015" "DISK" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" "30ug" 19 14 FALSE "CLSI 2015" "MIC" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" 4 16 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Minocycline" "Table 2C" "30μg" 19 14 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Minocycline" "Table 2C" "30ug" 19 14 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Minocycline" "Table 2C" 4 16 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Minocycline" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Minocycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Nafcillin" "Generic rules" "1μg" 13 10 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Nafcillin" "Generic rules" "1μg" 2 4 FALSE -"CLSI 2015" "DISK" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" "30μg" 26 25 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Minocycline" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Minocycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Nafcillin" "Generic rules" "1ug" 13 10 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Nafcillin" "Generic rules" "1ug" 2 4 FALSE +"CLSI 2015" "DISK" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" "30ug" 26 25 FALSE "CLSI 2015" "MIC" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" 4 8 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30μg" 19 13 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30μg" 16 32 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 19 13 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 16 32 FALSE "CLSI 2015" "MIC" "Acinetobacter" 3 "Netilmicin" "Table 2B-2" 8 32 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Netilmicin" "Table 2B-5" 8 32 FALSE -"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" "30μg" 15 12 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" "30ug" 15 12 FALSE "CLSI 2015" "MIC" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" 8 32 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Netilmicin" "Generic rules" "30μg" 15 12 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Netilmicin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2015" "DISK" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" "300μg" 17 14 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Netilmicin" "Generic rules" "30ug" 15 12 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Netilmicin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2015" "DISK" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" "300ug" 17 14 FALSE "CLSI 2015" "MIC" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" 32 128 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" "300μg" 17 14 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" "300ug" 17 14 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" 32 128 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "300μg" 17 14 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100μg" 32 128 FALSE -"CLSI 2015" "DISK" "Enterococcus" 3 "Norfloxacin" "Table 2D" "10μg" 17 12 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "300ug" 17 14 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100ug" 32 128 FALSE +"CLSI 2015" "DISK" "Enterococcus" 3 "Norfloxacin" "Table 2D" "10ug" 17 12 FALSE "CLSI 2015" "MIC" "Enterococcus" 3 "Norfloxacin" "Table 2D" 4 16 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Norfloxacin" "Table 2B-5" 4 16 FALSE -"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Norfloxacin" "Table 2B-1" "10μg" 17 12 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Norfloxacin" "Table 2B-1" "10ug" 17 12 FALSE "CLSI 2015" "MIC" "Pseudomonas aeruginosa" 2 "Norfloxacin" "Table 2B-1" 4 16 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Norfloxacin" "Table 2C" "10μg" 17 12 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Norfloxacin" "Table 2C" "10ug" 17 12 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Norfloxacin" "Table 2C" 4 16 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10μg" 17 12 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10μg" 4 16 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10ug" 17 12 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10ug" 4 16 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Ofloxacin" "Table 2B-5" 2 8 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Ofloxacin" "Table 2E" "5μg" 16 6 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Ofloxacin" "Table 2E" "5ug" 16 6 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Ofloxacin" "Table 2E" 2 2048 FALSE -"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Ofloxacin" "Table 2F" "5μg" 31 24 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Ofloxacin" "Table 2F" "5ug" 31 24 FALSE "CLSI 2015" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" "Table 2F" 0.25 2 FALSE -"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" "5μg" 16 12 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" "5ug" 16 12 FALSE "CLSI 2015" "MIC" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" 2 8 FALSE "CLSI 2015" "MIC" "Salmonella" 3 "Ofloxacin" "Table 2A" 0.125 2 FALSE "CLSI 2015" "MIC" "Extraintestinal" "Salmonella" 3 "Ofloxacin" "Table 2A" 0.125 2 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Ofloxacin" "Table 2C" "5μg" 18 14 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Ofloxacin" "Table 2C" "5ug" 18 14 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Ofloxacin" "Table 2C" 1 4 FALSE -"CLSI 2015" "DISK" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" "5μg" 16 12 FALSE +"CLSI 2015" "DISK" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" "5ug" 16 12 FALSE "CLSI 2015" "MIC" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" 2 8 FALSE -"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" "5μg" 16 12 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" "5ug" 16 12 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" 2 8 FALSE -"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" "5μg" 16 12 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" "5ug" 16 12 FALSE "CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" 2 8 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5μg" 16 12 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10μg" 23 17 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10μg" 1 8 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Oxacillin" "Table 2C" "1μg" 13 10 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 16 12 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10ug" 23 17 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10ug" 1 8 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Oxacillin" "Table 2C" "1ug" 13 10 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Oxacillin" "Table 2C" 2 4 FALSE -"CLSI 2015" "DISK" "Staphylococcus aureus aureus" 1 "Oxacillin" "Table 2C" "1μg" 13 10 FALSE +"CLSI 2015" "DISK" "Staphylococcus aureus aureus" 1 "Oxacillin" "Table 2C" "1ug" 13 10 FALSE "CLSI 2015" "MIC" "Staphylococcus aureus aureus" 1 "Oxacillin" "Table 2C" 2 4 FALSE "CLSI 2015" "MIC" "Staphylococcus lugdunensis" 2 "Oxacillin" "Table 2C" 2 4 FALSE -"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "Table 2G" "1μg" 20 6 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Oxacillin" "Generic rules" "1μg" 0.25 0.5 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "Table 2G" "1ug" 20 6 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Oxacillin" "Generic rules" "1ug" 0.25 0.5 FALSE "CLSI 2015" "DISK" "Salmonella" 3 "Pefloxacin" "Table 2A" 24 23 FALSE "CLSI 2015" "MIC" "Abiotrophia" 3 "Benzylpenicillin" "M45 Table 1" 0.125 4 FALSE "CLSI 2015" "MIC" "Aggregatibacter" 3 "Benzylpenicillin" "M45 Table 7" 1 4 FALSE @@ -15588,7 +15588,7 @@ "CLSI 2015" "MIC" "Pediococcus" 3 "Benzylpenicillin" "M45 Table 14" 8 2048 FALSE "CLSI 2015" "DISK" "Pasteurella" 3 "Benzylpenicillin" "M45 Table 13" "10 Units" 25 6 FALSE "CLSI 2015" "MIC" "Pasteurella" 3 "Benzylpenicillin" "M45 Table 13" 0.5 2048 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" "10μg" 29 28 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" "10ug" 29 28 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" 0.125 0.25 FALSE "CLSI 2015" "DISK" "Streptococcus" 3 "Benzylpenicillin" "Table 2H-1" "10units" 24 6 FALSE "CLSI 2015" "MIC" "Streptococcus" 3 "Benzylpenicillin" "Table 2H-1" 0.125 2048 FALSE @@ -15599,149 +15599,149 @@ "CLSI 2015" "DISK" "(unknown name)" 6 "Benzylpenicillin" "Generic rules" "10units" 29 28 FALSE "CLSI 2015" "MIC" "(unknown name)" 6 "Benzylpenicillin" "Generic rules" "10units" 0.125 0.25 FALSE "CLSI 2015" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Phenoxymethylpenicillin" "Table 2G" 0.064 2 FALSE -"CLSI 2015" "DISK" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" "100μg" 21 17 FALSE +"CLSI 2015" "DISK" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" "100ug" 21 17 FALSE "CLSI 2015" "MIC" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" 16 128 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Piperacillin" "Table 2B-5" 16 128 FALSE -"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" "100μg" 21 14 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" "100ug" 21 14 FALSE "CLSI 2015" "MIC" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" 16 128 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Piperacillin" "Generic rules" "100μg" 21 17 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Piperacillin" "Generic rules" "100μg" 16 128 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Piperacillin" "Generic rules" "100ug" 21 17 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Piperacillin" "Generic rules" "100ug" 16 128 FALSE "CLSI 2015" "MIC" "Acinetobacter" 3 "Polymyxin B" "Table 2B-2" 2 4 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Polymyxin B" "Table 2B-5" 2 8 FALSE -"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Polymyxin B" "Table 2B-1" "300μg" 12 11 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Polymyxin B" "Table 2B-1" "300ug" 12 11 FALSE "CLSI 2015" "MIC" "Pseudomonas aeruginosa" 2 "Polymyxin B" "Table 2B-1" 2 8 FALSE "CLSI 2015" "DISK" "(unknown name)" 6 "Polymyxin B" "Generic rules" "300units" 12 11 FALSE "CLSI 2015" "MIC" "(unknown name)" 6 "Polymyxin B" "Generic rules" "300units" 2 8 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30μg" 18 14 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30μg" 1 4 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2μg" 13 12 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2μg" 2 4 FALSE -"CLSI 2015" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" "15μg" 19 15 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30ug" 18 14 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30ug" 1 4 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2ug" 13 12 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2ug" 2 4 FALSE +"CLSI 2015" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" "15ug" 19 15 FALSE "CLSI 2015" "MIC" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" 1 4 FALSE -"CLSI 2015" "DISK" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" "15μg" 19 15 FALSE +"CLSI 2015" "DISK" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" "15ug" 19 15 FALSE "CLSI 2015" "MIC" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" 1 4 FALSE -"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" "15μg" 19 15 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" "15ug" 19 15 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" 1 4 FALSE -"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" "15μg" 19 15 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" "15ug" 19 15 FALSE "CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" 1 4 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15μg" 19 15 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15μg" 1 4 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15ug" 19 15 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15ug" 1 4 FALSE "CLSI 2015" "MIC" "Aggregatibacter" 3 "Rifampicin" "M45 Table 7" 1 4 FALSE "CLSI 2015" "MIC" "Bacillus" 3 "Rifampicin" "M45 Table 3" 1 4 FALSE "CLSI 2015" "MIC" "Cardiobacterium" 3 "Rifampicin" "M45 Table 7" 1 4 FALSE "CLSI 2015" "MIC" "Eikenella" 3 "Rifampicin" "M45 Table 7" 1 4 FALSE -"CLSI 2015" "DISK" "Enterococcus" 3 "Rifampicin" "Table 2D" "5μg" 20 16 FALSE +"CLSI 2015" "DISK" "Enterococcus" 3 "Rifampicin" "Table 2D" "5ug" 20 16 FALSE "CLSI 2015" "MIC" "Enterococcus" 3 "Rifampicin" "Table 2D" 1 4 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Rifampicin" "Table 2E" "5μg" 20 16 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Rifampicin" "Table 2E" "5ug" 20 16 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Rifampicin" "Table 2E" 1 4 FALSE "CLSI 2015" "MIC" "Kingella" 3 "Rifampicin" "M45 Table 7" 1 4 FALSE "CLSI 2015" "MIC" "Moraxella catarrhalis" 2 "Rifampicin" "M45 Table 12" 1 4 FALSE -"CLSI 2015" "DISK" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" "5μg" 25 19 FALSE +"CLSI 2015" "DISK" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" "5ug" 25 19 FALSE "CLSI 2015" "MIC" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" 0.5 2 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Rifampicin" "Table 2C" "5μg" 20 16 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Rifampicin" "Table 2C" "5ug" 20 16 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Rifampicin" "Table 2C" 1 4 FALSE -"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" "5μg" 19 16 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" "5ug" 19 16 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" 1 4 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Rifampicin" "Generic rules" "5μg" 20 16 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Rifampicin" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2015" "DISK" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" "10μg" 15 11 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Rifampicin" "Generic rules" "5ug" 20 16 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Rifampicin" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2015" "DISK" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" "10ug" 15 11 FALSE "CLSI 2015" "MIC" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" 8 32 FALSE -"CLSI 2015" "DISK" "Aeromonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10μg" 15 11 FALSE +"CLSI 2015" "DISK" "Aeromonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE "CLSI 2015" "MIC" "Aeromonas" 3 "Ampicillin/sulbactam" "M45 Table 2" 8 32 FALSE "CLSI 2015" "MIC" "Aggregatibacter" 3 "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE "CLSI 2015" "MIC" "Cardiobacterium" 3 "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE "CLSI 2015" "MIC" "Eikenella" 3 "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" "10/10μg" 20 19 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" "10/10ug" 20 19 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" 2 4 FALSE -"CLSI 2015" "DISK" "Plesiomonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10μg" 15 11 FALSE +"CLSI 2015" "DISK" "Plesiomonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE "CLSI 2015" "MIC" "Plesiomonas" 3 "Ampicillin/sulbactam" "M45 Table 2" 8 32 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10μg" 15 11 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10μg" 8 32 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300μg" 256 512 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10ug" 15 11 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10ug" 8 32 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300ug" 256 512 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Sulfamethoxazole" "Table 2B-5" 256 512 FALSE "CLSI 2015" "MIC" "Neisseria meningitidis" 2 "Sulfamethoxazole" "Table 2I" 2 8 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" "200μg" 17 12 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" "200ug" 17 12 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" 256 512 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300μg" 256 512 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300ug" 256 512 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Sulfisoxazole" "Table 2B-5" 256 512 FALSE "CLSI 2015" "MIC" "Neisseria meningitidis" 2 "Sulfisoxazole" "Table 2I" 2 8 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" "200μg" 17 12 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" "200ug" 17 12 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" 256 512 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300μg" 256 512 FALSE -"CLSI 2015" "DISK" "Histophilus somni" 2 "Spectinomycin" "Vet Table" "100μg" 14 10 FALSE -"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" "100μg" 18 14 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300ug" 256 512 FALSE +"CLSI 2015" "DISK" "Histophilus somni" 2 "Spectinomycin" "Vet Table" "100ug" 14 10 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" "100ug" 18 14 FALSE "CLSI 2015" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" 32 128 FALSE -"CLSI 2015" "DISK" "Providencia heimbachae" 2 "Spectinomycin" "100μg" 14 10 FALSE -"CLSI 2015" "DISK" "Pasteurella multocida multocida" 1 "Spectinomycin" "100μg" 14 10 FALSE +"CLSI 2015" "DISK" "Providencia heimbachae" 2 "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2015" "DISK" "Pasteurella multocida multocida" 1 "Spectinomycin" "100ug" 14 10 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Sparfloxacin" "Table 2E" 0.25 2048 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" "5μg" 19 15 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" "5ug" 19 15 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" "5μg" 19 15 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" "5ug" 19 15 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" 0.5 2 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5μg" 0.5 2 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5ug" 0.5 2 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Sulfonamide" "Table 2B-5" 256 512 FALSE "CLSI 2015" "MIC" "Neisseria meningitidis" 2 "Sulfonamide" "Table 2I" 2 8 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Sulfonamide" "Table 2C" "200μg" 17 12 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Sulfonamide" "Table 2C" "200ug" 17 12 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Sulfonamide" "Table 2C" 256 512 FALSE -"CLSI 2015" "DISK" "Enterococcus" 3 "Streptomycin-high" "Table 2D" "300μg" 10 6 FALSE +"CLSI 2015" "DISK" "Enterococcus" 3 "Streptomycin-high" "Table 2D" "300ug" 10 6 FALSE "CLSI 2015" "MIC" "Enterococcus" 3 "Streptomycin-high" "Table 2D" 1024 2048 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300μg" 10 6 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300μg" 1024 2048 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300ug" 10 6 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300ug" 1024 2048 FALSE "CLSI 2015" "MIC" "Brucella" 3 "Streptoduocin" "M45 Table 16" 8 2048 FALSE "CLSI 2015" "MIC" "Enterococcus" 3 "Streptoduocin" "Table 2D" 1024 2048 FALSE "CLSI 2015" "MIC" "Francisella tularensis tularensis" 1 "Streptoduocin" "M45 Table 16" 8 2048 FALSE "CLSI 2015" "MIC" "Yersinia pestis" 2 "Streptoduocin" "M45 Table 16" 4 16 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Streptomycin" "Generic rules" "10μg" 15 11 FALSE -"CLSI 2015" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Streptomycin" "Generic rules" "10ug" 15 11 FALSE +"CLSI 2015" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2015" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" 2 4 FALSE -"CLSI 2015" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2015" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2015" "MIC" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE "CLSI 2015" "MIC" "Aggregatibacter" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE "CLSI 2015" "MIC" "Bacillus" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 3" 2 4 FALSE "CLSI 2015" "MIC" "Brucella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 2048 FALSE -"CLSI 2015" "DISK" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2015" "DISK" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2015" "MIC" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" 2 4 FALSE "CLSI 2015" "MIC" "Burkholderia pseudomallei" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 4 FALSE "CLSI 2015" "MIC" "Cardiobacterium" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE "CLSI 2015" "MIC" "Eikenella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-5" 2 4 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" "1.25μg/23.75μg" 15 10 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" "1.25ug/23.75ug" 15 10 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" 0.5 4 FALSE "CLSI 2015" "MIC" "Kingella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE "CLSI 2015" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 11" 0.5 4 FALSE -"CLSI 2015" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 12" "1.25μg/23.75μg" 13 10 FALSE +"CLSI 2015" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 12" "1.25ug/23.75ug" 13 10 FALSE "CLSI 2015" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 12" 0.5 4 FALSE -"CLSI 2015" "DISK" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" "1.25μg/23.75μg" 30 25 FALSE +"CLSI 2015" "DISK" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" "1.25ug/23.75ug" 30 25 FALSE "CLSI 2015" "MIC" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" 0.125 0.5 FALSE -"CLSI 2015" "DISK" "Plesiomonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2015" "DISK" "Plesiomonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2015" "MIC" "Plesiomonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE -"CLSI 2015" "DISK" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 13" "1.25μg/23.75μg" 24 6 FALSE +"CLSI 2015" "DISK" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 13" "1.25ug/23.75ug" 24 6 FALSE "CLSI 2015" "MIC" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 13" 0.5 2048 FALSE -"CLSI 2015" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" "30μg" 16 10 FALSE +"CLSI 2015" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" "30ug" 16 10 FALSE "CLSI 2015" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" 2 4 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" 2 4 FALSE -"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" "1.25μg/23.75μg" 19 15 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" "1.25ug/23.75ug" 19 15 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" 0.5 4 FALSE "CLSI 2015" "MIC" "Yersinia pestis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 4 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75μg" 16 10 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75μg" 2 4 FALSE -"CLSI 2015" "DISK" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" "75μg" 20 14 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 16 10 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 2 4 FALSE +"CLSI 2015" "DISK" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" "75ug" 20 14 FALSE "CLSI 2015" "MIC" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" 16 128 FALSE "CLSI 2015" "MIC" "Burkholderia cepacia" 2 "Ticarcillin/clavulanic acid" "Table 2B-3" 16 128 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Ticarcillin/clavulanic acid" "Table 2B-5" 16 128 FALSE -"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" "75μg" 24 15 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" "75ug" 24 15 FALSE "CLSI 2015" "MIC" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" 16 128 FALSE "CLSI 2015" "MIC" "Stenotrophomonas maltophilia" 2 "Ticarcillin/clavulanic acid" "Table 2B-4" 16 128 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15μg" 20 14 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15μg" 16 128 FALSE -"CLSI 2015" "DISK" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" "30μg" 15 11 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15ug" 20 14 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15ug" 16 128 FALSE +"CLSI 2015" "DISK" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" "30ug" 15 11 FALSE "CLSI 2015" "MIC" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" 4 16 FALSE -"CLSI 2015" "DISK" "Aeromonas" 3 "Tetracycline" "M45 Table 2" "30μg" 15 11 FALSE +"CLSI 2015" "DISK" "Aeromonas" 3 "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE "CLSI 2015" "MIC" "Aeromonas" 3 "Tetracycline" "M45 Table 2" 4 16 FALSE "CLSI 2015" "MIC" "Aggregatibacter" 3 "Tetracycline" "M45 Table 7" 2 8 FALSE "CLSI 2015" "MIC" "Bacillus" 3 "Tetracycline" "M45 Table 3" 4 16 FALSE @@ -15752,295 +15752,295 @@ "CLSI 2015" "MIC" "Campylobacter" 3 "Tetracycline" "M45 Table 3" 4 16 FALSE "CLSI 2015" "MIC" "Cardiobacterium" 3 "Tetracycline" "M45 Table 7" 2 8 FALSE "CLSI 2015" "MIC" "Eikenella" 3 "Tetracycline" "M45 Table 7" 2 8 FALSE -"CLSI 2015" "DISK" "Enterococcus" 3 "Tetracycline" "Table 2D" "30μg" 19 14 FALSE +"CLSI 2015" "DISK" "Enterococcus" 3 "Tetracycline" "Table 2D" "30ug" 19 14 FALSE "CLSI 2015" "MIC" "Enterococcus" 3 "Tetracycline" "Table 2D" 4 16 FALSE "CLSI 2015" "MIC" "Francisella tularensis tularensis" 1 "Tetracycline" "M45 Table 16" 4 2048 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Tetracycline" "Table 2B-5" 4 16 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Tetracycline" "Table 2E" "30μg" 29 25 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Tetracycline" "Table 2E" "30ug" 29 25 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Tetracycline" "Table 2E" 2 8 FALSE "CLSI 2015" "MIC" "Kingella" 3 "Tetracycline" "M45 Table 7" 2 8 FALSE -"CLSI 2015" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 12" "30μg" 29 24 FALSE +"CLSI 2015" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 12" "30ug" 29 24 FALSE "CLSI 2015" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 12" 2 8 FALSE -"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" "30μg" 38 30 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" "30ug" 38 30 FALSE "CLSI 2015" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" 0.25 2 FALSE -"CLSI 2015" "DISK" "Plesiomonas" 3 "Tetracycline" "M45 Table 2" "30μg" 15 11 FALSE +"CLSI 2015" "DISK" "Plesiomonas" 3 "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE "CLSI 2015" "MIC" "Plesiomonas" 3 "Tetracycline" "M45 Table 2" 4 16 FALSE -"CLSI 2015" "DISK" "Pasteurella" 3 "Tetracycline" "M45 Table 13" "30μg" 23 6 FALSE +"CLSI 2015" "DISK" "Pasteurella" 3 "Tetracycline" "M45 Table 13" "30ug" 23 6 FALSE "CLSI 2015" "MIC" "Pasteurella" 3 "Tetracycline" "M45 Table 13" 1 2048 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Tetracycline" "Table 2C" "30μg" 19 14 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Tetracycline" "Table 2C" "30ug" 19 14 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Tetracycline" "Table 2C" 4 16 FALSE -"CLSI 2015" "DISK" "Streptococcus" 3 "Tetracycline" "Table 2H-1" "30μg" 23 18 FALSE +"CLSI 2015" "DISK" "Streptococcus" 3 "Tetracycline" "Table 2H-1" "30ug" 23 18 FALSE "CLSI 2015" "MIC" "Streptococcus" 3 "Tetracycline" "Table 2H-1" 2 8 FALSE -"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" "30μg" 28 24 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" "30ug" 28 24 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" 1 4 FALSE -"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" "30μg" 23 18 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" "30ug" 23 18 FALSE "CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" 2 8 FALSE "CLSI 2015" "MIC" "Yersinia pestis" 2 "Tetracycline" "M45 Table 16" 4 16 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Tetracycline" "Generic rules" "30μg" 15 11 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Tetracycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2015" "DISK" "Enterococcus" 3 "Teicoplanin" "Table 2D" "30μg" 14 10 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Tetracycline" "Generic rules" "30ug" 15 11 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Tetracycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2015" "DISK" "Enterococcus" 3 "Teicoplanin" "Table 2D" "30ug" 14 10 FALSE "CLSI 2015" "MIC" "Enterococcus" 3 "Teicoplanin" "Table 2D" 8 32 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Teicoplanin" "Table 2C" "30μg" 14 10 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Teicoplanin" "Table 2C" "30ug" 14 10 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Teicoplanin" "Table 2C" 8 32 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30μg" 14 10 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Tiamulin" "Generic rules" "30μg" 9 8 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Tiamulin" "Generic rules" "30μg" 16 32 FALSE -"CLSI 2015" "DISK" "Acinetobacter" 3 "Ticarcillin" "Table 2B-2" "75μg" 20 14 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30ug" 14 10 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Tiamulin" "Generic rules" "30ug" 9 8 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Tiamulin" "Generic rules" "30ug" 16 32 FALSE +"CLSI 2015" "DISK" "Acinetobacter" 3 "Ticarcillin" "Table 2B-2" "75ug" 20 14 FALSE "CLSI 2015" "MIC" "Acinetobacter" 3 "Ticarcillin" "Table 2B-2" 16 128 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Ticarcillin" "Table 2B-5" 16 128 FALSE -"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin" "Table 2B-1" "75μg" 24 15 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin" "Table 2B-1" "75ug" 24 15 FALSE "CLSI 2015" "MIC" "Pseudomonas aeruginosa" 2 "Ticarcillin" "Table 2B-1" 16 128 FALSE -"CLSI 2015" "DISK" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" "Vet Table" "15μg" 11 10 FALSE +"CLSI 2015" "DISK" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE "CLSI 2015" "MIC" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" "Vet Table" 16 32 FALSE -"CLSI 2015" "DISK" "Pasteurella multocida multocida" 1 "Tilmicosin" "Vet Table" "15μg" 11 10 FALSE +"CLSI 2015" "DISK" "Pasteurella multocida multocida" 1 "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE "CLSI 2015" "MIC" "Pasteurella multocida multocida" 1 "Tilmicosin" "Vet Table" 16 32 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15μg" 14 10 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15μg" 8 32 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30μg" 2 8 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Telithromycin" "Table 2E" "15μg" 15 11 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15ug" 14 10 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15ug" 8 32 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30ug" 2 8 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Telithromycin" "Table 2E" "15ug" 15 11 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Telithromycin" "Table 2E" 4 16 FALSE -"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" "15μg" 19 15 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" "15ug" 19 15 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" 1 4 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Telithromycin" "Generic rules" "15μg" 22 18 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Telithromycin" "Generic rules" "15μg" 1 4 FALSE -"CLSI 2015" "DISK" "Staphylococcus" 3 "Trimethoprim" "Table 2C" "5μg" 16 10 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Telithromycin" "Generic rules" "15ug" 22 18 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Telithromycin" "Generic rules" "15ug" 1 4 FALSE +"CLSI 2015" "DISK" "Staphylococcus" 3 "Trimethoprim" "Table 2C" "5ug" 16 10 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Trimethoprim" "Table 2C" 8 16 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5μg" 16 10 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5μg" 8 16 FALSE -"CLSI 2015" "DISK" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" "10μg" 15 12 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 16 10 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 8 16 FALSE +"CLSI 2015" "DISK" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" "10ug" 15 12 FALSE "CLSI 2015" "MIC" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" 4 16 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Tobramycin" "Table 2B-5" 4 16 FALSE -"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" "10μg" 15 12 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" "10ug" 15 12 FALSE "CLSI 2015" "MIC" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" 4 16 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Tobramycin" "Generic rules" "10μg" 15 12 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Tobramycin" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Tulathromycin" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Tulathromycin" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Trovafloxacin" "Table 2E" "10μg" 22 6 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 15 12 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Tulathromycin" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Tulathromycin" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Trovafloxacin" "Table 2E" "10ug" 22 6 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Trovafloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" "10μg" 34 6 FALSE +"CLSI 2015" "DISK" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" "10ug" 34 6 FALSE "CLSI 2015" "MIC" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" 0.25 2048 FALSE -"CLSI 2015" "DISK" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" "10μg" 19 15 FALSE +"CLSI 2015" "DISK" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" "10ug" 19 15 FALSE "CLSI 2015" "MIC" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" 1 4 FALSE -"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" "10μg" 19 15 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" "10ug" 19 15 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" 1 4 FALSE -"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" "10μg" 19 15 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" "10ug" 19 15 FALSE "CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" 1 4 FALSE -"CLSI 2015" "DISK" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" "100μg" 21 17 FALSE +"CLSI 2015" "DISK" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" "100ug" 21 17 FALSE "CLSI 2015" "MIC" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" 16 128 FALSE -"CLSI 2015" "DISK" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100μg" 21 17 FALSE +"CLSI 2015" "DISK" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE "CLSI 2015" "MIC" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 2" 16 128 FALSE "CLSI 2015" "MIC" "(unknown Gram-negatives)" 2 "Piperacillin/tazobactam" "Table 2B-5" 16 128 FALSE -"CLSI 2015" "DISK" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" "100μg" 21 6 FALSE +"CLSI 2015" "DISK" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" "100ug" 21 6 FALSE "CLSI 2015" "MIC" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" 1 2 FALSE -"CLSI 2015" "DISK" "Plesiomonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100μg" 21 17 FALSE +"CLSI 2015" "DISK" "Plesiomonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE "CLSI 2015" "MIC" "Plesiomonas" 3 "Piperacillin/tazobactam" "M45 Table 2" 16 128 FALSE -"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" "100μg" 21 14 FALSE +"CLSI 2015" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" "100ug" 21 14 FALSE "CLSI 2015" "MIC" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" 16 128 FALSE -"CLSI 2015" "DISK" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10μg" 21 17 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10μg" 16 128 FALSE +"CLSI 2015" "DISK" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10ug" 21 17 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10ug" 16 128 FALSE "CLSI 2015" "MIC" "Abiotrophia" 3 "Vancomycin" "M45 Table 1" 1 2048 FALSE "CLSI 2015" "MIC" "Bacillus" 3 "Vancomycin" "M45 Table 3" 4 2048 FALSE "CLSI 2015" "MIC" "Cutibacterium acnes" 2 "Vancomycin" "Table 2J-2" 2 4 FALSE -"CLSI 2015" "DISK" "Enterococcus" 3 "Vancomycin" "Table 2D" "30μg" 17 14 FALSE +"CLSI 2015" "DISK" "Enterococcus" 3 "Vancomycin" "Table 2D" "30ug" 17 14 FALSE "CLSI 2015" "MIC" "Enterococcus" 3 "Vancomycin" "Table 2D" 4 32 FALSE "CLSI 2015" "MIC" "Granulicatella" 3 "Vancomycin" "M45 Table 1" 1 2048 FALSE "CLSI 2015" "MIC" "Lactobacillus" 3 "Vancomycin" "M45 Table 9" 2 16 FALSE "CLSI 2015" "MIC" "Staphylococcus" 3 "Vancomycin" "Table 2C" 4 32 FALSE "CLSI 2015" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" "Table 2C" 2 16 FALSE -"CLSI 2015" "DISK" "Streptococcus" 3 "Vancomycin" "Table 2H-1" "30μg" 17 6 FALSE +"CLSI 2015" "DISK" "Streptococcus" 3 "Vancomycin" "Table 2H-1" "30ug" 17 6 FALSE "CLSI 2015" "MIC" "Streptococcus" 3 "Vancomycin" "Table 2H-1" 1 2048 FALSE -"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" "30μg" 17 6 FALSE +"CLSI 2015" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" "30ug" 17 6 FALSE "CLSI 2015" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" 1 2048 FALSE -"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" "30μg" 17 6 FALSE +"CLSI 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" "30ug" 17 6 FALSE "CLSI 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" 1 2048 FALSE -"CLSI 2015" "MIC" "(unknown name)" 6 "Vancomycin" "Generic rules" "30μg" 4 32 FALSE -"CLSI 2014" "DISK" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20μg" 18 13 FALSE +"CLSI 2015" "MIC" "(unknown name)" 6 "Vancomycin" "Generic rules" "30ug" 4 32 FALSE +"CLSI 2014" "DISK" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE "CLSI 2014" "MIC" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" 8 32 FALSE "CLSI 2014" "MIC" "Aggregatibacter" 3 "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE "CLSI 2014" "MIC" "Burkholderia pseudomallei" 2 "Amoxicillin/clavulanic acid" "M45 Table 16" 8 32 FALSE "CLSI 2014" "MIC" "Cardiobacterium" 3 "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE "CLSI 2014" "MIC" "Eikenella" 3 "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" "20/10μg" 20 19 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" "20/10ug" 20 19 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" 4 8 FALSE -"CLSI 2014" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 12" "20μg" 24 23 FALSE +"CLSI 2014" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 12" "20ug" 24 23 FALSE "CLSI 2014" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 12" 4 8 FALSE -"CLSI 2014" "DISK" "Plesiomonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20μg" 18 13 FALSE +"CLSI 2014" "DISK" "Plesiomonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE "CLSI 2014" "MIC" "Plesiomonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" 8 32 FALSE -"CLSI 2014" "DISK" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 13" "20μg" 27 6 FALSE +"CLSI 2014" "DISK" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 13" "20ug" 27 6 FALSE "CLSI 2014" "MIC" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 13" 0.5 2048 FALSE "CLSI 2014" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Amoxicillin/clavulanic acid" "Table 2G" 2 8 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10μg" 18 13 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10μg" 8 32 FALSE -"CLSI 2014" "DISK" "Acinetobacter" 3 "Amikacin" "Table 2B-2" "30μg" 17 14 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 18 13 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 8 32 FALSE +"CLSI 2014" "DISK" "Acinetobacter" 3 "Amikacin" "Table 2B-2" "30ug" 17 14 FALSE "CLSI 2014" "MIC" "Acinetobacter" 3 "Amikacin" "Table 2B-2" 16 64 FALSE -"CLSI 2014" "DISK" "Aeromonas" 3 "Amikacin" "M45 Table 2" "30μg" 17 14 FALSE +"CLSI 2014" "DISK" "Aeromonas" 3 "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE "CLSI 2014" "MIC" "Aeromonas" 3 "Amikacin" "M45 Table 2" 16 64 FALSE "CLSI 2014" "MIC" "Bacillus" 3 "Amikacin" "M45 Table 3" 16 64 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Amikacin" "Table 2B-5" 16 64 FALSE -"CLSI 2014" "DISK" "Plesiomonas" 3 "Amikacin" "M45 Table 2" "30μg" 17 14 FALSE +"CLSI 2014" "DISK" "Plesiomonas" 3 "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE "CLSI 2014" "MIC" "Plesiomonas" 3 "Amikacin" "M45 Table 2" 16 64 FALSE -"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" "30μg" 17 14 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" "30ug" 17 14 FALSE "CLSI 2014" "MIC" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" 16 64 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Amikacin" "Generic rules" "30μg" 17 14 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Amikacin" "Generic rules" "30μg" 16 64 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 17 14 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 16 64 FALSE "CLSI 2014" "MIC" "Aggregatibacter" 3 "Ampicillin" "M45 Table 7" 1 4 FALSE "CLSI 2014" "MIC" "Bacillus" 3 "Ampicillin" "M45 Table 3" 0.25 0.5 FALSE "CLSI 2014" "MIC" "Cardiobacterium" 3 "Ampicillin" "M45 Table 7" 1 4 FALSE "CLSI 2014" "MIC" "Eikenella" 3 "Ampicillin" "M45 Table 7" 1 4 FALSE -"CLSI 2014" "DISK" "Enterococcus" 3 "Ampicillin" "Table 2D" "10μg" 17 16 FALSE +"CLSI 2014" "DISK" "Enterococcus" 3 "Ampicillin" "Table 2D" "10ug" 17 16 FALSE "CLSI 2014" "MIC" "Enterococcus" 3 "Ampicillin" "Table 2D" 8 16 FALSE "CLSI 2014" "MIC" "Erysipelothrix rhusiopathiae" 2 "Ampicillin" "M45 Table 6" 0.25 2048 FALSE "CLSI 2014" "MIC" "Granulicatella" 3 "Ampicillin" "M45 Table 1" 0.25 8 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Ampicillin" "Table 2E" "10μg" 22 18 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Ampicillin" "Table 2E" "10ug" 22 18 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Ampicillin" "Table 2E" 1 4 FALSE "CLSI 2014" "MIC" "Leuconostoc" 3 "Ampicillin" "M45 Table 10" 8 2048 FALSE "CLSI 2014" "MIC" "Lactobacillus" 3 "Ampicillin" "M45 Table 9" 8 2048 FALSE "CLSI 2014" "MIC" "Listeria monocytogenes" 2 "Ampicillin" "M45 Table 11" 2 2048 FALSE "CLSI 2014" "MIC" "Neisseria meningitidis" 2 "Ampicillin" "Table 2I" 0.125 2 FALSE "CLSI 2014" "MIC" "Pediococcus" 3 "Ampicillin" "M45 Table 14" 8 2048 FALSE -"CLSI 2014" "DISK" "Pasteurella" 3 "Ampicillin" "M45 Table 13" "10μg" 27 6 FALSE +"CLSI 2014" "DISK" "Pasteurella" 3 "Ampicillin" "M45 Table 13" "10ug" 27 6 FALSE "CLSI 2014" "MIC" "Pasteurella" 3 "Ampicillin" "M45 Table 13" 0.5 2048 FALSE -"CLSI 2014" "DISK" "Streptococcus" 3 "Ampicillin" "Table 2H-1" "10μg" 24 6 FALSE +"CLSI 2014" "DISK" "Streptococcus" 3 "Ampicillin" "Table 2H-1" "10ug" 24 6 FALSE "CLSI 2014" "MIC" "Streptococcus" 3 "Ampicillin" "Table 2H-1" 0.25 2048 FALSE "CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Table 2H-2" 0.25 8 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Ampicillin" "Generic rules" "10μg" 17 13 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Ampicillin" "Generic rules" "2μg" 8 32 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Ampicillin" "Generic rules" "10ug" 17 13 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Ampicillin" "Generic rules" "2ug" 8 32 FALSE "CLSI 2014" "MIC" "Pasteurella" 3 "Amoxicillin" "M45 Table 13" 0.5 2048 FALSE "CLSI 2014" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Amoxicillin" "Table 2G" 2 8 FALSE -"CLSI 2014" "DISK" "Aeromonas" 3 "Aztreonam" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2014" "DISK" "Aeromonas" 3 "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2014" "MIC" "Aeromonas" 3 "Aztreonam" "M45 Table 2" 4 16 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Aztreonam" "Table 2B-5" 8 32 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Aztreonam" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Aztreonam" "Table 2E" "30ug" 26 6 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Aztreonam" "Table 2E" 2 2048 FALSE -"CLSI 2014" "DISK" "Plesiomonas" 3 "Aztreonam" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2014" "DISK" "Plesiomonas" 3 "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2014" "MIC" "Plesiomonas" 3 "Aztreonam" "M45 Table 2" 4 16 FALSE -"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" "30μg" 22 15 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" "30ug" 22 15 FALSE "CLSI 2014" "MIC" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" 8 32 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Aztreonam" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Aztreonam" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Azlocillin" "Generic rules" "75μg" 18 17 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Azlocillin" "Generic rules" "75μg" 64 128 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Azlocillin" "Generic rules" "75ug" 18 17 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Azlocillin" "Generic rules" "75ug" 64 128 FALSE "CLSI 2014" "MIC" "Aggregatibacter" 3 "Azithromycin" "M45 Table 7" 4 2048 FALSE "CLSI 2014" "MIC" "Cardiobacterium" 3 "Azithromycin" "M45 Table 7" 4 2048 FALSE "CLSI 2014" "MIC" "Eikenella" 3 "Azithromycin" "M45 Table 7" 4 2048 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Azithromycin" "Table 2E" "15μg" 12 6 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Azithromycin" "Table 2E" "15ug" 12 6 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Azithromycin" "Table 2E" 4 2048 FALSE "CLSI 2014" "MIC" "Kingella" 3 "Azithromycin" "M45 Table 7" 4 2048 FALSE -"CLSI 2014" "DISK" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 12" "15μg" 26 6 FALSE +"CLSI 2014" "DISK" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 12" "15ug" 26 6 FALSE "CLSI 2014" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 12" 0.25 2048 FALSE -"CLSI 2014" "DISK" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" "15μg" 20 6 FALSE +"CLSI 2014" "DISK" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" "15ug" 20 6 FALSE "CLSI 2014" "MIC" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" 2 2048 FALSE -"CLSI 2014" "DISK" "Pasteurella" 3 "Azithromycin" "M45 Table 13" "15μg" 20 6 FALSE +"CLSI 2014" "DISK" "Pasteurella" 3 "Azithromycin" "M45 Table 13" "15ug" 20 6 FALSE "CLSI 2014" "MIC" "Pasteurella" 3 "Azithromycin" "M45 Table 13" 1 2048 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Azithromycin" "Table 2C" "15μg" 18 13 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Azithromycin" "Table 2C" "15ug" 18 13 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Azithromycin" "Table 2C" 2 8 FALSE -"CLSI 2014" "DISK" "Streptococcus" 3 "Azithromycin" "Table 2H-1" "15μg" 18 13 FALSE +"CLSI 2014" "DISK" "Streptococcus" 3 "Azithromycin" "Table 2H-1" "15ug" 18 13 FALSE "CLSI 2014" "MIC" "Streptococcus" 3 "Azithromycin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" "15μg" 18 13 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" "15ug" 18 13 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" 0.5 2 FALSE -"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" "15μg" 18 13 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" "15ug" 18 13 FALSE "CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" 0.5 2 FALSE -"CLSI 2014" "MIC" "Vibrio cholerae" 2 "Azithromycin" "M45 Table 14" "30μg" 2 2048 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Azithromycin" "Generic rules" "15μg" 18 13 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Azithromycin" "Generic rules" "15μg" 2 8 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Cefetamet" "Table 2E" "10μg" 18 14 FALSE +"CLSI 2014" "MIC" "Vibrio cholerae" 2 "Azithromycin" "M45 Table 14" "30ug" 2 2048 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Azithromycin" "Generic rules" "15ug" 18 13 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Azithromycin" "Generic rules" "15ug" 2 8 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Cefetamet" "Table 2E" "10ug" 18 14 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Cefetamet" "Table 2E" 4 16 FALSE -"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Cefetamet" "Table 2F" "10μg" 29 6 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Cefetamet" "Table 2F" "10ug" 29 6 FALSE "CLSI 2014" "MIC" "Neisseria gonorrhoeae" 2 "Cefetamet" "Table 2F" 0.5 2048 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Cefetamet" "Generic rules" "10μg" 18 14 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Cefetamet" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2014" "DISK" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" "30μg" 18 14 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Cefetamet" "Generic rules" "10ug" 18 14 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Cefetamet" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2014" "DISK" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" "30ug" 18 14 FALSE "CLSI 2014" "MIC" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" 8 32 FALSE -"CLSI 2014" "DISK" "Aeromonas" 3 "Ceftazidime" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2014" "DISK" "Aeromonas" 3 "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2014" "MIC" "Aeromonas" 3 "Ceftazidime" "M45 Table 2" 4 16 FALSE "CLSI 2014" "MIC" "Bacillus" 3 "Ceftazidime" "M45 Table 3" 8 32 FALSE -"CLSI 2014" "DISK" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" "30μg" 21 17 FALSE +"CLSI 2014" "DISK" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" "30ug" 21 17 FALSE "CLSI 2014" "MIC" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" 8 32 FALSE "CLSI 2014" "MIC" "Burkholderia mallei" 2 "Ceftazidime" "M45 Table 16" 8 32 FALSE "CLSI 2014" "MIC" "Burkholderia pseudomallei" 2 "Ceftazidime" "M45 Table 16" 8 32 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Ceftazidime" "Table 2B-5" 8 32 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Ceftazidime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Ceftazidime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Ceftazidime" "Table 2E" 2 2048 FALSE "CLSI 2014" "MIC" "Moraxella catarrhalis" 2 "Ceftazidime" "M45 Table 12" 2 2048 FALSE -"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Ceftazidime" "Table 2F" "30μg" 31 6 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Ceftazidime" "Table 2F" "30ug" 31 6 FALSE "CLSI 2014" "MIC" "Neisseria gonorrhoeae" 2 "Ceftazidime" "Table 2F" 0.5 2048 FALSE -"CLSI 2014" "DISK" "Plesiomonas" 3 "Ceftazidime" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2014" "DISK" "Plesiomonas" 3 "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2014" "MIC" "Plesiomonas" 3 "Ceftazidime" "M45 Table 2" 4 16 FALSE -"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" "30μg" 18 14 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" "30ug" 18 14 FALSE "CLSI 2014" "MIC" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" 8 32 FALSE "CLSI 2014" "MIC" "Stenotrophomonas maltophilia" 2 "Ceftazidime" "Table 2B-4" 8 32 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Cefdinir" "Table 2E" "5μg" 20 6 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Cefdinir" "Table 2E" "5ug" 20 6 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Cefdinir" "Table 2E" 1 2048 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Cefdinir" "Table 2G" 0.5 2 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Cefdinir" "Generic rules" "5μg" 20 16 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Cefdinir" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Cefaclor" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Cefdinir" "Generic rules" "5ug" 20 16 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Cefdinir" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Cefaclor" "Table 2E" "30ug" 20 16 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Cefaclor" "Table 2E" 8 32 FALSE "CLSI 2014" "MIC" "Moraxella catarrhalis" 2 "Cefaclor" "M45 Table 12" 8 32 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" "Table 2G" 1 4 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Cefaclor" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Cefaclor" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Cephalothin" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Cephalothin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Cefixime" "Table 2E" "5μg" 21 6 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Cefaclor" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Cefaclor" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Cephalothin" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Cephalothin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Cefixime" "Table 2E" "5ug" 21 6 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Cefixime" "Table 2E" 1 2048 FALSE -"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" "5μg" 31 6 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" "5ug" 31 6 FALSE "CLSI 2014" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" 0.25 2048 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Cefixime" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Cefixime" "Generic rules" "5μg" 1 4 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 1 4 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Cefoperazone" "Table 2B-5" 16 64 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75μg" 21 15 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75μg" 16 64 FALSE -"CLSI 2014" "DISK" "Aeromonas" 3 "Chloramphenicol" "M45 Table 2" "30μg" 18 12 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75ug" 21 15 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75ug" 16 64 FALSE +"CLSI 2014" "DISK" "Aeromonas" 3 "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE "CLSI 2014" "MIC" "Aeromonas" 3 "Chloramphenicol" "M45 Table 2" 8 32 FALSE "CLSI 2014" "MIC" "Aggregatibacter" 3 "Chloramphenicol" "M45 Table 7" 4 16 FALSE "CLSI 2014" "MIC" "Bacillus" 3 "Chloramphenicol" "M45 Table 3" 8 32 FALSE "CLSI 2014" "MIC" "Burkholderia cepacia" 2 "Chloramphenicol" "Table 2B-3" 8 32 FALSE "CLSI 2014" "MIC" "Cardiobacterium" 3 "Chloramphenicol" "M45 Table 7" 4 16 FALSE "CLSI 2014" "MIC" "Eikenella" 3 "Chloramphenicol" "M45 Table 7" 4 16 FALSE -"CLSI 2014" "DISK" "Enterococcus" 3 "Chloramphenicol" "Table 2D" "30μg" 18 12 FALSE +"CLSI 2014" "DISK" "Enterococcus" 3 "Chloramphenicol" "Table 2D" "30ug" 18 12 FALSE "CLSI 2014" "MIC" "Enterococcus" 3 "Chloramphenicol" "Table 2D" 8 32 FALSE "CLSI 2014" "MIC" "Francisella tularensis tularensis" 1 "Chloramphenicol" "M45 Table 16" 8 2048 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Chloramphenicol" "Table 2B-5" 8 32 FALSE "CLSI 2014" "MIC" "Granulicatella" 3 "Chloramphenicol" "M45 Table 1" 4 8 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Chloramphenicol" "Table 2E" "30μg" 29 25 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Chloramphenicol" "Table 2E" "30ug" 29 25 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Chloramphenicol" "Table 2E" 2 8 FALSE "CLSI 2014" "MIC" "Kingella" 3 "Chloramphenicol" "M45 Table 7" 4 16 FALSE "CLSI 2014" "MIC" "Leuconostoc" 3 "Chloramphenicol" "M45 Table 10" 8 32 FALSE "CLSI 2014" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" "M45 Table 12" 2 8 FALSE -"CLSI 2014" "DISK" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" "30μg" 26 19 FALSE +"CLSI 2014" "DISK" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" "30ug" 26 19 FALSE "CLSI 2014" "MIC" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" 2 8 FALSE "CLSI 2014" "MIC" "Pediococcus" 3 "Chloramphenicol" "M45 Table 14" 8 32 FALSE -"CLSI 2014" "DISK" "Plesiomonas" 3 "Chloramphenicol" "M45 Table 2" "30μg" 18 12 FALSE +"CLSI 2014" "DISK" "Plesiomonas" 3 "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE "CLSI 2014" "MIC" "Plesiomonas" 3 "Chloramphenicol" "M45 Table 2" 8 32 FALSE -"CLSI 2014" "DISK" "Pasteurella" 3 "Chloramphenicol" "M45 Table 13" "30μg" 28 6 FALSE +"CLSI 2014" "DISK" "Pasteurella" 3 "Chloramphenicol" "M45 Table 13" "30ug" 28 6 FALSE "CLSI 2014" "MIC" "Pasteurella" 3 "Chloramphenicol" "M45 Table 13" 2 2048 FALSE "CLSI 2014" "MIC" "Stenotrophomonas maltophilia" 2 "Chloramphenicol" "Table 2B-4" 8 32 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" "30μg" 18 12 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" "30ug" 18 12 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" 8 32 FALSE -"CLSI 2014" "DISK" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" "30μg" 21 17 FALSE +"CLSI 2014" "DISK" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" "30ug" 21 17 FALSE "CLSI 2014" "MIC" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" 4 16 FALSE -"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" "30μg" 21 20 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" "30ug" 21 20 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" 4 8 FALSE -"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" "30μg" 21 17 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" "30ug" 21 17 FALSE "CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" 4 16 FALSE "CLSI 2014" "MIC" "Yersinia pestis" 2 "Chloramphenicol" "M45 Table 16" 8 32 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30μg" 18 12 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Cefonicid" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 18 12 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Cefonicid" "Table 2E" "30ug" 20 16 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Cefonicid" "Table 2E" 4 16 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Cefonicid" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Cefonicid" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100μg" 19 14 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100μg" 16 64 FALSE -"CLSI 2014" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" "5μg" 21 15 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Cefonicid" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Cefonicid" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100ug" 19 14 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100ug" 16 64 FALSE +"CLSI 2014" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" "5ug" 21 15 FALSE "CLSI 2014" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" 1 4 FALSE -"CLSI 2014" "DISK" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 2" "5μg" 21 15 FALSE +"CLSI 2014" "DISK" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE "CLSI 2014" "MIC" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 2" 1 4 FALSE "CLSI 2014" "MIC" "Aggregatibacter" 3 "Ciprofloxacin" "M45 Table 7" 1 4 FALSE "CLSI 2014" "MIC" "Bacillus" 3 "Ciprofloxacin" "M45 Table 3" 1 4 FALSE @@ -16048,102 +16048,102 @@ "CLSI 2014" "MIC" "Campylobacter" 3 "Ciprofloxacin" "M45 Table 3" 1 4 FALSE "CLSI 2014" "MIC" "Cardiobacterium" 3 "Ciprofloxacin" "M45 Table 7" 1 4 FALSE "CLSI 2014" "MIC" "Eikenella" 3 "Ciprofloxacin" "M45 Table 7" 1 4 FALSE -"CLSI 2014" "DISK" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" "5μg" 21 15 FALSE +"CLSI 2014" "DISK" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" "5ug" 21 15 FALSE "CLSI 2014" "MIC" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" 1 4 FALSE "CLSI 2014" "MIC" "Erysipelothrix rhusiopathiae" 2 "Ciprofloxacin" "M45 Table 6" 1 2048 FALSE "CLSI 2014" "MIC" "Francisella tularensis tularensis" 1 "Ciprofloxacin" "M45 Table 16" 0.5 2048 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Ciprofloxacin" "Table 2B-5" 1 4 FALSE "CLSI 2014" "MIC" "Granulicatella" 3 "Ciprofloxacin" "M45 Table 1" 1 4 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" "5μg" 21 6 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" "5ug" 21 6 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" 1 2048 FALSE "CLSI 2014" "MIC" "Kingella" 3 "Ciprofloxacin" "M45 Table 7" 1 4 FALSE "CLSI 2014" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M45 Table 12" 1 2048 FALSE -"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" "5μg" 41 27 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" "5ug" 41 27 FALSE "CLSI 2014" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" 0.064 1 FALSE -"CLSI 2014" "DISK" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" "5μg" 35 32 FALSE +"CLSI 2014" "DISK" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" "5ug" 35 32 FALSE "CLSI 2014" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" 0.032 0.12 FALSE -"CLSI 2014" "DISK" "Plesiomonas" 3 "Ciprofloxacin" "M45 Table 2" "5μg" 21 15 FALSE +"CLSI 2014" "DISK" "Plesiomonas" 3 "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE "CLSI 2014" "MIC" "Plesiomonas" 3 "Ciprofloxacin" "M45 Table 2" 1 4 FALSE -"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" "5μg" 21 15 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" "5ug" 21 15 FALSE "CLSI 2014" "MIC" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" 1 4 FALSE -"CLSI 2014" "DISK" "Extraintestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5μg" 31 20 FALSE -"CLSI 2014" "DISK" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5μg" 31 20 FALSE +"CLSI 2014" "DISK" "Extraintestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE +"CLSI 2014" "DISK" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE "CLSI 2014" "MIC" "Extraintestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" 0.064 1 FALSE "CLSI 2014" "MIC" "Salmonella" 3 "Ciprofloxacin" "Table 2A" 0.064 1 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" "5μg" 21 15 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" "5ug" 21 15 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" 1 4 FALSE "CLSI 2014" "MIC" "Yersinia pestis" 2 "Ciprofloxacin" "M45 Table 16" 0.25 2048 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5μg" 21 15 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5μg" 1 4 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 21 15 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 1 4 FALSE "CLSI 2014" "MIC" "Bacillus" 3 "Clindamycin" "M45 Table 3" 0.5 4 FALSE "CLSI 2014" "MIC" "Erysipelothrix rhusiopathiae" 2 "Clindamycin" "M45 Table 6" 0.25 1 FALSE "CLSI 2014" "MIC" "Granulicatella" 3 "Clindamycin" "M45 Table 1" 0.25 1 FALSE "CLSI 2014" "MIC" "Lactobacillus" 3 "Clindamycin" "M45 Table 9" 0.5 2 FALSE "CLSI 2014" "MIC" "Moraxella catarrhalis" 2 "Clindamycin" "M45 Table 12" 0.5 4 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Clindamycin" "Table 2C" "2μg" 21 14 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Clindamycin" "Table 2C" "2ug" 21 14 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Clindamycin" "Table 2C" 0.5 4 FALSE -"CLSI 2014" "DISK" "Streptococcus" 3 "Clindamycin" "Table 2H-1" "2μg" 19 15 FALSE +"CLSI 2014" "DISK" "Streptococcus" 3 "Clindamycin" "Table 2H-1" "2ug" 19 15 FALSE "CLSI 2014" "MIC" "Streptococcus" 3 "Clindamycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" "2μg" 19 15 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" "2ug" 19 15 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" 0.25 1 FALSE -"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" "2μg" 19 15 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" "2ug" 19 15 FALSE "CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Clindamycin" "Generic rules" "2μg" 21 14 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Clindamycin" "Generic rules" "2μg" 0.5 4 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Clindamycin" "Generic rules" "2ug" 21 14 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Clindamycin" "Generic rules" "2ug" 0.5 4 FALSE "CLSI 2014" "MIC" "Aggregatibacter" 3 "Clarithromycin" "M45 Table 7" 8 32 FALSE "CLSI 2014" "MIC" "Cardiobacterium" 3 "Clarithromycin" "M45 Table 7" 8 32 FALSE "CLSI 2014" "MIC" "Eikenella" 3 "Clarithromycin" "M45 Table 7" 8 32 FALSE "CLSI 2014" "MIC" "Helicobacter pylori" 2 "Clarithromycin" "M45 Table 8" 0.25 1 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Clarithromycin" "Table 2E" "15μg" 13 10 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Clarithromycin" "Table 2E" "15ug" 13 10 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Clarithromycin" "Table 2E" 8 32 FALSE "CLSI 2014" "MIC" "Kingella" 3 "Clarithromycin" "M45 Table 7" 8 32 FALSE -"CLSI 2014" "DISK" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 12" "15μg" 24 6 FALSE +"CLSI 2014" "DISK" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 12" "15ug" 24 6 FALSE "CLSI 2014" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 12" 1 2048 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Clarithromycin" "Table 2C" "15μg" 18 13 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Clarithromycin" "Table 2C" "15ug" 18 13 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Clarithromycin" "Table 2C" 2 8 FALSE -"CLSI 2014" "DISK" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" "15μg" 21 16 FALSE +"CLSI 2014" "DISK" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" "15ug" 21 16 FALSE "CLSI 2014" "MIC" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" "15μg" 21 16 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" "15ug" 21 16 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" 0.25 1 FALSE -"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" "15μg" 21 16 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" "15ug" 21 16 FALSE "CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15μg" 18 13 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15μg" 2 8 FALSE -"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Cefmetazole" "Table 2F" "30μg" 33 27 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15ug" 18 13 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15ug" 2 8 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Cefmetazole" "Table 2F" "30ug" 33 27 FALSE "CLSI 2014" "MIC" "Neisseria gonorrhoeae" 2 "Cefmetazole" "Table 2F" 2 8 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30μg" 16 64 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30ug" 16 64 FALSE "CLSI 2014" "MIC" "Acinetobacter" 3 "Colistin" "Table 2B-2" 2 4 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Colistin" "Table 2B-5" 2 8 FALSE -"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Colistin" "Table 2B-1" "10μg" 11 10 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Colistin" "Table 2B-1" "10ug" 11 10 FALSE "CLSI 2014" "MIC" "Pseudomonas aeruginosa" 2 "Colistin" "Table 2B-1" 2 8 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Colistin" "Generic rules" "10μg" 11 10 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Colistin" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Cefpodoxime" "Table 2E" "10μg" 21 6 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Colistin" "Generic rules" "10ug" 11 10 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Colistin" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Cefpodoxime" "Table 2E" "10ug" 21 6 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Cefpodoxime" "Table 2E" 2 2048 FALSE -"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" "10μg" 29 6 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" "10ug" 29 6 FALSE "CLSI 2014" "MIC" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" 0.5 2048 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" "Table 2G" 0.5 2 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10μg" 21 17 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Cefprozil" "Table 2E" "30μg" 18 14 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 21 17 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Cefprozil" "Table 2E" "30ug" 18 14 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Cefprozil" "Table 2E" 8 32 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Cefprozil" "Table 2G" 2 8 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Cefprozil" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Cefprozil" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2014" "DISK" "Haemophilus influenzae" 2 "Ceftaroline" "Table 2E" "30μg" 30 6 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Cefprozil" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Cefprozil" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2014" "DISK" "Haemophilus influenzae" 2 "Ceftaroline" "Table 2E" "30ug" 30 6 FALSE "CLSI 2014" "MIC" "Haemophilus influenzae" 2 "Ceftaroline" "Table 2E" 0.5 2048 FALSE -"CLSI 2014" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Table 2C" "30μg" 24 20 FALSE +"CLSI 2014" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Table 2C" "30ug" 24 20 FALSE "CLSI 2014" "MIC" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Table 2C" 1 4 FALSE -"CLSI 2014" "DISK" "Streptococcus" 3 "Ceftaroline" "Table 2H-1" "30μg" 26 6 FALSE +"CLSI 2014" "DISK" "Streptococcus" 3 "Ceftaroline" "Table 2H-1" "30ug" 26 6 FALSE "CLSI 2014" "MIC" "Streptococcus" 3 "Ceftaroline" "Table 2H-1" 0.5 2048 FALSE "CLSI 2014" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Ceftaroline" "Table 2G" 0.5 2048 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30μg" 0.5 2 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30ug" 0.5 2 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Carbenicillin" "Table 2B-5" 16 64 FALSE -"CLSI 2014" "DISK" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" "30μg" 21 13 FALSE +"CLSI 2014" "DISK" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" "30ug" 21 13 FALSE "CLSI 2014" "MIC" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" 8 64 FALSE -"CLSI 2014" "DISK" "Aeromonas" 3 "Ceftriaxone" "M45 Table 2" "30μg" 23 19 FALSE +"CLSI 2014" "DISK" "Aeromonas" 3 "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE "CLSI 2014" "MIC" "Aeromonas" 3 "Ceftriaxone" "M45 Table 2" 1 4 FALSE "CLSI 2014" "MIC" "Aggregatibacter" 3 "Ceftriaxone" "M45 Table 7" 2 2048 FALSE "CLSI 2014" "MIC" "Bacillus" 3 "Ceftriaxone" "M45 Table 3" 8 64 FALSE @@ -16152,37 +16152,37 @@ "CLSI 2014" "MIC" "Erysipelothrix rhusiopathiae" 2 "Ceftriaxone" "M45 Table 6" 1 2048 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Ceftriaxone" "Table 2B-5" 8 64 FALSE "CLSI 2014" "MIC" "Granulicatella" 3 "Ceftriaxone" "M45 Table 1" 1 4 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Ceftriaxone" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Ceftriaxone" "Table 2E" "30ug" 26 6 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Ceftriaxone" "Table 2E" 2 2048 FALSE "CLSI 2014" "MIC" "Kingella" 3 "Ceftriaxone" "M45 Table 7" 2 2048 FALSE "CLSI 2014" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" "M45 Table 12" 2 2048 FALSE -"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" "30μg" 35 6 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" "30ug" 35 6 FALSE "CLSI 2014" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" 0.25 2048 FALSE -"CLSI 2014" "DISK" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" "30μg" 34 6 FALSE +"CLSI 2014" "DISK" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" "30ug" 34 6 FALSE "CLSI 2014" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" 0.125 2048 FALSE -"CLSI 2014" "DISK" "Plesiomonas" 3 "Ceftriaxone" "M45 Table 2" "30μg" 23 19 FALSE +"CLSI 2014" "DISK" "Plesiomonas" 3 "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE "CLSI 2014" "MIC" "Plesiomonas" 3 "Ceftriaxone" "M45 Table 2" 1 4 FALSE -"CLSI 2014" "DISK" "Pasteurella" 3 "Ceftriaxone" "M45 Table 13" "30μg" 34 6 FALSE +"CLSI 2014" "DISK" "Pasteurella" 3 "Ceftriaxone" "M45 Table 13" "30ug" 34 6 FALSE "CLSI 2014" "MIC" "Pasteurella" 3 "Ceftriaxone" "M45 Table 13" 0.125 2048 FALSE -"CLSI 2014" "DISK" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2014" "DISK" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2014" "MIC" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" 0.5 2048 FALSE "CLSI 2014" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Table 2G" 0.5 2 FALSE "CLSI 2014" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Table 2G" 1 4 FALSE -"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" "30μg" 27 24 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" "30ug" 27 24 FALSE "CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" 1 4 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30μg" 1 4 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Ceftibuten" "Table 2E" "30μg" 28 6 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 1 4 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Ceftibuten" "Table 2E" "30ug" 28 6 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Ceftibuten" "Table 2E" 2 2048 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" "30μg" 26 19 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" "30ug" 26 19 FALSE "CLSI 2014" "MIC" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" 2 8 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Cefotetan" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Cefotetan" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2014" "DISK" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" "30μg" 23 14 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Cefotetan" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Cefotetan" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2014" "DISK" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" "30ug" 23 14 FALSE "CLSI 2014" "MIC" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" 8 64 FALSE -"CLSI 2014" "DISK" "Aeromonas" 3 "Cefotaxime" "M45 Table 2" "30μg" 26 22 FALSE +"CLSI 2014" "DISK" "Aeromonas" 3 "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE "CLSI 2014" "MIC" "Aeromonas" 3 "Cefotaxime" "M45 Table 2" 1 4 FALSE "CLSI 2014" "MIC" "Aggregatibacter" 3 "Cefotaxime" "M45 Table 7" 2 2048 FALSE "CLSI 2014" "MIC" "Bacillus" 3 "Cefotaxime" "M45 Table 3" 8 64 FALSE @@ -16191,244 +16191,244 @@ "CLSI 2014" "MIC" "Erysipelothrix rhusiopathiae" 2 "Cefotaxime" "M45 Table 6" 1 2048 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Cefotaxime" "Table 2B-5" 8 64 FALSE "CLSI 2014" "MIC" "Granulicatella" 3 "Cefotaxime" "M45 Table 1" 1 4 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Cefotaxime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Cefotaxime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Cefotaxime" "Table 2E" 2 2048 FALSE "CLSI 2014" "MIC" "Kingella" 3 "Cefotaxime" "M45 Table 7" 2 2048 FALSE "CLSI 2014" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" "M45 Table 12" 2 2048 FALSE -"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" "30μg" 31 6 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" "30ug" 31 6 FALSE "CLSI 2014" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" 0.5 2048 FALSE -"CLSI 2014" "DISK" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" "30μg" 34 6 FALSE +"CLSI 2014" "DISK" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" "30ug" 34 6 FALSE "CLSI 2014" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" 0.125 2048 FALSE -"CLSI 2014" "DISK" "Plesiomonas" 3 "Cefotaxime" "M45 Table 2" "30μg" 26 22 FALSE +"CLSI 2014" "DISK" "Plesiomonas" 3 "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE "CLSI 2014" "MIC" "Plesiomonas" 3 "Cefotaxime" "M45 Table 2" 1 4 FALSE -"CLSI 2014" "DISK" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2014" "DISK" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2014" "MIC" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" 0.5 2048 FALSE "CLSI 2014" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Cefotaxime" "Table 2G" 0.5 2 FALSE "CLSI 2014" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Cefotaxime" "Table 2G" 1 4 FALSE -"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" "30μg" 28 25 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" "30ug" 28 25 FALSE "CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" 1 4 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30μg" 26 22 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30μg" 1 4 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30ug" 26 22 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30ug" 1 4 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" "30ug" 20 16 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" 4 16 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Cefuroxime axetil" "Table 2G" 1 4 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30μg" 23 14 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30μg" 4 32 FALSE -"CLSI 2014" "DISK" "Aeromonas" 3 "Cefuroxime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 23 14 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 4 32 FALSE +"CLSI 2014" "DISK" "Aeromonas" 3 "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2014" "MIC" "Aeromonas" 3 "Cefuroxime" "M45 Table 2" 8 32 FALSE -"CLSI 2014" "DISK" "Oral" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30μg" 20 16 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2014" "DISK" "Oral" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE "CLSI 2014" "MIC" "Oral" "Haemophilus" 3 "Cefuroxime" "Table 2E" 4 16 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Cefuroxime" "Table 2E" 4 16 FALSE "CLSI 2014" "MIC" "Moraxella catarrhalis" 2 "Cefuroxime" "M45 Table 12" 4 16 FALSE -"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Cefuroxime" "Table 2F" "30μg" 31 25 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Cefuroxime" "Table 2F" "30ug" 31 25 FALSE "CLSI 2014" "MIC" "Neisseria gonorrhoeae" 2 "Cefuroxime" "Table 2F" 1 4 FALSE -"CLSI 2014" "DISK" "Plesiomonas" 3 "Cefuroxime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2014" "DISK" "Plesiomonas" 3 "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2014" "MIC" "Plesiomonas" 3 "Cefuroxime" "M45 Table 2" 8 32 FALSE "CLSI 2014" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Table 2G" 1 4 FALSE "CLSI 2014" "MIC" "Parenteral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Table 2G" 0.5 2 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30μg" 8 32 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 8 32 FALSE "CLSI 2014" "DISK" "Urine" "Enterobacterales" 5 "Cefazolin" "Table 2A" 15 14 TRUE "CLSI 2014" "MIC" "Urine" "Enterobacterales" 5 "Cefazolin" "Table 2A" 16 32 TRUE "CLSI 2014" "MIC" "Aeromonas" 3 "Cefazolin" "M45 Table 2" 1 4 FALSE "CLSI 2014" "MIC" "Bacillus" 3 "Cefazolin" "M45 Table 3" 8 16 FALSE "CLSI 2014" "MIC" "Plesiomonas" 3 "Cefazolin" "M45 Table 2" 1 4 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Cefazolin" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Cefazolin" "Generic rules" "30μg" 2 8 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Cefazolin" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Cefazolin" "Generic rules" "30ug" 2 8 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Ceftizoxime" "Table 2B-5" 8 64 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Ceftizoxime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Ceftizoxime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Ceftizoxime" "Table 2E" 2 2048 FALSE -"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" "30μg" 38 6 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" "30ug" 38 6 FALSE "CLSI 2014" "MIC" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" 0.5 2048 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30μg" 25 21 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30μg" 1 4 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30ug" 25 21 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30ug" 1 4 FALSE "CLSI 2014" "MIC" "Enterococcus" 3 "Daptomycin" "Table 2D" 4 2048 FALSE "CLSI 2014" "MIC" "Lactobacillus" 3 "Daptomycin" "M45 Table 9" 4 2048 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Daptomycin" "Table 2C" 1 2048 FALSE -"CLSI 2014" "DISK" "Streptococcus" 3 "Daptomycin" "Table 2H-1" "30μg" 16 6 FALSE +"CLSI 2014" "DISK" "Streptococcus" 3 "Daptomycin" "Table 2H-1" "30ug" 16 6 FALSE "CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Daptomycin" "Table 2H-2" 1 2048 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Daptomycin" "Generic rules" "30μg" 1 2048 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Difloxacin" "Generic rules" "10μg" 21 17 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Difloxacin" "Generic rules" "10μg" 0.5 4 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Dirithromycin" "Table 2C" "15μg" 19 15 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Daptomycin" "Generic rules" "30ug" 1 2048 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Difloxacin" "Generic rules" "10ug" 21 17 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Difloxacin" "Generic rules" "10ug" 0.5 4 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Dirithromycin" "Table 2C" "15ug" 19 15 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Dirithromycin" "Table 2C" 2 8 FALSE -"CLSI 2014" "DISK" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" "15μg" 18 13 FALSE +"CLSI 2014" "DISK" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" "15ug" 18 13 FALSE "CLSI 2014" "MIC" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" "15μg" 18 13 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" "15ug" 18 13 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" 0.5 2 FALSE -"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" "15μg" 18 13 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" "15ug" 18 13 FALSE "CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" 0.5 2 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15μg" 19 15 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15μg" 2 8 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15ug" 19 15 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15ug" 2 8 FALSE "CLSI 2014" "DISK" "Acinetobacter" 3 "Doripenem" "Table 2B-2" 18 14 FALSE "CLSI 2014" "MIC" "Acinetobacter" 3 "Doripenem" "Table 2B-2" 2 8 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Doripenem" "Table 2E" "10μg" 16 6 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Doripenem" "Table 2E" "10ug" 16 6 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Doripenem" "Table 2E" 1 2048 FALSE -"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2014" "MIC" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" 2 8 FALSE "CLSI 2014" "MIC" "Streptococcus" 3 "Doripenem" "Table 2H-1" 0.125 2048 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" "Table 2G" 1 2048 FALSE "CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" "Table 2H-2" 1 2048 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Doripenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Doripenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2014" "DISK" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" "30μg" 13 9 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Doripenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Doripenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2014" "DISK" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" "30ug" 13 9 FALSE "CLSI 2014" "MIC" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" 4 16 FALSE "CLSI 2014" "MIC" "Bacillus anthracis" 2 "Doxycycline" "M45 Table 16" 1 2048 FALSE "CLSI 2014" "MIC" "Brucella" 3 "Doxycycline" "M45 Table 16" 1 2048 FALSE "CLSI 2014" "MIC" "Burkholderia mallei" 2 "Doxycycline" "M45 Table 16" 4 16 FALSE "CLSI 2014" "MIC" "Burkholderia pseudomallei" 2 "Doxycycline" "M45 Table 16" 4 16 FALSE "CLSI 2014" "MIC" "Campylobacter" 3 "Doxycycline" "M45 Table 3" 2 8 FALSE -"CLSI 2014" "DISK" "Enterococcus" 3 "Doxycycline" "Table 2D" "30μg" 16 12 FALSE +"CLSI 2014" "DISK" "Enterococcus" 3 "Doxycycline" "Table 2D" "30ug" 16 12 FALSE "CLSI 2014" "MIC" "Enterococcus" 3 "Doxycycline" "Table 2D" 4 16 FALSE "CLSI 2014" "MIC" "Francisella tularensis tularensis" 1 "Doxycycline" "M45 Table 16" 4 2048 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Doxycycline" "Table 2B-5" 4 16 FALSE -"CLSI 2014" "DISK" "Pasteurella" 3 "Doxycycline" "M45 Table 13" "30μg" 23 6 FALSE +"CLSI 2014" "DISK" "Pasteurella" 3 "Doxycycline" "M45 Table 13" "30ug" 23 6 FALSE "CLSI 2014" "MIC" "Pasteurella" 3 "Doxycycline" "M45 Table 13" 0.5 2048 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Doxycycline" "Table 2C" "30μg" 16 12 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Doxycycline" "Table 2C" "30ug" 16 12 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Doxycycline" "Table 2C" 4 16 FALSE -"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Doxycycline" "Table 2G" "30μg" 28 24 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Doxycycline" "Table 2G" "30ug" 28 24 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" "Table 2G" 0.25 1 FALSE -"CLSI 2014" "MIC" "Vibrio cholerae" 2 "Doxycycline" "M45 Table 14" "30μg" 4 16 FALSE +"CLSI 2014" "MIC" "Vibrio cholerae" 2 "Doxycycline" "M45 Table 14" "30ug" 4 16 FALSE "CLSI 2014" "MIC" "Yersinia pestis" 2 "Doxycycline" "M45 Table 16" 4 16 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Doxycycline" "Generic rules" "30μg" 14 10 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Doxycycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2014" "DISK" "Histophilus somni" 2 "Enrofloxacin" "Vet Table" "5μg" 21 16 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Doxycycline" "Generic rules" "30ug" 14 10 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Doxycycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2014" "DISK" "Histophilus somni" 2 "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE "CLSI 2014" "MIC" "Histophilus somni" 2 "Enrofloxacin" "Vet Table" 0.25 2 FALSE -"CLSI 2014" "DISK" "Providencia heimbachae" 2 "Enrofloxacin" "Vet Table" "5μg" 21 16 FALSE -"CLSI 2014" "DISK" "Pasteurella multocida multocida" 1 "Enrofloxacin" "Vet Table" "5μg" 21 16 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5μg" 23 16 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5μg" 0.25 2 FALSE -"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Enoxacin" "Table 2F" "10μg" 36 31 FALSE +"CLSI 2014" "DISK" "Providencia heimbachae" 2 "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2014" "DISK" "Pasteurella multocida multocida" 1 "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5ug" 23 16 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5ug" 0.25 2 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Enoxacin" "Table 2F" "10ug" 36 31 FALSE "CLSI 2014" "MIC" "Neisseria gonorrhoeae" 2 "Enoxacin" "Table 2F" 0.5 2 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Enoxacin" "Table 2C" "10μg" 18 14 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Enoxacin" "Table 2C" "10ug" 18 14 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Enoxacin" "Table 2C" 2 8 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Enoxacin" "Generic rules" "10μg" 18 14 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Enoxacin" "Generic rules" "10μg" 2 8 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Enoxacin" "Generic rules" "10ug" 18 14 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Enoxacin" "Generic rules" "10ug" 2 8 FALSE "CLSI 2014" "MIC" "Bacillus" 3 "Erythromycin" "M45 Table 3" 0.5 8 FALSE "CLSI 2014" "MIC" "Campylobacter" 3 "Erythromycin" "M45 Table 3" 8 32 FALSE -"CLSI 2014" "DISK" "Enterococcus" 3 "Erythromycin" "Table 2D" "15μg" 23 13 FALSE +"CLSI 2014" "DISK" "Enterococcus" 3 "Erythromycin" "Table 2D" "15ug" 23 13 FALSE "CLSI 2014" "MIC" "Enterococcus" 3 "Erythromycin" "Table 2D" 0.5 8 FALSE "CLSI 2014" "MIC" "Erysipelothrix rhusiopathiae" 2 "Erythromycin" "M45 Table 6" 0.25 1 FALSE "CLSI 2014" "MIC" "Granulicatella" 3 "Erythromycin" "M45 Table 1" 0.25 1 FALSE "CLSI 2014" "MIC" "Lactobacillus" 3 "Erythromycin" "M45 Table 9" 0.5 8 FALSE -"CLSI 2014" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 12" "15μg" 21 6 FALSE +"CLSI 2014" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 12" "15ug" 21 6 FALSE "CLSI 2014" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 12" 2 2048 FALSE -"CLSI 2014" "DISK" "Pasteurella" 3 "Erythromycin" "M45 Table 13" "15μg" 27 24 FALSE +"CLSI 2014" "DISK" "Pasteurella" 3 "Erythromycin" "M45 Table 13" "15ug" 27 24 FALSE "CLSI 2014" "MIC" "Pasteurella" 3 "Erythromycin" "M45 Table 13" 0.5 2 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Erythromycin" "Table 2C" "15μg" 23 13 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Erythromycin" "Table 2C" "15ug" 23 13 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Erythromycin" "Table 2C" 0.5 8 FALSE -"CLSI 2014" "DISK" "Streptococcus" 3 "Erythromycin" "Table 2H-1" "15μg" 21 15 FALSE +"CLSI 2014" "DISK" "Streptococcus" 3 "Erythromycin" "Table 2H-1" "15ug" 21 15 FALSE "CLSI 2014" "MIC" "Streptococcus" 3 "Erythromycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" "15μg" 21 15 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" "15ug" 21 15 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" 0.25 1 FALSE -"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" "15μg" 21 15 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" "15ug" 21 15 FALSE "CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Erythromycin" "Generic rules" "15μg" 23 13 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Erythromycin" "Generic rules" "15μg" 0.5 8 FALSE -"CLSI 2014" "DISK" "Aeromonas" 3 "Ertapenem" "M45 Table 2" "10μg" 19 15 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Erythromycin" "Generic rules" "15ug" 23 13 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Erythromycin" "Generic rules" "15ug" 0.5 8 FALSE +"CLSI 2014" "DISK" "Aeromonas" 3 "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE "CLSI 2014" "MIC" "Aeromonas" 3 "Ertapenem" "M45 Table 2" 2 8 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Ertapenem" "Table 2E" "10μg" 19 6 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Ertapenem" "Table 2E" "10ug" 19 6 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Ertapenem" "Table 2E" 0.5 2048 FALSE -"CLSI 2014" "DISK" "Plesiomonas" 3 "Ertapenem" "M45 Table 2" "10μg" 19 15 FALSE +"CLSI 2014" "DISK" "Plesiomonas" 3 "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE "CLSI 2014" "MIC" "Plesiomonas" 3 "Ertapenem" "M45 Table 2" 2 8 FALSE "CLSI 2014" "MIC" "Streptococcus" 3 "Ertapenem" "Table 2H-1" 1 2048 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" "Table 2G" 1 4 FALSE "CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "Table 2H-2" 1 2048 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Ertapenem" "Generic rules" "10μg" 22 18 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Ertapenem" "Generic rules" "10μg" 0.5 2 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "5-fluorocytosine" "Generic rules" "10μg" 4 32 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 22 18 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 0.5 2 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "5-fluorocytosine" "Generic rules" "10ug" 4 32 FALSE "CLSI 2014" "MIC" "Abiotrophia" 3 "Cefepime" "M45 Table 1" 1 4 FALSE -"CLSI 2014" "DISK" "Acinetobacter" 3 "Cefepime" "Table 2B-2" "30μg" 18 14 FALSE +"CLSI 2014" "DISK" "Acinetobacter" 3 "Cefepime" "Table 2B-2" "30ug" 18 14 FALSE "CLSI 2014" "MIC" "Acinetobacter" 3 "Cefepime" "Table 2B-2" 8 32 FALSE -"CLSI 2014" "DISK" "Aeromonas" 3 "Cefepime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2014" "DISK" "Aeromonas" 3 "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2014" "MIC" "Aeromonas" 3 "Cefepime" "M45 Table 2" 8 32 FALSE "CLSI 2014" "MIC" "Erysipelothrix rhusiopathiae" 2 "Cefepime" "M45 Table 6" 1 2048 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Cefepime" "Table 2B-5" 8 32 FALSE "CLSI 2014" "MIC" "Granulicatella" 3 "Cefepime" "M45 Table 1" 1 4 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Cefepime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Cefepime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Cefepime" "Table 2E" 2 2048 FALSE -"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" "30μg" 31 6 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" "30ug" 31 6 FALSE "CLSI 2014" "MIC" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" 0.5 2048 FALSE -"CLSI 2014" "DISK" "Plesiomonas" 3 "Cefepime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2014" "DISK" "Plesiomonas" 3 "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2014" "MIC" "Plesiomonas" 3 "Cefepime" "M45 Table 2" 8 32 FALSE -"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" "30μg" 18 14 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" "30ug" 18 14 FALSE "CLSI 2014" "MIC" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" 8 32 FALSE -"CLSI 2014" "DISK" "Streptococcus" 3 "Cefepime" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2014" "DISK" "Streptococcus" 3 "Cefepime" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2014" "MIC" "Streptococcus" 3 "Cefepime" "Table 2H-1" 0.5 2048 FALSE "CLSI 2014" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Cefepime" "Table 2G" 0.5 2 FALSE "CLSI 2014" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Cefepime" "Table 2G" 1 4 FALSE -"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" "30μg" 24 21 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" "30ug" 24 21 FALSE "CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" 1 4 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Cefepime" "Generic rules" "30μg" 25 18 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Cefepime" "Generic rules" "30μg" 2 16 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Fleroxacin" "Table 2E" "5μg" 19 6 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 25 18 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 2 16 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Fleroxacin" "Table 2E" "5ug" 19 6 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Fleroxacin" "Table 2E" 2 2048 FALSE -"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Fleroxacin" "Table 2F" "5μg" 35 28 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Fleroxacin" "Table 2F" "5ug" 35 28 FALSE "CLSI 2014" "MIC" "Neisseria gonorrhoeae" 2 "Fleroxacin" "Table 2F" 0.25 1 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Fleroxacin" "Table 2C" "5μg" 19 15 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Fleroxacin" "Table 2C" "5ug" 19 15 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Fleroxacin" "Table 2C" 2 8 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Florfenicol" "Generic rules" "30μg" 19 14 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Florfenicol" "Generic rules" "30μg" 2 8 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Fluconazole" "Generic rules" "25μg" 19 14 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Fluconazole" "Generic rules" "25μg" 8 64 FALSE -"CLSI 2014" "DISK" "Enterococcus" 3 "Fosfomycin" "Table 2D" "200μg" 16 12 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Florfenicol" "Generic rules" "30ug" 19 14 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Florfenicol" "Generic rules" "30ug" 2 8 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Fluconazole" "Generic rules" "25ug" 19 14 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Fluconazole" "Generic rules" "25ug" 8 64 FALSE +"CLSI 2014" "DISK" "Enterococcus" 3 "Fosfomycin" "Table 2D" "200ug" 16 12 FALSE "CLSI 2014" "MIC" "Enterococcus" 3 "Fosfomycin" "Table 2D" 64 256 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200μg" 16 12 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200μg" 64 256 FALSE -"CLSI 2014" "DISK" "Aeromonas" 3 "Cefoxitin" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200ug" 16 12 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200ug" 64 256 FALSE +"CLSI 2014" "DISK" "Aeromonas" 3 "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2014" "MIC" "Aeromonas" 3 "Cefoxitin" "M45 Table 2" 8 32 FALSE -"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" "30μg" 28 23 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" "30ug" 28 23 FALSE "CLSI 2014" "MIC" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" 2 8 FALSE -"CLSI 2014" "DISK" "Plesiomonas" 3 "Cefoxitin" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2014" "DISK" "Plesiomonas" 3 "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2014" "MIC" "Plesiomonas" 3 "Cefoxitin" "M45 Table 2" 8 32 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Cefoxitin" "Table 2C" "30μg" 25 24 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Cefoxitin" "Table 2C" "30ug" 25 24 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2014" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" "30μg" 22 21 FALSE +"CLSI 2014" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE "CLSI 2014" "MIC" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2014" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" "30μg" 22 21 FALSE +"CLSI 2014" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE "CLSI 2014" "MIC" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30μg" 8 32 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30ug" 8 32 FALSE "CLSI 2014" "MIC" "Abiotrophia" 3 "Gatifloxacin" "M45 Table 1" 1 4 FALSE -"CLSI 2014" "DISK" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" "5μg" 18 14 FALSE +"CLSI 2014" "DISK" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" "5ug" 18 14 FALSE "CLSI 2014" "MIC" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" 2 8 FALSE -"CLSI 2014" "DISK" "Enterococcus" 3 "Gatifloxacin" "Table 2D" "5μg" 18 14 FALSE +"CLSI 2014" "DISK" "Enterococcus" 3 "Gatifloxacin" "Table 2D" "5ug" 18 14 FALSE "CLSI 2014" "MIC" "Enterococcus" 3 "Gatifloxacin" "Table 2D" 2 8 FALSE "CLSI 2014" "MIC" "Erysipelothrix rhusiopathiae" 2 "Gatifloxacin" "M45 Table 6" 1 2048 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Gatifloxacin" "Table 2B-5" 2 8 FALSE "CLSI 2014" "MIC" "Granulicatella" 3 "Gatifloxacin" "M45 Table 1" 1 4 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Gatifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Gatifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Gatifloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" "5μg" 38 33 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" "5ug" 38 33 FALSE "CLSI 2014" "MIC" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" 0.125 0.5 FALSE -"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" "5μg" 18 14 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" "5ug" 18 14 FALSE "CLSI 2014" "MIC" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" 2 8 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" "10μg" 23 19 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" "10ug" 23 19 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2014" "DISK" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" "5μg" 21 17 FALSE +"CLSI 2014" "DISK" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" "5ug" 21 17 FALSE "CLSI 2014" "MIC" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" 1 4 FALSE -"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" "5μg" 21 17 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" "5ug" 21 17 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" 1 4 FALSE -"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" "5μg" 21 17 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" "5ug" 21 17 FALSE "CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" 1 4 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5μg" 18 14 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2014" "DISK" "Enterococcus" 3 "Gentamicin-high" "Table 2D" "120μg" 10 6 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5ug" 18 14 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2014" "DISK" "Enterococcus" 3 "Gentamicin-high" "Table 2D" "120ug" 10 6 FALSE "CLSI 2014" "MIC" "Enterococcus" 3 "Gentamicin-high" "Table 2D" 512 560 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120μg" 10 6 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120μg" 512 560 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Gemifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120ug" 10 6 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120ug" 512 560 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Gemifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Gemifloxacin" "Table 2E" 0.125 2048 FALSE -"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" "5μg" 23 19 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" "5ug" 23 19 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" 0.125 0.5 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5μg" 20 15 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5μg" 0.25 1 FALSE -"CLSI 2014" "DISK" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" "10μg" 15 12 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5ug" 20 15 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5ug" 0.25 1 FALSE +"CLSI 2014" "DISK" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" "10ug" 15 12 FALSE "CLSI 2014" "MIC" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" 4 16 FALSE -"CLSI 2014" "DISK" "Aeromonas" 3 "Gentamicin" "M45 Table 2" "10μg" 15 12 FALSE +"CLSI 2014" "DISK" "Aeromonas" 3 "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE "CLSI 2014" "MIC" "Aeromonas" 3 "Gentamicin" "M45 Table 2" 4 16 FALSE "CLSI 2014" "MIC" "Bacillus" 3 "Gentamicin" "M45 Table 3" 4 16 FALSE "CLSI 2014" "MIC" "Brucella" 3 "Gentamicin" "M45 Table 16" 4 2048 FALSE @@ -16438,33 +16438,33 @@ "CLSI 2014" "MIC" "Leuconostoc" 3 "Gentamicin" "M45 Table 10" 4 16 FALSE "CLSI 2014" "MIC" "Lactobacillus" 3 "Gentamicin" "M45 Table 9" 4 16 FALSE "CLSI 2014" "MIC" "Pediococcus" 3 "Gentamicin" "M45 Table 14" 4 16 FALSE -"CLSI 2014" "DISK" "Plesiomonas" 3 "Gentamicin" "M45 Table 2" "10μg" 15 12 FALSE +"CLSI 2014" "DISK" "Plesiomonas" 3 "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE "CLSI 2014" "MIC" "Plesiomonas" 3 "Gentamicin" "M45 Table 2" 4 16 FALSE -"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" "10μg" 15 12 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" "10ug" 15 12 FALSE "CLSI 2014" "MIC" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" 4 16 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Gentamicin" "Table 2C" "10μg" 15 12 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Gentamicin" "Table 2C" "10ug" 15 12 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Gentamicin" "Table 2C" 4 16 FALSE "CLSI 2014" "MIC" "Yersinia pestis" 2 "Gentamicin" "M45 Table 16" 4 16 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Gentamicin" "Generic rules" "10μg" 15 12 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Gentamicin" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Grepafloxacin" "Table 2E" "5μg" 24 6 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 15 12 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Grepafloxacin" "Table 2E" "5ug" 24 6 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Grepafloxacin" "Table 2E" 0.5 2048 FALSE -"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" "5μg" 37 27 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" "5ug" 37 27 FALSE "CLSI 2014" "MIC" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" 0.064 1 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" "5μg" 18 14 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" "5ug" 18 14 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" 1 4 FALSE -"CLSI 2014" "DISK" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" "5μg" 19 15 FALSE +"CLSI 2014" "DISK" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" "5ug" 19 15 FALSE "CLSI 2014" "MIC" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" "5μg" 19 15 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" "5ug" 19 15 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" 0.5 2 FALSE -"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" "5μg" 19 15 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" "5ug" 19 15 FALSE "CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" 0.5 2 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5μg" 18 14 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5μg" 1 4 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5ug" 18 14 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5ug" 1 4 FALSE "CLSI 2014" "MIC" "Abiotrophia" 3 "Imipenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2014" "DISK" "Acinetobacter" 3 "Imipenem" "Table 2B-2" "10μg" 22 18 FALSE +"CLSI 2014" "DISK" "Acinetobacter" 3 "Imipenem" "Table 2B-2" "10ug" 22 18 FALSE "CLSI 2014" "MIC" "Acinetobacter" 3 "Imipenem" "Table 2B-2" 2 8 FALSE -"CLSI 2014" "DISK" "Aeromonas" 3 "Imipenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2014" "DISK" "Aeromonas" 3 "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2014" "MIC" "Aeromonas" 3 "Imipenem" "M45 Table 2" 4 16 FALSE "CLSI 2014" "MIC" "Aggregatibacter" 3 "Imipenem" "M45 Table 7" 4 16 FALSE "CLSI 2014" "MIC" "Bacillus" 3 "Imipenem" "M45 Table 3" 4 16 FALSE @@ -16475,56 +16475,56 @@ "CLSI 2014" "MIC" "Erysipelothrix rhusiopathiae" 2 "Imipenem" "M45 Table 6" 0.5 2048 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Imipenem" "Table 2B-5" 4 16 FALSE "CLSI 2014" "MIC" "Granulicatella" 3 "Imipenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Imipenem" "Table 2E" "10μg" 16 6 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Imipenem" "Table 2E" "10ug" 16 6 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Imipenem" "Table 2E" 4 2048 FALSE "CLSI 2014" "MIC" "Kingella" 3 "Imipenem" "M45 Table 7" 0.5 2 FALSE "CLSI 2014" "MIC" "Lactobacillus" 3 "Imipenem" "M45 Table 9" 0.5 2 FALSE "CLSI 2014" "MIC" "Pediococcus" 3 "Imipenem" "M45 Table 14" 0.5 2048 FALSE -"CLSI 2014" "DISK" "Plesiomonas" 3 "Imipenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2014" "DISK" "Plesiomonas" 3 "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2014" "MIC" "Plesiomonas" 3 "Imipenem" "M45 Table 2" 4 16 FALSE -"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2014" "MIC" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" 2 8 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" "Table 2G" 0.125 1 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Imipenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Imipenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Kanamycin" "Generic rules" "30μg" 18 13 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Kanamycin" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2014" "DISK" "Enterococcus" 3 "Linezolid" "Table 2D" "30μg" 23 20 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Kanamycin" "Generic rules" "30ug" 18 13 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Kanamycin" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2014" "DISK" "Enterococcus" 3 "Linezolid" "Table 2D" "30ug" 23 20 FALSE "CLSI 2014" "MIC" "Enterococcus" 3 "Linezolid" "Table 2D" 2 8 FALSE "CLSI 2014" "MIC" "Lactobacillus" 3 "Linezolid" "M45 Table 9" 4 2048 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Linezolid" "Table 2C" "30μg" 21 20 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Linezolid" "Table 2C" "30ug" 21 20 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Linezolid" "Table 2C" 4 8 FALSE -"CLSI 2014" "DISK" "Streptococcus" 3 "Linezolid" "Table 2H-1" "30μg" 21 6 FALSE +"CLSI 2014" "DISK" "Streptococcus" 3 "Linezolid" "Table 2H-1" "30ug" 21 6 FALSE "CLSI 2014" "MIC" "Streptococcus" 3 "Linezolid" "Table 2H-1" 2 2048 FALSE -"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" "30μg" 21 6 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" "30ug" 21 6 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" 2 2048 FALSE -"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" "30μg" 21 6 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" "30ug" 21 6 FALSE "CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" 2 2048 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Linezolid" "Generic rules" "30μg" 21 20 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Linezolid" "Generic rules" "30μg" 4 8 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Linezolid" "Generic rules" "30ug" 21 20 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Linezolid" "Generic rules" "30ug" 4 8 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Lomefloxacin" "Table 2B-5" 2 8 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Lomefloxacin" "Table 2E" "10μg" 22 6 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Lomefloxacin" "Table 2E" "10ug" 22 6 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Lomefloxacin" "Table 2E" 2 2048 FALSE -"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Lomefloxacin" "Table 2F" "10μg" 38 26 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Lomefloxacin" "Table 2F" "10ug" 38 26 FALSE "CLSI 2014" "MIC" "Neisseria gonorrhoeae" 2 "Lomefloxacin" "Table 2F" 0.125 2 FALSE -"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" "10μg" 22 18 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" "10ug" 22 18 FALSE "CLSI 2014" "MIC" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" 2 8 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" "10μg" 22 18 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" "10ug" 22 18 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" 2 8 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10μg" 22 18 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Loracarbef" "Table 2E" "30μg" 19 15 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10ug" 22 18 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Loracarbef" "Table 2E" "30ug" 19 15 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Loracarbef" "Table 2E" 8 32 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Loracarbef" "Table 2G" 2 8 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Loracarbef" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Loracarbef" "Generic rules" "30μg" 8 32 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Loracarbef" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Loracarbef" "Generic rules" "30ug" 8 32 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Latamoxef" "Table 2B-5" 8 64 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Latamoxef" "Generic rules" "30μg" 23 14 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Latamoxef" "Generic rules" "30μg" 8 64 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Latamoxef" "Generic rules" "30ug" 23 14 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Latamoxef" "Generic rules" "30ug" 8 64 FALSE "CLSI 2014" "MIC" "Abiotrophia" 3 "Levofloxacin" "M45 Table 1" 2 8 FALSE -"CLSI 2014" "DISK" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" "5μg" 17 13 FALSE +"CLSI 2014" "DISK" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" "5ug" 17 13 FALSE "CLSI 2014" "MIC" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" 2 8 FALSE -"CLSI 2014" "DISK" "Aeromonas" 3 "Levofloxacin" "M45 Table 2" "5μg" 17 13 FALSE +"CLSI 2014" "DISK" "Aeromonas" 3 "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE "CLSI 2014" "MIC" "Aeromonas" 3 "Levofloxacin" "M45 Table 2" 2 8 FALSE "CLSI 2014" "MIC" "Aggregatibacter" 3 "Levofloxacin" "M45 Table 7" 2 8 FALSE "CLSI 2014" "MIC" "Bacillus" 3 "Levofloxacin" "M45 Table 3" 2 8 FALSE @@ -16532,156 +16532,156 @@ "CLSI 2014" "MIC" "Burkholderia cepacia" 2 "Levofloxacin" "Table 2B-3" 2 8 FALSE "CLSI 2014" "MIC" "Cardiobacterium" 3 "Levofloxacin" "M45 Table 7" 2 8 FALSE "CLSI 2014" "MIC" "Eikenella" 3 "Levofloxacin" "M45 Table 7" 2 8 FALSE -"CLSI 2014" "DISK" "Enterococcus" 3 "Levofloxacin" "Table 2D" "5μg" 17 13 FALSE +"CLSI 2014" "DISK" "Enterococcus" 3 "Levofloxacin" "Table 2D" "5ug" 17 13 FALSE "CLSI 2014" "MIC" "Enterococcus" 3 "Levofloxacin" "Table 2D" 2 8 FALSE "CLSI 2014" "MIC" "Erysipelothrix rhusiopathiae" 2 "Levofloxacin" "M45 Table 6" 2 2048 FALSE "CLSI 2014" "MIC" "Francisella tularensis tularensis" 1 "Levofloxacin" "M45 Table 16" 0.5 2048 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Levofloxacin" "Table 2B-5" 2 8 FALSE "CLSI 2014" "MIC" "Granulicatella" 3 "Levofloxacin" "M45 Table 1" 2 8 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Levofloxacin" "Table 2E" "5μg" 17 6 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Levofloxacin" "Table 2E" "5ug" 17 6 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Levofloxacin" "Table 2E" 2 2048 FALSE "CLSI 2014" "MIC" "Kingella" 3 "Levofloxacin" "M45 Table 7" 2 8 FALSE "CLSI 2014" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" "M45 Table 12" 2 2048 FALSE "CLSI 2014" "MIC" "Neisseria meningitidis" 2 "Levofloxacin" "Table 2I" 0.032 0.12 FALSE -"CLSI 2014" "DISK" "Plesiomonas" 3 "Levofloxacin" "M45 Table 2" "5μg" 17 13 FALSE +"CLSI 2014" "DISK" "Plesiomonas" 3 "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE "CLSI 2014" "MIC" "Plesiomonas" 3 "Levofloxacin" "M45 Table 2" 2 8 FALSE -"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" "5μg" 17 13 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" "5ug" 17 13 FALSE "CLSI 2014" "MIC" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" 2 8 FALSE -"CLSI 2014" "DISK" "Pasteurella" 3 "Levofloxacin" "M45 Table 13" "5μg" 28 6 FALSE +"CLSI 2014" "DISK" "Pasteurella" 3 "Levofloxacin" "M45 Table 13" "5ug" 28 6 FALSE "CLSI 2014" "MIC" "Pasteurella" 3 "Levofloxacin" "M45 Table 13" 0.064 2048 FALSE "CLSI 2014" "MIC" "Salmonella" 3 "Levofloxacin" "Table 2A" 0.125 2 FALSE "CLSI 2014" "MIC" "Extraintestinal" "Salmonella" 3 "Levofloxacin" "Table 2A" 0.125 2 FALSE -"CLSI 2014" "DISK" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" "75μg" 17 13 FALSE +"CLSI 2014" "DISK" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" "75ug" 17 13 FALSE "CLSI 2014" "MIC" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" 2 8 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Levofloxacin" "Table 2C" "10μg" 19 15 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Levofloxacin" "Table 2C" "10ug" 19 15 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Levofloxacin" "Table 2C" 1 4 FALSE -"CLSI 2014" "DISK" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" "5μg" 17 13 FALSE +"CLSI 2014" "DISK" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" "5ug" 17 13 FALSE "CLSI 2014" "MIC" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" 2 8 FALSE -"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" "5μg" 17 13 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" "5ug" 17 13 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" 2 8 FALSE -"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" "5μg" 17 13 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" "5ug" 17 13 FALSE "CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" 2 8 FALSE "CLSI 2014" "MIC" "Yersinia pestis" 2 "Levofloxacin" "M45 Table 16" 0.25 2048 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5μg" 17 13 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5μg" 2 8 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 17 13 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 2 8 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Cefamandole" "Table 2E" 4 16 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Cefamandole" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Cefamandole" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Mecillinam" "Generic rules" "10μg" 15 11 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Mecillinam" "Generic rules" "10μg" 8 32 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Cefamandole" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Cefamandole" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 15 11 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 8 32 FALSE "CLSI 2014" "MIC" "Abiotrophia" 3 "Meropenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2014" "DISK" "Acinetobacter" 3 "Meropenem" "Table 2B-2" "10μg" 18 14 FALSE +"CLSI 2014" "DISK" "Acinetobacter" 3 "Meropenem" "Table 2B-2" "10ug" 18 14 FALSE "CLSI 2014" "MIC" "Acinetobacter" 3 "Meropenem" "Table 2B-2" 2 8 FALSE -"CLSI 2014" "DISK" "Aeromonas" 3 "Meropenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2014" "DISK" "Aeromonas" 3 "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2014" "MIC" "Aeromonas" 3 "Meropenem" "M45 Table 2" 4 16 FALSE "CLSI 2014" "MIC" "Aggregatibacter" 3 "Meropenem" "M45 Table 7" 4 16 FALSE -"CLSI 2014" "DISK" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" "10μg" 20 15 FALSE +"CLSI 2014" "DISK" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" "10ug" 20 15 FALSE "CLSI 2014" "MIC" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" 4 16 FALSE "CLSI 2014" "MIC" "Cardiobacterium" 3 "Meropenem" "M45 Table 7" 0.5 2 FALSE "CLSI 2014" "MIC" "Eikenella" 3 "Meropenem" "M45 Table 7" 0.5 2 FALSE "CLSI 2014" "MIC" "Erysipelothrix rhusiopathiae" 2 "Meropenem" "M45 Table 6" 0.5 2048 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Meropenem" "Table 2B-5" 4 16 FALSE "CLSI 2014" "MIC" "Granulicatella" 3 "Meropenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Meropenem" "Table 2E" "10μg" 20 6 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Meropenem" "Table 2E" "10ug" 20 6 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Meropenem" "Table 2E" 0.5 2048 FALSE "CLSI 2014" "MIC" "Kingella" 3 "Meropenem" "M45 Table 7" 0.5 2 FALSE -"CLSI 2014" "DISK" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" "10μg" 30 6 FALSE +"CLSI 2014" "DISK" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" "10ug" 30 6 FALSE "CLSI 2014" "MIC" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" 0.25 2048 FALSE -"CLSI 2014" "DISK" "Plesiomonas" 3 "Meropenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2014" "DISK" "Plesiomonas" 3 "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2014" "MIC" "Plesiomonas" 3 "Meropenem" "M45 Table 2" 4 16 FALSE -"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2014" "MIC" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" 2 8 FALSE "CLSI 2014" "MIC" "Streptococcus" 3 "Meropenem" "Table 2H-1" 0.5 2048 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Meropenem" "Table 2G" 0.25 1 FALSE "CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "Table 2H-2" 0.5 2048 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Meropenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Meropenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Methicillin" "Generic rules" "5μg" 14 9 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Methicillin" "Generic rules" "5μg" 8 16 FALSE -"CLSI 2014" "DISK" "Acinetobacter" 3 "Mezlocillin" "Table 2B-2" "75μg" 21 17 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Methicillin" "Generic rules" "5ug" 14 9 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Methicillin" "Generic rules" "5ug" 8 16 FALSE +"CLSI 2014" "DISK" "Acinetobacter" 3 "Mezlocillin" "Table 2B-2" "75ug" 21 17 FALSE "CLSI 2014" "MIC" "Acinetobacter" 3 "Mezlocillin" "Table 2B-2" 16 128 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Mezlocillin" "Table 2B-5" 16 128 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Moxifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Moxifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Moxifloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2014" "DISK" "Pasteurella" 3 "Moxifloxacin" "M45 Table 13" "5μg" 28 6 FALSE +"CLSI 2014" "DISK" "Pasteurella" 3 "Moxifloxacin" "M45 Table 13" "5ug" 28 6 FALSE "CLSI 2014" "MIC" "Pasteurella" 3 "Moxifloxacin" "M45 Table 13" 0.064 2048 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" "5μg" 24 20 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" "5ug" 24 20 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" "5μg" 18 14 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" "5ug" 18 14 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" 1 4 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5μg" 24 20 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5μg" 0.5 2 FALSE -"CLSI 2014" "DISK" "Acinetobacter" 3 "Minocycline" "Table 2B-2" "30μg" 16 12 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 24 20 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 0.5 2 FALSE +"CLSI 2014" "DISK" "Acinetobacter" 3 "Minocycline" "Table 2B-2" "30ug" 16 12 FALSE "CLSI 2014" "MIC" "Acinetobacter" 3 "Minocycline" "Table 2B-2" 4 16 FALSE -"CLSI 2014" "DISK" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" "30μg" 19 14 FALSE +"CLSI 2014" "DISK" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" "30ug" 19 14 FALSE "CLSI 2014" "MIC" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" 4 16 FALSE -"CLSI 2014" "DISK" "Enterococcus" 3 "Minocycline" "Table 2D" "30μg" 19 14 FALSE +"CLSI 2014" "DISK" "Enterococcus" 3 "Minocycline" "Table 2D" "30ug" 19 14 FALSE "CLSI 2014" "MIC" "Enterococcus" 3 "Minocycline" "Table 2D" 4 16 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Minocycline" "Table 2B-5" 4 16 FALSE "CLSI 2014" "MIC" "Leuconostoc" 3 "Minocycline" "M45 Table 10" 4 16 FALSE -"CLSI 2014" "DISK" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" "30μg" 26 6 FALSE +"CLSI 2014" "DISK" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" "30ug" 26 6 FALSE "CLSI 2014" "MIC" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" 2 2048 FALSE -"CLSI 2014" "DISK" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" "30μg" 19 14 FALSE +"CLSI 2014" "DISK" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" "30ug" 19 14 FALSE "CLSI 2014" "MIC" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" 4 16 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Minocycline" "Table 2C" "30μg" 19 14 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Minocycline" "Table 2C" "30ug" 19 14 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Minocycline" "Table 2C" 4 16 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Minocycline" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Minocycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Nafcillin" "Generic rules" "1μg" 13 10 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Nafcillin" "Generic rules" "1μg" 2 4 FALSE -"CLSI 2014" "DISK" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" "30μg" 26 25 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Minocycline" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Minocycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Nafcillin" "Generic rules" "1ug" 13 10 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Nafcillin" "Generic rules" "1ug" 2 4 FALSE +"CLSI 2014" "DISK" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" "30ug" 26 25 FALSE "CLSI 2014" "MIC" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" 4 8 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30μg" 19 13 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30μg" 16 32 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 19 13 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 16 32 FALSE "CLSI 2014" "MIC" "Acinetobacter" 3 "Netilmicin" "Table 2B-2" 8 32 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Netilmicin" "Table 2B-5" 8 32 FALSE -"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" "30μg" 15 12 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" "30ug" 15 12 FALSE "CLSI 2014" "MIC" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" 8 32 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Netilmicin" "Generic rules" "30μg" 15 12 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Netilmicin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2014" "DISK" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" "300μg" 17 14 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Netilmicin" "Generic rules" "30ug" 15 12 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Netilmicin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2014" "DISK" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" "300ug" 17 14 FALSE "CLSI 2014" "MIC" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" 32 128 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" "300μg" 17 14 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" "300ug" 17 14 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" 32 128 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "300μg" 17 14 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100μg" 32 128 FALSE -"CLSI 2014" "DISK" "Enterococcus" 3 "Norfloxacin" "Table 2D" "10μg" 17 12 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "300ug" 17 14 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100ug" 32 128 FALSE +"CLSI 2014" "DISK" "Enterococcus" 3 "Norfloxacin" "Table 2D" "10ug" 17 12 FALSE "CLSI 2014" "MIC" "Enterococcus" 3 "Norfloxacin" "Table 2D" 4 16 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Norfloxacin" "Table 2B-5" 4 16 FALSE -"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Norfloxacin" "Table 2B-1" "10μg" 17 12 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Norfloxacin" "Table 2B-1" "10ug" 17 12 FALSE "CLSI 2014" "MIC" "Pseudomonas aeruginosa" 2 "Norfloxacin" "Table 2B-1" 4 16 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Norfloxacin" "Table 2C" "10μg" 17 12 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Norfloxacin" "Table 2C" "10ug" 17 12 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Norfloxacin" "Table 2C" 4 16 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10μg" 17 12 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10μg" 4 16 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10ug" 17 12 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10ug" 4 16 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Ofloxacin" "Table 2B-5" 2 8 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Ofloxacin" "Table 2E" "5μg" 16 6 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Ofloxacin" "Table 2E" "5ug" 16 6 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Ofloxacin" "Table 2E" 2 2048 FALSE -"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Ofloxacin" "Table 2F" "5μg" 31 24 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Ofloxacin" "Table 2F" "5ug" 31 24 FALSE "CLSI 2014" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" "Table 2F" 0.25 2 FALSE -"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" "5μg" 16 12 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" "5ug" 16 12 FALSE "CLSI 2014" "MIC" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" 2 8 FALSE "CLSI 2014" "MIC" "Salmonella" 3 "Ofloxacin" "Table 2A" 0.125 2 FALSE "CLSI 2014" "MIC" "Extraintestinal" "Salmonella" 3 "Ofloxacin" "Table 2A" 0.125 2 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Ofloxacin" "Table 2C" "5μg" 18 14 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Ofloxacin" "Table 2C" "5ug" 18 14 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Ofloxacin" "Table 2C" 1 4 FALSE -"CLSI 2014" "DISK" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" "5μg" 16 12 FALSE +"CLSI 2014" "DISK" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" "5ug" 16 12 FALSE "CLSI 2014" "MIC" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" 2 8 FALSE -"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" "5μg" 16 12 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" "5ug" 16 12 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" 2 8 FALSE -"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" "5μg" 16 12 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" "5ug" 16 12 FALSE "CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" 2 8 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5μg" 16 12 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10μg" 23 17 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10μg" 1 8 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Oxacillin" "Table 2C" "1μg" 13 10 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 16 12 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10ug" 23 17 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10ug" 1 8 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Oxacillin" "Table 2C" "1ug" 13 10 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Oxacillin" "Table 2C" 2 4 FALSE -"CLSI 2014" "DISK" "Staphylococcus aureus aureus" 1 "Oxacillin" "Table 2C" "1μg" 13 10 FALSE +"CLSI 2014" "DISK" "Staphylococcus aureus aureus" 1 "Oxacillin" "Table 2C" "1ug" 13 10 FALSE "CLSI 2014" "MIC" "Staphylococcus aureus aureus" 1 "Oxacillin" "Table 2C" 2 4 FALSE "CLSI 2014" "MIC" "Staphylococcus lugdunensis" 2 "Oxacillin" "Table 2C" 2 4 FALSE -"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "Table 2G" "1μg" 20 6 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Oxacillin" "Generic rules" "1μg" 0.25 0.5 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "Table 2G" "1ug" 20 6 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Oxacillin" "Generic rules" "1ug" 0.25 0.5 FALSE "CLSI 2014" "MIC" "Abiotrophia" 3 "Benzylpenicillin" "M45 Table 1" 0.125 4 FALSE "CLSI 2014" "MIC" "Aggregatibacter" 3 "Benzylpenicillin" "M45 Table 7" 1 4 FALSE "CLSI 2014" "MIC" "Bacillus" 3 "Benzylpenicillin" "M45 Table 3" 0.125 0.25 FALSE @@ -16702,7 +16702,7 @@ "CLSI 2014" "MIC" "Pediococcus" 3 "Benzylpenicillin" "M45 Table 14" 8 2048 FALSE "CLSI 2014" "DISK" "Pasteurella" 3 "Benzylpenicillin" "M45 Table 13" "10 Units" 25 6 FALSE "CLSI 2014" "MIC" "Pasteurella" 3 "Benzylpenicillin" "M45 Table 13" 0.5 2048 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" "10μg" 29 28 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" "10ug" 29 28 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" 0.125 0.25 FALSE "CLSI 2014" "DISK" "Streptococcus" 3 "Benzylpenicillin" "Table 2H-1" "10units" 24 6 FALSE "CLSI 2014" "MIC" "Streptococcus" 3 "Benzylpenicillin" "Table 2H-1" 0.125 2048 FALSE @@ -16713,149 +16713,149 @@ "CLSI 2014" "DISK" "(unknown name)" 6 "Benzylpenicillin" "Generic rules" "10units" 29 28 FALSE "CLSI 2014" "MIC" "(unknown name)" 6 "Benzylpenicillin" "Generic rules" "10units" 0.125 0.25 FALSE "CLSI 2014" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Phenoxymethylpenicillin" "Table 2G" 0.064 2 FALSE -"CLSI 2014" "DISK" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" "100μg" 21 17 FALSE +"CLSI 2014" "DISK" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" "100ug" 21 17 FALSE "CLSI 2014" "MIC" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" 16 128 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Piperacillin" "Table 2B-5" 16 128 FALSE -"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" "100μg" 21 14 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" "100ug" 21 14 FALSE "CLSI 2014" "MIC" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" 16 128 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Piperacillin" "Generic rules" "100μg" 21 17 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Piperacillin" "Generic rules" "100μg" 16 128 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Piperacillin" "Generic rules" "100ug" 21 17 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Piperacillin" "Generic rules" "100ug" 16 128 FALSE "CLSI 2014" "MIC" "Acinetobacter" 3 "Polymyxin B" "Table 2B-2" 2 4 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Polymyxin B" "Table 2B-5" 2 8 FALSE -"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Polymyxin B" "Table 2B-1" "300μg" 12 11 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Polymyxin B" "Table 2B-1" "300ug" 12 11 FALSE "CLSI 2014" "MIC" "Pseudomonas aeruginosa" 2 "Polymyxin B" "Table 2B-1" 2 8 FALSE "CLSI 2014" "DISK" "(unknown name)" 6 "Polymyxin B" "Generic rules" "300units" 12 11 FALSE "CLSI 2014" "MIC" "(unknown name)" 6 "Polymyxin B" "Generic rules" "300units" 2 8 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30μg" 18 14 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30μg" 1 4 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2μg" 13 12 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2μg" 2 4 FALSE -"CLSI 2014" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" "15μg" 19 15 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30ug" 18 14 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30ug" 1 4 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2ug" 13 12 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2ug" 2 4 FALSE +"CLSI 2014" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" "15ug" 19 15 FALSE "CLSI 2014" "MIC" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" 1 4 FALSE -"CLSI 2014" "DISK" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" "15μg" 19 15 FALSE +"CLSI 2014" "DISK" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" "15ug" 19 15 FALSE "CLSI 2014" "MIC" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" 1 4 FALSE -"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" "15μg" 19 15 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" "15ug" 19 15 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" 1 4 FALSE -"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" "15μg" 19 15 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" "15ug" 19 15 FALSE "CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" 1 4 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15μg" 19 15 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15μg" 1 4 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15ug" 19 15 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15ug" 1 4 FALSE "CLSI 2014" "MIC" "Aggregatibacter" 3 "Rifampicin" "M45 Table 7" 1 4 FALSE "CLSI 2014" "MIC" "Bacillus" 3 "Rifampicin" "M45 Table 3" 1 4 FALSE "CLSI 2014" "MIC" "Cardiobacterium" 3 "Rifampicin" "M45 Table 7" 1 4 FALSE "CLSI 2014" "MIC" "Eikenella" 3 "Rifampicin" "M45 Table 7" 1 4 FALSE -"CLSI 2014" "DISK" "Enterococcus" 3 "Rifampicin" "Table 2D" "5μg" 20 16 FALSE +"CLSI 2014" "DISK" "Enterococcus" 3 "Rifampicin" "Table 2D" "5ug" 20 16 FALSE "CLSI 2014" "MIC" "Enterococcus" 3 "Rifampicin" "Table 2D" 1 4 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Rifampicin" "Table 2E" "5μg" 20 16 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Rifampicin" "Table 2E" "5ug" 20 16 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Rifampicin" "Table 2E" 1 4 FALSE "CLSI 2014" "MIC" "Kingella" 3 "Rifampicin" "M45 Table 7" 1 4 FALSE "CLSI 2014" "MIC" "Moraxella catarrhalis" 2 "Rifampicin" "M45 Table 12" 1 4 FALSE -"CLSI 2014" "DISK" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" "5μg" 25 19 FALSE +"CLSI 2014" "DISK" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" "5ug" 25 19 FALSE "CLSI 2014" "MIC" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" 0.5 2 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Rifampicin" "Table 2C" "5μg" 20 16 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Rifampicin" "Table 2C" "5ug" 20 16 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Rifampicin" "Table 2C" 1 4 FALSE -"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" "5μg" 19 16 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" "5ug" 19 16 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" 1 4 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Rifampicin" "Generic rules" "5μg" 20 16 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Rifampicin" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2014" "DISK" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" "10μg" 15 11 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Rifampicin" "Generic rules" "5ug" 20 16 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Rifampicin" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2014" "DISK" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" "10ug" 15 11 FALSE "CLSI 2014" "MIC" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" 8 32 FALSE -"CLSI 2014" "DISK" "Aeromonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10μg" 15 11 FALSE +"CLSI 2014" "DISK" "Aeromonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE "CLSI 2014" "MIC" "Aeromonas" 3 "Ampicillin/sulbactam" "M45 Table 2" 8 32 FALSE "CLSI 2014" "MIC" "Aggregatibacter" 3 "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE "CLSI 2014" "MIC" "Cardiobacterium" 3 "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE "CLSI 2014" "MIC" "Eikenella" 3 "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" "10/10μg" 20 19 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" "10/10ug" 20 19 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" 2 4 FALSE -"CLSI 2014" "DISK" "Plesiomonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10μg" 15 11 FALSE +"CLSI 2014" "DISK" "Plesiomonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE "CLSI 2014" "MIC" "Plesiomonas" 3 "Ampicillin/sulbactam" "M45 Table 2" 8 32 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10μg" 15 11 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10μg" 8 32 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300μg" 256 512 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10ug" 15 11 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10ug" 8 32 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300ug" 256 512 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Sulfamethoxazole" "Table 2B-5" 256 512 FALSE "CLSI 2014" "MIC" "Neisseria meningitidis" 2 "Sulfamethoxazole" "Table 2I" 2 8 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" "200μg" 17 12 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" "200ug" 17 12 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" 256 512 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300μg" 256 512 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300ug" 256 512 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Sulfisoxazole" "Table 2B-5" 256 512 FALSE "CLSI 2014" "MIC" "Neisseria meningitidis" 2 "Sulfisoxazole" "Table 2I" 2 8 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" "200μg" 17 12 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" "200ug" 17 12 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" 256 512 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300μg" 256 512 FALSE -"CLSI 2014" "DISK" "Histophilus somni" 2 "Spectinomycin" "Vet Table" "100μg" 14 10 FALSE -"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" "100μg" 18 14 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300ug" 256 512 FALSE +"CLSI 2014" "DISK" "Histophilus somni" 2 "Spectinomycin" "Vet Table" "100ug" 14 10 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" "100ug" 18 14 FALSE "CLSI 2014" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" 32 128 FALSE -"CLSI 2014" "DISK" "Providencia heimbachae" 2 "Spectinomycin" "100μg" 14 10 FALSE -"CLSI 2014" "DISK" "Pasteurella multocida multocida" 1 "Spectinomycin" "100μg" 14 10 FALSE +"CLSI 2014" "DISK" "Providencia heimbachae" 2 "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2014" "DISK" "Pasteurella multocida multocida" 1 "Spectinomycin" "100ug" 14 10 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Sparfloxacin" "Table 2E" 0.25 2048 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" "5μg" 19 15 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" "5ug" 19 15 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" "5μg" 19 15 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" "5ug" 19 15 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" 0.5 2 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5μg" 0.5 2 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5ug" 0.5 2 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Sulfonamide" "Table 2B-5" 256 512 FALSE "CLSI 2014" "MIC" "Neisseria meningitidis" 2 "Sulfonamide" "Table 2I" 2 8 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Sulfonamide" "Table 2C" "200μg" 17 12 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Sulfonamide" "Table 2C" "200ug" 17 12 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Sulfonamide" "Table 2C" 256 512 FALSE -"CLSI 2014" "DISK" "Enterococcus" 3 "Streptomycin-high" "Table 2D" "300μg" 10 6 FALSE +"CLSI 2014" "DISK" "Enterococcus" 3 "Streptomycin-high" "Table 2D" "300ug" 10 6 FALSE "CLSI 2014" "MIC" "Enterococcus" 3 "Streptomycin-high" "Table 2D" 1024 2048 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300μg" 10 6 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300μg" 1024 2048 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300ug" 10 6 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300ug" 1024 2048 FALSE "CLSI 2014" "MIC" "Brucella" 3 "Streptoduocin" "M45 Table 16" 8 2048 FALSE "CLSI 2014" "MIC" "Enterococcus" 3 "Streptoduocin" "Table 2D" 1024 2048 FALSE "CLSI 2014" "MIC" "Francisella tularensis tularensis" 1 "Streptoduocin" "M45 Table 16" 8 2048 FALSE "CLSI 2014" "MIC" "Yersinia pestis" 2 "Streptoduocin" "M45 Table 16" 4 16 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Streptomycin" "Generic rules" "10μg" 15 11 FALSE -"CLSI 2014" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Streptomycin" "Generic rules" "10ug" 15 11 FALSE +"CLSI 2014" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2014" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" 2 4 FALSE -"CLSI 2014" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2014" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2014" "MIC" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE "CLSI 2014" "MIC" "Aggregatibacter" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE "CLSI 2014" "MIC" "Bacillus" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 3" 2 4 FALSE "CLSI 2014" "MIC" "Brucella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 2048 FALSE -"CLSI 2014" "DISK" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2014" "DISK" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2014" "MIC" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" 2 4 FALSE "CLSI 2014" "MIC" "Burkholderia pseudomallei" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 4 FALSE "CLSI 2014" "MIC" "Cardiobacterium" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE "CLSI 2014" "MIC" "Eikenella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-5" 2 4 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" "1.25μg/23.75μg" 15 10 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" "1.25ug/23.75ug" 15 10 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" 0.5 4 FALSE "CLSI 2014" "MIC" "Kingella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE "CLSI 2014" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 11" 0.5 4 FALSE -"CLSI 2014" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 12" "1.25μg/23.75μg" 13 10 FALSE +"CLSI 2014" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 12" "1.25ug/23.75ug" 13 10 FALSE "CLSI 2014" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 12" 0.5 4 FALSE -"CLSI 2014" "DISK" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" "1.25μg/23.75μg" 30 25 FALSE +"CLSI 2014" "DISK" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" "1.25ug/23.75ug" 30 25 FALSE "CLSI 2014" "MIC" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" 0.125 0.5 FALSE -"CLSI 2014" "DISK" "Plesiomonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2014" "DISK" "Plesiomonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2014" "MIC" "Plesiomonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE -"CLSI 2014" "DISK" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 13" "1.25μg/23.75μg" 24 6 FALSE +"CLSI 2014" "DISK" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 13" "1.25ug/23.75ug" 24 6 FALSE "CLSI 2014" "MIC" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 13" 0.5 2048 FALSE -"CLSI 2014" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" "30μg" 16 10 FALSE +"CLSI 2014" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" "30ug" 16 10 FALSE "CLSI 2014" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" 2 4 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" 2 4 FALSE -"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" "1.25μg/23.75μg" 19 15 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" "1.25ug/23.75ug" 19 15 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" 0.5 4 FALSE "CLSI 2014" "MIC" "Yersinia pestis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 4 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75μg" 16 10 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75μg" 2 4 FALSE -"CLSI 2014" "DISK" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" "75μg" 20 14 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 16 10 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 2 4 FALSE +"CLSI 2014" "DISK" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" "75ug" 20 14 FALSE "CLSI 2014" "MIC" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" 16 128 FALSE "CLSI 2014" "MIC" "Burkholderia cepacia" 2 "Ticarcillin/clavulanic acid" "Table 2B-3" 16 128 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Ticarcillin/clavulanic acid" "Table 2B-5" 16 128 FALSE -"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" "75μg" 24 15 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" "75ug" 24 15 FALSE "CLSI 2014" "MIC" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" 16 128 FALSE "CLSI 2014" "MIC" "Stenotrophomonas maltophilia" 2 "Ticarcillin/clavulanic acid" "Table 2B-4" 16 128 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15μg" 20 14 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15μg" 16 128 FALSE -"CLSI 2014" "DISK" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" "30μg" 15 11 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15ug" 20 14 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15ug" 16 128 FALSE +"CLSI 2014" "DISK" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" "30ug" 15 11 FALSE "CLSI 2014" "MIC" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" 4 16 FALSE -"CLSI 2014" "DISK" "Aeromonas" 3 "Tetracycline" "M45 Table 2" "30μg" 15 11 FALSE +"CLSI 2014" "DISK" "Aeromonas" 3 "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE "CLSI 2014" "MIC" "Aeromonas" 3 "Tetracycline" "M45 Table 2" 4 16 FALSE "CLSI 2014" "MIC" "Aggregatibacter" 3 "Tetracycline" "M45 Table 7" 2 8 FALSE "CLSI 2014" "MIC" "Bacillus" 3 "Tetracycline" "M45 Table 3" 4 16 FALSE @@ -16866,292 +16866,292 @@ "CLSI 2014" "MIC" "Campylobacter" 3 "Tetracycline" "M45 Table 3" 4 16 FALSE "CLSI 2014" "MIC" "Cardiobacterium" 3 "Tetracycline" "M45 Table 7" 2 8 FALSE "CLSI 2014" "MIC" "Eikenella" 3 "Tetracycline" "M45 Table 7" 2 8 FALSE -"CLSI 2014" "DISK" "Enterococcus" 3 "Tetracycline" "Table 2D" "30μg" 19 14 FALSE +"CLSI 2014" "DISK" "Enterococcus" 3 "Tetracycline" "Table 2D" "30ug" 19 14 FALSE "CLSI 2014" "MIC" "Enterococcus" 3 "Tetracycline" "Table 2D" 4 16 FALSE "CLSI 2014" "MIC" "Francisella tularensis tularensis" 1 "Tetracycline" "M45 Table 16" 4 2048 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Tetracycline" "Table 2B-5" 4 16 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Tetracycline" "Table 2E" "30μg" 29 25 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Tetracycline" "Table 2E" "30ug" 29 25 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Tetracycline" "Table 2E" 2 8 FALSE "CLSI 2014" "MIC" "Kingella" 3 "Tetracycline" "M45 Table 7" 2 8 FALSE -"CLSI 2014" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 12" "30μg" 29 24 FALSE +"CLSI 2014" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 12" "30ug" 29 24 FALSE "CLSI 2014" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 12" 2 8 FALSE -"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" "30μg" 38 30 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" "30ug" 38 30 FALSE "CLSI 2014" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" 0.25 2 FALSE -"CLSI 2014" "DISK" "Plesiomonas" 3 "Tetracycline" "M45 Table 2" "30μg" 15 11 FALSE +"CLSI 2014" "DISK" "Plesiomonas" 3 "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE "CLSI 2014" "MIC" "Plesiomonas" 3 "Tetracycline" "M45 Table 2" 4 16 FALSE -"CLSI 2014" "DISK" "Pasteurella" 3 "Tetracycline" "M45 Table 13" "30μg" 23 6 FALSE +"CLSI 2014" "DISK" "Pasteurella" 3 "Tetracycline" "M45 Table 13" "30ug" 23 6 FALSE "CLSI 2014" "MIC" "Pasteurella" 3 "Tetracycline" "M45 Table 13" 1 2048 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Tetracycline" "Table 2C" "30μg" 19 14 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Tetracycline" "Table 2C" "30ug" 19 14 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Tetracycline" "Table 2C" 4 16 FALSE -"CLSI 2014" "DISK" "Streptococcus" 3 "Tetracycline" "Table 2H-1" "30μg" 23 18 FALSE +"CLSI 2014" "DISK" "Streptococcus" 3 "Tetracycline" "Table 2H-1" "30ug" 23 18 FALSE "CLSI 2014" "MIC" "Streptococcus" 3 "Tetracycline" "Table 2H-1" 2 8 FALSE -"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" "30μg" 28 24 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" "30ug" 28 24 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" 1 4 FALSE -"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" "30μg" 23 18 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" "30ug" 23 18 FALSE "CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" 2 8 FALSE "CLSI 2014" "MIC" "Yersinia pestis" 2 "Tetracycline" "M45 Table 16" 4 16 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Tetracycline" "Generic rules" "30μg" 15 11 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Tetracycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2014" "DISK" "Enterococcus" 3 "Teicoplanin" "Table 2D" "30μg" 14 10 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Tetracycline" "Generic rules" "30ug" 15 11 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Tetracycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2014" "DISK" "Enterococcus" 3 "Teicoplanin" "Table 2D" "30ug" 14 10 FALSE "CLSI 2014" "MIC" "Enterococcus" 3 "Teicoplanin" "Table 2D" 8 32 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Teicoplanin" "Table 2C" "30μg" 14 10 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Teicoplanin" "Table 2C" "30ug" 14 10 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Teicoplanin" "Table 2C" 8 32 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30μg" 14 10 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Tiamulin" "Generic rules" "30μg" 9 8 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Tiamulin" "Generic rules" "30μg" 16 32 FALSE -"CLSI 2014" "DISK" "Acinetobacter" 3 "Ticarcillin" "Table 2B-2" "75μg" 20 14 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30ug" 14 10 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Tiamulin" "Generic rules" "30ug" 9 8 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Tiamulin" "Generic rules" "30ug" 16 32 FALSE +"CLSI 2014" "DISK" "Acinetobacter" 3 "Ticarcillin" "Table 2B-2" "75ug" 20 14 FALSE "CLSI 2014" "MIC" "Acinetobacter" 3 "Ticarcillin" "Table 2B-2" 16 128 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Ticarcillin" "Table 2B-5" 16 128 FALSE -"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin" "Table 2B-1" "75μg" 24 15 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin" "Table 2B-1" "75ug" 24 15 FALSE "CLSI 2014" "MIC" "Pseudomonas aeruginosa" 2 "Ticarcillin" "Table 2B-1" 16 128 FALSE -"CLSI 2014" "DISK" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" "Vet Table" "15μg" 11 10 FALSE +"CLSI 2014" "DISK" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE "CLSI 2014" "MIC" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" "Vet Table" 16 32 FALSE -"CLSI 2014" "DISK" "Pasteurella multocida multocida" 1 "Tilmicosin" "Vet Table" "15μg" 11 10 FALSE +"CLSI 2014" "DISK" "Pasteurella multocida multocida" 1 "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE "CLSI 2014" "MIC" "Pasteurella multocida multocida" 1 "Tilmicosin" "Vet Table" 16 32 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15μg" 14 10 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15μg" 8 32 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30μg" 2 8 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Telithromycin" "Table 2E" "15μg" 15 11 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15ug" 14 10 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15ug" 8 32 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30ug" 2 8 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Telithromycin" "Table 2E" "15ug" 15 11 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Telithromycin" "Table 2E" 4 16 FALSE -"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" "15μg" 19 15 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" "15ug" 19 15 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" 1 4 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Telithromycin" "Generic rules" "15μg" 22 18 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Telithromycin" "Generic rules" "15μg" 1 4 FALSE -"CLSI 2014" "DISK" "Staphylococcus" 3 "Trimethoprim" "Table 2C" "5μg" 16 10 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Telithromycin" "Generic rules" "15ug" 22 18 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Telithromycin" "Generic rules" "15ug" 1 4 FALSE +"CLSI 2014" "DISK" "Staphylococcus" 3 "Trimethoprim" "Table 2C" "5ug" 16 10 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Trimethoprim" "Table 2C" 8 16 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5μg" 16 10 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5μg" 8 16 FALSE -"CLSI 2014" "DISK" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" "10μg" 15 12 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 16 10 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 8 16 FALSE +"CLSI 2014" "DISK" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" "10ug" 15 12 FALSE "CLSI 2014" "MIC" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" 4 16 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Tobramycin" "Table 2B-5" 4 16 FALSE -"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" "10μg" 15 12 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" "10ug" 15 12 FALSE "CLSI 2014" "MIC" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" 4 16 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Tobramycin" "Generic rules" "10μg" 15 12 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Tobramycin" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Trovafloxacin" "Table 2E" "10μg" 22 6 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 15 12 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Trovafloxacin" "Table 2E" "10ug" 22 6 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Trovafloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" "10μg" 34 6 FALSE +"CLSI 2014" "DISK" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" "10ug" 34 6 FALSE "CLSI 2014" "MIC" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" 0.25 2048 FALSE -"CLSI 2014" "DISK" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" "10μg" 19 15 FALSE +"CLSI 2014" "DISK" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" "10ug" 19 15 FALSE "CLSI 2014" "MIC" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" 1 4 FALSE -"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" "10μg" 19 15 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" "10ug" 19 15 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" 1 4 FALSE -"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" "10μg" 19 15 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" "10ug" 19 15 FALSE "CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" 1 4 FALSE -"CLSI 2014" "DISK" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" "100μg" 21 17 FALSE +"CLSI 2014" "DISK" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" "100ug" 21 17 FALSE "CLSI 2014" "MIC" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" 16 128 FALSE -"CLSI 2014" "DISK" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100μg" 21 17 FALSE +"CLSI 2014" "DISK" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE "CLSI 2014" "MIC" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 2" 16 128 FALSE "CLSI 2014" "MIC" "(unknown Gram-negatives)" 2 "Piperacillin/tazobactam" "Table 2B-5" 16 128 FALSE -"CLSI 2014" "DISK" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" "100μg" 21 6 FALSE +"CLSI 2014" "DISK" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" "100ug" 21 6 FALSE "CLSI 2014" "MIC" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" 1 2 FALSE -"CLSI 2014" "DISK" "Plesiomonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100μg" 21 17 FALSE +"CLSI 2014" "DISK" "Plesiomonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE "CLSI 2014" "MIC" "Plesiomonas" 3 "Piperacillin/tazobactam" "M45 Table 2" 16 128 FALSE -"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" "100μg" 21 14 FALSE +"CLSI 2014" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" "100ug" 21 14 FALSE "CLSI 2014" "MIC" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" 16 128 FALSE -"CLSI 2014" "DISK" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10μg" 21 17 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10μg" 16 128 FALSE +"CLSI 2014" "DISK" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10ug" 21 17 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10ug" 16 128 FALSE "CLSI 2014" "MIC" "Abiotrophia" 3 "Vancomycin" "M45 Table 1" 1 2048 FALSE "CLSI 2014" "MIC" "Bacillus" 3 "Vancomycin" "M45 Table 3" 4 2048 FALSE -"CLSI 2014" "DISK" "Enterococcus" 3 "Vancomycin" "Table 2D" "30μg" 17 14 FALSE +"CLSI 2014" "DISK" "Enterococcus" 3 "Vancomycin" "Table 2D" "30ug" 17 14 FALSE "CLSI 2014" "MIC" "Enterococcus" 3 "Vancomycin" "Table 2D" 4 32 FALSE "CLSI 2014" "MIC" "Granulicatella" 3 "Vancomycin" "M45 Table 1" 1 2048 FALSE "CLSI 2014" "MIC" "Lactobacillus" 3 "Vancomycin" "M45 Table 9" 2 16 FALSE "CLSI 2014" "MIC" "Staphylococcus" 3 "Vancomycin" "Table 2C" 4 32 FALSE "CLSI 2014" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" "Table 2C" 2 16 FALSE -"CLSI 2014" "DISK" "Streptococcus" 3 "Vancomycin" "Table 2H-1" "30μg" 17 6 FALSE +"CLSI 2014" "DISK" "Streptococcus" 3 "Vancomycin" "Table 2H-1" "30ug" 17 6 FALSE "CLSI 2014" "MIC" "Streptococcus" 3 "Vancomycin" "Table 2H-1" 1 2048 FALSE -"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" "30μg" 17 6 FALSE +"CLSI 2014" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" "30ug" 17 6 FALSE "CLSI 2014" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" 1 2048 FALSE -"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" "30μg" 17 6 FALSE +"CLSI 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" "30ug" 17 6 FALSE "CLSI 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" 1 2048 FALSE -"CLSI 2014" "MIC" "(unknown name)" 6 "Vancomycin" "Generic rules" "30μg" 4 32 FALSE -"CLSI 2013" "DISK" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20μg" 18 13 FALSE +"CLSI 2014" "MIC" "(unknown name)" 6 "Vancomycin" "Generic rules" "30ug" 4 32 FALSE +"CLSI 2013" "DISK" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE "CLSI 2013" "MIC" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" 8 32 FALSE "CLSI 2013" "MIC" "Aggregatibacter" 3 "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE "CLSI 2013" "MIC" "Burkholderia pseudomallei" 2 "Amoxicillin/clavulanic acid" "M45 Table 16" 8 32 FALSE "CLSI 2013" "MIC" "Cardiobacterium" 3 "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE "CLSI 2013" "MIC" "Eikenella" 3 "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" "20/10μg" 20 19 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" "20/10ug" 20 19 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" 4 8 FALSE -"CLSI 2013" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 12" "20μg" 24 23 FALSE +"CLSI 2013" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 12" "20ug" 24 23 FALSE "CLSI 2013" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 12" 4 8 FALSE -"CLSI 2013" "DISK" "Plesiomonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20μg" 18 13 FALSE +"CLSI 2013" "DISK" "Plesiomonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE "CLSI 2013" "MIC" "Plesiomonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" 8 32 FALSE -"CLSI 2013" "DISK" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 13" "20μg" 27 6 FALSE +"CLSI 2013" "DISK" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 13" "20ug" 27 6 FALSE "CLSI 2013" "MIC" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 13" 0.5 2048 FALSE "CLSI 2013" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Amoxicillin/clavulanic acid" "Table 2G" 2 8 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10μg" 18 13 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10μg" 8 32 FALSE -"CLSI 2013" "DISK" "Acinetobacter" 3 "Amikacin" "Table 2B-2" "30μg" 17 14 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 18 13 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 8 32 FALSE +"CLSI 2013" "DISK" "Acinetobacter" 3 "Amikacin" "Table 2B-2" "30ug" 17 14 FALSE "CLSI 2013" "MIC" "Acinetobacter" 3 "Amikacin" "Table 2B-2" 16 64 FALSE -"CLSI 2013" "DISK" "Aeromonas" 3 "Amikacin" "M45 Table 2" "30μg" 17 14 FALSE +"CLSI 2013" "DISK" "Aeromonas" 3 "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE "CLSI 2013" "MIC" "Aeromonas" 3 "Amikacin" "M45 Table 2" 16 64 FALSE "CLSI 2013" "MIC" "Bacillus" 3 "Amikacin" "M45 Table 3" 16 64 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Amikacin" "Table 2B-5" 16 64 FALSE -"CLSI 2013" "DISK" "Plesiomonas" 3 "Amikacin" "M45 Table 2" "30μg" 17 14 FALSE +"CLSI 2013" "DISK" "Plesiomonas" 3 "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE "CLSI 2013" "MIC" "Plesiomonas" 3 "Amikacin" "M45 Table 2" 16 64 FALSE -"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" "30μg" 17 14 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" "30ug" 17 14 FALSE "CLSI 2013" "MIC" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" 16 64 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Amikacin" "Generic rules" "30μg" 17 14 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Amikacin" "Generic rules" "30μg" 16 64 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 17 14 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 16 64 FALSE "CLSI 2013" "MIC" "Aggregatibacter" 3 "Ampicillin" "M45 Table 7" 1 4 FALSE "CLSI 2013" "MIC" "Bacillus" 3 "Ampicillin" "M45 Table 3" 0.25 0.5 FALSE "CLSI 2013" "MIC" "Cardiobacterium" 3 "Ampicillin" "M45 Table 7" 1 4 FALSE "CLSI 2013" "MIC" "Eikenella" 3 "Ampicillin" "M45 Table 7" 1 4 FALSE -"CLSI 2013" "DISK" "Enterococcus" 3 "Ampicillin" "Table 2D" "10μg" 17 16 FALSE +"CLSI 2013" "DISK" "Enterococcus" 3 "Ampicillin" "Table 2D" "10ug" 17 16 FALSE "CLSI 2013" "MIC" "Enterococcus" 3 "Ampicillin" "Table 2D" 8 16 FALSE "CLSI 2013" "MIC" "Erysipelothrix rhusiopathiae" 2 "Ampicillin" "M45 Table 6" 0.25 2048 FALSE "CLSI 2013" "MIC" "Granulicatella" 3 "Ampicillin" "M45 Table 1" 0.25 8 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Ampicillin" "Table 2E" "10μg" 22 18 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Ampicillin" "Table 2E" "10ug" 22 18 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Ampicillin" "Table 2E" 1 4 FALSE "CLSI 2013" "MIC" "Leuconostoc" 3 "Ampicillin" "M45 Table 10" 8 2048 FALSE "CLSI 2013" "MIC" "Lactobacillus" 3 "Ampicillin" "M45 Table 9" 8 2048 FALSE "CLSI 2013" "MIC" "Listeria monocytogenes" 2 "Ampicillin" "M45 Table 11" 2 2048 FALSE "CLSI 2013" "MIC" "Neisseria meningitidis" 2 "Ampicillin" "Table 2I" 0.125 2 FALSE "CLSI 2013" "MIC" "Pediococcus" 3 "Ampicillin" "M45 Table 14" 8 2048 FALSE -"CLSI 2013" "DISK" "Pasteurella" 3 "Ampicillin" "M45 Table 13" "10μg" 27 6 FALSE +"CLSI 2013" "DISK" "Pasteurella" 3 "Ampicillin" "M45 Table 13" "10ug" 27 6 FALSE "CLSI 2013" "MIC" "Pasteurella" 3 "Ampicillin" "M45 Table 13" 0.5 2048 FALSE -"CLSI 2013" "DISK" "Streptococcus" 3 "Ampicillin" "Table 2H-1" "10μg" 24 6 FALSE +"CLSI 2013" "DISK" "Streptococcus" 3 "Ampicillin" "Table 2H-1" "10ug" 24 6 FALSE "CLSI 2013" "MIC" "Streptococcus" 3 "Ampicillin" "Table 2H-1" 0.25 2048 FALSE "CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Table 2H-2" 0.25 8 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Ampicillin" "Generic rules" "10μg" 17 13 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Ampicillin" "Generic rules" "2μg" 8 32 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Ampicillin" "Generic rules" "10ug" 17 13 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Ampicillin" "Generic rules" "2ug" 8 32 FALSE "CLSI 2013" "MIC" "Pasteurella" 3 "Amoxicillin" "M45 Table 13" 0.5 2048 FALSE "CLSI 2013" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Amoxicillin" "Table 2G" 2 8 FALSE -"CLSI 2013" "DISK" "Aeromonas" 3 "Aztreonam" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2013" "DISK" "Aeromonas" 3 "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2013" "MIC" "Aeromonas" 3 "Aztreonam" "M45 Table 2" 4 16 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Aztreonam" "Table 2B-5" 8 32 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Aztreonam" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Aztreonam" "Table 2E" "30ug" 26 6 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Aztreonam" "Table 2E" 2 2048 FALSE -"CLSI 2013" "DISK" "Plesiomonas" 3 "Aztreonam" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2013" "DISK" "Plesiomonas" 3 "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2013" "MIC" "Plesiomonas" 3 "Aztreonam" "M45 Table 2" 4 16 FALSE -"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" "30μg" 22 15 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" "30ug" 22 15 FALSE "CLSI 2013" "MIC" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" 8 32 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Aztreonam" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Aztreonam" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Azlocillin" "Generic rules" "75μg" 18 17 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Azlocillin" "Generic rules" "75μg" 64 128 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Azlocillin" "Generic rules" "75ug" 18 17 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Azlocillin" "Generic rules" "75ug" 64 128 FALSE "CLSI 2013" "MIC" "Aggregatibacter" 3 "Azithromycin" "M45 Table 7" 4 2048 FALSE "CLSI 2013" "MIC" "Cardiobacterium" 3 "Azithromycin" "M45 Table 7" 4 2048 FALSE "CLSI 2013" "MIC" "Eikenella" 3 "Azithromycin" "M45 Table 7" 4 2048 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Azithromycin" "Table 2E" "15μg" 12 6 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Azithromycin" "Table 2E" "15ug" 12 6 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Azithromycin" "Table 2E" 4 2048 FALSE "CLSI 2013" "MIC" "Kingella" 3 "Azithromycin" "M45 Table 7" 4 2048 FALSE -"CLSI 2013" "DISK" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 12" "15μg" 26 6 FALSE +"CLSI 2013" "DISK" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 12" "15ug" 26 6 FALSE "CLSI 2013" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 12" 0.25 2048 FALSE -"CLSI 2013" "DISK" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" "15μg" 20 6 FALSE +"CLSI 2013" "DISK" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" "15ug" 20 6 FALSE "CLSI 2013" "MIC" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" 2 2048 FALSE -"CLSI 2013" "DISK" "Pasteurella" 3 "Azithromycin" "M45 Table 13" "15μg" 20 6 FALSE +"CLSI 2013" "DISK" "Pasteurella" 3 "Azithromycin" "M45 Table 13" "15ug" 20 6 FALSE "CLSI 2013" "MIC" "Pasteurella" 3 "Azithromycin" "M45 Table 13" 1 2048 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Azithromycin" "Table 2C" "15μg" 18 13 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Azithromycin" "Table 2C" "15ug" 18 13 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Azithromycin" "Table 2C" 2 8 FALSE -"CLSI 2013" "DISK" "Streptococcus" 3 "Azithromycin" "Table 2H-1" "15μg" 18 13 FALSE +"CLSI 2013" "DISK" "Streptococcus" 3 "Azithromycin" "Table 2H-1" "15ug" 18 13 FALSE "CLSI 2013" "MIC" "Streptococcus" 3 "Azithromycin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" "15μg" 18 13 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" "15ug" 18 13 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" 0.5 2 FALSE -"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" "15μg" 18 13 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" "15ug" 18 13 FALSE "CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" 0.5 2 FALSE -"CLSI 2013" "MIC" "Vibrio cholerae" 2 "Azithromycin" "M45 Table 14" "30μg" 2 2048 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Azithromycin" "Generic rules" "15μg" 18 13 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Azithromycin" "Generic rules" "15μg" 2 8 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Cefetamet" "Table 2E" "10μg" 18 14 FALSE +"CLSI 2013" "MIC" "Vibrio cholerae" 2 "Azithromycin" "M45 Table 14" "30ug" 2 2048 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Azithromycin" "Generic rules" "15ug" 18 13 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Azithromycin" "Generic rules" "15ug" 2 8 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Cefetamet" "Table 2E" "10ug" 18 14 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Cefetamet" "Table 2E" 4 16 FALSE -"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Cefetamet" "Table 2F" "10μg" 29 6 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Cefetamet" "Table 2F" "10ug" 29 6 FALSE "CLSI 2013" "MIC" "Neisseria gonorrhoeae" 2 "Cefetamet" "Table 2F" 0.5 2048 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Cefetamet" "Generic rules" "10μg" 18 14 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Cefetamet" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2013" "DISK" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" "30μg" 18 14 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Cefetamet" "Generic rules" "10ug" 18 14 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Cefetamet" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2013" "DISK" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" "30ug" 18 14 FALSE "CLSI 2013" "MIC" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" 8 32 FALSE -"CLSI 2013" "DISK" "Aeromonas" 3 "Ceftazidime" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2013" "DISK" "Aeromonas" 3 "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2013" "MIC" "Aeromonas" 3 "Ceftazidime" "M45 Table 2" 4 16 FALSE "CLSI 2013" "MIC" "Bacillus" 3 "Ceftazidime" "M45 Table 3" 8 32 FALSE -"CLSI 2013" "DISK" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" "30μg" 21 17 FALSE +"CLSI 2013" "DISK" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" "30ug" 21 17 FALSE "CLSI 2013" "MIC" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" 8 32 FALSE "CLSI 2013" "MIC" "Burkholderia mallei" 2 "Ceftazidime" "M45 Table 16" 8 32 FALSE "CLSI 2013" "MIC" "Burkholderia pseudomallei" 2 "Ceftazidime" "M45 Table 16" 8 32 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Ceftazidime" "Table 2B-5" 8 32 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Ceftazidime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Ceftazidime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Ceftazidime" "Table 2E" 2 2048 FALSE "CLSI 2013" "MIC" "Moraxella catarrhalis" 2 "Ceftazidime" "M45 Table 12" 2 2048 FALSE -"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Ceftazidime" "Table 2F" "30μg" 31 6 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Ceftazidime" "Table 2F" "30ug" 31 6 FALSE "CLSI 2013" "MIC" "Neisseria gonorrhoeae" 2 "Ceftazidime" "Table 2F" 0.5 2048 FALSE -"CLSI 2013" "DISK" "Plesiomonas" 3 "Ceftazidime" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2013" "DISK" "Plesiomonas" 3 "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2013" "MIC" "Plesiomonas" 3 "Ceftazidime" "M45 Table 2" 4 16 FALSE -"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" "30μg" 18 14 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" "30ug" 18 14 FALSE "CLSI 2013" "MIC" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" 8 32 FALSE "CLSI 2013" "MIC" "Stenotrophomonas maltophilia" 2 "Ceftazidime" "Table 2B-4" 8 32 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Cefdinir" "Table 2E" "5μg" 20 6 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Cefdinir" "Table 2E" "5ug" 20 6 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Cefdinir" "Table 2E" 1 2048 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Cefdinir" "Table 2G" 0.5 2 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Cefdinir" "Generic rules" "5μg" 20 16 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Cefdinir" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Cefaclor" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Cefdinir" "Generic rules" "5ug" 20 16 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Cefdinir" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Cefaclor" "Table 2E" "30ug" 20 16 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Cefaclor" "Table 2E" 8 32 FALSE "CLSI 2013" "MIC" "Moraxella catarrhalis" 2 "Cefaclor" "M45 Table 12" 8 32 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" "Table 2G" 1 4 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Cefaclor" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Cefaclor" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Cephalothin" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Cephalothin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Cefixime" "Table 2E" "5μg" 21 6 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Cefaclor" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Cefaclor" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Cephalothin" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Cephalothin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Cefixime" "Table 2E" "5ug" 21 6 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Cefixime" "Table 2E" 1 2048 FALSE -"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" "5μg" 31 6 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" "5ug" 31 6 FALSE "CLSI 2013" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" 0.25 2048 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Cefixime" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Cefixime" "Generic rules" "5μg" 1 4 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 1 4 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Cefoperazone" "Table 2B-5" 16 64 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75μg" 21 15 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75μg" 16 64 FALSE -"CLSI 2013" "DISK" "Aeromonas" 3 "Chloramphenicol" "M45 Table 2" "30μg" 18 12 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75ug" 21 15 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75ug" 16 64 FALSE +"CLSI 2013" "DISK" "Aeromonas" 3 "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE "CLSI 2013" "MIC" "Aeromonas" 3 "Chloramphenicol" "M45 Table 2" 8 32 FALSE "CLSI 2013" "MIC" "Aggregatibacter" 3 "Chloramphenicol" "M45 Table 7" 4 16 FALSE "CLSI 2013" "MIC" "Bacillus" 3 "Chloramphenicol" "M45 Table 3" 8 32 FALSE "CLSI 2013" "MIC" "Burkholderia cepacia" 2 "Chloramphenicol" "Table 2B-3" 8 32 FALSE "CLSI 2013" "MIC" "Cardiobacterium" 3 "Chloramphenicol" "M45 Table 7" 4 16 FALSE "CLSI 2013" "MIC" "Eikenella" 3 "Chloramphenicol" "M45 Table 7" 4 16 FALSE -"CLSI 2013" "DISK" "Enterococcus" 3 "Chloramphenicol" "Table 2D" "30μg" 18 12 FALSE +"CLSI 2013" "DISK" "Enterococcus" 3 "Chloramphenicol" "Table 2D" "30ug" 18 12 FALSE "CLSI 2013" "MIC" "Enterococcus" 3 "Chloramphenicol" "Table 2D" 8 32 FALSE "CLSI 2013" "MIC" "Francisella tularensis tularensis" 1 "Chloramphenicol" "M45 Table 16" 8 2048 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Chloramphenicol" "Table 2B-5" 8 32 FALSE "CLSI 2013" "MIC" "Granulicatella" 3 "Chloramphenicol" "M45 Table 1" 4 8 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Chloramphenicol" "Table 2E" "30μg" 29 25 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Chloramphenicol" "Table 2E" "30ug" 29 25 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Chloramphenicol" "Table 2E" 2 8 FALSE "CLSI 2013" "MIC" "Kingella" 3 "Chloramphenicol" "M45 Table 7" 4 16 FALSE "CLSI 2013" "MIC" "Leuconostoc" 3 "Chloramphenicol" "M45 Table 10" 8 32 FALSE "CLSI 2013" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" "M45 Table 12" 2 8 FALSE -"CLSI 2013" "DISK" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" "30μg" 26 19 FALSE +"CLSI 2013" "DISK" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" "30ug" 26 19 FALSE "CLSI 2013" "MIC" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" 2 8 FALSE "CLSI 2013" "MIC" "Pediococcus" 3 "Chloramphenicol" "M45 Table 14" 8 32 FALSE -"CLSI 2013" "DISK" "Plesiomonas" 3 "Chloramphenicol" "M45 Table 2" "30μg" 18 12 FALSE +"CLSI 2013" "DISK" "Plesiomonas" 3 "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE "CLSI 2013" "MIC" "Plesiomonas" 3 "Chloramphenicol" "M45 Table 2" 8 32 FALSE -"CLSI 2013" "DISK" "Pasteurella" 3 "Chloramphenicol" "M45 Table 13" "30μg" 28 6 FALSE +"CLSI 2013" "DISK" "Pasteurella" 3 "Chloramphenicol" "M45 Table 13" "30ug" 28 6 FALSE "CLSI 2013" "MIC" "Pasteurella" 3 "Chloramphenicol" "M45 Table 13" 2 2048 FALSE "CLSI 2013" "MIC" "Stenotrophomonas maltophilia" 2 "Chloramphenicol" "Table 2B-4" 8 32 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" "30μg" 18 12 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" "30ug" 18 12 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" 8 32 FALSE -"CLSI 2013" "DISK" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" "30μg" 21 17 FALSE +"CLSI 2013" "DISK" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" "30ug" 21 17 FALSE "CLSI 2013" "MIC" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" 4 16 FALSE -"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" "30μg" 21 20 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" "30ug" 21 20 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" 4 8 FALSE -"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" "30μg" 21 17 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" "30ug" 21 17 FALSE "CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" 4 16 FALSE "CLSI 2013" "MIC" "Yersinia pestis" 2 "Chloramphenicol" "M45 Table 16" 8 32 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30μg" 18 12 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Cefonicid" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 18 12 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Cefonicid" "Table 2E" "30ug" 20 16 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Cefonicid" "Table 2E" 4 16 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Cefonicid" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Cefonicid" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100μg" 19 14 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100μg" 16 64 FALSE -"CLSI 2013" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" "5μg" 21 15 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Cefonicid" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Cefonicid" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100ug" 19 14 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100ug" 16 64 FALSE +"CLSI 2013" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" "5ug" 21 15 FALSE "CLSI 2013" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" 1 4 FALSE -"CLSI 2013" "DISK" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 2" "5μg" 21 15 FALSE +"CLSI 2013" "DISK" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE "CLSI 2013" "MIC" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 2" 1 4 FALSE "CLSI 2013" "MIC" "Aggregatibacter" 3 "Ciprofloxacin" "M45 Table 7" 1 4 FALSE "CLSI 2013" "MIC" "Bacillus" 3 "Ciprofloxacin" "M45 Table 3" 1 4 FALSE @@ -17159,104 +17159,104 @@ "CLSI 2013" "MIC" "Campylobacter" 3 "Ciprofloxacin" "M45 Table 3" 1 4 FALSE "CLSI 2013" "MIC" "Cardiobacterium" 3 "Ciprofloxacin" "M45 Table 7" 1 4 FALSE "CLSI 2013" "MIC" "Eikenella" 3 "Ciprofloxacin" "M45 Table 7" 1 4 FALSE -"CLSI 2013" "DISK" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" "5μg" 21 15 FALSE +"CLSI 2013" "DISK" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" "5ug" 21 15 FALSE "CLSI 2013" "MIC" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" 1 4 FALSE "CLSI 2013" "MIC" "Erysipelothrix rhusiopathiae" 2 "Ciprofloxacin" "M45 Table 6" 1 2048 FALSE "CLSI 2013" "MIC" "Francisella tularensis tularensis" 1 "Ciprofloxacin" "M45 Table 16" 0.5 2048 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Ciprofloxacin" "Table 2B-5" 1 4 FALSE "CLSI 2013" "MIC" "Granulicatella" 3 "Ciprofloxacin" "M45 Table 1" 1 4 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" "5μg" 21 6 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" "5ug" 21 6 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" 1 2048 FALSE "CLSI 2013" "MIC" "Kingella" 3 "Ciprofloxacin" "M45 Table 7" 1 4 FALSE "CLSI 2013" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M45 Table 12" 1 2048 FALSE -"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" "5μg" 41 27 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" "5ug" 41 27 FALSE "CLSI 2013" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" 0.064 1 FALSE -"CLSI 2013" "DISK" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" "5μg" 35 32 FALSE +"CLSI 2013" "DISK" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" "5ug" 35 32 FALSE "CLSI 2013" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" 0.032 0.12 FALSE -"CLSI 2013" "DISK" "Plesiomonas" 3 "Ciprofloxacin" "M45 Table 2" "5μg" 21 15 FALSE +"CLSI 2013" "DISK" "Plesiomonas" 3 "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE "CLSI 2013" "MIC" "Plesiomonas" 3 "Ciprofloxacin" "M45 Table 2" 1 4 FALSE -"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" "5μg" 21 15 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" "5ug" 21 15 FALSE "CLSI 2013" "MIC" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" 1 4 FALSE -"CLSI 2013" "DISK" "Intestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5μg" 21 15 FALSE -"CLSI 2013" "DISK" "Extraintestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5μg" 31 20 FALSE -"CLSI 2013" "DISK" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5μg" 31 20 FALSE +"CLSI 2013" "DISK" "Intestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5ug" 21 15 FALSE +"CLSI 2013" "DISK" "Extraintestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE +"CLSI 2013" "DISK" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE "CLSI 2013" "MIC" "Intestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" 1 4 FALSE "CLSI 2013" "MIC" "Extraintestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" 0.064 1 FALSE "CLSI 2013" "MIC" "Salmonella" 3 "Ciprofloxacin" "Table 2A" 0.064 1 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" "5μg" 21 15 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" "5ug" 21 15 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" 1 4 FALSE "CLSI 2013" "MIC" "Yersinia pestis" 2 "Ciprofloxacin" "M45 Table 16" 0.25 2048 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5μg" 21 15 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5μg" 1 4 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 21 15 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 1 4 FALSE "CLSI 2013" "MIC" "Bacillus" 3 "Clindamycin" "M45 Table 3" 0.5 4 FALSE "CLSI 2013" "MIC" "Erysipelothrix rhusiopathiae" 2 "Clindamycin" "M45 Table 6" 0.25 1 FALSE "CLSI 2013" "MIC" "Granulicatella" 3 "Clindamycin" "M45 Table 1" 0.25 1 FALSE "CLSI 2013" "MIC" "Lactobacillus" 3 "Clindamycin" "M45 Table 9" 0.5 2 FALSE "CLSI 2013" "MIC" "Moraxella catarrhalis" 2 "Clindamycin" "M45 Table 12" 0.5 4 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Clindamycin" "Table 2C" "2μg" 21 14 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Clindamycin" "Table 2C" "2ug" 21 14 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Clindamycin" "Table 2C" 0.5 4 FALSE -"CLSI 2013" "DISK" "Streptococcus" 3 "Clindamycin" "Table 2H-1" "2μg" 19 15 FALSE +"CLSI 2013" "DISK" "Streptococcus" 3 "Clindamycin" "Table 2H-1" "2ug" 19 15 FALSE "CLSI 2013" "MIC" "Streptococcus" 3 "Clindamycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" "2μg" 19 15 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" "2ug" 19 15 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" 0.25 1 FALSE -"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" "2μg" 19 15 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" "2ug" 19 15 FALSE "CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Clindamycin" "Generic rules" "2μg" 21 14 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Clindamycin" "Generic rules" "2μg" 0.5 4 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Clindamycin" "Generic rules" "2ug" 21 14 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Clindamycin" "Generic rules" "2ug" 0.5 4 FALSE "CLSI 2013" "MIC" "Aggregatibacter" 3 "Clarithromycin" "M45 Table 7" 8 32 FALSE "CLSI 2013" "MIC" "Cardiobacterium" 3 "Clarithromycin" "M45 Table 7" 8 32 FALSE "CLSI 2013" "MIC" "Eikenella" 3 "Clarithromycin" "M45 Table 7" 8 32 FALSE "CLSI 2013" "MIC" "Helicobacter pylori" 2 "Clarithromycin" "M45 Table 8" 0.25 1 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Clarithromycin" "Table 2E" "15μg" 13 10 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Clarithromycin" "Table 2E" "15ug" 13 10 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Clarithromycin" "Table 2E" 8 32 FALSE "CLSI 2013" "MIC" "Kingella" 3 "Clarithromycin" "M45 Table 7" 8 32 FALSE -"CLSI 2013" "DISK" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 12" "15μg" 24 6 FALSE +"CLSI 2013" "DISK" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 12" "15ug" 24 6 FALSE "CLSI 2013" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 12" 1 2048 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Clarithromycin" "Table 2C" "15μg" 18 13 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Clarithromycin" "Table 2C" "15ug" 18 13 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Clarithromycin" "Table 2C" 2 8 FALSE -"CLSI 2013" "DISK" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" "15μg" 21 16 FALSE +"CLSI 2013" "DISK" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" "15ug" 21 16 FALSE "CLSI 2013" "MIC" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" "15μg" 21 16 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" "15ug" 21 16 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" 0.25 1 FALSE -"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" "15μg" 21 16 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" "15ug" 21 16 FALSE "CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15μg" 18 13 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15μg" 2 8 FALSE -"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Cefmetazole" "Table 2F" "30μg" 33 27 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15ug" 18 13 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15ug" 2 8 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Cefmetazole" "Table 2F" "30ug" 33 27 FALSE "CLSI 2013" "MIC" "Neisseria gonorrhoeae" 2 "Cefmetazole" "Table 2F" 2 8 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30μg" 16 64 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30ug" 16 64 FALSE "CLSI 2013" "MIC" "Acinetobacter" 3 "Colistin" "Table 2B-2" 2 4 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Colistin" "Table 2B-5" 2 8 FALSE -"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Colistin" "Table 2B-1" "10μg" 11 10 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Colistin" "Table 2B-1" "10ug" 11 10 FALSE "CLSI 2013" "MIC" "Pseudomonas aeruginosa" 2 "Colistin" "Table 2B-1" 2 8 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Colistin" "Generic rules" "10μg" 11 10 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Colistin" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Cefpodoxime" "Table 2E" "10μg" 21 6 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Colistin" "Generic rules" "10ug" 11 10 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Colistin" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Cefpodoxime" "Table 2E" "10ug" 21 6 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Cefpodoxime" "Table 2E" 2 2048 FALSE -"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" "10μg" 29 6 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" "10ug" 29 6 FALSE "CLSI 2013" "MIC" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" 0.5 2048 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" "Table 2G" 0.5 2 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10μg" 21 17 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Cefprozil" "Table 2E" "30μg" 18 14 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 21 17 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Cefprozil" "Table 2E" "30ug" 18 14 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Cefprozil" "Table 2E" 8 32 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Cefprozil" "Table 2G" 2 8 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Cefprozil" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Cefprozil" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2013" "DISK" "Haemophilus influenzae" 2 "Ceftaroline" "Table 2E" "30μg" 30 6 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Cefprozil" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Cefprozil" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2013" "DISK" "Haemophilus influenzae" 2 "Ceftaroline" "Table 2E" "30ug" 30 6 FALSE "CLSI 2013" "MIC" "Haemophilus influenzae" 2 "Ceftaroline" "Table 2E" 0.5 2048 FALSE -"CLSI 2013" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Table 2C" "30μg" 24 20 FALSE +"CLSI 2013" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Table 2C" "30ug" 24 20 FALSE "CLSI 2013" "MIC" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Table 2C" 1 4 FALSE -"CLSI 2013" "DISK" "Streptococcus" 3 "Ceftaroline" "Table 2H-1" "30μg" 26 6 FALSE +"CLSI 2013" "DISK" "Streptococcus" 3 "Ceftaroline" "Table 2H-1" "30ug" 26 6 FALSE "CLSI 2013" "MIC" "Streptococcus" 3 "Ceftaroline" "Table 2H-1" 0.5 2048 FALSE "CLSI 2013" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Ceftaroline" "Table 2G" 0.5 2048 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30μg" 0.5 2 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Ceftaroline" "Generic rules" "30ug" 0.5 2 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Carbenicillin" "Table 2B-5" 16 64 FALSE -"CLSI 2013" "DISK" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" "30μg" 21 13 FALSE +"CLSI 2013" "DISK" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" "30ug" 21 13 FALSE "CLSI 2013" "MIC" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" 8 64 FALSE -"CLSI 2013" "DISK" "Aeromonas" 3 "Ceftriaxone" "M45 Table 2" "30μg" 23 19 FALSE +"CLSI 2013" "DISK" "Aeromonas" 3 "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE "CLSI 2013" "MIC" "Aeromonas" 3 "Ceftriaxone" "M45 Table 2" 1 4 FALSE "CLSI 2013" "MIC" "Aggregatibacter" 3 "Ceftriaxone" "M45 Table 7" 2 2048 FALSE "CLSI 2013" "MIC" "Bacillus" 3 "Ceftriaxone" "M45 Table 3" 8 64 FALSE @@ -17265,37 +17265,37 @@ "CLSI 2013" "MIC" "Erysipelothrix rhusiopathiae" 2 "Ceftriaxone" "M45 Table 6" 1 2048 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Ceftriaxone" "Table 2B-5" 8 64 FALSE "CLSI 2013" "MIC" "Granulicatella" 3 "Ceftriaxone" "M45 Table 1" 1 4 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Ceftriaxone" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Ceftriaxone" "Table 2E" "30ug" 26 6 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Ceftriaxone" "Table 2E" 2 2048 FALSE "CLSI 2013" "MIC" "Kingella" 3 "Ceftriaxone" "M45 Table 7" 2 2048 FALSE "CLSI 2013" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" "M45 Table 12" 2 2048 FALSE -"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" "30μg" 35 6 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" "30ug" 35 6 FALSE "CLSI 2013" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" 0.25 2048 FALSE -"CLSI 2013" "DISK" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" "30μg" 34 6 FALSE +"CLSI 2013" "DISK" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" "30ug" 34 6 FALSE "CLSI 2013" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" 0.125 2048 FALSE -"CLSI 2013" "DISK" "Plesiomonas" 3 "Ceftriaxone" "M45 Table 2" "30μg" 23 19 FALSE +"CLSI 2013" "DISK" "Plesiomonas" 3 "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE "CLSI 2013" "MIC" "Plesiomonas" 3 "Ceftriaxone" "M45 Table 2" 1 4 FALSE -"CLSI 2013" "DISK" "Pasteurella" 3 "Ceftriaxone" "M45 Table 13" "30μg" 34 6 FALSE +"CLSI 2013" "DISK" "Pasteurella" 3 "Ceftriaxone" "M45 Table 13" "30ug" 34 6 FALSE "CLSI 2013" "MIC" "Pasteurella" 3 "Ceftriaxone" "M45 Table 13" 0.125 2048 FALSE -"CLSI 2013" "DISK" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2013" "DISK" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2013" "MIC" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" 0.5 2048 FALSE "CLSI 2013" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Table 2G" 0.5 2 FALSE "CLSI 2013" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Table 2G" 1 4 FALSE -"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" "30μg" 27 24 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" "30ug" 27 24 FALSE "CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" 1 4 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30μg" 1 4 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Ceftibuten" "Table 2E" "30μg" 28 6 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 1 4 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Ceftibuten" "Table 2E" "30ug" 28 6 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Ceftibuten" "Table 2E" 2 2048 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" "30μg" 26 19 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" "30ug" 26 19 FALSE "CLSI 2013" "MIC" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" 2 8 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Cefotetan" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Cefotetan" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2013" "DISK" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" "30μg" 23 14 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Cefotetan" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Cefotetan" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2013" "DISK" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" "30ug" 23 14 FALSE "CLSI 2013" "MIC" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" 8 64 FALSE -"CLSI 2013" "DISK" "Aeromonas" 3 "Cefotaxime" "M45 Table 2" "30μg" 26 22 FALSE +"CLSI 2013" "DISK" "Aeromonas" 3 "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE "CLSI 2013" "MIC" "Aeromonas" 3 "Cefotaxime" "M45 Table 2" 1 4 FALSE "CLSI 2013" "MIC" "Aggregatibacter" 3 "Cefotaxime" "M45 Table 7" 2 2048 FALSE "CLSI 2013" "MIC" "Bacillus" 3 "Cefotaxime" "M45 Table 3" 8 64 FALSE @@ -17304,239 +17304,239 @@ "CLSI 2013" "MIC" "Erysipelothrix rhusiopathiae" 2 "Cefotaxime" "M45 Table 6" 1 2048 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Cefotaxime" "Table 2B-5" 8 64 FALSE "CLSI 2013" "MIC" "Granulicatella" 3 "Cefotaxime" "M45 Table 1" 1 4 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Cefotaxime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Cefotaxime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Cefotaxime" "Table 2E" 2 2048 FALSE "CLSI 2013" "MIC" "Kingella" 3 "Cefotaxime" "M45 Table 7" 2 2048 FALSE "CLSI 2013" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" "M45 Table 12" 2 2048 FALSE -"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" "30μg" 31 6 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" "30ug" 31 6 FALSE "CLSI 2013" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" 0.5 2048 FALSE -"CLSI 2013" "DISK" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" "30μg" 34 6 FALSE +"CLSI 2013" "DISK" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" "30ug" 34 6 FALSE "CLSI 2013" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" 0.125 2048 FALSE -"CLSI 2013" "DISK" "Plesiomonas" 3 "Cefotaxime" "M45 Table 2" "30μg" 26 22 FALSE +"CLSI 2013" "DISK" "Plesiomonas" 3 "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE "CLSI 2013" "MIC" "Plesiomonas" 3 "Cefotaxime" "M45 Table 2" 1 4 FALSE -"CLSI 2013" "DISK" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2013" "DISK" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2013" "MIC" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" 0.5 2048 FALSE "CLSI 2013" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Cefotaxime" "Table 2G" 0.5 2 FALSE "CLSI 2013" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Cefotaxime" "Table 2G" 1 4 FALSE -"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" "30μg" 28 25 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" "30ug" 28 25 FALSE "CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" 1 4 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30μg" 26 22 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30μg" 1 4 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30ug" 26 22 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30ug" 1 4 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" "30ug" 20 16 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" 4 16 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Cefuroxime axetil" "Table 2G" 1 4 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30μg" 23 14 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30μg" 4 32 FALSE -"CLSI 2013" "DISK" "Aeromonas" 3 "Cefuroxime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 23 14 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 4 32 FALSE +"CLSI 2013" "DISK" "Aeromonas" 3 "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2013" "MIC" "Aeromonas" 3 "Cefuroxime" "M45 Table 2" 8 32 FALSE -"CLSI 2013" "DISK" "Oral" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30μg" 20 16 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2013" "DISK" "Oral" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE "CLSI 2013" "MIC" "Oral" "Haemophilus" 3 "Cefuroxime" "Table 2E" 4 16 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Cefuroxime" "Table 2E" 4 16 FALSE "CLSI 2013" "MIC" "Moraxella catarrhalis" 2 "Cefuroxime" "M45 Table 12" 4 16 FALSE -"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Cefuroxime" "Table 2F" "30μg" 31 25 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Cefuroxime" "Table 2F" "30ug" 31 25 FALSE "CLSI 2013" "MIC" "Neisseria gonorrhoeae" 2 "Cefuroxime" "Table 2F" 1 4 FALSE -"CLSI 2013" "DISK" "Plesiomonas" 3 "Cefuroxime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2013" "DISK" "Plesiomonas" 3 "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2013" "MIC" "Plesiomonas" 3 "Cefuroxime" "M45 Table 2" 8 32 FALSE "CLSI 2013" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Table 2G" 1 4 FALSE "CLSI 2013" "MIC" "Parenteral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Table 2G" 0.5 2 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30μg" 8 32 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 8 32 FALSE "CLSI 2013" "MIC" "Aeromonas" 3 "Cefazolin" "M45 Table 2" 1 4 FALSE "CLSI 2013" "MIC" "Bacillus" 3 "Cefazolin" "M45 Table 3" 8 16 FALSE "CLSI 2013" "MIC" "Plesiomonas" 3 "Cefazolin" "M45 Table 2" 1 4 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Cefazolin" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Cefazolin" "Generic rules" "30μg" 2 8 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Cefazolin" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Cefazolin" "Generic rules" "30ug" 2 8 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Ceftizoxime" "Table 2B-5" 8 64 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Ceftizoxime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Ceftizoxime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Ceftizoxime" "Table 2E" 2 2048 FALSE -"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" "30μg" 38 6 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" "30ug" 38 6 FALSE "CLSI 2013" "MIC" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" 0.5 2048 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30μg" 25 21 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30μg" 1 4 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30ug" 25 21 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30ug" 1 4 FALSE "CLSI 2013" "MIC" "Enterococcus" 3 "Daptomycin" "Table 2D" 4 2048 FALSE "CLSI 2013" "MIC" "Lactobacillus" 3 "Daptomycin" "M45 Table 9" 4 2048 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Daptomycin" "Table 2C" 1 2048 FALSE -"CLSI 2013" "DISK" "Streptococcus" 3 "Daptomycin" "Table 2H-1" "30μg" 16 6 FALSE +"CLSI 2013" "DISK" "Streptococcus" 3 "Daptomycin" "Table 2H-1" "30ug" 16 6 FALSE "CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Daptomycin" "Table 2H-2" 1 2048 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Daptomycin" "Generic rules" "30μg" 1 2048 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Difloxacin" "Generic rules" "10μg" 21 17 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Difloxacin" "Generic rules" "10μg" 0.5 4 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Dirithromycin" "Table 2C" "15μg" 19 15 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Daptomycin" "Generic rules" "30ug" 1 2048 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Difloxacin" "Generic rules" "10ug" 21 17 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Difloxacin" "Generic rules" "10ug" 0.5 4 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Dirithromycin" "Table 2C" "15ug" 19 15 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Dirithromycin" "Table 2C" 2 8 FALSE -"CLSI 2013" "DISK" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" "15μg" 18 13 FALSE +"CLSI 2013" "DISK" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" "15ug" 18 13 FALSE "CLSI 2013" "MIC" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" "15μg" 18 13 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" "15ug" 18 13 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" 0.5 2 FALSE -"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" "15μg" 18 13 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" "15ug" 18 13 FALSE "CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" 0.5 2 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15μg" 19 15 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15μg" 2 8 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Doripenem" "Table 2E" "10μg" 16 6 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15ug" 19 15 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15ug" 2 8 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Doripenem" "Table 2E" "10ug" 16 6 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Doripenem" "Table 2E" 1 2048 FALSE -"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2013" "MIC" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" 2 8 FALSE "CLSI 2013" "MIC" "Streptococcus" 3 "Doripenem" "Table 2H-1" 0.125 2048 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" "Table 2G" 1 2048 FALSE "CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" "Table 2H-2" 1 2048 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Doripenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Doripenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2013" "DISK" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" "30μg" 13 9 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Doripenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Doripenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2013" "DISK" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" "30ug" 13 9 FALSE "CLSI 2013" "MIC" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" 4 16 FALSE "CLSI 2013" "MIC" "Bacillus anthracis" 2 "Doxycycline" "M45 Table 16" 1 2048 FALSE "CLSI 2013" "MIC" "Brucella" 3 "Doxycycline" "M45 Table 16" 1 2048 FALSE "CLSI 2013" "MIC" "Burkholderia mallei" 2 "Doxycycline" "M45 Table 16" 4 16 FALSE "CLSI 2013" "MIC" "Burkholderia pseudomallei" 2 "Doxycycline" "M45 Table 16" 4 16 FALSE "CLSI 2013" "MIC" "Campylobacter" 3 "Doxycycline" "M45 Table 3" 2 8 FALSE -"CLSI 2013" "DISK" "Enterococcus" 3 "Doxycycline" "Table 2D" "30μg" 16 12 FALSE +"CLSI 2013" "DISK" "Enterococcus" 3 "Doxycycline" "Table 2D" "30ug" 16 12 FALSE "CLSI 2013" "MIC" "Enterococcus" 3 "Doxycycline" "Table 2D" 4 16 FALSE "CLSI 2013" "MIC" "Francisella tularensis tularensis" 1 "Doxycycline" "M45 Table 16" 4 2048 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Doxycycline" "Table 2B-5" 4 16 FALSE -"CLSI 2013" "DISK" "Pasteurella" 3 "Doxycycline" "M45 Table 13" "30μg" 23 6 FALSE +"CLSI 2013" "DISK" "Pasteurella" 3 "Doxycycline" "M45 Table 13" "30ug" 23 6 FALSE "CLSI 2013" "MIC" "Pasteurella" 3 "Doxycycline" "M45 Table 13" 0.5 2048 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Doxycycline" "Table 2C" "30μg" 16 12 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Doxycycline" "Table 2C" "30ug" 16 12 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Doxycycline" "Table 2C" 4 16 FALSE -"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Doxycycline" "Table 2G" "30μg" 28 24 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Doxycycline" "Table 2G" "30ug" 28 24 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" "Table 2G" 0.25 1 FALSE -"CLSI 2013" "MIC" "Vibrio cholerae" 2 "Doxycycline" "M45 Table 14" "30μg" 4 16 FALSE +"CLSI 2013" "MIC" "Vibrio cholerae" 2 "Doxycycline" "M45 Table 14" "30ug" 4 16 FALSE "CLSI 2013" "MIC" "Yersinia pestis" 2 "Doxycycline" "M45 Table 16" 4 16 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Doxycycline" "Generic rules" "30μg" 14 10 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Doxycycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2013" "DISK" "Histophilus somni" 2 "Enrofloxacin" "Vet Table" "5μg" 21 16 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Doxycycline" "Generic rules" "30ug" 14 10 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Doxycycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2013" "DISK" "Histophilus somni" 2 "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE "CLSI 2013" "MIC" "Histophilus somni" 2 "Enrofloxacin" "Vet Table" 0.25 2 FALSE -"CLSI 2013" "DISK" "Providencia heimbachae" 2 "Enrofloxacin" "Vet Table" "5μg" 21 16 FALSE -"CLSI 2013" "DISK" "Pasteurella multocida multocida" 1 "Enrofloxacin" "Vet Table" "5μg" 21 16 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5μg" 23 16 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5μg" 0.25 2 FALSE -"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Enoxacin" "Table 2F" "10μg" 36 31 FALSE +"CLSI 2013" "DISK" "Providencia heimbachae" 2 "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2013" "DISK" "Pasteurella multocida multocida" 1 "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5ug" 23 16 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5ug" 0.25 2 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Enoxacin" "Table 2F" "10ug" 36 31 FALSE "CLSI 2013" "MIC" "Neisseria gonorrhoeae" 2 "Enoxacin" "Table 2F" 0.5 2 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Enoxacin" "Table 2C" "10μg" 18 14 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Enoxacin" "Table 2C" "10ug" 18 14 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Enoxacin" "Table 2C" 2 8 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Enoxacin" "Generic rules" "10μg" 18 14 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Enoxacin" "Generic rules" "10μg" 2 8 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Enoxacin" "Generic rules" "10ug" 18 14 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Enoxacin" "Generic rules" "10ug" 2 8 FALSE "CLSI 2013" "MIC" "Bacillus" 3 "Erythromycin" "M45 Table 3" 0.5 8 FALSE "CLSI 2013" "MIC" "Campylobacter" 3 "Erythromycin" "M45 Table 3" 8 32 FALSE -"CLSI 2013" "DISK" "Enterococcus" 3 "Erythromycin" "Table 2D" "15μg" 23 13 FALSE +"CLSI 2013" "DISK" "Enterococcus" 3 "Erythromycin" "Table 2D" "15ug" 23 13 FALSE "CLSI 2013" "MIC" "Enterococcus" 3 "Erythromycin" "Table 2D" 0.5 8 FALSE "CLSI 2013" "MIC" "Erysipelothrix rhusiopathiae" 2 "Erythromycin" "M45 Table 6" 0.25 1 FALSE "CLSI 2013" "MIC" "Granulicatella" 3 "Erythromycin" "M45 Table 1" 0.25 1 FALSE "CLSI 2013" "MIC" "Lactobacillus" 3 "Erythromycin" "M45 Table 9" 0.5 8 FALSE -"CLSI 2013" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 12" "15μg" 21 6 FALSE +"CLSI 2013" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 12" "15ug" 21 6 FALSE "CLSI 2013" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 12" 2 2048 FALSE -"CLSI 2013" "DISK" "Pasteurella" 3 "Erythromycin" "M45 Table 13" "15μg" 27 24 FALSE +"CLSI 2013" "DISK" "Pasteurella" 3 "Erythromycin" "M45 Table 13" "15ug" 27 24 FALSE "CLSI 2013" "MIC" "Pasteurella" 3 "Erythromycin" "M45 Table 13" 0.5 2 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Erythromycin" "Table 2C" "15μg" 23 13 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Erythromycin" "Table 2C" "15ug" 23 13 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Erythromycin" "Table 2C" 0.5 8 FALSE -"CLSI 2013" "DISK" "Streptococcus" 3 "Erythromycin" "Table 2H-1" "15μg" 21 15 FALSE +"CLSI 2013" "DISK" "Streptococcus" 3 "Erythromycin" "Table 2H-1" "15ug" 21 15 FALSE "CLSI 2013" "MIC" "Streptococcus" 3 "Erythromycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" "15μg" 21 15 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" "15ug" 21 15 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" 0.25 1 FALSE -"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" "15μg" 21 15 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" "15ug" 21 15 FALSE "CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Erythromycin" "Generic rules" "15μg" 23 13 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Erythromycin" "Generic rules" "15μg" 0.5 8 FALSE -"CLSI 2013" "DISK" "Aeromonas" 3 "Ertapenem" "M45 Table 2" "10μg" 19 15 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Erythromycin" "Generic rules" "15ug" 23 13 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Erythromycin" "Generic rules" "15ug" 0.5 8 FALSE +"CLSI 2013" "DISK" "Aeromonas" 3 "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE "CLSI 2013" "MIC" "Aeromonas" 3 "Ertapenem" "M45 Table 2" 2 8 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Ertapenem" "Table 2E" "10μg" 19 6 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Ertapenem" "Table 2E" "10ug" 19 6 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Ertapenem" "Table 2E" 0.5 2048 FALSE -"CLSI 2013" "DISK" "Plesiomonas" 3 "Ertapenem" "M45 Table 2" "10μg" 19 15 FALSE +"CLSI 2013" "DISK" "Plesiomonas" 3 "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE "CLSI 2013" "MIC" "Plesiomonas" 3 "Ertapenem" "M45 Table 2" 2 8 FALSE "CLSI 2013" "MIC" "Streptococcus" 3 "Ertapenem" "Table 2H-1" 1 2048 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" "Table 2G" 1 4 FALSE "CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "Table 2H-2" 1 2048 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Ertapenem" "Generic rules" "10μg" 22 18 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Ertapenem" "Generic rules" "10μg" 0.5 2 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "5-fluorocytosine" "Generic rules" "10μg" 4 32 FALSE -"CLSI 2013" "DISK" "Acinetobacter" 3 "Cefepime" "Table 2B-2" "30μg" 18 14 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 22 18 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 0.5 2 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "5-fluorocytosine" "Generic rules" "10ug" 4 32 FALSE +"CLSI 2013" "DISK" "Acinetobacter" 3 "Cefepime" "Table 2B-2" "30ug" 18 14 FALSE "CLSI 2013" "MIC" "Acinetobacter" 3 "Cefepime" "Table 2B-2" 8 32 FALSE -"CLSI 2013" "DISK" "Aeromonas" 3 "Cefepime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2013" "DISK" "Aeromonas" 3 "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2013" "MIC" "Aeromonas" 3 "Cefepime" "M45 Table 2" 8 32 FALSE "CLSI 2013" "MIC" "Erysipelothrix rhusiopathiae" 2 "Cefepime" "M45 Table 6" 1 2048 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Cefepime" "Table 2B-5" 8 32 FALSE "CLSI 2013" "MIC" "Granulicatella" 3 "Cefepime" "M45 Table 1" 1 4 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Cefepime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Cefepime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Cefepime" "Table 2E" 2 2048 FALSE -"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" "30μg" 31 6 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" "30ug" 31 6 FALSE "CLSI 2013" "MIC" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" 0.5 2048 FALSE -"CLSI 2013" "DISK" "Plesiomonas" 3 "Cefepime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2013" "DISK" "Plesiomonas" 3 "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2013" "MIC" "Plesiomonas" 3 "Cefepime" "M45 Table 2" 8 32 FALSE -"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" "30μg" 18 14 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" "30ug" 18 14 FALSE "CLSI 2013" "MIC" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" 8 32 FALSE -"CLSI 2013" "DISK" "Streptococcus" 3 "Cefepime" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2013" "DISK" "Streptococcus" 3 "Cefepime" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2013" "MIC" "Streptococcus" 3 "Cefepime" "Table 2H-1" 0.5 2048 FALSE "CLSI 2013" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Cefepime" "Table 2G" 0.5 2 FALSE "CLSI 2013" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Cefepime" "Table 2G" 1 4 FALSE -"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" "30μg" 24 21 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" "30ug" 24 21 FALSE "CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" 1 4 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Cefepime" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Cefepime" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Fleroxacin" "Table 2E" "5μg" 19 6 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Fleroxacin" "Table 2E" "5ug" 19 6 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Fleroxacin" "Table 2E" 2 2048 FALSE -"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Fleroxacin" "Table 2F" "5μg" 35 28 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Fleroxacin" "Table 2F" "5ug" 35 28 FALSE "CLSI 2013" "MIC" "Neisseria gonorrhoeae" 2 "Fleroxacin" "Table 2F" 0.25 1 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Fleroxacin" "Table 2C" "5μg" 19 15 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Fleroxacin" "Table 2C" "5ug" 19 15 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Fleroxacin" "Table 2C" 2 8 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Florfenicol" "Generic rules" "30μg" 19 14 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Florfenicol" "Generic rules" "30μg" 2 8 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Fluconazole" "Generic rules" "25μg" 19 14 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Fluconazole" "Generic rules" "25μg" 8 64 FALSE -"CLSI 2013" "DISK" "Enterococcus" 3 "Fosfomycin" "Table 2D" "200μg" 16 12 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Florfenicol" "Generic rules" "30ug" 19 14 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Florfenicol" "Generic rules" "30ug" 2 8 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Fluconazole" "Generic rules" "25ug" 19 14 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Fluconazole" "Generic rules" "25ug" 8 64 FALSE +"CLSI 2013" "DISK" "Enterococcus" 3 "Fosfomycin" "Table 2D" "200ug" 16 12 FALSE "CLSI 2013" "MIC" "Enterococcus" 3 "Fosfomycin" "Table 2D" 64 256 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200μg" 16 12 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200μg" 64 256 FALSE -"CLSI 2013" "DISK" "Aeromonas" 3 "Cefoxitin" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200ug" 16 12 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200ug" 64 256 FALSE +"CLSI 2013" "DISK" "Aeromonas" 3 "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2013" "MIC" "Aeromonas" 3 "Cefoxitin" "M45 Table 2" 8 32 FALSE -"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" "30μg" 28 23 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" "30ug" 28 23 FALSE "CLSI 2013" "MIC" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" 2 8 FALSE -"CLSI 2013" "DISK" "Plesiomonas" 3 "Cefoxitin" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2013" "DISK" "Plesiomonas" 3 "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2013" "MIC" "Plesiomonas" 3 "Cefoxitin" "M45 Table 2" 8 32 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Cefoxitin" "Table 2C" "30μg" 25 24 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Cefoxitin" "Table 2C" "30ug" 25 24 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2013" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" "30μg" 22 21 FALSE +"CLSI 2013" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE "CLSI 2013" "MIC" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2013" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" "30μg" 22 21 FALSE +"CLSI 2013" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE "CLSI 2013" "MIC" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30μg" 8 32 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30ug" 8 32 FALSE "CLSI 2013" "MIC" "Abiotrophia" 3 "Gatifloxacin" "M45 Table 1" 1 4 FALSE -"CLSI 2013" "DISK" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" "5μg" 18 14 FALSE +"CLSI 2013" "DISK" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" "5ug" 18 14 FALSE "CLSI 2013" "MIC" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" 2 8 FALSE -"CLSI 2013" "DISK" "Enterococcus" 3 "Gatifloxacin" "Table 2D" "5μg" 18 14 FALSE +"CLSI 2013" "DISK" "Enterococcus" 3 "Gatifloxacin" "Table 2D" "5ug" 18 14 FALSE "CLSI 2013" "MIC" "Enterococcus" 3 "Gatifloxacin" "Table 2D" 2 8 FALSE "CLSI 2013" "MIC" "Erysipelothrix rhusiopathiae" 2 "Gatifloxacin" "M45 Table 6" 1 2048 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Gatifloxacin" "Table 2B-5" 2 8 FALSE "CLSI 2013" "MIC" "Granulicatella" 3 "Gatifloxacin" "M45 Table 1" 1 4 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Gatifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Gatifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Gatifloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" "5μg" 38 33 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" "5ug" 38 33 FALSE "CLSI 2013" "MIC" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" 0.125 0.5 FALSE -"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" "5μg" 18 14 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" "5ug" 18 14 FALSE "CLSI 2013" "MIC" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" 2 8 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" "10μg" 23 19 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" "10ug" 23 19 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2013" "DISK" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" "5μg" 21 17 FALSE +"CLSI 2013" "DISK" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" "5ug" 21 17 FALSE "CLSI 2013" "MIC" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" 1 4 FALSE -"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" "5μg" 21 17 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" "5ug" 21 17 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" 1 4 FALSE -"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" "5μg" 21 17 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" "5ug" 21 17 FALSE "CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" 1 4 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5μg" 18 14 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2013" "DISK" "Enterococcus" 3 "Gentamicin-high" "Table 2D" "120μg" 10 6 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5ug" 18 14 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2013" "DISK" "Enterococcus" 3 "Gentamicin-high" "Table 2D" "120ug" 10 6 FALSE "CLSI 2013" "MIC" "Enterococcus" 3 "Gentamicin-high" "Table 2D" 512 560 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120μg" 10 6 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120μg" 512 560 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Gemifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120ug" 10 6 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120ug" 512 560 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Gemifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Gemifloxacin" "Table 2E" 0.125 2048 FALSE -"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" "5μg" 23 19 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" "5ug" 23 19 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" 0.125 0.5 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5μg" 20 15 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5μg" 0.25 1 FALSE -"CLSI 2013" "DISK" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" "10μg" 15 12 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5ug" 20 15 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5ug" 0.25 1 FALSE +"CLSI 2013" "DISK" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" "10ug" 15 12 FALSE "CLSI 2013" "MIC" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" 4 16 FALSE -"CLSI 2013" "DISK" "Aeromonas" 3 "Gentamicin" "M45 Table 2" "10μg" 15 12 FALSE +"CLSI 2013" "DISK" "Aeromonas" 3 "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE "CLSI 2013" "MIC" "Aeromonas" 3 "Gentamicin" "M45 Table 2" 4 16 FALSE "CLSI 2013" "MIC" "Bacillus" 3 "Gentamicin" "M45 Table 3" 4 16 FALSE "CLSI 2013" "MIC" "Brucella" 3 "Gentamicin" "M45 Table 16" 4 2048 FALSE @@ -17546,33 +17546,33 @@ "CLSI 2013" "MIC" "Leuconostoc" 3 "Gentamicin" "M45 Table 10" 4 16 FALSE "CLSI 2013" "MIC" "Lactobacillus" 3 "Gentamicin" "M45 Table 9" 4 16 FALSE "CLSI 2013" "MIC" "Pediococcus" 3 "Gentamicin" "M45 Table 14" 4 16 FALSE -"CLSI 2013" "DISK" "Plesiomonas" 3 "Gentamicin" "M45 Table 2" "10μg" 15 12 FALSE +"CLSI 2013" "DISK" "Plesiomonas" 3 "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE "CLSI 2013" "MIC" "Plesiomonas" 3 "Gentamicin" "M45 Table 2" 4 16 FALSE -"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" "10μg" 15 12 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" "10ug" 15 12 FALSE "CLSI 2013" "MIC" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" 4 16 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Gentamicin" "Table 2C" "10μg" 15 12 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Gentamicin" "Table 2C" "10ug" 15 12 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Gentamicin" "Table 2C" 4 16 FALSE "CLSI 2013" "MIC" "Yersinia pestis" 2 "Gentamicin" "M45 Table 16" 4 16 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Gentamicin" "Generic rules" "10μg" 15 12 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Gentamicin" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Grepafloxacin" "Table 2E" "5μg" 24 6 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 15 12 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Grepafloxacin" "Table 2E" "5ug" 24 6 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Grepafloxacin" "Table 2E" 0.5 2048 FALSE -"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" "5μg" 37 27 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" "5ug" 37 27 FALSE "CLSI 2013" "MIC" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" 0.064 1 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" "5μg" 18 14 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" "5ug" 18 14 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" 1 4 FALSE -"CLSI 2013" "DISK" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" "5μg" 19 15 FALSE +"CLSI 2013" "DISK" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" "5ug" 19 15 FALSE "CLSI 2013" "MIC" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" "5μg" 19 15 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" "5ug" 19 15 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" 0.5 2 FALSE -"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" "5μg" 19 15 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" "5ug" 19 15 FALSE "CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" 0.5 2 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5μg" 18 14 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5μg" 1 4 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5ug" 18 14 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5ug" 1 4 FALSE "CLSI 2013" "MIC" "Abiotrophia" 3 "Imipenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2013" "DISK" "Acinetobacter" 3 "Imipenem" "Table 2B-2" "10μg" 16 13 FALSE +"CLSI 2013" "DISK" "Acinetobacter" 3 "Imipenem" "Table 2B-2" "10ug" 16 13 FALSE "CLSI 2013" "MIC" "Acinetobacter" 3 "Imipenem" "Table 2B-2" 4 16 FALSE -"CLSI 2013" "DISK" "Aeromonas" 3 "Imipenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2013" "DISK" "Aeromonas" 3 "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2013" "MIC" "Aeromonas" 3 "Imipenem" "M45 Table 2" 4 16 FALSE "CLSI 2013" "MIC" "Aggregatibacter" 3 "Imipenem" "M45 Table 7" 4 16 FALSE "CLSI 2013" "MIC" "Bacillus" 3 "Imipenem" "M45 Table 3" 4 16 FALSE @@ -17583,56 +17583,56 @@ "CLSI 2013" "MIC" "Erysipelothrix rhusiopathiae" 2 "Imipenem" "M45 Table 6" 0.5 2048 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Imipenem" "Table 2B-5" 4 16 FALSE "CLSI 2013" "MIC" "Granulicatella" 3 "Imipenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Imipenem" "Table 2E" "10μg" 16 6 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Imipenem" "Table 2E" "10ug" 16 6 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Imipenem" "Table 2E" 4 2048 FALSE "CLSI 2013" "MIC" "Kingella" 3 "Imipenem" "M45 Table 7" 0.5 2 FALSE "CLSI 2013" "MIC" "Lactobacillus" 3 "Imipenem" "M45 Table 9" 0.5 2 FALSE "CLSI 2013" "MIC" "Pediococcus" 3 "Imipenem" "M45 Table 14" 0.5 2048 FALSE -"CLSI 2013" "DISK" "Plesiomonas" 3 "Imipenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2013" "DISK" "Plesiomonas" 3 "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2013" "MIC" "Plesiomonas" 3 "Imipenem" "M45 Table 2" 4 16 FALSE -"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2013" "MIC" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" 2 8 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" "Table 2G" 0.125 1 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Imipenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Imipenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Kanamycin" "Generic rules" "30μg" 18 13 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Kanamycin" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2013" "DISK" "Enterococcus" 3 "Linezolid" "Table 2D" "30μg" 23 20 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Kanamycin" "Generic rules" "30ug" 18 13 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Kanamycin" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2013" "DISK" "Enterococcus" 3 "Linezolid" "Table 2D" "30ug" 23 20 FALSE "CLSI 2013" "MIC" "Enterococcus" 3 "Linezolid" "Table 2D" 2 8 FALSE "CLSI 2013" "MIC" "Lactobacillus" 3 "Linezolid" "M45 Table 9" 4 2048 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Linezolid" "Table 2C" "30μg" 21 20 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Linezolid" "Table 2C" "30ug" 21 20 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Linezolid" "Table 2C" 4 8 FALSE -"CLSI 2013" "DISK" "Streptococcus" 3 "Linezolid" "Table 2H-1" "30μg" 21 6 FALSE +"CLSI 2013" "DISK" "Streptococcus" 3 "Linezolid" "Table 2H-1" "30ug" 21 6 FALSE "CLSI 2013" "MIC" "Streptococcus" 3 "Linezolid" "Table 2H-1" 2 2048 FALSE -"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" "30μg" 21 6 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" "30ug" 21 6 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" 2 2048 FALSE -"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" "30μg" 21 6 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" "30ug" 21 6 FALSE "CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" 2 2048 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Linezolid" "Generic rules" "30μg" 21 20 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Linezolid" "Generic rules" "30μg" 4 8 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Linezolid" "Generic rules" "30ug" 21 20 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Linezolid" "Generic rules" "30ug" 4 8 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Lomefloxacin" "Table 2B-5" 2 8 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Lomefloxacin" "Table 2E" "10μg" 22 6 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Lomefloxacin" "Table 2E" "10ug" 22 6 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Lomefloxacin" "Table 2E" 2 2048 FALSE -"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Lomefloxacin" "Table 2F" "10μg" 38 26 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Lomefloxacin" "Table 2F" "10ug" 38 26 FALSE "CLSI 2013" "MIC" "Neisseria gonorrhoeae" 2 "Lomefloxacin" "Table 2F" 0.125 2 FALSE -"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" "10μg" 22 18 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" "10ug" 22 18 FALSE "CLSI 2013" "MIC" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" 2 8 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" "10μg" 22 18 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" "10ug" 22 18 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" 2 8 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10μg" 22 18 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Loracarbef" "Table 2E" "30μg" 19 15 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10ug" 22 18 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Loracarbef" "Table 2E" "30ug" 19 15 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Loracarbef" "Table 2E" 8 32 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Loracarbef" "Table 2G" 2 8 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Loracarbef" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Loracarbef" "Generic rules" "30μg" 8 32 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Loracarbef" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Loracarbef" "Generic rules" "30ug" 8 32 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Latamoxef" "Table 2B-5" 8 64 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Latamoxef" "Generic rules" "30μg" 23 14 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Latamoxef" "Generic rules" "30μg" 8 64 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Latamoxef" "Generic rules" "30ug" 23 14 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Latamoxef" "Generic rules" "30ug" 8 64 FALSE "CLSI 2013" "MIC" "Abiotrophia" 3 "Levofloxacin" "M45 Table 1" 2 8 FALSE -"CLSI 2013" "DISK" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" "5μg" 17 13 FALSE +"CLSI 2013" "DISK" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" "5ug" 17 13 FALSE "CLSI 2013" "MIC" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" 2 8 FALSE -"CLSI 2013" "DISK" "Aeromonas" 3 "Levofloxacin" "M45 Table 2" "5μg" 17 13 FALSE +"CLSI 2013" "DISK" "Aeromonas" 3 "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE "CLSI 2013" "MIC" "Aeromonas" 3 "Levofloxacin" "M45 Table 2" 2 8 FALSE "CLSI 2013" "MIC" "Aggregatibacter" 3 "Levofloxacin" "M45 Table 7" 2 8 FALSE "CLSI 2013" "MIC" "Bacillus" 3 "Levofloxacin" "M45 Table 3" 2 8 FALSE @@ -17640,154 +17640,154 @@ "CLSI 2013" "MIC" "Burkholderia cepacia" 2 "Levofloxacin" "Table 2B-3" 2 8 FALSE "CLSI 2013" "MIC" "Cardiobacterium" 3 "Levofloxacin" "M45 Table 7" 2 8 FALSE "CLSI 2013" "MIC" "Eikenella" 3 "Levofloxacin" "M45 Table 7" 2 8 FALSE -"CLSI 2013" "DISK" "Enterococcus" 3 "Levofloxacin" "Table 2D" "5μg" 17 13 FALSE +"CLSI 2013" "DISK" "Enterococcus" 3 "Levofloxacin" "Table 2D" "5ug" 17 13 FALSE "CLSI 2013" "MIC" "Enterococcus" 3 "Levofloxacin" "Table 2D" 2 8 FALSE "CLSI 2013" "MIC" "Erysipelothrix rhusiopathiae" 2 "Levofloxacin" "M45 Table 6" 2 2048 FALSE "CLSI 2013" "MIC" "Francisella tularensis tularensis" 1 "Levofloxacin" "M45 Table 16" 0.5 2048 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Levofloxacin" "Table 2B-5" 2 8 FALSE "CLSI 2013" "MIC" "Granulicatella" 3 "Levofloxacin" "M45 Table 1" 2 8 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Levofloxacin" "Table 2E" "5μg" 17 6 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Levofloxacin" "Table 2E" "5ug" 17 6 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Levofloxacin" "Table 2E" 2 2048 FALSE "CLSI 2013" "MIC" "Kingella" 3 "Levofloxacin" "M45 Table 7" 2 8 FALSE "CLSI 2013" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" "M45 Table 12" 2 2048 FALSE "CLSI 2013" "MIC" "Neisseria meningitidis" 2 "Levofloxacin" "Table 2I" 0.032 0.12 FALSE -"CLSI 2013" "DISK" "Plesiomonas" 3 "Levofloxacin" "M45 Table 2" "5μg" 17 13 FALSE +"CLSI 2013" "DISK" "Plesiomonas" 3 "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE "CLSI 2013" "MIC" "Plesiomonas" 3 "Levofloxacin" "M45 Table 2" 2 8 FALSE -"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" "5μg" 17 13 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" "5ug" 17 13 FALSE "CLSI 2013" "MIC" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" 2 8 FALSE -"CLSI 2013" "DISK" "Pasteurella" 3 "Levofloxacin" "M45 Table 13" "5μg" 28 6 FALSE +"CLSI 2013" "DISK" "Pasteurella" 3 "Levofloxacin" "M45 Table 13" "5ug" 28 6 FALSE "CLSI 2013" "MIC" "Pasteurella" 3 "Levofloxacin" "M45 Table 13" 0.064 2048 FALSE "CLSI 2013" "MIC" "Salmonella" 3 "Levofloxacin" "Table 2A" 0.125 2 FALSE -"CLSI 2013" "DISK" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" "75μg" 17 13 FALSE +"CLSI 2013" "DISK" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" "75ug" 17 13 FALSE "CLSI 2013" "MIC" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" 2 8 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Levofloxacin" "Table 2C" "10μg" 19 15 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Levofloxacin" "Table 2C" "10ug" 19 15 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Levofloxacin" "Table 2C" 1 4 FALSE -"CLSI 2013" "DISK" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" "5μg" 17 13 FALSE +"CLSI 2013" "DISK" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" "5ug" 17 13 FALSE "CLSI 2013" "MIC" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" 2 8 FALSE -"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" "5μg" 17 13 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" "5ug" 17 13 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" 2 8 FALSE -"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" "5μg" 17 13 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" "5ug" 17 13 FALSE "CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" 2 8 FALSE "CLSI 2013" "MIC" "Yersinia pestis" 2 "Levofloxacin" "M45 Table 16" 0.25 2048 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5μg" 17 13 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5μg" 2 8 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 17 13 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 2 8 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Cefamandole" "Table 2E" 4 16 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Cefamandole" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Cefamandole" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Mecillinam" "Generic rules" "10μg" 15 11 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Mecillinam" "Generic rules" "10μg" 8 32 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Cefamandole" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Cefamandole" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 15 11 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 8 32 FALSE "CLSI 2013" "MIC" "Abiotrophia" 3 "Meropenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2013" "DISK" "Acinetobacter" 3 "Meropenem" "Table 2B-2" "10μg" 16 13 FALSE +"CLSI 2013" "DISK" "Acinetobacter" 3 "Meropenem" "Table 2B-2" "10ug" 16 13 FALSE "CLSI 2013" "MIC" "Acinetobacter" 3 "Meropenem" "Table 2B-2" 4 16 FALSE -"CLSI 2013" "DISK" "Aeromonas" 3 "Meropenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2013" "DISK" "Aeromonas" 3 "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2013" "MIC" "Aeromonas" 3 "Meropenem" "M45 Table 2" 4 16 FALSE "CLSI 2013" "MIC" "Aggregatibacter" 3 "Meropenem" "M45 Table 7" 4 16 FALSE -"CLSI 2013" "DISK" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" "10μg" 20 15 FALSE +"CLSI 2013" "DISK" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" "10ug" 20 15 FALSE "CLSI 2013" "MIC" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" 4 16 FALSE "CLSI 2013" "MIC" "Cardiobacterium" 3 "Meropenem" "M45 Table 7" 0.5 2 FALSE "CLSI 2013" "MIC" "Eikenella" 3 "Meropenem" "M45 Table 7" 0.5 2 FALSE "CLSI 2013" "MIC" "Erysipelothrix rhusiopathiae" 2 "Meropenem" "M45 Table 6" 0.5 2048 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Meropenem" "Table 2B-5" 4 16 FALSE "CLSI 2013" "MIC" "Granulicatella" 3 "Meropenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Meropenem" "Table 2E" "10μg" 20 6 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Meropenem" "Table 2E" "10ug" 20 6 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Meropenem" "Table 2E" 0.5 2048 FALSE "CLSI 2013" "MIC" "Kingella" 3 "Meropenem" "M45 Table 7" 0.5 2 FALSE -"CLSI 2013" "DISK" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" "10μg" 30 6 FALSE +"CLSI 2013" "DISK" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" "10ug" 30 6 FALSE "CLSI 2013" "MIC" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" 0.25 2048 FALSE -"CLSI 2013" "DISK" "Plesiomonas" 3 "Meropenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2013" "DISK" "Plesiomonas" 3 "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2013" "MIC" "Plesiomonas" 3 "Meropenem" "M45 Table 2" 4 16 FALSE -"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2013" "MIC" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" 2 8 FALSE "CLSI 2013" "MIC" "Streptococcus" 3 "Meropenem" "Table 2H-1" 0.5 2048 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Meropenem" "Table 2G" 0.25 1 FALSE "CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "Table 2H-2" 0.5 2048 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Meropenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Meropenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Methicillin" "Generic rules" "5μg" 14 9 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Methicillin" "Generic rules" "5μg" 8 16 FALSE -"CLSI 2013" "DISK" "Acinetobacter" 3 "Mezlocillin" "Table 2B-2" "75μg" 21 17 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Methicillin" "Generic rules" "5ug" 14 9 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Methicillin" "Generic rules" "5ug" 8 16 FALSE +"CLSI 2013" "DISK" "Acinetobacter" 3 "Mezlocillin" "Table 2B-2" "75ug" 21 17 FALSE "CLSI 2013" "MIC" "Acinetobacter" 3 "Mezlocillin" "Table 2B-2" 16 128 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Mezlocillin" "Table 2B-5" 16 128 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Moxifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Moxifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Moxifloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2013" "DISK" "Pasteurella" 3 "Moxifloxacin" "M45 Table 13" "5μg" 28 6 FALSE +"CLSI 2013" "DISK" "Pasteurella" 3 "Moxifloxacin" "M45 Table 13" "5ug" 28 6 FALSE "CLSI 2013" "MIC" "Pasteurella" 3 "Moxifloxacin" "M45 Table 13" 0.064 2048 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" "5μg" 24 20 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" "5ug" 24 20 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" "5μg" 18 14 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" "5ug" 18 14 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" 1 4 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5μg" 24 20 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5μg" 0.5 2 FALSE -"CLSI 2013" "DISK" "Acinetobacter" 3 "Minocycline" "Table 2B-2" "30μg" 16 12 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 24 20 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 0.5 2 FALSE +"CLSI 2013" "DISK" "Acinetobacter" 3 "Minocycline" "Table 2B-2" "30ug" 16 12 FALSE "CLSI 2013" "MIC" "Acinetobacter" 3 "Minocycline" "Table 2B-2" 4 16 FALSE -"CLSI 2013" "DISK" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" "30μg" 19 14 FALSE +"CLSI 2013" "DISK" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" "30ug" 19 14 FALSE "CLSI 2013" "MIC" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" 4 16 FALSE -"CLSI 2013" "DISK" "Enterococcus" 3 "Minocycline" "Table 2D" "30μg" 19 14 FALSE +"CLSI 2013" "DISK" "Enterococcus" 3 "Minocycline" "Table 2D" "30ug" 19 14 FALSE "CLSI 2013" "MIC" "Enterococcus" 3 "Minocycline" "Table 2D" 4 16 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Minocycline" "Table 2B-5" 4 16 FALSE "CLSI 2013" "MIC" "Leuconostoc" 3 "Minocycline" "M45 Table 10" 4 16 FALSE -"CLSI 2013" "DISK" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" "30μg" 26 6 FALSE +"CLSI 2013" "DISK" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" "30ug" 26 6 FALSE "CLSI 2013" "MIC" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" 2 2048 FALSE -"CLSI 2013" "DISK" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" "30μg" 19 14 FALSE +"CLSI 2013" "DISK" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" "30ug" 19 14 FALSE "CLSI 2013" "MIC" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" 4 16 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Minocycline" "Table 2C" "30μg" 19 14 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Minocycline" "Table 2C" "30ug" 19 14 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Minocycline" "Table 2C" 4 16 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Minocycline" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Minocycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Nafcillin" "Generic rules" "1μg" 13 10 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Nafcillin" "Generic rules" "1μg" 2 4 FALSE -"CLSI 2013" "DISK" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" "30μg" 26 25 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Minocycline" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Minocycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Nafcillin" "Generic rules" "1ug" 13 10 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Nafcillin" "Generic rules" "1ug" 2 4 FALSE +"CLSI 2013" "DISK" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" "30ug" 26 25 FALSE "CLSI 2013" "MIC" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" 4 8 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30μg" 19 13 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30μg" 16 32 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 19 13 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 16 32 FALSE "CLSI 2013" "MIC" "Acinetobacter" 3 "Netilmicin" "Table 2B-2" 8 32 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Netilmicin" "Table 2B-5" 8 32 FALSE -"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" "30μg" 15 12 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" "30ug" 15 12 FALSE "CLSI 2013" "MIC" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" 8 32 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Netilmicin" "Generic rules" "30μg" 15 12 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Netilmicin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2013" "DISK" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" "300μg" 17 14 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Netilmicin" "Generic rules" "30ug" 15 12 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Netilmicin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2013" "DISK" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" "300ug" 17 14 FALSE "CLSI 2013" "MIC" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" 32 128 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" "300μg" 17 14 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" "300ug" 17 14 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" 32 128 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "300μg" 17 14 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100μg" 32 128 FALSE -"CLSI 2013" "DISK" "Enterococcus" 3 "Norfloxacin" "Table 2D" "10μg" 17 12 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "300ug" 17 14 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100ug" 32 128 FALSE +"CLSI 2013" "DISK" "Enterococcus" 3 "Norfloxacin" "Table 2D" "10ug" 17 12 FALSE "CLSI 2013" "MIC" "Enterococcus" 3 "Norfloxacin" "Table 2D" 4 16 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Norfloxacin" "Table 2B-5" 4 16 FALSE -"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Norfloxacin" "Table 2B-1" "10μg" 17 12 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Norfloxacin" "Table 2B-1" "10ug" 17 12 FALSE "CLSI 2013" "MIC" "Pseudomonas aeruginosa" 2 "Norfloxacin" "Table 2B-1" 4 16 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Norfloxacin" "Table 2C" "10μg" 17 12 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Norfloxacin" "Table 2C" "10ug" 17 12 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Norfloxacin" "Table 2C" 4 16 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10μg" 17 12 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10μg" 4 16 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10ug" 17 12 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10ug" 4 16 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Ofloxacin" "Table 2B-5" 2 8 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Ofloxacin" "Table 2E" "5μg" 16 6 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Ofloxacin" "Table 2E" "5ug" 16 6 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Ofloxacin" "Table 2E" 2 2048 FALSE -"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Ofloxacin" "Table 2F" "5μg" 31 24 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Ofloxacin" "Table 2F" "5ug" 31 24 FALSE "CLSI 2013" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" "Table 2F" 0.25 2 FALSE -"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" "5μg" 16 12 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" "5ug" 16 12 FALSE "CLSI 2013" "MIC" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" 2 8 FALSE "CLSI 2013" "MIC" "Salmonella" 3 "Ofloxacin" "Table 2A" 0.125 2 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Ofloxacin" "Table 2C" "5μg" 18 14 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Ofloxacin" "Table 2C" "5ug" 18 14 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Ofloxacin" "Table 2C" 1 4 FALSE -"CLSI 2013" "DISK" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" "5μg" 16 12 FALSE +"CLSI 2013" "DISK" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" "5ug" 16 12 FALSE "CLSI 2013" "MIC" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" 2 8 FALSE -"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" "5μg" 16 12 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" "5ug" 16 12 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" 2 8 FALSE -"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" "5μg" 16 12 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" "5ug" 16 12 FALSE "CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" 2 8 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5μg" 16 12 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10μg" 23 17 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10μg" 1 8 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Oxacillin" "Table 2C" "1μg" 13 10 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 16 12 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10ug" 23 17 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10ug" 1 8 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Oxacillin" "Table 2C" "1ug" 13 10 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Oxacillin" "Table 2C" 2 4 FALSE -"CLSI 2013" "DISK" "Staphylococcus aureus aureus" 1 "Oxacillin" "Table 2C" "1μg" 13 10 FALSE +"CLSI 2013" "DISK" "Staphylococcus aureus aureus" 1 "Oxacillin" "Table 2C" "1ug" 13 10 FALSE "CLSI 2013" "MIC" "Staphylococcus aureus aureus" 1 "Oxacillin" "Table 2C" 2 4 FALSE "CLSI 2013" "MIC" "Staphylococcus lugdunensis" 2 "Oxacillin" "Table 2C" 2 4 FALSE -"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "Table 2G" "1μg" 20 6 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Oxacillin" "Generic rules" "1μg" 0.25 0.5 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "Table 2G" "1ug" 20 6 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Oxacillin" "Generic rules" "1ug" 0.25 0.5 FALSE "CLSI 2013" "MIC" "Abiotrophia" 3 "Benzylpenicillin" "M45 Table 1" 0.125 4 FALSE "CLSI 2013" "MIC" "Aggregatibacter" 3 "Benzylpenicillin" "M45 Table 7" 1 4 FALSE "CLSI 2013" "MIC" "Bacillus" 3 "Benzylpenicillin" "M45 Table 3" 0.125 0.25 FALSE @@ -17808,7 +17808,7 @@ "CLSI 2013" "MIC" "Pediococcus" 3 "Benzylpenicillin" "M45 Table 14" 8 2048 FALSE "CLSI 2013" "DISK" "Pasteurella" 3 "Benzylpenicillin" "M45 Table 13" "10 Units" 25 6 FALSE "CLSI 2013" "MIC" "Pasteurella" 3 "Benzylpenicillin" "M45 Table 13" 0.5 2048 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" "10μg" 29 28 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" "10ug" 29 28 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" 0.125 0.25 FALSE "CLSI 2013" "DISK" "Streptococcus" 3 "Benzylpenicillin" "Table 2H-1" "10units" 24 6 FALSE "CLSI 2013" "MIC" "Streptococcus" 3 "Benzylpenicillin" "Table 2H-1" 0.125 2048 FALSE @@ -17819,149 +17819,149 @@ "CLSI 2013" "DISK" "(unknown name)" 6 "Benzylpenicillin" "Generic rules" "10units" 29 28 FALSE "CLSI 2013" "MIC" "(unknown name)" 6 "Benzylpenicillin" "Generic rules" "10units" 0.125 0.25 FALSE "CLSI 2013" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Phenoxymethylpenicillin" "Table 2G" 0.064 2 FALSE -"CLSI 2013" "DISK" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" "100μg" 21 17 FALSE +"CLSI 2013" "DISK" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" "100ug" 21 17 FALSE "CLSI 2013" "MIC" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" 16 128 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Piperacillin" "Table 2B-5" 16 128 FALSE -"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" "100μg" 21 14 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" "100ug" 21 14 FALSE "CLSI 2013" "MIC" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" 16 128 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Piperacillin" "Generic rules" "100μg" 21 17 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Piperacillin" "Generic rules" "100μg" 16 128 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Piperacillin" "Generic rules" "100ug" 21 17 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Piperacillin" "Generic rules" "100ug" 16 128 FALSE "CLSI 2013" "MIC" "Acinetobacter" 3 "Polymyxin B" "Table 2B-2" 2 4 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Polymyxin B" "Table 2B-5" 2 8 FALSE -"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Polymyxin B" "Table 2B-1" "300μg" 12 11 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Polymyxin B" "Table 2B-1" "300ug" 12 11 FALSE "CLSI 2013" "MIC" "Pseudomonas aeruginosa" 2 "Polymyxin B" "Table 2B-1" 2 8 FALSE "CLSI 2013" "DISK" "(unknown name)" 6 "Polymyxin B" "Generic rules" "300units" 12 11 FALSE "CLSI 2013" "MIC" "(unknown name)" 6 "Polymyxin B" "Generic rules" "300units" 2 8 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30μg" 18 14 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30μg" 1 4 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2μg" 13 12 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2μg" 2 4 FALSE -"CLSI 2013" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" "15μg" 19 15 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30ug" 18 14 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30ug" 1 4 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2ug" 13 12 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2ug" 2 4 FALSE +"CLSI 2013" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" "15ug" 19 15 FALSE "CLSI 2013" "MIC" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" 1 4 FALSE -"CLSI 2013" "DISK" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" "15μg" 19 15 FALSE +"CLSI 2013" "DISK" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" "15ug" 19 15 FALSE "CLSI 2013" "MIC" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" 1 4 FALSE -"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" "15μg" 19 15 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" "15ug" 19 15 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" 1 4 FALSE -"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" "15μg" 19 15 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" "15ug" 19 15 FALSE "CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" 1 4 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15μg" 19 15 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15μg" 1 4 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15ug" 19 15 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15ug" 1 4 FALSE "CLSI 2013" "MIC" "Aggregatibacter" 3 "Rifampicin" "M45 Table 7" 1 4 FALSE "CLSI 2013" "MIC" "Bacillus" 3 "Rifampicin" "M45 Table 3" 1 4 FALSE "CLSI 2013" "MIC" "Cardiobacterium" 3 "Rifampicin" "M45 Table 7" 1 4 FALSE "CLSI 2013" "MIC" "Eikenella" 3 "Rifampicin" "M45 Table 7" 1 4 FALSE -"CLSI 2013" "DISK" "Enterococcus" 3 "Rifampicin" "Table 2D" "5μg" 20 16 FALSE +"CLSI 2013" "DISK" "Enterococcus" 3 "Rifampicin" "Table 2D" "5ug" 20 16 FALSE "CLSI 2013" "MIC" "Enterococcus" 3 "Rifampicin" "Table 2D" 1 4 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Rifampicin" "Table 2E" "5μg" 20 16 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Rifampicin" "Table 2E" "5ug" 20 16 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Rifampicin" "Table 2E" 1 4 FALSE "CLSI 2013" "MIC" "Kingella" 3 "Rifampicin" "M45 Table 7" 1 4 FALSE "CLSI 2013" "MIC" "Moraxella catarrhalis" 2 "Rifampicin" "M45 Table 12" 1 4 FALSE -"CLSI 2013" "DISK" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" "5μg" 25 19 FALSE +"CLSI 2013" "DISK" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" "5ug" 25 19 FALSE "CLSI 2013" "MIC" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" 0.5 2 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Rifampicin" "Table 2C" "5μg" 20 16 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Rifampicin" "Table 2C" "5ug" 20 16 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Rifampicin" "Table 2C" 1 4 FALSE -"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" "5μg" 19 16 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" "5ug" 19 16 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" 1 4 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Rifampicin" "Generic rules" "5μg" 20 16 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Rifampicin" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2013" "DISK" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" "10μg" 15 11 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Rifampicin" "Generic rules" "5ug" 20 16 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Rifampicin" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2013" "DISK" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" "10ug" 15 11 FALSE "CLSI 2013" "MIC" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" 8 32 FALSE -"CLSI 2013" "DISK" "Aeromonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10μg" 15 11 FALSE +"CLSI 2013" "DISK" "Aeromonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE "CLSI 2013" "MIC" "Aeromonas" 3 "Ampicillin/sulbactam" "M45 Table 2" 8 32 FALSE "CLSI 2013" "MIC" "Aggregatibacter" 3 "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE "CLSI 2013" "MIC" "Cardiobacterium" 3 "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE "CLSI 2013" "MIC" "Eikenella" 3 "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" "10/10μg" 20 19 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" "10/10ug" 20 19 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" 2 4 FALSE -"CLSI 2013" "DISK" "Plesiomonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10μg" 15 11 FALSE +"CLSI 2013" "DISK" "Plesiomonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE "CLSI 2013" "MIC" "Plesiomonas" 3 "Ampicillin/sulbactam" "M45 Table 2" 8 32 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10μg" 15 11 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10μg" 8 32 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300μg" 256 512 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10ug" 15 11 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10ug" 8 32 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300ug" 256 512 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Sulfamethoxazole" "Table 2B-5" 256 512 FALSE "CLSI 2013" "MIC" "Neisseria meningitidis" 2 "Sulfamethoxazole" "Table 2I" 2 8 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" "200μg" 17 12 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" "200ug" 17 12 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" 256 512 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300μg" 256 512 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300ug" 256 512 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Sulfisoxazole" "Table 2B-5" 256 512 FALSE "CLSI 2013" "MIC" "Neisseria meningitidis" 2 "Sulfisoxazole" "Table 2I" 2 8 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" "200μg" 17 12 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" "200ug" 17 12 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" 256 512 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300μg" 256 512 FALSE -"CLSI 2013" "DISK" "Histophilus somni" 2 "Spectinomycin" "Vet Table" "100μg" 14 10 FALSE -"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" "100μg" 18 14 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300ug" 256 512 FALSE +"CLSI 2013" "DISK" "Histophilus somni" 2 "Spectinomycin" "Vet Table" "100ug" 14 10 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" "100ug" 18 14 FALSE "CLSI 2013" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" 32 128 FALSE -"CLSI 2013" "DISK" "Providencia heimbachae" 2 "Spectinomycin" "100μg" 14 10 FALSE -"CLSI 2013" "DISK" "Pasteurella multocida multocida" 1 "Spectinomycin" "100μg" 14 10 FALSE +"CLSI 2013" "DISK" "Providencia heimbachae" 2 "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2013" "DISK" "Pasteurella multocida multocida" 1 "Spectinomycin" "100ug" 14 10 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Sparfloxacin" "Table 2E" 0.25 2048 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" "5μg" 19 15 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" "5ug" 19 15 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" "5μg" 19 15 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" "5ug" 19 15 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" 0.5 2 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5μg" 0.5 2 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5ug" 0.5 2 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Sulfonamide" "Table 2B-5" 256 512 FALSE "CLSI 2013" "MIC" "Neisseria meningitidis" 2 "Sulfonamide" "Table 2I" 2 8 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Sulfonamide" "Table 2C" "200μg" 17 12 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Sulfonamide" "Table 2C" "200ug" 17 12 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Sulfonamide" "Table 2C" 256 512 FALSE -"CLSI 2013" "DISK" "Enterococcus" 3 "Streptomycin-high" "Table 2D" "300μg" 10 6 FALSE +"CLSI 2013" "DISK" "Enterococcus" 3 "Streptomycin-high" "Table 2D" "300ug" 10 6 FALSE "CLSI 2013" "MIC" "Enterococcus" 3 "Streptomycin-high" "Table 2D" 1024 2048 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300μg" 10 6 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300μg" 1024 2048 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300ug" 10 6 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300ug" 1024 2048 FALSE "CLSI 2013" "MIC" "Brucella" 3 "Streptoduocin" "M45 Table 16" 8 2048 FALSE "CLSI 2013" "MIC" "Enterococcus" 3 "Streptoduocin" "Table 2D" 1024 2048 FALSE "CLSI 2013" "MIC" "Francisella tularensis tularensis" 1 "Streptoduocin" "M45 Table 16" 8 2048 FALSE "CLSI 2013" "MIC" "Yersinia pestis" 2 "Streptoduocin" "M45 Table 16" 4 16 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Streptomycin" "Generic rules" "10μg" 15 11 FALSE -"CLSI 2013" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Streptomycin" "Generic rules" "10ug" 15 11 FALSE +"CLSI 2013" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2013" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" 2 4 FALSE -"CLSI 2013" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2013" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2013" "MIC" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE "CLSI 2013" "MIC" "Aggregatibacter" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE "CLSI 2013" "MIC" "Bacillus" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 3" 2 4 FALSE "CLSI 2013" "MIC" "Brucella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 2048 FALSE -"CLSI 2013" "DISK" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2013" "DISK" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2013" "MIC" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" 2 4 FALSE "CLSI 2013" "MIC" "Burkholderia pseudomallei" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 4 FALSE "CLSI 2013" "MIC" "Cardiobacterium" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE "CLSI 2013" "MIC" "Eikenella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-5" 2 4 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" "1.25μg/23.75μg" 15 10 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" "1.25ug/23.75ug" 15 10 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" 0.5 4 FALSE "CLSI 2013" "MIC" "Kingella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE "CLSI 2013" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 11" 0.5 4 FALSE -"CLSI 2013" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 12" "1.25μg/23.75μg" 13 10 FALSE +"CLSI 2013" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 12" "1.25ug/23.75ug" 13 10 FALSE "CLSI 2013" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 12" 0.5 4 FALSE -"CLSI 2013" "DISK" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" "1.25μg/23.75μg" 30 25 FALSE +"CLSI 2013" "DISK" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" "1.25ug/23.75ug" 30 25 FALSE "CLSI 2013" "MIC" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" 0.125 0.5 FALSE -"CLSI 2013" "DISK" "Plesiomonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2013" "DISK" "Plesiomonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2013" "MIC" "Plesiomonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE -"CLSI 2013" "DISK" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 13" "1.25μg/23.75μg" 24 6 FALSE +"CLSI 2013" "DISK" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 13" "1.25ug/23.75ug" 24 6 FALSE "CLSI 2013" "MIC" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 13" 0.5 2048 FALSE -"CLSI 2013" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" "30μg" 16 10 FALSE +"CLSI 2013" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" "30ug" 16 10 FALSE "CLSI 2013" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" 2 4 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" 2 4 FALSE -"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" "1.25μg/23.75μg" 19 15 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" "1.25ug/23.75ug" 19 15 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" 0.5 4 FALSE "CLSI 2013" "MIC" "Yersinia pestis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 4 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75μg" 16 10 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75μg" 2 4 FALSE -"CLSI 2013" "DISK" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" "75μg" 20 14 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 16 10 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 2 4 FALSE +"CLSI 2013" "DISK" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" "75ug" 20 14 FALSE "CLSI 2013" "MIC" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" 16 128 FALSE "CLSI 2013" "MIC" "Burkholderia cepacia" 2 "Ticarcillin/clavulanic acid" "Table 2B-3" 16 128 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Ticarcillin/clavulanic acid" "Table 2B-5" 16 128 FALSE -"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" "75μg" 24 15 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" "75ug" 24 15 FALSE "CLSI 2013" "MIC" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" 16 128 FALSE "CLSI 2013" "MIC" "Stenotrophomonas maltophilia" 2 "Ticarcillin/clavulanic acid" "Table 2B-4" 16 128 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15μg" 20 14 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15μg" 16 128 FALSE -"CLSI 2013" "DISK" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" "30μg" 15 11 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15ug" 20 14 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15ug" 16 128 FALSE +"CLSI 2013" "DISK" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" "30ug" 15 11 FALSE "CLSI 2013" "MIC" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" 4 16 FALSE -"CLSI 2013" "DISK" "Aeromonas" 3 "Tetracycline" "M45 Table 2" "30μg" 15 11 FALSE +"CLSI 2013" "DISK" "Aeromonas" 3 "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE "CLSI 2013" "MIC" "Aeromonas" 3 "Tetracycline" "M45 Table 2" 4 16 FALSE "CLSI 2013" "MIC" "Aggregatibacter" 3 "Tetracycline" "M45 Table 7" 2 8 FALSE "CLSI 2013" "MIC" "Bacillus" 3 "Tetracycline" "M45 Table 3" 4 16 FALSE @@ -17972,310 +17972,310 @@ "CLSI 2013" "MIC" "Campylobacter" 3 "Tetracycline" "M45 Table 3" 4 16 FALSE "CLSI 2013" "MIC" "Cardiobacterium" 3 "Tetracycline" "M45 Table 7" 2 8 FALSE "CLSI 2013" "MIC" "Eikenella" 3 "Tetracycline" "M45 Table 7" 2 8 FALSE -"CLSI 2013" "DISK" "Enterococcus" 3 "Tetracycline" "Table 2D" "30μg" 19 14 FALSE +"CLSI 2013" "DISK" "Enterococcus" 3 "Tetracycline" "Table 2D" "30ug" 19 14 FALSE "CLSI 2013" "MIC" "Enterococcus" 3 "Tetracycline" "Table 2D" 4 16 FALSE "CLSI 2013" "MIC" "Francisella tularensis tularensis" 1 "Tetracycline" "M45 Table 16" 4 2048 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Tetracycline" "Table 2B-5" 4 16 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Tetracycline" "Table 2E" "30μg" 29 25 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Tetracycline" "Table 2E" "30ug" 29 25 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Tetracycline" "Table 2E" 2 8 FALSE "CLSI 2013" "MIC" "Kingella" 3 "Tetracycline" "M45 Table 7" 2 8 FALSE -"CLSI 2013" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 12" "30μg" 29 24 FALSE +"CLSI 2013" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 12" "30ug" 29 24 FALSE "CLSI 2013" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 12" 2 8 FALSE -"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" "30μg" 38 30 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" "30ug" 38 30 FALSE "CLSI 2013" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" 0.25 2 FALSE -"CLSI 2013" "DISK" "Plesiomonas" 3 "Tetracycline" "M45 Table 2" "30μg" 15 11 FALSE +"CLSI 2013" "DISK" "Plesiomonas" 3 "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE "CLSI 2013" "MIC" "Plesiomonas" 3 "Tetracycline" "M45 Table 2" 4 16 FALSE -"CLSI 2013" "DISK" "Pasteurella" 3 "Tetracycline" "M45 Table 13" "30μg" 23 6 FALSE +"CLSI 2013" "DISK" "Pasteurella" 3 "Tetracycline" "M45 Table 13" "30ug" 23 6 FALSE "CLSI 2013" "MIC" "Pasteurella" 3 "Tetracycline" "M45 Table 13" 1 2048 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Tetracycline" "Table 2C" "30μg" 19 14 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Tetracycline" "Table 2C" "30ug" 19 14 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Tetracycline" "Table 2C" 4 16 FALSE -"CLSI 2013" "DISK" "Streptococcus" 3 "Tetracycline" "Table 2H-1" "30μg" 23 18 FALSE +"CLSI 2013" "DISK" "Streptococcus" 3 "Tetracycline" "Table 2H-1" "30ug" 23 18 FALSE "CLSI 2013" "MIC" "Streptococcus" 3 "Tetracycline" "Table 2H-1" 2 8 FALSE -"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" "30μg" 28 24 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" "30ug" 28 24 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" 1 4 FALSE -"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" "30μg" 23 18 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" "30ug" 23 18 FALSE "CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" 2 8 FALSE "CLSI 2013" "MIC" "Yersinia pestis" 2 "Tetracycline" "M45 Table 16" 4 16 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Tetracycline" "Generic rules" "30μg" 15 11 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Tetracycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2013" "DISK" "Enterococcus" 3 "Teicoplanin" "Table 2D" "30μg" 14 10 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Tetracycline" "Generic rules" "30ug" 15 11 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Tetracycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2013" "DISK" "Enterococcus" 3 "Teicoplanin" "Table 2D" "30ug" 14 10 FALSE "CLSI 2013" "MIC" "Enterococcus" 3 "Teicoplanin" "Table 2D" 8 32 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Teicoplanin" "Table 2C" "30μg" 14 10 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Teicoplanin" "Table 2C" "30ug" 14 10 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Teicoplanin" "Table 2C" 8 32 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30μg" 14 10 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Tiamulin" "Generic rules" "30μg" 9 8 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Tiamulin" "Generic rules" "30μg" 16 32 FALSE -"CLSI 2013" "DISK" "Acinetobacter" 3 "Ticarcillin" "Table 2B-2" "75μg" 20 14 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30ug" 14 10 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Tiamulin" "Generic rules" "30ug" 9 8 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Tiamulin" "Generic rules" "30ug" 16 32 FALSE +"CLSI 2013" "DISK" "Acinetobacter" 3 "Ticarcillin" "Table 2B-2" "75ug" 20 14 FALSE "CLSI 2013" "MIC" "Acinetobacter" 3 "Ticarcillin" "Table 2B-2" 16 128 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Ticarcillin" "Table 2B-5" 16 128 FALSE -"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin" "Table 2B-1" "75μg" 24 15 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin" "Table 2B-1" "75ug" 24 15 FALSE "CLSI 2013" "MIC" "Pseudomonas aeruginosa" 2 "Ticarcillin" "Table 2B-1" 16 128 FALSE -"CLSI 2013" "DISK" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" "Vet Table" "15μg" 11 10 FALSE +"CLSI 2013" "DISK" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE "CLSI 2013" "MIC" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" "Vet Table" 16 32 FALSE -"CLSI 2013" "DISK" "Pasteurella multocida multocida" 1 "Tilmicosin" "Vet Table" "15μg" 11 10 FALSE +"CLSI 2013" "DISK" "Pasteurella multocida multocida" 1 "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE "CLSI 2013" "MIC" "Pasteurella multocida multocida" 1 "Tilmicosin" "Vet Table" 16 32 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15μg" 14 10 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15μg" 8 32 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30μg" 2 8 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Telithromycin" "Table 2E" "15μg" 15 11 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15ug" 14 10 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15ug" 8 32 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30ug" 2 8 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Telithromycin" "Table 2E" "15ug" 15 11 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Telithromycin" "Table 2E" 4 16 FALSE -"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" "15μg" 19 15 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" "15ug" 19 15 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" 1 4 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Telithromycin" "Generic rules" "15μg" 22 18 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Telithromycin" "Generic rules" "15μg" 1 4 FALSE -"CLSI 2013" "DISK" "Staphylococcus" 3 "Trimethoprim" "Table 2C" "5μg" 16 10 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Telithromycin" "Generic rules" "15ug" 22 18 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Telithromycin" "Generic rules" "15ug" 1 4 FALSE +"CLSI 2013" "DISK" "Staphylococcus" 3 "Trimethoprim" "Table 2C" "5ug" 16 10 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Trimethoprim" "Table 2C" 8 16 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5μg" 16 10 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5μg" 8 16 FALSE -"CLSI 2013" "DISK" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" "10μg" 15 12 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 16 10 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 8 16 FALSE +"CLSI 2013" "DISK" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" "10ug" 15 12 FALSE "CLSI 2013" "MIC" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" 4 16 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Tobramycin" "Table 2B-5" 4 16 FALSE -"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" "10μg" 15 12 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" "10ug" 15 12 FALSE "CLSI 2013" "MIC" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" 4 16 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Tobramycin" "Generic rules" "10μg" 15 12 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Tobramycin" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Trovafloxacin" "Table 2E" "10μg" 22 6 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 15 12 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Trovafloxacin" "Table 2E" "10ug" 22 6 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Trovafloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" "10μg" 34 6 FALSE +"CLSI 2013" "DISK" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" "10ug" 34 6 FALSE "CLSI 2013" "MIC" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" 0.25 2048 FALSE -"CLSI 2013" "DISK" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" "10μg" 19 15 FALSE +"CLSI 2013" "DISK" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" "10ug" 19 15 FALSE "CLSI 2013" "MIC" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" 1 4 FALSE -"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" "10μg" 19 15 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" "10ug" 19 15 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" 1 4 FALSE -"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" "10μg" 19 15 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" "10ug" 19 15 FALSE "CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" 1 4 FALSE -"CLSI 2013" "DISK" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" "100μg" 21 17 FALSE +"CLSI 2013" "DISK" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" "100ug" 21 17 FALSE "CLSI 2013" "MIC" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" 16 128 FALSE -"CLSI 2013" "DISK" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100μg" 21 17 FALSE +"CLSI 2013" "DISK" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE "CLSI 2013" "MIC" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 2" 16 128 FALSE "CLSI 2013" "MIC" "(unknown Gram-negatives)" 2 "Piperacillin/tazobactam" "Table 2B-5" 16 128 FALSE -"CLSI 2013" "DISK" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" "100μg" 21 6 FALSE +"CLSI 2013" "DISK" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" "100ug" 21 6 FALSE "CLSI 2013" "MIC" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" 1 2 FALSE -"CLSI 2013" "DISK" "Plesiomonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100μg" 21 17 FALSE +"CLSI 2013" "DISK" "Plesiomonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE "CLSI 2013" "MIC" "Plesiomonas" 3 "Piperacillin/tazobactam" "M45 Table 2" 16 128 FALSE -"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" "100μg" 21 14 FALSE +"CLSI 2013" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" "100ug" 21 14 FALSE "CLSI 2013" "MIC" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" 16 128 FALSE -"CLSI 2013" "DISK" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10μg" 21 17 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10μg" 16 128 FALSE +"CLSI 2013" "DISK" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10ug" 21 17 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10ug" 16 128 FALSE "CLSI 2013" "MIC" "Abiotrophia" 3 "Vancomycin" "M45 Table 1" 1 2048 FALSE "CLSI 2013" "MIC" "Bacillus" 3 "Vancomycin" "M45 Table 3" 4 2048 FALSE -"CLSI 2013" "DISK" "Enterococcus" 3 "Vancomycin" "Table 2D" "30μg" 17 14 FALSE +"CLSI 2013" "DISK" "Enterococcus" 3 "Vancomycin" "Table 2D" "30ug" 17 14 FALSE "CLSI 2013" "MIC" "Enterococcus" 3 "Vancomycin" "Table 2D" 4 32 FALSE "CLSI 2013" "MIC" "Granulicatella" 3 "Vancomycin" "M45 Table 1" 1 2048 FALSE "CLSI 2013" "MIC" "Lactobacillus" 3 "Vancomycin" "M45 Table 9" 2 16 FALSE "CLSI 2013" "MIC" "Staphylococcus" 3 "Vancomycin" "Table 2C" 4 32 FALSE "CLSI 2013" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" "Table 2C" 2 16 FALSE -"CLSI 2013" "DISK" "Streptococcus" 3 "Vancomycin" "Table 2H-1" "30μg" 17 6 FALSE +"CLSI 2013" "DISK" "Streptococcus" 3 "Vancomycin" "Table 2H-1" "30ug" 17 6 FALSE "CLSI 2013" "MIC" "Streptococcus" 3 "Vancomycin" "Table 2H-1" 1 2048 FALSE -"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" "30μg" 17 6 FALSE +"CLSI 2013" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" "30ug" 17 6 FALSE "CLSI 2013" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" 1 2048 FALSE -"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" "30μg" 17 6 FALSE +"CLSI 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" "30ug" 17 6 FALSE "CLSI 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" 1 2048 FALSE -"CLSI 2013" "MIC" "(unknown name)" 6 "Vancomycin" "Generic rules" "30μg" 4 32 FALSE -"CLSI 2012" "DISK" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20μg" 18 13 FALSE +"CLSI 2013" "MIC" "(unknown name)" 6 "Vancomycin" "Generic rules" "30ug" 4 32 FALSE +"CLSI 2012" "DISK" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE "CLSI 2012" "MIC" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" 8 32 FALSE "CLSI 2012" "MIC" "Aggregatibacter" 3 "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE "CLSI 2012" "MIC" "Burkholderia pseudomallei" 2 "Amoxicillin/clavulanic acid" "M45 Table 16" 8 32 FALSE "CLSI 2012" "MIC" "Cardiobacterium" 3 "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE "CLSI 2012" "MIC" "Eikenella" 3 "Amoxicillin/clavulanic acid" "M45 Table 7" 4 8 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" "20/10μg" 20 19 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" "20/10ug" 20 19 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "Table 2E" 4 8 FALSE -"CLSI 2012" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 12" "20μg" 24 23 FALSE +"CLSI 2012" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 12" "20ug" 24 23 FALSE "CLSI 2012" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M45 Table 12" 4 8 FALSE -"CLSI 2012" "DISK" "Plesiomonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20μg" 18 13 FALSE +"CLSI 2012" "DISK" "Plesiomonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE "CLSI 2012" "MIC" "Plesiomonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" 8 32 FALSE -"CLSI 2012" "DISK" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 13" "20μg" 27 6 FALSE +"CLSI 2012" "DISK" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 13" "20ug" 27 6 FALSE "CLSI 2012" "MIC" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "M45 Table 13" 0.5 2048 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Amoxicillin/clavulanic acid" "Table 2C" "20μg" 20 19 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Amoxicillin/clavulanic acid" "Table 2C" "20ug" 20 19 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Amoxicillin/clavulanic acid" "Table 2C" 4 8 FALSE "CLSI 2012" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Amoxicillin/clavulanic acid" "Table 2G" 2 8 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10μg" 18 13 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10μg" 8 32 FALSE -"CLSI 2012" "DISK" "Acinetobacter" 3 "Amikacin" "Table 2B-2" "30μg" 17 14 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 18 13 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 8 32 FALSE +"CLSI 2012" "DISK" "Acinetobacter" 3 "Amikacin" "Table 2B-2" "30ug" 17 14 FALSE "CLSI 2012" "MIC" "Acinetobacter" 3 "Amikacin" "Table 2B-2" 16 64 FALSE -"CLSI 2012" "DISK" "Aeromonas" 3 "Amikacin" "M45 Table 2" "30μg" 17 14 FALSE +"CLSI 2012" "DISK" "Aeromonas" 3 "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE "CLSI 2012" "MIC" "Aeromonas" 3 "Amikacin" "M45 Table 2" 16 64 FALSE "CLSI 2012" "MIC" "Bacillus" 3 "Amikacin" "M45 Table 3" 16 64 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Amikacin" "Table 2B-5" 16 64 FALSE -"CLSI 2012" "DISK" "Plesiomonas" 3 "Amikacin" "M45 Table 2" "30μg" 17 14 FALSE +"CLSI 2012" "DISK" "Plesiomonas" 3 "Amikacin" "M45 Table 2" "30ug" 17 14 FALSE "CLSI 2012" "MIC" "Plesiomonas" 3 "Amikacin" "M45 Table 2" 16 64 FALSE -"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" "30μg" 17 14 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" "30ug" 17 14 FALSE "CLSI 2012" "MIC" "Pseudomonas aeruginosa" 2 "Amikacin" "Table 2B-1" 16 64 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Amikacin" "Table 2C" "30μg" 17 14 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Amikacin" "Table 2C" "30ug" 17 14 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Amikacin" "Table 2C" 16 64 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Amikacin" "Generic rules" "30μg" 17 14 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Amikacin" "Generic rules" "30μg" 16 64 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 17 14 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 16 64 FALSE "CLSI 2012" "MIC" "Aggregatibacter" 3 "Ampicillin" "M45 Table 7" 1 4 FALSE "CLSI 2012" "MIC" "Bacillus" 3 "Ampicillin" "M45 Table 3" 0.25 0.5 FALSE "CLSI 2012" "MIC" "Cardiobacterium" 3 "Ampicillin" "M45 Table 7" 1 4 FALSE "CLSI 2012" "MIC" "Eikenella" 3 "Ampicillin" "M45 Table 7" 1 4 FALSE -"CLSI 2012" "DISK" "Enterococcus" 3 "Ampicillin" "Table 2D" "10μg" 17 16 FALSE +"CLSI 2012" "DISK" "Enterococcus" 3 "Ampicillin" "Table 2D" "10ug" 17 16 FALSE "CLSI 2012" "MIC" "Enterococcus" 3 "Ampicillin" "Table 2D" 8 16 FALSE "CLSI 2012" "MIC" "Erysipelothrix rhusiopathiae" 2 "Ampicillin" "M45 Table 6" 0.25 2048 FALSE "CLSI 2012" "MIC" "Granulicatella" 3 "Ampicillin" "M45 Table 1" 0.25 8 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Ampicillin" "Table 2E" "10μg" 22 18 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Ampicillin" "Table 2E" "10ug" 22 18 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Ampicillin" "Table 2E" 1 4 FALSE "CLSI 2012" "MIC" "Leuconostoc" 3 "Ampicillin" "M45 Table 10" 8 2048 FALSE "CLSI 2012" "MIC" "Lactobacillus" 3 "Ampicillin" "M45 Table 9" 8 2048 FALSE "CLSI 2012" "MIC" "Listeria monocytogenes" 2 "Ampicillin" "M45 Table 11" 2 2048 FALSE "CLSI 2012" "MIC" "Neisseria meningitidis" 2 "Ampicillin" "Table 2I" 0.125 2 FALSE "CLSI 2012" "MIC" "Pediococcus" 3 "Ampicillin" "M45 Table 14" 8 2048 FALSE -"CLSI 2012" "DISK" "Pasteurella" 3 "Ampicillin" "M45 Table 13" "10μg" 27 6 FALSE +"CLSI 2012" "DISK" "Pasteurella" 3 "Ampicillin" "M45 Table 13" "10ug" 27 6 FALSE "CLSI 2012" "MIC" "Pasteurella" 3 "Ampicillin" "M45 Table 13" 0.5 2048 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Ampicillin" "Table 2C" "10μg" 29 28 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Ampicillin" "Table 2C" "10ug" 29 28 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Ampicillin" "Table 2C" 0.25 0.5 FALSE -"CLSI 2012" "DISK" "Streptococcus" 3 "Ampicillin" "Table 2H-1" "10μg" 24 6 FALSE +"CLSI 2012" "DISK" "Streptococcus" 3 "Ampicillin" "Table 2H-1" "10ug" 24 6 FALSE "CLSI 2012" "MIC" "Streptococcus" 3 "Ampicillin" "Table 2H-1" 0.25 2048 FALSE "CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Table 2H-2" 0.25 8 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Ampicillin" "Generic rules" "10μg" 17 13 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Ampicillin" "Generic rules" "2μg" 8 32 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Ampicillin" "Generic rules" "10ug" 17 13 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Ampicillin" "Generic rules" "2ug" 8 32 FALSE "CLSI 2012" "MIC" "Pasteurella" 3 "Amoxicillin" "M45 Table 13" 0.5 2048 FALSE "CLSI 2012" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Amoxicillin" "Table 2G" 2 8 FALSE -"CLSI 2012" "DISK" "Aeromonas" 3 "Aztreonam" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2012" "DISK" "Aeromonas" 3 "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2012" "MIC" "Aeromonas" 3 "Aztreonam" "M45 Table 2" 4 16 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Aztreonam" "Table 2B-5" 8 32 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Aztreonam" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Aztreonam" "Table 2E" "30ug" 26 6 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Aztreonam" "Table 2E" 2 2048 FALSE -"CLSI 2012" "DISK" "Plesiomonas" 3 "Aztreonam" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2012" "DISK" "Plesiomonas" 3 "Aztreonam" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2012" "MIC" "Plesiomonas" 3 "Aztreonam" "M45 Table 2" 4 16 FALSE -"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" "30μg" 22 15 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" "30ug" 22 15 FALSE "CLSI 2012" "MIC" "Pseudomonas aeruginosa" 2 "Aztreonam" "Table 2B-1" 8 32 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Aztreonam" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Aztreonam" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Azlocillin" "Generic rules" "75μg" 18 17 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Azlocillin" "Generic rules" "75μg" 64 128 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Azlocillin" "Generic rules" "75ug" 18 17 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Azlocillin" "Generic rules" "75ug" 64 128 FALSE "CLSI 2012" "MIC" "Aggregatibacter" 3 "Azithromycin" "M45 Table 7" 4 2048 FALSE "CLSI 2012" "MIC" "Cardiobacterium" 3 "Azithromycin" "M45 Table 7" 4 2048 FALSE "CLSI 2012" "MIC" "Eikenella" 3 "Azithromycin" "M45 Table 7" 4 2048 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Azithromycin" "Table 2E" "15μg" 12 6 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Azithromycin" "Table 2E" "15ug" 12 6 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Azithromycin" "Table 2E" 4 2048 FALSE "CLSI 2012" "MIC" "Kingella" 3 "Azithromycin" "M45 Table 7" 4 2048 FALSE -"CLSI 2012" "DISK" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 12" "15μg" 26 6 FALSE +"CLSI 2012" "DISK" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 12" "15ug" 26 6 FALSE "CLSI 2012" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" "M45 Table 12" 0.25 2048 FALSE -"CLSI 2012" "DISK" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" "15μg" 20 6 FALSE +"CLSI 2012" "DISK" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" "15ug" 20 6 FALSE "CLSI 2012" "MIC" "Neisseria meningitidis" 2 "Azithromycin" "Table 2I" 2 2048 FALSE -"CLSI 2012" "DISK" "Pasteurella" 3 "Azithromycin" "M45 Table 13" "15μg" 20 6 FALSE +"CLSI 2012" "DISK" "Pasteurella" 3 "Azithromycin" "M45 Table 13" "15ug" 20 6 FALSE "CLSI 2012" "MIC" "Pasteurella" 3 "Azithromycin" "M45 Table 13" 1 2048 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Azithromycin" "Table 2C" "15μg" 18 13 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Azithromycin" "Table 2C" "15ug" 18 13 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Azithromycin" "Table 2C" 2 8 FALSE -"CLSI 2012" "DISK" "Streptococcus" 3 "Azithromycin" "Table 2H-1" "15μg" 18 13 FALSE +"CLSI 2012" "DISK" "Streptococcus" 3 "Azithromycin" "Table 2H-1" "15ug" 18 13 FALSE "CLSI 2012" "MIC" "Streptococcus" 3 "Azithromycin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" "15μg" 18 13 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" "15ug" 18 13 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" "Table 2G" 0.5 2 FALSE -"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" "15μg" 18 13 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" "15ug" 18 13 FALSE "CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "Table 2H-2" 0.5 2 FALSE -"CLSI 2012" "MIC" "Vibrio cholerae" 2 "Azithromycin" "M45 Table 14" "30μg" 2 2048 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Azithromycin" "Generic rules" "15μg" 18 13 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Azithromycin" "Generic rules" "15μg" 2 8 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Cefetamet" "Table 2E" "10μg" 18 14 FALSE +"CLSI 2012" "MIC" "Vibrio cholerae" 2 "Azithromycin" "M45 Table 14" "30ug" 2 2048 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Azithromycin" "Generic rules" "15ug" 18 13 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Azithromycin" "Generic rules" "15ug" 2 8 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Cefetamet" "Table 2E" "10ug" 18 14 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Cefetamet" "Table 2E" 4 16 FALSE -"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Cefetamet" "Table 2F" "10μg" 29 6 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Cefetamet" "Table 2F" "10ug" 29 6 FALSE "CLSI 2012" "MIC" "Neisseria gonorrhoeae" 2 "Cefetamet" "Table 2F" 0.5 2048 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Cefetamet" "Generic rules" "10μg" 18 14 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Cefetamet" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2012" "DISK" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" "30μg" 18 14 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Cefetamet" "Generic rules" "10ug" 18 14 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Cefetamet" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2012" "DISK" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" "30ug" 18 14 FALSE "CLSI 2012" "MIC" "Acinetobacter" 3 "Ceftazidime" "Table 2B-2" 8 32 FALSE -"CLSI 2012" "DISK" "Aeromonas" 3 "Ceftazidime" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2012" "DISK" "Aeromonas" 3 "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2012" "MIC" "Aeromonas" 3 "Ceftazidime" "M45 Table 2" 4 16 FALSE "CLSI 2012" "MIC" "Bacillus" 3 "Ceftazidime" "M45 Table 3" 8 32 FALSE -"CLSI 2012" "DISK" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" "30μg" 21 17 FALSE +"CLSI 2012" "DISK" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" "30ug" 21 17 FALSE "CLSI 2012" "MIC" "Burkholderia cepacia" 2 "Ceftazidime" "Table 2B-3" 8 32 FALSE "CLSI 2012" "MIC" "Burkholderia mallei" 2 "Ceftazidime" "M45 Table 16" 8 32 FALSE "CLSI 2012" "MIC" "Burkholderia pseudomallei" 2 "Ceftazidime" "M45 Table 16" 8 32 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Ceftazidime" "Table 2B-5" 8 32 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Ceftazidime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Ceftazidime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Ceftazidime" "Table 2E" 2 2048 FALSE "CLSI 2012" "MIC" "Moraxella catarrhalis" 2 "Ceftazidime" "M45 Table 12" 2 2048 FALSE -"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Ceftazidime" "Table 2F" "30μg" 31 6 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Ceftazidime" "Table 2F" "30ug" 31 6 FALSE "CLSI 2012" "MIC" "Neisseria gonorrhoeae" 2 "Ceftazidime" "Table 2F" 0.5 2048 FALSE -"CLSI 2012" "DISK" "Plesiomonas" 3 "Ceftazidime" "M45 Table 2" "30μg" 21 17 FALSE +"CLSI 2012" "DISK" "Plesiomonas" 3 "Ceftazidime" "M45 Table 2" "30ug" 21 17 FALSE "CLSI 2012" "MIC" "Plesiomonas" 3 "Ceftazidime" "M45 Table 2" 4 16 FALSE -"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" "30μg" 18 14 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" "30ug" 18 14 FALSE "CLSI 2012" "MIC" "Pseudomonas aeruginosa" 2 "Ceftazidime" "Table 2B-1" 8 32 FALSE "CLSI 2012" "MIC" "Stenotrophomonas maltophilia" 2 "Ceftazidime" "Table 2B-4" 8 32 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Ceftazidime" "Table 2C" "30μg" 18 14 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Ceftazidime" "Table 2C" "30ug" 18 14 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Ceftazidime" "Table 2C" 8 32 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Cefdinir" "Table 2E" "5μg" 20 6 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Cefdinir" "Table 2E" "5ug" 20 6 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Cefdinir" "Table 2E" 1 2048 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Cefdinir" "Table 2C" "5μg" 20 16 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Cefdinir" "Table 2C" "5ug" 20 16 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Cefdinir" "Table 2C" 1 4 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Cefdinir" "Table 2G" 0.5 2 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Cefdinir" "Generic rules" "5μg" 20 16 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Cefdinir" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Cefaclor" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Cefdinir" "Generic rules" "5ug" 20 16 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Cefdinir" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Cefaclor" "Table 2E" "30ug" 20 16 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Cefaclor" "Table 2E" 8 32 FALSE "CLSI 2012" "MIC" "Moraxella catarrhalis" 2 "Cefaclor" "M45 Table 12" 8 32 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Cefaclor" "Table 2C" "30μg" 18 14 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Cefaclor" "Table 2C" "30ug" 18 14 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Cefaclor" "Table 2C" 8 32 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" "Table 2G" 1 4 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Cefaclor" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Cefaclor" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Cephalothin" "Table 2C" "30μg" 18 14 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Cefaclor" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Cefaclor" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Cephalothin" "Table 2C" "30ug" 18 14 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Cephalothin" "Table 2C" 8 32 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Cephalothin" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Cephalothin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Cefixime" "Table 2E" "5μg" 21 6 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Cephalothin" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Cephalothin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Cefixime" "Table 2E" "5ug" 21 6 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Cefixime" "Table 2E" 1 2048 FALSE -"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" "5μg" 31 6 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" "5ug" 31 6 FALSE "CLSI 2012" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" "Table 2F" 0.25 2048 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Cefixime" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Cefixime" "Generic rules" "5μg" 1 4 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 1 4 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Cefoperazone" "Table 2B-5" 16 64 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Cefoperazone" "Table 2C" "75μg" 21 15 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Cefoperazone" "Table 2C" "75ug" 21 15 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Cefoperazone" "Table 2C" 16 64 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75μg" 21 15 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75μg" 16 64 FALSE -"CLSI 2012" "DISK" "Aeromonas" 3 "Chloramphenicol" "M45 Table 2" "30μg" 18 12 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75ug" 21 15 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75ug" 16 64 FALSE +"CLSI 2012" "DISK" "Aeromonas" 3 "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE "CLSI 2012" "MIC" "Aeromonas" 3 "Chloramphenicol" "M45 Table 2" 8 32 FALSE "CLSI 2012" "MIC" "Aggregatibacter" 3 "Chloramphenicol" "M45 Table 7" 4 16 FALSE "CLSI 2012" "MIC" "Bacillus" 3 "Chloramphenicol" "M45 Table 3" 8 32 FALSE "CLSI 2012" "MIC" "Burkholderia cepacia" 2 "Chloramphenicol" "Table 2B-3" 8 32 FALSE "CLSI 2012" "MIC" "Cardiobacterium" 3 "Chloramphenicol" "M45 Table 7" 4 16 FALSE "CLSI 2012" "MIC" "Eikenella" 3 "Chloramphenicol" "M45 Table 7" 4 16 FALSE -"CLSI 2012" "DISK" "Enterococcus" 3 "Chloramphenicol" "Table 2D" "30μg" 18 12 FALSE +"CLSI 2012" "DISK" "Enterococcus" 3 "Chloramphenicol" "Table 2D" "30ug" 18 12 FALSE "CLSI 2012" "MIC" "Enterococcus" 3 "Chloramphenicol" "Table 2D" 8 32 FALSE "CLSI 2012" "MIC" "Francisella tularensis tularensis" 1 "Chloramphenicol" "M45 Table 16" 8 2048 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Chloramphenicol" "Table 2B-5" 8 32 FALSE "CLSI 2012" "MIC" "Granulicatella" 3 "Chloramphenicol" "M45 Table 1" 4 8 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Chloramphenicol" "Table 2E" "30μg" 29 25 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Chloramphenicol" "Table 2E" "30ug" 29 25 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Chloramphenicol" "Table 2E" 2 8 FALSE "CLSI 2012" "MIC" "Kingella" 3 "Chloramphenicol" "M45 Table 7" 4 16 FALSE "CLSI 2012" "MIC" "Leuconostoc" 3 "Chloramphenicol" "M45 Table 10" 8 32 FALSE "CLSI 2012" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" "M45 Table 12" 2 8 FALSE -"CLSI 2012" "DISK" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" "30μg" 26 19 FALSE +"CLSI 2012" "DISK" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" "30ug" 26 19 FALSE "CLSI 2012" "MIC" "Neisseria meningitidis" 2 "Chloramphenicol" "Table 2I" 2 8 FALSE "CLSI 2012" "MIC" "Pediococcus" 3 "Chloramphenicol" "M45 Table 14" 8 32 FALSE -"CLSI 2012" "DISK" "Plesiomonas" 3 "Chloramphenicol" "M45 Table 2" "30μg" 18 12 FALSE +"CLSI 2012" "DISK" "Plesiomonas" 3 "Chloramphenicol" "M45 Table 2" "30ug" 18 12 FALSE "CLSI 2012" "MIC" "Plesiomonas" 3 "Chloramphenicol" "M45 Table 2" 8 32 FALSE -"CLSI 2012" "DISK" "Pasteurella" 3 "Chloramphenicol" "M45 Table 13" "30μg" 28 6 FALSE +"CLSI 2012" "DISK" "Pasteurella" 3 "Chloramphenicol" "M45 Table 13" "30ug" 28 6 FALSE "CLSI 2012" "MIC" "Pasteurella" 3 "Chloramphenicol" "M45 Table 13" 2 2048 FALSE "CLSI 2012" "MIC" "Stenotrophomonas maltophilia" 2 "Chloramphenicol" "Table 2B-4" 8 32 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" "30μg" 18 12 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" "30ug" 18 12 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Chloramphenicol" "Table 2C" 8 32 FALSE -"CLSI 2012" "DISK" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" "30μg" 21 17 FALSE +"CLSI 2012" "DISK" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" "30ug" 21 17 FALSE "CLSI 2012" "MIC" "Streptococcus" 3 "Chloramphenicol" "Table 2H-1" 4 16 FALSE -"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" "30μg" 21 20 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" "30ug" 21 20 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Table 2G" 4 8 FALSE -"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" "30μg" 21 17 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" "30ug" 21 17 FALSE "CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "Table 2H-2" 4 16 FALSE "CLSI 2012" "MIC" "Yersinia pestis" 2 "Chloramphenicol" "M45 Table 16" 8 32 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30μg" 18 12 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Cefonicid" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 18 12 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Cefonicid" "Table 2E" "30ug" 20 16 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Cefonicid" "Table 2E" 4 16 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Cefonicid" "Table 2C" "30μg" 18 14 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Cefonicid" "Table 2C" "30ug" 18 14 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Cefonicid" "Table 2C" 8 32 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Cefonicid" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Cefonicid" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100μg" 19 14 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100μg" 16 64 FALSE -"CLSI 2012" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" "5μg" 21 15 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Cefonicid" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Cefonicid" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100ug" 19 14 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100ug" 16 64 FALSE +"CLSI 2012" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" "5ug" 21 15 FALSE "CLSI 2012" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Table 2B-2" 1 4 FALSE -"CLSI 2012" "DISK" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 2" "5μg" 21 15 FALSE +"CLSI 2012" "DISK" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE "CLSI 2012" "MIC" "Aeromonas" 3 "Ciprofloxacin" "M45 Table 2" 1 4 FALSE "CLSI 2012" "MIC" "Aggregatibacter" 3 "Ciprofloxacin" "M45 Table 7" 1 4 FALSE "CLSI 2012" "MIC" "Bacillus" 3 "Ciprofloxacin" "M45 Table 3" 1 4 FALSE @@ -18283,101 +18283,101 @@ "CLSI 2012" "MIC" "Campylobacter" 3 "Ciprofloxacin" "M45 Table 3" 1 4 FALSE "CLSI 2012" "MIC" "Cardiobacterium" 3 "Ciprofloxacin" "M45 Table 7" 1 4 FALSE "CLSI 2012" "MIC" "Eikenella" 3 "Ciprofloxacin" "M45 Table 7" 1 4 FALSE -"CLSI 2012" "DISK" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" "5μg" 21 15 FALSE +"CLSI 2012" "DISK" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" "5ug" 21 15 FALSE "CLSI 2012" "MIC" "Enterococcus" 3 "Ciprofloxacin" "Table 2D" 1 4 FALSE "CLSI 2012" "MIC" "Erysipelothrix rhusiopathiae" 2 "Ciprofloxacin" "M45 Table 6" 1 2048 FALSE "CLSI 2012" "MIC" "Francisella tularensis tularensis" 1 "Ciprofloxacin" "M45 Table 16" 0.5 2048 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Ciprofloxacin" "Table 2B-5" 1 4 FALSE "CLSI 2012" "MIC" "Granulicatella" 3 "Ciprofloxacin" "M45 Table 1" 1 4 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" "5μg" 21 6 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" "5ug" 21 6 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Ciprofloxacin" "Table 2E" 1 2048 FALSE "CLSI 2012" "MIC" "Kingella" 3 "Ciprofloxacin" "M45 Table 7" 1 4 FALSE "CLSI 2012" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M45 Table 12" 1 2048 FALSE -"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" "5μg" 41 27 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" "5ug" 41 27 FALSE "CLSI 2012" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "Table 2F" 0.064 1 FALSE -"CLSI 2012" "DISK" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" "5μg" 35 32 FALSE +"CLSI 2012" "DISK" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" "5ug" 35 32 FALSE "CLSI 2012" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" "Table 2I" 0.032 0.12 FALSE -"CLSI 2012" "DISK" "Plesiomonas" 3 "Ciprofloxacin" "M45 Table 2" "5μg" 21 15 FALSE +"CLSI 2012" "DISK" "Plesiomonas" 3 "Ciprofloxacin" "M45 Table 2" "5ug" 21 15 FALSE "CLSI 2012" "MIC" "Plesiomonas" 3 "Ciprofloxacin" "M45 Table 2" 1 4 FALSE -"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" "5μg" 21 15 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" "5ug" 21 15 FALSE "CLSI 2012" "MIC" "Pseudomonas aeruginosa" 2 "Ciprofloxacin" "Table 2B-1" 1 4 FALSE -"CLSI 2012" "DISK" "Intestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5μg" 21 15 FALSE -"CLSI 2012" "DISK" "Extraintestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5μg" 31 20 FALSE +"CLSI 2012" "DISK" "Intestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5ug" 21 15 FALSE +"CLSI 2012" "DISK" "Extraintestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE "CLSI 2012" "MIC" "Intestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" 1 4 FALSE "CLSI 2012" "MIC" "Extraintestinal" "Salmonella" 3 "Ciprofloxacin" "Table 2A" 0.064 1 FALSE -"CLSI 2012" "DISK" "Salmonella enterica" 2 "Ciprofloxacin" "Table 2A" "5μg" 31 20 FALSE +"CLSI 2012" "DISK" "Salmonella enterica" 2 "Ciprofloxacin" "Table 2A" "5ug" 31 20 FALSE "CLSI 2012" "MIC" "Salmonella enterica" 2 "Ciprofloxacin" "Table 2A" 0.064 1 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" "5μg" 21 15 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" "5ug" 21 15 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Ciprofloxacin" "Table 2C" 1 4 FALSE "CLSI 2012" "MIC" "Yersinia pestis" 2 "Ciprofloxacin" "M45 Table 16" 0.25 2048 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5μg" 21 15 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5μg" 1 4 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 21 15 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 1 4 FALSE "CLSI 2012" "MIC" "Bacillus" 3 "Clindamycin" "M45 Table 3" 0.5 4 FALSE "CLSI 2012" "MIC" "Erysipelothrix rhusiopathiae" 2 "Clindamycin" "M45 Table 6" 0.25 1 FALSE "CLSI 2012" "MIC" "Granulicatella" 3 "Clindamycin" "M45 Table 1" 0.25 1 FALSE "CLSI 2012" "MIC" "Lactobacillus" 3 "Clindamycin" "M45 Table 9" 0.5 2 FALSE "CLSI 2012" "MIC" "Moraxella catarrhalis" 2 "Clindamycin" "M45 Table 12" 0.5 4 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Clindamycin" "Table 2C" "2μg" 21 14 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Clindamycin" "Table 2C" "2ug" 21 14 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Clindamycin" "Table 2C" 0.5 4 FALSE -"CLSI 2012" "DISK" "Streptococcus" 3 "Clindamycin" "Table 2H-1" "2μg" 19 15 FALSE +"CLSI 2012" "DISK" "Streptococcus" 3 "Clindamycin" "Table 2H-1" "2ug" 19 15 FALSE "CLSI 2012" "MIC" "Streptococcus" 3 "Clindamycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" "2μg" 19 15 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" "2ug" 19 15 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" "Table 2G" 0.25 1 FALSE -"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" "2μg" 19 15 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" "2ug" 19 15 FALSE "CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Clindamycin" "Generic rules" "2μg" 21 14 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Clindamycin" "Generic rules" "2μg" 0.5 4 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Clindamycin" "Generic rules" "2ug" 21 14 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Clindamycin" "Generic rules" "2ug" 0.5 4 FALSE "CLSI 2012" "MIC" "Aggregatibacter" 3 "Clarithromycin" "M45 Table 7" 8 32 FALSE "CLSI 2012" "MIC" "Cardiobacterium" 3 "Clarithromycin" "M45 Table 7" 8 32 FALSE "CLSI 2012" "MIC" "Eikenella" 3 "Clarithromycin" "M45 Table 7" 8 32 FALSE "CLSI 2012" "MIC" "Helicobacter pylori" 2 "Clarithromycin" "M45 Table 8" 0.25 1 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Clarithromycin" "Table 2E" "15μg" 13 10 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Clarithromycin" "Table 2E" "15ug" 13 10 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Clarithromycin" "Table 2E" 8 32 FALSE "CLSI 2012" "MIC" "Kingella" 3 "Clarithromycin" "M45 Table 7" 8 32 FALSE -"CLSI 2012" "DISK" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 12" "15μg" 24 6 FALSE +"CLSI 2012" "DISK" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 12" "15ug" 24 6 FALSE "CLSI 2012" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" "M45 Table 12" 1 2048 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Clarithromycin" "Table 2C" "15μg" 18 13 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Clarithromycin" "Table 2C" "15ug" 18 13 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Clarithromycin" "Table 2C" 2 8 FALSE -"CLSI 2012" "DISK" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" "15μg" 21 16 FALSE +"CLSI 2012" "DISK" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" "15ug" 21 16 FALSE "CLSI 2012" "MIC" "Streptococcus" 3 "Clarithromycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" "15μg" 21 16 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" "15ug" 21 16 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" "Table 2G" 0.25 1 FALSE -"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" "15μg" 21 16 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" "15ug" 21 16 FALSE "CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15μg" 18 13 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15μg" 2 8 FALSE -"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Cefmetazole" "Table 2F" "30μg" 33 27 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15ug" 18 13 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15ug" 2 8 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Cefmetazole" "Table 2F" "30ug" 33 27 FALSE "CLSI 2012" "MIC" "Neisseria gonorrhoeae" 2 "Cefmetazole" "Table 2F" 2 8 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Cefmetazole" "Table 2C" "30μg" 16 12 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Cefmetazole" "Table 2C" "30ug" 16 12 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Cefmetazole" "Table 2C" 16 64 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30μg" 16 64 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30ug" 16 64 FALSE "CLSI 2012" "MIC" "Acinetobacter" 3 "Colistin" "Table 2B-2" 2 4 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Colistin" "Table 2B-5" 2 8 FALSE -"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Colistin" "Table 2B-1" "10μg" 11 10 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Colistin" "Table 2B-1" "10ug" 11 10 FALSE "CLSI 2012" "MIC" "Pseudomonas aeruginosa" 2 "Colistin" "Table 2B-1" 2 8 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Colistin" "Generic rules" "10μg" 11 10 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Colistin" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Cefpodoxime" "Table 2E" "10μg" 21 6 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Colistin" "Generic rules" "10ug" 11 10 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Colistin" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Cefpodoxime" "Table 2E" "10ug" 21 6 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Cefpodoxime" "Table 2E" 2 2048 FALSE -"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" "10μg" 29 6 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" "10ug" 29 6 FALSE "CLSI 2012" "MIC" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "Table 2F" 0.5 2048 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Cefpodoxime" "Table 2C" "10μg" 21 17 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Cefpodoxime" "Table 2C" "10ug" 21 17 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Cefpodoxime" "Table 2C" 2 8 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" "Table 2G" 0.5 2 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10μg" 21 17 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Cefprozil" "Table 2E" "30μg" 18 14 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 21 17 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Cefprozil" "Table 2E" "30ug" 18 14 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Cefprozil" "Table 2E" 8 32 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Cefprozil" "Table 2C" "30μg" 18 14 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Cefprozil" "Table 2C" "30ug" 18 14 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Cefprozil" "Table 2C" 8 32 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Cefprozil" "Table 2G" 2 8 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Cefprozil" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Cefprozil" "Generic rules" "30μg" 8 32 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Cefprozil" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Cefprozil" "Generic rules" "30ug" 8 32 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Carbenicillin" "Table 2B-5" 16 64 FALSE -"CLSI 2012" "DISK" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" "30μg" 21 13 FALSE +"CLSI 2012" "DISK" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" "30ug" 21 13 FALSE "CLSI 2012" "MIC" "Acinetobacter" 3 "Ceftriaxone" "Table 2B-2" 8 64 FALSE -"CLSI 2012" "DISK" "Aeromonas" 3 "Ceftriaxone" "M45 Table 2" "30μg" 23 19 FALSE +"CLSI 2012" "DISK" "Aeromonas" 3 "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE "CLSI 2012" "MIC" "Aeromonas" 3 "Ceftriaxone" "M45 Table 2" 1 4 FALSE "CLSI 2012" "MIC" "Aggregatibacter" 3 "Ceftriaxone" "M45 Table 7" 2 2048 FALSE "CLSI 2012" "MIC" "Bacillus" 3 "Ceftriaxone" "M45 Table 3" 8 64 FALSE @@ -18386,41 +18386,41 @@ "CLSI 2012" "MIC" "Erysipelothrix rhusiopathiae" 2 "Ceftriaxone" "M45 Table 6" 1 2048 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Ceftriaxone" "Table 2B-5" 8 64 FALSE "CLSI 2012" "MIC" "Granulicatella" 3 "Ceftriaxone" "M45 Table 1" 1 4 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Ceftriaxone" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Ceftriaxone" "Table 2E" "30ug" 26 6 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Ceftriaxone" "Table 2E" 2 2048 FALSE "CLSI 2012" "MIC" "Kingella" 3 "Ceftriaxone" "M45 Table 7" 2 2048 FALSE "CLSI 2012" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" "M45 Table 12" 2 2048 FALSE -"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" "30μg" 35 6 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" "30ug" 35 6 FALSE "CLSI 2012" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "Table 2F" 0.25 2048 FALSE -"CLSI 2012" "DISK" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" "30μg" 34 6 FALSE +"CLSI 2012" "DISK" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" "30ug" 34 6 FALSE "CLSI 2012" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" "Table 2I" 0.125 2048 FALSE -"CLSI 2012" "DISK" "Plesiomonas" 3 "Ceftriaxone" "M45 Table 2" "30μg" 23 19 FALSE +"CLSI 2012" "DISK" "Plesiomonas" 3 "Ceftriaxone" "M45 Table 2" "30ug" 23 19 FALSE "CLSI 2012" "MIC" "Plesiomonas" 3 "Ceftriaxone" "M45 Table 2" 1 4 FALSE -"CLSI 2012" "DISK" "Pasteurella" 3 "Ceftriaxone" "M45 Table 13" "30μg" 34 6 FALSE +"CLSI 2012" "DISK" "Pasteurella" 3 "Ceftriaxone" "M45 Table 13" "30ug" 34 6 FALSE "CLSI 2012" "MIC" "Pasteurella" 3 "Ceftriaxone" "M45 Table 13" 0.125 2048 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Ceftriaxone" "Table 2C" "30μg" 21 13 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Ceftriaxone" "Table 2C" "30ug" 21 13 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Ceftriaxone" "Table 2C" 8 64 FALSE -"CLSI 2012" "DISK" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2012" "DISK" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2012" "MIC" "Streptococcus" 3 "Ceftriaxone" "Table 2H-1" 0.5 2048 FALSE "CLSI 2012" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Table 2G" 0.5 2 FALSE "CLSI 2012" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Table 2G" 1 4 FALSE -"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" "30μg" 27 24 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" "30ug" 27 24 FALSE "CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Table 2H-2" 1 4 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30μg" 1 4 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Ceftibuten" "Table 2E" "30μg" 28 6 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 1 4 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Ceftibuten" "Table 2E" "30ug" 28 6 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Ceftibuten" "Table 2E" 2 2048 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" "30μg" 26 19 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" "30ug" 26 19 FALSE "CLSI 2012" "MIC" "Neisseria gonorrhoeae" 2 "Cefotetan" "Table 2F" 2 8 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Cefotetan" "Table 2C" "30μg" 16 12 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Cefotetan" "Table 2C" "30ug" 16 12 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Cefotetan" "Table 2C" 16 64 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Cefotetan" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Cefotetan" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2012" "DISK" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" "30μg" 23 14 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Cefotetan" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Cefotetan" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2012" "DISK" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" "30ug" 23 14 FALSE "CLSI 2012" "MIC" "Acinetobacter" 3 "Cefotaxime" "Table 2B-2" 8 64 FALSE -"CLSI 2012" "DISK" "Aeromonas" 3 "Cefotaxime" "M45 Table 2" "30μg" 26 22 FALSE +"CLSI 2012" "DISK" "Aeromonas" 3 "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE "CLSI 2012" "MIC" "Aeromonas" 3 "Cefotaxime" "M45 Table 2" 1 4 FALSE "CLSI 2012" "MIC" "Aggregatibacter" 3 "Cefotaxime" "M45 Table 7" 2 2048 FALSE "CLSI 2012" "MIC" "Bacillus" 3 "Cefotaxime" "M45 Table 3" 8 64 FALSE @@ -18429,253 +18429,253 @@ "CLSI 2012" "MIC" "Erysipelothrix rhusiopathiae" 2 "Cefotaxime" "M45 Table 6" 1 2048 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Cefotaxime" "Table 2B-5" 8 64 FALSE "CLSI 2012" "MIC" "Granulicatella" 3 "Cefotaxime" "M45 Table 1" 1 4 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Cefotaxime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Cefotaxime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Cefotaxime" "Table 2E" 2 2048 FALSE "CLSI 2012" "MIC" "Kingella" 3 "Cefotaxime" "M45 Table 7" 2 2048 FALSE "CLSI 2012" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" "M45 Table 12" 2 2048 FALSE -"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" "30μg" 31 6 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" "30ug" 31 6 FALSE "CLSI 2012" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" "Table 2F" 0.5 2048 FALSE -"CLSI 2012" "DISK" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" "30μg" 34 6 FALSE +"CLSI 2012" "DISK" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" "30ug" 34 6 FALSE "CLSI 2012" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" "Table 2I" 0.125 2048 FALSE -"CLSI 2012" "DISK" "Plesiomonas" 3 "Cefotaxime" "M45 Table 2" "30μg" 26 22 FALSE +"CLSI 2012" "DISK" "Plesiomonas" 3 "Cefotaxime" "M45 Table 2" "30ug" 26 22 FALSE "CLSI 2012" "MIC" "Plesiomonas" 3 "Cefotaxime" "M45 Table 2" 1 4 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Cefotaxime" "Table 2C" "30μg" 23 14 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Cefotaxime" "Table 2C" "30ug" 23 14 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Cefotaxime" "Table 2C" 8 64 FALSE -"CLSI 2012" "DISK" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2012" "DISK" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2012" "MIC" "Streptococcus" 3 "Cefotaxime" "Table 2H-1" 0.5 2048 FALSE "CLSI 2012" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Cefotaxime" "Table 2G" 0.5 2 FALSE "CLSI 2012" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Cefotaxime" "Table 2G" 1 4 FALSE -"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" "30μg" 28 25 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" "30ug" 28 25 FALSE "CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Table 2H-2" 1 4 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30μg" 26 22 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30μg" 1 4 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30ug" 26 22 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30ug" 1 4 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" "30ug" 20 16 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Cefuroxime axetil" "Table 2E" 4 16 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Cefuroxime axetil" "Table 2C" "30μg" 23 14 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Cefuroxime axetil" "Table 2C" "30ug" 23 14 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Cefuroxime axetil" "Table 2C" 4 32 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Cefuroxime axetil" "Table 2G" 1 4 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30μg" 23 14 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30μg" 4 32 FALSE -"CLSI 2012" "DISK" "Aeromonas" 3 "Cefuroxime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 23 14 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 4 32 FALSE +"CLSI 2012" "DISK" "Aeromonas" 3 "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2012" "MIC" "Aeromonas" 3 "Cefuroxime" "M45 Table 2" 8 32 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30μg" 20 16 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Cefuroxime" "Table 2E" "30ug" 20 16 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Cefuroxime" "Table 2E" 4 16 FALSE "CLSI 2012" "MIC" "Moraxella catarrhalis" 2 "Cefuroxime" "M45 Table 12" 4 16 FALSE -"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Cefuroxime" "Table 2F" "30μg" 31 25 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Cefuroxime" "Table 2F" "30ug" 31 25 FALSE "CLSI 2012" "MIC" "Neisseria gonorrhoeae" 2 "Cefuroxime" "Table 2F" 1 4 FALSE -"CLSI 2012" "DISK" "Plesiomonas" 3 "Cefuroxime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2012" "DISK" "Plesiomonas" 3 "Cefuroxime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2012" "MIC" "Plesiomonas" 3 "Cefuroxime" "M45 Table 2" 8 32 FALSE -"CLSI 2012" "DISK" "Parenteral" "Staphylococcus" 3 "Cefuroxime" "Table 2C" "30μg" 18 14 FALSE -"CLSI 2012" "DISK" "Oral" "Staphylococcus" 3 "Cefuroxime" "Table 2C" "30μg" 23 14 FALSE +"CLSI 2012" "DISK" "Parenteral" "Staphylococcus" 3 "Cefuroxime" "Table 2C" "30ug" 18 14 FALSE +"CLSI 2012" "DISK" "Oral" "Staphylococcus" 3 "Cefuroxime" "Table 2C" "30ug" 23 14 FALSE "CLSI 2012" "MIC" "Intravenous" "Staphylococcus" 3 "Cefuroxime" "Table 2C" 8 32 FALSE "CLSI 2012" "MIC" "Oral" "Staphylococcus" 3 "Cefuroxime" "Table 2C" 4 32 FALSE "CLSI 2012" "MIC" "Parenteral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Table 2G" 0.5 2 FALSE "CLSI 2012" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Table 2G" 1 4 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30μg" 8 32 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 8 32 FALSE "CLSI 2012" "MIC" "Aeromonas" 3 "Cefazolin" "M45 Table 2" 1 4 FALSE "CLSI 2012" "MIC" "Bacillus" 3 "Cefazolin" "M45 Table 3" 8 16 FALSE "CLSI 2012" "MIC" "Plesiomonas" 3 "Cefazolin" "M45 Table 2" 1 4 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Cefazolin" "Table 2C" "30μg" 18 14 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Cefazolin" "Table 2C" "30ug" 18 14 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Cefazolin" "Table 2C" 8 32 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Cefazolin" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Cefazolin" "Generic rules" "30μg" 2 8 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Cefazolin" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Cefazolin" "Generic rules" "30ug" 2 8 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Ceftizoxime" "Table 2B-5" 8 64 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Ceftizoxime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Ceftizoxime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Ceftizoxime" "Table 2E" 2 2048 FALSE -"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" "30μg" 38 6 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" "30ug" 38 6 FALSE "CLSI 2012" "MIC" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "Table 2F" 0.5 2048 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Ceftizoxime" "Table 2C" "30μg" 20 14 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Ceftizoxime" "Table 2C" "30ug" 20 14 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Ceftizoxime" "Table 2C" 8 64 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30μg" 25 21 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30μg" 1 4 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30ug" 25 21 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30ug" 1 4 FALSE "CLSI 2012" "MIC" "Enterococcus" 3 "Daptomycin" "Table 2D" 4 2048 FALSE "CLSI 2012" "MIC" "Lactobacillus" 3 "Daptomycin" "M45 Table 9" 4 2048 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Daptomycin" "Table 2C" 1 2048 FALSE -"CLSI 2012" "DISK" "Streptococcus" 3 "Daptomycin" "Table 2H-1" "30μg" 16 6 FALSE +"CLSI 2012" "DISK" "Streptococcus" 3 "Daptomycin" "Table 2H-1" "30ug" 16 6 FALSE "CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Daptomycin" "Table 2H-2" 1 2048 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Daptomycin" "Generic rules" "30μg" 1 2048 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Difloxacin" "Generic rules" "10μg" 21 17 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Difloxacin" "Generic rules" "10μg" 0.5 4 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Dirithromycin" "Table 2C" "15μg" 19 15 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Daptomycin" "Generic rules" "30ug" 1 2048 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Difloxacin" "Generic rules" "10ug" 21 17 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Difloxacin" "Generic rules" "10ug" 0.5 4 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Dirithromycin" "Table 2C" "15ug" 19 15 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Dirithromycin" "Table 2C" 2 8 FALSE -"CLSI 2012" "DISK" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" "15μg" 18 13 FALSE +"CLSI 2012" "DISK" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" "15ug" 18 13 FALSE "CLSI 2012" "MIC" "Streptococcus" 3 "Dirithromycin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" "15μg" 18 13 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" "15ug" 18 13 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Dirithromycin" "Table 2G" 0.5 2 FALSE -"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" "15μg" 18 13 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" "15ug" 18 13 FALSE "CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "Table 2H-2" 0.5 2 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15μg" 19 15 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15μg" 2 8 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Doripenem" "Table 2E" "10μg" 16 6 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15ug" 19 15 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15ug" 2 8 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Doripenem" "Table 2E" "10ug" 16 6 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Doripenem" "Table 2E" 1 2048 FALSE -"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2012" "MIC" "Pseudomonas aeruginosa" 2 "Doripenem" "Table 2B-1" 2 8 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Doripenem" "Table 2C" "10μg" 30 6 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Doripenem" "Table 2C" "10ug" 30 6 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Doripenem" "Table 2C" 0.5 2048 FALSE "CLSI 2012" "MIC" "Streptococcus" 3 "Doripenem" "Table 2H-1" 0.125 2048 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" "Table 2G" 1 2048 FALSE "CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" "Table 2H-2" 1 2048 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Doripenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Doripenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2012" "DISK" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" "30μg" 13 9 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Doripenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Doripenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2012" "DISK" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" "30ug" 13 9 FALSE "CLSI 2012" "MIC" "Acinetobacter" 3 "Doxycycline" "Table 2B-2" 4 16 FALSE "CLSI 2012" "MIC" "Bacillus anthracis" 2 "Doxycycline" "M45 Table 16" 1 2048 FALSE "CLSI 2012" "MIC" "Brucella" 3 "Doxycycline" "M45 Table 16" 1 2048 FALSE "CLSI 2012" "MIC" "Burkholderia mallei" 2 "Doxycycline" "M45 Table 16" 4 16 FALSE "CLSI 2012" "MIC" "Burkholderia pseudomallei" 2 "Doxycycline" "M45 Table 16" 4 16 FALSE "CLSI 2012" "MIC" "Campylobacter" 3 "Doxycycline" "M45 Table 3" 2 8 FALSE -"CLSI 2012" "DISK" "Enterococcus" 3 "Doxycycline" "Table 2D" "30μg" 16 12 FALSE +"CLSI 2012" "DISK" "Enterococcus" 3 "Doxycycline" "Table 2D" "30ug" 16 12 FALSE "CLSI 2012" "MIC" "Enterococcus" 3 "Doxycycline" "Table 2D" 4 16 FALSE "CLSI 2012" "MIC" "Francisella tularensis tularensis" 1 "Doxycycline" "M45 Table 16" 4 2048 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Doxycycline" "Table 2B-5" 4 16 FALSE -"CLSI 2012" "DISK" "Pasteurella" 3 "Doxycycline" "M45 Table 13" "30μg" 23 6 FALSE +"CLSI 2012" "DISK" "Pasteurella" 3 "Doxycycline" "M45 Table 13" "30ug" 23 6 FALSE "CLSI 2012" "MIC" "Pasteurella" 3 "Doxycycline" "M45 Table 13" 0.5 2048 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Doxycycline" "Table 2C" "30μg" 16 12 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Doxycycline" "Table 2C" "30ug" 16 12 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Doxycycline" "Table 2C" 4 16 FALSE -"CLSI 2012" "MIC" "Vibrio cholerae" 2 "Doxycycline" "M45 Table 14" "30μg" 4 16 FALSE +"CLSI 2012" "MIC" "Vibrio cholerae" 2 "Doxycycline" "M45 Table 14" "30ug" 4 16 FALSE "CLSI 2012" "MIC" "Yersinia pestis" 2 "Doxycycline" "M45 Table 16" 4 16 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Doxycycline" "Generic rules" "30μg" 14 10 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Doxycycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2012" "DISK" "Histophilus somni" 2 "Enrofloxacin" "Vet Table" "5μg" 21 16 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Doxycycline" "Generic rules" "30ug" 14 10 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Doxycycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2012" "DISK" "Histophilus somni" 2 "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE "CLSI 2012" "MIC" "Histophilus somni" 2 "Enrofloxacin" "Vet Table" 0.25 2 FALSE -"CLSI 2012" "DISK" "Providencia heimbachae" 2 "Enrofloxacin" "Vet Table" "5μg" 21 16 FALSE -"CLSI 2012" "DISK" "Pasteurella multocida multocida" 1 "Enrofloxacin" "Vet Table" "5μg" 21 16 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5μg" 23 16 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5μg" 0.25 2 FALSE -"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Enoxacin" "Table 2F" "10μg" 36 31 FALSE +"CLSI 2012" "DISK" "Providencia heimbachae" 2 "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2012" "DISK" "Pasteurella multocida multocida" 1 "Enrofloxacin" "Vet Table" "5ug" 21 16 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5ug" 23 16 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5ug" 0.25 2 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Enoxacin" "Table 2F" "10ug" 36 31 FALSE "CLSI 2012" "MIC" "Neisseria gonorrhoeae" 2 "Enoxacin" "Table 2F" 0.5 2 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Enoxacin" "Table 2C" "10μg" 18 14 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Enoxacin" "Table 2C" "10ug" 18 14 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Enoxacin" "Table 2C" 2 8 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Enoxacin" "Generic rules" "10μg" 18 14 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Enoxacin" "Generic rules" "10μg" 2 8 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Enoxacin" "Generic rules" "10ug" 18 14 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Enoxacin" "Generic rules" "10ug" 2 8 FALSE "CLSI 2012" "MIC" "Bacillus" 3 "Erythromycin" "M45 Table 3" 0.5 8 FALSE "CLSI 2012" "MIC" "Campylobacter" 3 "Erythromycin" "M45 Table 3" 8 32 FALSE -"CLSI 2012" "DISK" "Enterococcus" 3 "Erythromycin" "Table 2D" "15μg" 23 13 FALSE +"CLSI 2012" "DISK" "Enterococcus" 3 "Erythromycin" "Table 2D" "15ug" 23 13 FALSE "CLSI 2012" "MIC" "Enterococcus" 3 "Erythromycin" "Table 2D" 0.5 8 FALSE "CLSI 2012" "MIC" "Erysipelothrix rhusiopathiae" 2 "Erythromycin" "M45 Table 6" 0.25 1 FALSE "CLSI 2012" "MIC" "Granulicatella" 3 "Erythromycin" "M45 Table 1" 0.25 1 FALSE "CLSI 2012" "MIC" "Lactobacillus" 3 "Erythromycin" "M45 Table 9" 0.5 8 FALSE -"CLSI 2012" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 12" "15μg" 21 6 FALSE +"CLSI 2012" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 12" "15ug" 21 6 FALSE "CLSI 2012" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" "M45 Table 12" 2 2048 FALSE -"CLSI 2012" "DISK" "Pasteurella" 3 "Erythromycin" "M45 Table 13" "15μg" 27 24 FALSE +"CLSI 2012" "DISK" "Pasteurella" 3 "Erythromycin" "M45 Table 13" "15ug" 27 24 FALSE "CLSI 2012" "MIC" "Pasteurella" 3 "Erythromycin" "M45 Table 13" 0.5 2 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Erythromycin" "Table 2C" "15μg" 23 13 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Erythromycin" "Table 2C" "15ug" 23 13 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Erythromycin" "Table 2C" 0.5 8 FALSE -"CLSI 2012" "DISK" "Streptococcus" 3 "Erythromycin" "Table 2H-1" "15μg" 21 15 FALSE +"CLSI 2012" "DISK" "Streptococcus" 3 "Erythromycin" "Table 2H-1" "15ug" 21 15 FALSE "CLSI 2012" "MIC" "Streptococcus" 3 "Erythromycin" "Table 2H-1" 0.25 1 FALSE -"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" "15μg" 21 15 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" "15ug" 21 15 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" "Table 2G" 0.25 1 FALSE -"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" "15μg" 21 15 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" "15ug" 21 15 FALSE "CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "Table 2H-2" 0.25 1 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Erythromycin" "Generic rules" "15μg" 23 13 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Erythromycin" "Generic rules" "15μg" 0.5 8 FALSE -"CLSI 2012" "DISK" "Aeromonas" 3 "Ertapenem" "M45 Table 2" "10μg" 19 15 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Erythromycin" "Generic rules" "15ug" 23 13 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Erythromycin" "Generic rules" "15ug" 0.5 8 FALSE +"CLSI 2012" "DISK" "Aeromonas" 3 "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE "CLSI 2012" "MIC" "Aeromonas" 3 "Ertapenem" "M45 Table 2" 2 8 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Ertapenem" "Table 2E" "10μg" 19 6 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Ertapenem" "Table 2E" "10ug" 19 6 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Ertapenem" "Table 2E" 0.5 2048 FALSE -"CLSI 2012" "DISK" "Plesiomonas" 3 "Ertapenem" "M45 Table 2" "10μg" 19 15 FALSE +"CLSI 2012" "DISK" "Plesiomonas" 3 "Ertapenem" "M45 Table 2" "10ug" 19 15 FALSE "CLSI 2012" "MIC" "Plesiomonas" 3 "Ertapenem" "M45 Table 2" 2 8 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Ertapenem" "Table 2C" "10μg" 19 15 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Ertapenem" "Table 2C" "10ug" 19 15 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Ertapenem" "Table 2C" 2 8 FALSE "CLSI 2012" "MIC" "Streptococcus" 3 "Ertapenem" "Table 2H-1" 1 2048 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" "Table 2G" 1 4 FALSE "CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "Table 2H-2" 1 2048 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Ertapenem" "Generic rules" "10μg" 22 18 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Ertapenem" "Generic rules" "10μg" 0.5 2 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "5-fluorocytosine" "Generic rules" "10μg" 4 32 FALSE -"CLSI 2012" "DISK" "Acinetobacter" 3 "Cefepime" "Table 2B-2" "30μg" 18 14 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 22 18 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 0.5 2 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "5-fluorocytosine" "Generic rules" "10ug" 4 32 FALSE +"CLSI 2012" "DISK" "Acinetobacter" 3 "Cefepime" "Table 2B-2" "30ug" 18 14 FALSE "CLSI 2012" "MIC" "Acinetobacter" 3 "Cefepime" "Table 2B-2" 8 32 FALSE -"CLSI 2012" "DISK" "Aeromonas" 3 "Cefepime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2012" "DISK" "Aeromonas" 3 "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2012" "MIC" "Aeromonas" 3 "Cefepime" "M45 Table 2" 8 32 FALSE "CLSI 2012" "MIC" "Erysipelothrix rhusiopathiae" 2 "Cefepime" "M45 Table 6" 1 2048 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Cefepime" "Table 2B-5" 8 32 FALSE "CLSI 2012" "MIC" "Granulicatella" 3 "Cefepime" "M45 Table 1" 1 4 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Cefepime" "Table 2E" "30μg" 26 6 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Cefepime" "Table 2E" "30ug" 26 6 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Cefepime" "Table 2E" 2 2048 FALSE -"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" "30μg" 31 6 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" "30ug" 31 6 FALSE "CLSI 2012" "MIC" "Neisseria gonorrhoeae" 2 "Cefepime" "Table 2F" 0.5 2048 FALSE -"CLSI 2012" "DISK" "Plesiomonas" 3 "Cefepime" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2012" "DISK" "Plesiomonas" 3 "Cefepime" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2012" "MIC" "Plesiomonas" 3 "Cefepime" "M45 Table 2" 8 32 FALSE -"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" "30μg" 18 14 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" "30ug" 18 14 FALSE "CLSI 2012" "MIC" "Pseudomonas aeruginosa" 2 "Cefepime" "Table 2B-1" 8 32 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Cefepime" "Table 2C" "30μg" 18 14 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Cefepime" "Table 2C" "30ug" 18 14 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Cefepime" "Table 2C" 8 32 FALSE -"CLSI 2012" "DISK" "Streptococcus" 3 "Cefepime" "Table 2H-1" "30μg" 24 6 FALSE +"CLSI 2012" "DISK" "Streptococcus" 3 "Cefepime" "Table 2H-1" "30ug" 24 6 FALSE "CLSI 2012" "MIC" "Streptococcus" 3 "Cefepime" "Table 2H-1" 0.5 2048 FALSE "CLSI 2012" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Cefepime" "Table 2G" 0.5 2 FALSE "CLSI 2012" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Cefepime" "Table 2G" 1 4 FALSE -"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" "30μg" 24 21 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" "30ug" 24 21 FALSE "CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Table 2H-2" 1 4 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Cefepime" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Cefepime" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Fleroxacin" "Table 2E" "5μg" 19 6 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Fleroxacin" "Table 2E" "5ug" 19 6 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Fleroxacin" "Table 2E" 2 2048 FALSE -"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Fleroxacin" "Table 2F" "5μg" 35 28 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Fleroxacin" "Table 2F" "5ug" 35 28 FALSE "CLSI 2012" "MIC" "Neisseria gonorrhoeae" 2 "Fleroxacin" "Table 2F" 0.25 1 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Fleroxacin" "Table 2C" "5μg" 19 15 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Fleroxacin" "Table 2C" "5ug" 19 15 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Fleroxacin" "Table 2C" 2 8 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Florfenicol" "Generic rules" "30μg" 19 14 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Florfenicol" "Generic rules" "30μg" 2 8 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Fluconazole" "Generic rules" "25μg" 19 14 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Fluconazole" "Generic rules" "25μg" 8 64 FALSE -"CLSI 2012" "DISK" "Enterococcus" 3 "Fosfomycin" "Table 2D" "200μg" 16 12 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Florfenicol" "Generic rules" "30ug" 19 14 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Florfenicol" "Generic rules" "30ug" 2 8 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Fluconazole" "Generic rules" "25ug" 19 14 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Fluconazole" "Generic rules" "25ug" 8 64 FALSE +"CLSI 2012" "DISK" "Enterococcus" 3 "Fosfomycin" "Table 2D" "200ug" 16 12 FALSE "CLSI 2012" "MIC" "Enterococcus" 3 "Fosfomycin" "Table 2D" 64 256 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200μg" 16 12 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200μg" 64 256 FALSE -"CLSI 2012" "DISK" "Aeromonas" 3 "Cefoxitin" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200ug" 16 12 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200ug" 64 256 FALSE +"CLSI 2012" "DISK" "Aeromonas" 3 "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2012" "MIC" "Aeromonas" 3 "Cefoxitin" "M45 Table 2" 8 32 FALSE -"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" "30μg" 28 23 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" "30ug" 28 23 FALSE "CLSI 2012" "MIC" "Neisseria gonorrhoeae" 2 "Cefoxitin" "Table 2F" 2 8 FALSE -"CLSI 2012" "DISK" "Plesiomonas" 3 "Cefoxitin" "M45 Table 2" "30μg" 18 14 FALSE +"CLSI 2012" "DISK" "Plesiomonas" 3 "Cefoxitin" "M45 Table 2" "30ug" 18 14 FALSE "CLSI 2012" "MIC" "Plesiomonas" 3 "Cefoxitin" "M45 Table 2" 8 32 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Cefoxitin" "Table 2C" "30μg" 25 24 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Cefoxitin" "Table 2C" "30ug" 25 24 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2012" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" "30μg" 22 21 FALSE +"CLSI 2012" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE "CLSI 2012" "MIC" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2012" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" "30μg" 22 21 FALSE +"CLSI 2012" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" "30ug" 22 21 FALSE "CLSI 2012" "MIC" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Table 2C" 4 8 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30μg" 8 32 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30ug" 8 32 FALSE "CLSI 2012" "MIC" "Abiotrophia" 3 "Gatifloxacin" "M45 Table 1" 1 4 FALSE -"CLSI 2012" "DISK" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" "5μg" 18 14 FALSE +"CLSI 2012" "DISK" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" "5ug" 18 14 FALSE "CLSI 2012" "MIC" "Acinetobacter" 3 "Gatifloxacin" "Table 2B-2" 2 8 FALSE -"CLSI 2012" "DISK" "Enterococcus" 3 "Gatifloxacin" "Table 2D" "5μg" 18 14 FALSE +"CLSI 2012" "DISK" "Enterococcus" 3 "Gatifloxacin" "Table 2D" "5ug" 18 14 FALSE "CLSI 2012" "MIC" "Enterococcus" 3 "Gatifloxacin" "Table 2D" 2 8 FALSE "CLSI 2012" "MIC" "Erysipelothrix rhusiopathiae" 2 "Gatifloxacin" "M45 Table 6" 1 2048 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Gatifloxacin" "Table 2B-5" 2 8 FALSE "CLSI 2012" "MIC" "Granulicatella" 3 "Gatifloxacin" "M45 Table 1" 1 4 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Gatifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Gatifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Gatifloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" "5μg" 38 33 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" "5ug" 38 33 FALSE "CLSI 2012" "MIC" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "Table 2F" 0.125 0.5 FALSE -"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" "5μg" 18 14 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" "5ug" 18 14 FALSE "CLSI 2012" "MIC" "Pseudomonas aeruginosa" 2 "Gatifloxacin" "Table 2B-1" 2 8 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" "10μg" 23 19 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" "10ug" 23 19 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Gatifloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2012" "DISK" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" "5μg" 21 17 FALSE +"CLSI 2012" "DISK" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" "5ug" 21 17 FALSE "CLSI 2012" "MIC" "Streptococcus" 3 "Gatifloxacin" "Table 2H-1" 1 4 FALSE -"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" "5μg" 21 17 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" "5ug" 21 17 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Gatifloxacin" "Table 2G" 1 4 FALSE -"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" "5μg" 21 17 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" "5ug" 21 17 FALSE "CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "Table 2H-2" 1 4 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5μg" 18 14 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2012" "DISK" "Enterococcus" 3 "Gentamicin-high" "Table 2D" "120μg" 10 6 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5ug" 18 14 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2012" "DISK" "Enterococcus" 3 "Gentamicin-high" "Table 2D" "120ug" 10 6 FALSE "CLSI 2012" "MIC" "Enterococcus" 3 "Gentamicin-high" "Table 2D" 512 560 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120μg" 10 6 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120μg" 512 560 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Gemifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120ug" 10 6 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120ug" 512 560 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Gemifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Gemifloxacin" "Table 2E" 0.125 2048 FALSE -"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" "5μg" 23 19 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" "5ug" 23 19 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Gemifloxacin" "Table 2G" 0.125 0.5 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5μg" 20 15 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5μg" 0.25 1 FALSE -"CLSI 2012" "DISK" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" "10μg" 15 12 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5ug" 20 15 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5ug" 0.25 1 FALSE +"CLSI 2012" "DISK" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" "10ug" 15 12 FALSE "CLSI 2012" "MIC" "Acinetobacter" 3 "Gentamicin" "Table 2B-2" 4 16 FALSE -"CLSI 2012" "DISK" "Aeromonas" 3 "Gentamicin" "M45 Table 2" "10μg" 15 12 FALSE +"CLSI 2012" "DISK" "Aeromonas" 3 "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE "CLSI 2012" "MIC" "Aeromonas" 3 "Gentamicin" "M45 Table 2" 4 16 FALSE "CLSI 2012" "MIC" "Bacillus" 3 "Gentamicin" "M45 Table 3" 4 16 FALSE "CLSI 2012" "MIC" "Brucella" 3 "Gentamicin" "M45 Table 16" 4 2048 FALSE @@ -18685,33 +18685,33 @@ "CLSI 2012" "MIC" "Leuconostoc" 3 "Gentamicin" "M45 Table 10" 4 16 FALSE "CLSI 2012" "MIC" "Lactobacillus" 3 "Gentamicin" "M45 Table 9" 4 16 FALSE "CLSI 2012" "MIC" "Pediococcus" 3 "Gentamicin" "M45 Table 14" 4 16 FALSE -"CLSI 2012" "DISK" "Plesiomonas" 3 "Gentamicin" "M45 Table 2" "10μg" 15 12 FALSE +"CLSI 2012" "DISK" "Plesiomonas" 3 "Gentamicin" "M45 Table 2" "10ug" 15 12 FALSE "CLSI 2012" "MIC" "Plesiomonas" 3 "Gentamicin" "M45 Table 2" 4 16 FALSE -"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" "10μg" 15 12 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" "10ug" 15 12 FALSE "CLSI 2012" "MIC" "Pseudomonas aeruginosa" 2 "Gentamicin" "Table 2B-1" 4 16 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Gentamicin" "Table 2C" "10μg" 15 12 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Gentamicin" "Table 2C" "10ug" 15 12 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Gentamicin" "Table 2C" 4 16 FALSE "CLSI 2012" "MIC" "Yersinia pestis" 2 "Gentamicin" "M45 Table 16" 4 16 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Gentamicin" "Generic rules" "10μg" 15 12 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Gentamicin" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Grepafloxacin" "Table 2E" "5μg" 24 6 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 15 12 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Grepafloxacin" "Table 2E" "5ug" 24 6 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Grepafloxacin" "Table 2E" 0.5 2048 FALSE -"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" "5μg" 37 27 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" "5ug" 37 27 FALSE "CLSI 2012" "MIC" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "Table 2F" 0.064 1 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" "5μg" 18 14 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" "5ug" 18 14 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Grepafloxacin" "Table 2C" 1 4 FALSE -"CLSI 2012" "DISK" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" "5μg" 19 15 FALSE +"CLSI 2012" "DISK" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" "5ug" 19 15 FALSE "CLSI 2012" "MIC" "Streptococcus" 3 "Grepafloxacin" "Table 2H-1" 0.5 2 FALSE -"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" "5μg" 19 15 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" "5ug" 19 15 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Grepafloxacin" "Table 2G" 0.5 2 FALSE -"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" "5μg" 19 15 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" "5ug" 19 15 FALSE "CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "Table 2H-2" 0.5 2 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5μg" 18 14 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5μg" 1 4 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5ug" 18 14 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5ug" 1 4 FALSE "CLSI 2012" "MIC" "Abiotrophia" 3 "Imipenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2012" "DISK" "Acinetobacter" 3 "Imipenem" "Table 2B-2" "10μg" 16 13 FALSE +"CLSI 2012" "DISK" "Acinetobacter" 3 "Imipenem" "Table 2B-2" "10ug" 16 13 FALSE "CLSI 2012" "MIC" "Acinetobacter" 3 "Imipenem" "Table 2B-2" 4 16 FALSE -"CLSI 2012" "DISK" "Aeromonas" 3 "Imipenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2012" "DISK" "Aeromonas" 3 "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2012" "MIC" "Aeromonas" 3 "Imipenem" "M45 Table 2" 4 16 FALSE "CLSI 2012" "MIC" "Aggregatibacter" 3 "Imipenem" "M45 Table 7" 4 16 FALSE "CLSI 2012" "MIC" "Bacillus" 3 "Imipenem" "M45 Table 3" 4 16 FALSE @@ -18722,64 +18722,64 @@ "CLSI 2012" "MIC" "Erysipelothrix rhusiopathiae" 2 "Imipenem" "M45 Table 6" 0.5 2048 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Imipenem" "Table 2B-5" 4 16 FALSE "CLSI 2012" "MIC" "Granulicatella" 3 "Imipenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Imipenem" "Table 2E" "10μg" 16 6 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Imipenem" "Table 2E" "10ug" 16 6 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Imipenem" "Table 2E" 4 2048 FALSE "CLSI 2012" "MIC" "Kingella" 3 "Imipenem" "M45 Table 7" 0.5 2 FALSE "CLSI 2012" "MIC" "Lactobacillus" 3 "Imipenem" "M45 Table 9" 0.5 2 FALSE "CLSI 2012" "MIC" "Pediococcus" 3 "Imipenem" "M45 Table 14" 0.5 2048 FALSE -"CLSI 2012" "DISK" "Plesiomonas" 3 "Imipenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2012" "DISK" "Plesiomonas" 3 "Imipenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2012" "MIC" "Plesiomonas" 3 "Imipenem" "M45 Table 2" 4 16 FALSE -"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2012" "MIC" "Pseudomonas aeruginosa" 2 "Imipenem" "Table 2B-1" 2 8 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Imipenem" "Table 2C" "10μg" 16 13 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Imipenem" "Table 2C" "10ug" 16 13 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Imipenem" "Table 2C" 4 16 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" "Table 2G" 0.125 1 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Imipenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Imipenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Kanamycin" "Table 2C" "30μg" 18 13 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Kanamycin" "Table 2C" "30ug" 18 13 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Kanamycin" "Table 2C" 16 64 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Kanamycin" "Generic rules" "30μg" 18 13 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Kanamycin" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2012" "DISK" "Enterococcus" 3 "Linezolid" "Table 2D" "30μg" 23 20 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Kanamycin" "Generic rules" "30ug" 18 13 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Kanamycin" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2012" "DISK" "Enterococcus" 3 "Linezolid" "Table 2D" "30ug" 23 20 FALSE "CLSI 2012" "MIC" "Enterococcus" 3 "Linezolid" "Table 2D" 2 8 FALSE "CLSI 2012" "MIC" "Lactobacillus" 3 "Linezolid" "M45 Table 9" 4 2048 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Linezolid" "Table 2C" "30μg" 21 20 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Linezolid" "Table 2C" "30ug" 21 20 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Linezolid" "Table 2C" 4 8 FALSE -"CLSI 2012" "DISK" "Streptococcus" 3 "Linezolid" "Table 2H-1" "30μg" 21 6 FALSE +"CLSI 2012" "DISK" "Streptococcus" 3 "Linezolid" "Table 2H-1" "30ug" 21 6 FALSE "CLSI 2012" "MIC" "Streptococcus" 3 "Linezolid" "Table 2H-1" 2 2048 FALSE -"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" "30μg" 21 6 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" "30ug" 21 6 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" "Table 2G" 2 2048 FALSE -"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" "30μg" 21 6 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" "30ug" 21 6 FALSE "CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "Table 2H-2" 2 2048 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Linezolid" "Generic rules" "30μg" 21 20 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Linezolid" "Generic rules" "30μg" 4 8 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Linezolid" "Generic rules" "30ug" 21 20 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Linezolid" "Generic rules" "30ug" 4 8 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Lomefloxacin" "Table 2B-5" 2 8 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Lomefloxacin" "Table 2E" "10μg" 22 6 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Lomefloxacin" "Table 2E" "10ug" 22 6 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Lomefloxacin" "Table 2E" 2 2048 FALSE -"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Lomefloxacin" "Table 2F" "10μg" 38 26 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Lomefloxacin" "Table 2F" "10ug" 38 26 FALSE "CLSI 2012" "MIC" "Neisseria gonorrhoeae" 2 "Lomefloxacin" "Table 2F" 0.125 2 FALSE -"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" "10μg" 22 18 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" "10ug" 22 18 FALSE "CLSI 2012" "MIC" "Pseudomonas aeruginosa" 2 "Lomefloxacin" "Table 2B-1" 2 8 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" "10μg" 22 18 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" "10ug" 22 18 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Lomefloxacin" "Table 2C" 2 8 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10μg" 22 18 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Loracarbef" "Table 2E" "30μg" 19 15 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10ug" 22 18 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Loracarbef" "Table 2E" "30ug" 19 15 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Loracarbef" "Table 2E" 8 32 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Loracarbef" "Table 2C" "30μg" 18 14 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Loracarbef" "Table 2C" "30ug" 18 14 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Loracarbef" "Table 2C" 8 32 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Loracarbef" "Table 2G" 2 8 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Loracarbef" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Loracarbef" "Generic rules" "30μg" 8 32 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Loracarbef" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Loracarbef" "Generic rules" "30ug" 8 32 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Latamoxef" "Table 2B-5" 8 64 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Latamoxef" "Table 2C" "30μg" 23 14 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Latamoxef" "Table 2C" "30ug" 23 14 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Latamoxef" "Table 2C" 8 64 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Latamoxef" "Generic rules" "30μg" 23 14 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Latamoxef" "Generic rules" "30μg" 8 64 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Latamoxef" "Generic rules" "30ug" 23 14 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Latamoxef" "Generic rules" "30ug" 8 64 FALSE "CLSI 2012" "MIC" "Abiotrophia" 3 "Levofloxacin" "M45 Table 1" 2 8 FALSE -"CLSI 2012" "DISK" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" "5μg" 17 13 FALSE +"CLSI 2012" "DISK" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" "5ug" 17 13 FALSE "CLSI 2012" "MIC" "Acinetobacter" 3 "Levofloxacin" "Table 2B-2" 2 8 FALSE -"CLSI 2012" "DISK" "Aeromonas" 3 "Levofloxacin" "M45 Table 2" "5μg" 17 13 FALSE +"CLSI 2012" "DISK" "Aeromonas" 3 "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE "CLSI 2012" "MIC" "Aeromonas" 3 "Levofloxacin" "M45 Table 2" 2 8 FALSE "CLSI 2012" "MIC" "Aggregatibacter" 3 "Levofloxacin" "M45 Table 7" 2 8 FALSE "CLSI 2012" "MIC" "Bacillus" 3 "Levofloxacin" "M45 Table 3" 2 8 FALSE @@ -18787,162 +18787,162 @@ "CLSI 2012" "MIC" "Burkholderia cepacia" 2 "Levofloxacin" "Table 2B-3" 2 8 FALSE "CLSI 2012" "MIC" "Cardiobacterium" 3 "Levofloxacin" "M45 Table 7" 2 8 FALSE "CLSI 2012" "MIC" "Eikenella" 3 "Levofloxacin" "M45 Table 7" 2 8 FALSE -"CLSI 2012" "DISK" "Enterococcus" 3 "Levofloxacin" "Table 2D" "5μg" 17 13 FALSE +"CLSI 2012" "DISK" "Enterococcus" 3 "Levofloxacin" "Table 2D" "5ug" 17 13 FALSE "CLSI 2012" "MIC" "Enterococcus" 3 "Levofloxacin" "Table 2D" 2 8 FALSE "CLSI 2012" "MIC" "Erysipelothrix rhusiopathiae" 2 "Levofloxacin" "M45 Table 6" 2 2048 FALSE "CLSI 2012" "MIC" "Francisella tularensis tularensis" 1 "Levofloxacin" "M45 Table 16" 0.5 2048 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Levofloxacin" "Table 2B-5" 2 8 FALSE "CLSI 2012" "MIC" "Granulicatella" 3 "Levofloxacin" "M45 Table 1" 2 8 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Levofloxacin" "Table 2E" "5μg" 17 6 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Levofloxacin" "Table 2E" "5ug" 17 6 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Levofloxacin" "Table 2E" 2 2048 FALSE "CLSI 2012" "MIC" "Kingella" 3 "Levofloxacin" "M45 Table 7" 2 8 FALSE "CLSI 2012" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" "M45 Table 12" 2 2048 FALSE "CLSI 2012" "MIC" "Neisseria meningitidis" 2 "Levofloxacin" "Table 2I" 0.032 0.12 FALSE -"CLSI 2012" "DISK" "Plesiomonas" 3 "Levofloxacin" "M45 Table 2" "5μg" 17 13 FALSE +"CLSI 2012" "DISK" "Plesiomonas" 3 "Levofloxacin" "M45 Table 2" "5ug" 17 13 FALSE "CLSI 2012" "MIC" "Plesiomonas" 3 "Levofloxacin" "M45 Table 2" 2 8 FALSE -"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" "5μg" 17 13 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" "5ug" 17 13 FALSE "CLSI 2012" "MIC" "Pseudomonas aeruginosa" 2 "Levofloxacin" "Table 2B-1" 2 8 FALSE -"CLSI 2012" "DISK" "Pasteurella" 3 "Levofloxacin" "M45 Table 13" "5μg" 28 6 FALSE +"CLSI 2012" "DISK" "Pasteurella" 3 "Levofloxacin" "M45 Table 13" "5ug" 28 6 FALSE "CLSI 2012" "MIC" "Pasteurella" 3 "Levofloxacin" "M45 Table 13" 0.064 2048 FALSE -"CLSI 2012" "DISK" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" "75μg" 17 13 FALSE +"CLSI 2012" "DISK" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" "75ug" 17 13 FALSE "CLSI 2012" "MIC" "Stenotrophomonas maltophilia" 2 "Levofloxacin" "Table 2B-4" 2 8 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Levofloxacin" "Table 2C" "10μg" 19 15 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Levofloxacin" "Table 2C" "10ug" 19 15 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Levofloxacin" "Table 2C" 1 4 FALSE -"CLSI 2012" "DISK" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" "5μg" 17 13 FALSE +"CLSI 2012" "DISK" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" "5ug" 17 13 FALSE "CLSI 2012" "MIC" "Streptococcus" 3 "Levofloxacin" "Table 2H-1" 2 8 FALSE -"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" "5μg" 17 13 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" "5ug" 17 13 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" "Table 2G" 2 8 FALSE -"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" "5μg" 17 13 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" "5ug" 17 13 FALSE "CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "Table 2H-2" 2 8 FALSE "CLSI 2012" "MIC" "Yersinia pestis" 2 "Levofloxacin" "M45 Table 16" 0.25 2048 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5μg" 17 13 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5μg" 2 8 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 17 13 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 2 8 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Cefamandole" "Table 2E" 4 16 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Cefamandole" "Table 2C" "30μg" 18 14 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Cefamandole" "Table 2C" "30ug" 18 14 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Cefamandole" "Table 2C" 8 32 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Cefamandole" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Cefamandole" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Mecillinam" "Generic rules" "10μg" 15 11 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Mecillinam" "Generic rules" "10μg" 8 32 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Cefamandole" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Cefamandole" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 15 11 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 8 32 FALSE "CLSI 2012" "MIC" "Abiotrophia" 3 "Meropenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2012" "DISK" "Acinetobacter" 3 "Meropenem" "Table 2B-2" "10μg" 16 13 FALSE +"CLSI 2012" "DISK" "Acinetobacter" 3 "Meropenem" "Table 2B-2" "10ug" 16 13 FALSE "CLSI 2012" "MIC" "Acinetobacter" 3 "Meropenem" "Table 2B-2" 4 16 FALSE -"CLSI 2012" "DISK" "Aeromonas" 3 "Meropenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2012" "DISK" "Aeromonas" 3 "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2012" "MIC" "Aeromonas" 3 "Meropenem" "M45 Table 2" 4 16 FALSE "CLSI 2012" "MIC" "Aggregatibacter" 3 "Meropenem" "M45 Table 7" 4 16 FALSE -"CLSI 2012" "DISK" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" "10μg" 20 15 FALSE +"CLSI 2012" "DISK" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" "10ug" 20 15 FALSE "CLSI 2012" "MIC" "Burkholderia cepacia" 2 "Meropenem" "Table 2B-3" 4 16 FALSE "CLSI 2012" "MIC" "Cardiobacterium" 3 "Meropenem" "M45 Table 7" 0.5 2 FALSE "CLSI 2012" "MIC" "Eikenella" 3 "Meropenem" "M45 Table 7" 0.5 2 FALSE "CLSI 2012" "MIC" "Erysipelothrix rhusiopathiae" 2 "Meropenem" "M45 Table 6" 0.5 2048 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Meropenem" "Table 2B-5" 4 16 FALSE "CLSI 2012" "MIC" "Granulicatella" 3 "Meropenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Meropenem" "Table 2E" "10μg" 20 6 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Meropenem" "Table 2E" "10ug" 20 6 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Meropenem" "Table 2E" 0.5 2048 FALSE "CLSI 2012" "MIC" "Kingella" 3 "Meropenem" "M45 Table 7" 0.5 2 FALSE -"CLSI 2012" "DISK" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" "10μg" 30 6 FALSE +"CLSI 2012" "DISK" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" "10ug" 30 6 FALSE "CLSI 2012" "MIC" "Neisseria meningitidis" 2 "Meropenem" "Table 2I" 0.25 2048 FALSE -"CLSI 2012" "DISK" "Plesiomonas" 3 "Meropenem" "M45 Table 2" "10μg" 16 13 FALSE +"CLSI 2012" "DISK" "Plesiomonas" 3 "Meropenem" "M45 Table 2" "10ug" 16 13 FALSE "CLSI 2012" "MIC" "Plesiomonas" 3 "Meropenem" "M45 Table 2" 4 16 FALSE -"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" "10μg" 19 15 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" "10ug" 19 15 FALSE "CLSI 2012" "MIC" "Pseudomonas aeruginosa" 2 "Meropenem" "Table 2B-1" 2 8 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Meropenem" "Table 2C" "10μg" 15 13 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Meropenem" "Table 2C" "10ug" 15 13 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Meropenem" "Table 2C" 4 16 FALSE "CLSI 2012" "MIC" "Streptococcus" 3 "Meropenem" "Table 2H-1" 0.5 2048 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Meropenem" "Table 2G" 0.25 1 FALSE "CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "Table 2H-2" 0.5 2048 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Meropenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Meropenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Methicillin" "Table 2C" "5μg" 14 9 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Methicillin" "Table 2C" "5ug" 14 9 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Methicillin" "Table 2C" 8 16 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Methicillin" "Generic rules" "5μg" 14 9 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Methicillin" "Generic rules" "5μg" 8 16 FALSE -"CLSI 2012" "DISK" "Acinetobacter" 3 "Mezlocillin" "Table 2B-2" "75μg" 21 17 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Methicillin" "Generic rules" "5ug" 14 9 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Methicillin" "Generic rules" "5ug" 8 16 FALSE +"CLSI 2012" "DISK" "Acinetobacter" 3 "Mezlocillin" "Table 2B-2" "75ug" 21 17 FALSE "CLSI 2012" "MIC" "Acinetobacter" 3 "Mezlocillin" "Table 2B-2" 16 128 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Mezlocillin" "Table 2B-5" 16 128 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Moxifloxacin" "Table 2E" "5μg" 18 6 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Moxifloxacin" "Table 2E" "5ug" 18 6 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Moxifloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2012" "DISK" "Pasteurella" 3 "Moxifloxacin" "M45 Table 13" "5μg" 28 6 FALSE +"CLSI 2012" "DISK" "Pasteurella" 3 "Moxifloxacin" "M45 Table 13" "5ug" 28 6 FALSE "CLSI 2012" "MIC" "Pasteurella" 3 "Moxifloxacin" "M45 Table 13" 0.064 2048 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" "5μg" 24 20 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" "5ug" 24 20 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Moxifloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" "5μg" 18 14 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" "5ug" 18 14 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Table 2G" 1 4 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5μg" 24 20 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5μg" 0.5 2 FALSE -"CLSI 2012" "DISK" "Acinetobacter" 3 "Minocycline" "Table 2B-2" "30μg" 16 12 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 24 20 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 0.5 2 FALSE +"CLSI 2012" "DISK" "Acinetobacter" 3 "Minocycline" "Table 2B-2" "30ug" 16 12 FALSE "CLSI 2012" "MIC" "Acinetobacter" 3 "Minocycline" "Table 2B-2" 4 16 FALSE -"CLSI 2012" "DISK" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" "30μg" 19 14 FALSE +"CLSI 2012" "DISK" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" "30ug" 19 14 FALSE "CLSI 2012" "MIC" "Burkholderia cepacia" 2 "Minocycline" "Table 2B-3" 4 16 FALSE -"CLSI 2012" "DISK" "Enterococcus" 3 "Minocycline" "Table 2D" "30μg" 19 14 FALSE +"CLSI 2012" "DISK" "Enterococcus" 3 "Minocycline" "Table 2D" "30ug" 19 14 FALSE "CLSI 2012" "MIC" "Enterococcus" 3 "Minocycline" "Table 2D" 4 16 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Minocycline" "Table 2B-5" 4 16 FALSE "CLSI 2012" "MIC" "Leuconostoc" 3 "Minocycline" "M45 Table 10" 4 16 FALSE -"CLSI 2012" "DISK" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" "30μg" 26 6 FALSE +"CLSI 2012" "DISK" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" "30ug" 26 6 FALSE "CLSI 2012" "MIC" "Neisseria meningitidis" 2 "Minocycline" "Table 2I" 2 2048 FALSE -"CLSI 2012" "DISK" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" "30μg" 19 14 FALSE +"CLSI 2012" "DISK" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" "30ug" 19 14 FALSE "CLSI 2012" "MIC" "Stenotrophomonas maltophilia" 2 "Minocycline" "Table 2B-4" 4 16 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Minocycline" "Table 2C" "30μg" 19 14 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Minocycline" "Table 2C" "30ug" 19 14 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Minocycline" "Table 2C" 4 16 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Minocycline" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Minocycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Nafcillin" "Table 2C" "1μg" 13 10 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Minocycline" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Minocycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Nafcillin" "Table 2C" "1ug" 13 10 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Nafcillin" "Table 2C" 2 4 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Nafcillin" "Generic rules" "1μg" 13 10 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Nafcillin" "Generic rules" "1μg" 2 4 FALSE -"CLSI 2012" "DISK" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" "30μg" 26 25 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Nafcillin" "Generic rules" "1ug" 13 10 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Nafcillin" "Generic rules" "1ug" 2 4 FALSE +"CLSI 2012" "DISK" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" "30ug" 26 25 FALSE "CLSI 2012" "MIC" "Neisseria meningitidis" 2 "Nalidixic acid" "Table 2I" 4 8 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30μg" 19 13 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30μg" 16 32 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 19 13 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 16 32 FALSE "CLSI 2012" "MIC" "Acinetobacter" 3 "Netilmicin" "Table 2B-2" 8 32 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Netilmicin" "Table 2B-5" 8 32 FALSE -"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" "30μg" 15 12 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" "30ug" 15 12 FALSE "CLSI 2012" "MIC" "Pseudomonas aeruginosa" 2 "Netilmicin" "Table 2B-1" 8 32 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Netilmicin" "Table 2C" "30μg" 15 12 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Netilmicin" "Table 2C" "30ug" 15 12 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Netilmicin" "Table 2C" 8 32 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Netilmicin" "Generic rules" "30μg" 15 12 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Netilmicin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2012" "DISK" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" "300μg" 17 14 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Netilmicin" "Generic rules" "30ug" 15 12 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Netilmicin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2012" "DISK" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" "300ug" 17 14 FALSE "CLSI 2012" "MIC" "Enterococcus" 3 "Nitrofurantoin" "Table 2D" 32 128 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" "300μg" 17 14 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" "300ug" 17 14 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Nitrofurantoin" "Table 2C" 32 128 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "300μg" 17 14 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100μg" 32 128 FALSE -"CLSI 2012" "DISK" "Enterococcus" 3 "Norfloxacin" "Table 2D" "10μg" 17 12 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "300ug" 17 14 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100ug" 32 128 FALSE +"CLSI 2012" "DISK" "Enterococcus" 3 "Norfloxacin" "Table 2D" "10ug" 17 12 FALSE "CLSI 2012" "MIC" "Enterococcus" 3 "Norfloxacin" "Table 2D" 4 16 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Norfloxacin" "Table 2B-5" 4 16 FALSE -"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Norfloxacin" "Table 2B-1" "10μg" 17 12 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Norfloxacin" "Table 2B-1" "10ug" 17 12 FALSE "CLSI 2012" "MIC" "Pseudomonas aeruginosa" 2 "Norfloxacin" "Table 2B-1" 4 16 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Norfloxacin" "Table 2C" "10μg" 17 12 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Norfloxacin" "Table 2C" "10ug" 17 12 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Norfloxacin" "Table 2C" 4 16 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10μg" 17 12 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10μg" 4 16 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10ug" 17 12 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10ug" 4 16 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Ofloxacin" "Table 2B-5" 2 8 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Ofloxacin" "Table 2E" "5μg" 16 6 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Ofloxacin" "Table 2E" "5ug" 16 6 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Ofloxacin" "Table 2E" 2 2048 FALSE -"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Ofloxacin" "Table 2F" "5μg" 31 24 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Ofloxacin" "Table 2F" "5ug" 31 24 FALSE "CLSI 2012" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" "Table 2F" 0.25 2 FALSE -"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" "5μg" 16 12 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" "5ug" 16 12 FALSE "CLSI 2012" "MIC" "Pseudomonas aeruginosa" 2 "Ofloxacin" "Table 2B-1" 2 8 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Ofloxacin" "Table 2C" "5μg" 18 14 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Ofloxacin" "Table 2C" "5ug" 18 14 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Ofloxacin" "Table 2C" 1 4 FALSE -"CLSI 2012" "DISK" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" "5μg" 16 12 FALSE +"CLSI 2012" "DISK" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" "5ug" 16 12 FALSE "CLSI 2012" "MIC" "Streptococcus" 3 "Ofloxacin" "Table 2H-1" 2 8 FALSE -"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" "5μg" 16 12 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" "5ug" 16 12 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Ofloxacin" "Table 2G" 2 8 FALSE -"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" "5μg" 16 12 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" "5ug" 16 12 FALSE "CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "Table 2H-2" 2 8 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5μg" 16 12 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10μg" 23 17 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10μg" 1 8 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Oxacillin" "Table 2C" "1μg" 13 10 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 16 12 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10ug" 23 17 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10ug" 1 8 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Oxacillin" "Table 2C" "1ug" 13 10 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Oxacillin" "Table 2C" 2 4 FALSE -"CLSI 2012" "DISK" "Staphylococcus aureus aureus" 1 "Oxacillin" "Table 2C" "1μg" 13 10 FALSE +"CLSI 2012" "DISK" "Staphylococcus aureus aureus" 1 "Oxacillin" "Table 2C" "1ug" 13 10 FALSE "CLSI 2012" "MIC" "Staphylococcus aureus aureus" 1 "Oxacillin" "Table 2C" 2 4 FALSE "CLSI 2012" "MIC" "Staphylococcus lugdunensis" 2 "Oxacillin" "Table 2C" 2 4 FALSE -"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "Table 2G" "1μg" 20 6 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Oxacillin" "Generic rules" "1μg" 0.25 0.5 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "Table 2G" "1ug" 20 6 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Oxacillin" "Generic rules" "1ug" 0.25 0.5 FALSE "CLSI 2012" "MIC" "Abiotrophia" 3 "Benzylpenicillin" "M45 Table 1" 0.125 4 FALSE "CLSI 2012" "MIC" "Aggregatibacter" 3 "Benzylpenicillin" "M45 Table 7" 1 4 FALSE "CLSI 2012" "MIC" "Bacillus" 3 "Benzylpenicillin" "M45 Table 3" 0.125 0.25 FALSE @@ -18963,7 +18963,7 @@ "CLSI 2012" "MIC" "Pediococcus" 3 "Benzylpenicillin" "M45 Table 14" 8 2048 FALSE "CLSI 2012" "DISK" "Pasteurella" 3 "Benzylpenicillin" "M45 Table 13" "10 Units" 25 6 FALSE "CLSI 2012" "MIC" "Pasteurella" 3 "Benzylpenicillin" "M45 Table 13" 0.5 2048 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" "10μg" 29 28 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" "10ug" 29 28 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Benzylpenicillin" "Table 2C" 0.125 0.25 FALSE "CLSI 2012" "DISK" "Streptococcus" 3 "Benzylpenicillin" "Table 2H-1" "10units" 24 6 FALSE "CLSI 2012" "MIC" "Streptococcus" 3 "Benzylpenicillin" "Table 2H-1" 0.125 2048 FALSE @@ -18974,155 +18974,155 @@ "CLSI 2012" "DISK" "(unknown name)" 6 "Benzylpenicillin" "Generic rules" "10units" 29 28 FALSE "CLSI 2012" "MIC" "(unknown name)" 6 "Benzylpenicillin" "Generic rules" "10units" 0.125 0.25 FALSE "CLSI 2012" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Phenoxymethylpenicillin" "Table 2G" 0.064 2 FALSE -"CLSI 2012" "DISK" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" "100μg" 21 17 FALSE +"CLSI 2012" "DISK" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" "100ug" 21 17 FALSE "CLSI 2012" "MIC" "Acinetobacter" 3 "Piperacillin" "Table 2B-2" 16 128 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Piperacillin" "Table 2B-5" 16 128 FALSE -"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" "100μg" 21 14 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" "100ug" 21 14 FALSE "CLSI 2012" "MIC" "Pseudomonas aeruginosa" 2 "Piperacillin" "Table 2B-1" 16 128 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Piperacillin" "Generic rules" "100μg" 21 17 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Piperacillin" "Generic rules" "100μg" 16 128 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Piperacillin" "Generic rules" "100ug" 21 17 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Piperacillin" "Generic rules" "100ug" 16 128 FALSE "CLSI 2012" "MIC" "Acinetobacter" 3 "Polymyxin B" "Table 2B-2" 2 4 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Polymyxin B" "Table 2B-5" 2 8 FALSE -"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Polymyxin B" "Table 2B-1" "300μg" 12 11 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Polymyxin B" "Table 2B-1" "300ug" 12 11 FALSE "CLSI 2012" "MIC" "Pseudomonas aeruginosa" 2 "Polymyxin B" "Table 2B-1" 2 8 FALSE "CLSI 2012" "DISK" "(unknown name)" 6 "Polymyxin B" "Generic rules" "300units" 12 11 FALSE "CLSI 2012" "MIC" "(unknown name)" 6 "Polymyxin B" "Generic rules" "300units" 2 8 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30μg" 18 14 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30μg" 1 4 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2μg" 13 12 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2μg" 2 4 FALSE -"CLSI 2012" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" "15μg" 19 15 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30ug" 18 14 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30ug" 1 4 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2ug" 13 12 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2ug" 2 4 FALSE +"CLSI 2012" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" "15ug" 19 15 FALSE "CLSI 2012" "MIC" "Enterococcus" 3 "Quinupristin/dalfopristin" "Table 2D" 1 4 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Table 2C" "15μg" 19 15 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Table 2C" "15ug" 19 15 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Table 2C" 1 4 FALSE -"CLSI 2012" "DISK" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" "15μg" 19 15 FALSE +"CLSI 2012" "DISK" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" "15ug" 19 15 FALSE "CLSI 2012" "MIC" "Streptococcus" 3 "Quinupristin/dalfopristin" "Table 2H-1" 1 4 FALSE -"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" "15μg" 19 15 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" "15ug" 19 15 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "Table 2G" 1 4 FALSE -"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" "15μg" 19 15 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" "15ug" 19 15 FALSE "CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "Table 2H-2" 1 4 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15μg" 19 15 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15μg" 1 4 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15ug" 19 15 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15ug" 1 4 FALSE "CLSI 2012" "MIC" "Aggregatibacter" 3 "Rifampicin" "M45 Table 7" 1 4 FALSE "CLSI 2012" "MIC" "Bacillus" 3 "Rifampicin" "M45 Table 3" 1 4 FALSE "CLSI 2012" "MIC" "Cardiobacterium" 3 "Rifampicin" "M45 Table 7" 1 4 FALSE "CLSI 2012" "MIC" "Eikenella" 3 "Rifampicin" "M45 Table 7" 1 4 FALSE -"CLSI 2012" "DISK" "Enterococcus" 3 "Rifampicin" "Table 2D" "5μg" 20 16 FALSE +"CLSI 2012" "DISK" "Enterococcus" 3 "Rifampicin" "Table 2D" "5ug" 20 16 FALSE "CLSI 2012" "MIC" "Enterococcus" 3 "Rifampicin" "Table 2D" 1 4 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Rifampicin" "Table 2E" "5μg" 20 16 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Rifampicin" "Table 2E" "5ug" 20 16 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Rifampicin" "Table 2E" 1 4 FALSE "CLSI 2012" "MIC" "Kingella" 3 "Rifampicin" "M45 Table 7" 1 4 FALSE "CLSI 2012" "MIC" "Moraxella catarrhalis" 2 "Rifampicin" "M45 Table 12" 1 4 FALSE -"CLSI 2012" "DISK" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" "5μg" 25 19 FALSE +"CLSI 2012" "DISK" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" "5ug" 25 19 FALSE "CLSI 2012" "MIC" "Neisseria meningitidis" 2 "Rifampicin" "Table 2I" 0.5 2 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Rifampicin" "Table 2C" "5μg" 20 16 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Rifampicin" "Table 2C" "5ug" 20 16 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Rifampicin" "Table 2C" 1 4 FALSE -"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" "5μg" 19 16 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" "5ug" 19 16 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" "Table 2G" 1 4 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Rifampicin" "Generic rules" "5μg" 20 16 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Rifampicin" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2012" "DISK" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" "10μg" 15 11 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Rifampicin" "Generic rules" "5ug" 20 16 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Rifampicin" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2012" "DISK" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" "10ug" 15 11 FALSE "CLSI 2012" "MIC" "Acinetobacter" 3 "Ampicillin/sulbactam" "Table 2B-2" 8 32 FALSE -"CLSI 2012" "DISK" "Aeromonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10μg" 15 11 FALSE +"CLSI 2012" "DISK" "Aeromonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE "CLSI 2012" "MIC" "Aeromonas" 3 "Ampicillin/sulbactam" "M45 Table 2" 8 32 FALSE "CLSI 2012" "MIC" "Aggregatibacter" 3 "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE "CLSI 2012" "MIC" "Cardiobacterium" 3 "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE "CLSI 2012" "MIC" "Eikenella" 3 "Ampicillin/sulbactam" "M45 Table 7" 2 4 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" "10/10μg" 20 19 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" "10/10ug" 20 19 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Ampicillin/sulbactam" "Table 2E" 2 4 FALSE -"CLSI 2012" "DISK" "Plesiomonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10μg" 15 11 FALSE +"CLSI 2012" "DISK" "Plesiomonas" 3 "Ampicillin/sulbactam" "M45 Table 2" "10ug" 15 11 FALSE "CLSI 2012" "MIC" "Plesiomonas" 3 "Ampicillin/sulbactam" "M45 Table 2" 8 32 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Ampicillin/sulbactam" "Table 2C" "10μg" 15 11 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Ampicillin/sulbactam" "Table 2C" "10ug" 15 11 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Ampicillin/sulbactam" "Table 2C" 8 32 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10μg" 15 11 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10μg" 8 32 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300μg" 256 512 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10ug" 15 11 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10ug" 8 32 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300ug" 256 512 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Sulfamethoxazole" "Table 2B-5" 256 512 FALSE "CLSI 2012" "MIC" "Neisseria meningitidis" 2 "Sulfamethoxazole" "Table 2I" 2 8 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" "200μg" 17 12 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" "200ug" 17 12 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Sulfamethoxazole" "Table 2C" 256 512 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300μg" 256 512 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300ug" 256 512 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Sulfisoxazole" "Table 2B-5" 256 512 FALSE "CLSI 2012" "MIC" "Neisseria meningitidis" 2 "Sulfisoxazole" "Table 2I" 2 8 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" "200μg" 17 12 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" "200ug" 17 12 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Sulfisoxazole" "Table 2C" 256 512 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300μg" 256 512 FALSE -"CLSI 2012" "DISK" "Histophilus somni" 2 "Spectinomycin" "Vet Table" "100μg" 14 10 FALSE -"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" "100μg" 18 14 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300ug" 256 512 FALSE +"CLSI 2012" "DISK" "Histophilus somni" 2 "Spectinomycin" "Vet Table" "100ug" 14 10 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" "100ug" 18 14 FALSE "CLSI 2012" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "Table 2F" 32 128 FALSE -"CLSI 2012" "DISK" "Providencia heimbachae" 2 "Spectinomycin" "100μg" 14 10 FALSE -"CLSI 2012" "DISK" "Pasteurella multocida multocida" 1 "Spectinomycin" "100μg" 14 10 FALSE +"CLSI 2012" "DISK" "Providencia heimbachae" 2 "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2012" "DISK" "Pasteurella multocida multocida" 1 "Spectinomycin" "100ug" 14 10 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Sparfloxacin" "Table 2E" 0.25 2048 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" "5μg" 19 15 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" "5ug" 19 15 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Sparfloxacin" "Table 2C" 0.5 2 FALSE -"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" "5μg" 19 15 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" "5ug" 19 15 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Sparfloxacin" "Table 2G" 0.5 2 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5μg" 0.5 2 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5ug" 0.5 2 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Sulfonamide" "Table 2B-5" 256 512 FALSE "CLSI 2012" "MIC" "Neisseria meningitidis" 2 "Sulfonamide" "Table 2I" 2 8 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Sulfonamide" "Table 2C" "200μg" 17 12 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Sulfonamide" "Table 2C" "200ug" 17 12 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Sulfonamide" "Table 2C" 256 512 FALSE -"CLSI 2012" "DISK" "Enterococcus" 3 "Streptomycin-high" "Table 2D" "300μg" 10 6 FALSE +"CLSI 2012" "DISK" "Enterococcus" 3 "Streptomycin-high" "Table 2D" "300ug" 10 6 FALSE "CLSI 2012" "MIC" "Enterococcus" 3 "Streptomycin-high" "Table 2D" 1024 2048 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300μg" 10 6 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300μg" 1024 2048 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300ug" 10 6 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300ug" 1024 2048 FALSE "CLSI 2012" "MIC" "Brucella" 3 "Streptoduocin" "M45 Table 16" 8 2048 FALSE "CLSI 2012" "MIC" "Enterococcus" 3 "Streptoduocin" "Table 2D" 1024 2048 FALSE "CLSI 2012" "MIC" "Francisella tularensis tularensis" 1 "Streptoduocin" "M45 Table 16" 8 2048 FALSE "CLSI 2012" "MIC" "Yersinia pestis" 2 "Streptoduocin" "M45 Table 16" 4 16 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Streptomycin" "Generic rules" "10μg" 15 11 FALSE -"CLSI 2012" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Streptomycin" "Generic rules" "10ug" 15 11 FALSE +"CLSI 2012" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2012" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Table 2B-2" 2 4 FALSE -"CLSI 2012" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2012" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2012" "MIC" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE "CLSI 2012" "MIC" "Aggregatibacter" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE "CLSI 2012" "MIC" "Bacillus" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 3" 2 4 FALSE "CLSI 2012" "MIC" "Brucella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 2048 FALSE -"CLSI 2012" "DISK" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2012" "DISK" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2012" "MIC" "Burkholderia cepacia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-3" 2 4 FALSE "CLSI 2012" "MIC" "Burkholderia pseudomallei" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 4 FALSE "CLSI 2012" "MIC" "Cardiobacterium" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE "CLSI 2012" "MIC" "Eikenella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-5" 2 4 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" "1.25μg/23.75μg" 15 10 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" "1.25ug/23.75ug" 15 10 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "Table 2E" 0.5 4 FALSE "CLSI 2012" "MIC" "Kingella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 7" 0.5 4 FALSE "CLSI 2012" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 11" 0.5 4 FALSE -"CLSI 2012" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 12" "1.25μg/23.75μg" 13 10 FALSE +"CLSI 2012" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 12" "1.25ug/23.75ug" 13 10 FALSE "CLSI 2012" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 12" 0.5 4 FALSE -"CLSI 2012" "DISK" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" "1.25μg/23.75μg" 30 25 FALSE +"CLSI 2012" "DISK" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" "1.25ug/23.75ug" 30 25 FALSE "CLSI 2012" "MIC" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "Table 2I" 0.125 0.5 FALSE -"CLSI 2012" "DISK" "Plesiomonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2012" "DISK" "Plesiomonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2012" "MIC" "Plesiomonas" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 2" 2 4 FALSE -"CLSI 2012" "DISK" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 13" "1.25μg/23.75μg" 24 6 FALSE +"CLSI 2012" "DISK" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 13" "1.25ug/23.75ug" 24 6 FALSE "CLSI 2012" "MIC" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "M45 Table 13" 0.5 2048 FALSE -"CLSI 2012" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" "30μg" 16 10 FALSE +"CLSI 2012" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" "30ug" 16 10 FALSE "CLSI 2012" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Table 2B-4" 2 4 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Table 2C" 2 4 FALSE -"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" "1.25μg/23.75μg" 19 15 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" "1.25ug/23.75ug" 19 15 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Table 2G" 0.5 4 FALSE "CLSI 2012" "MIC" "Yersinia pestis" 2 "Trimethoprim/sulfamethoxazole" "M45 Table 16" 2 4 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75μg" 16 10 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75μg" 2 4 FALSE -"CLSI 2012" "DISK" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" "75μg" 20 14 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 16 10 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 2 4 FALSE +"CLSI 2012" "DISK" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" "75ug" 20 14 FALSE "CLSI 2012" "MIC" "Acinetobacter" 3 "Ticarcillin/clavulanic acid" "Table 2B-2" 16 128 FALSE "CLSI 2012" "MIC" "Burkholderia cepacia" 2 "Ticarcillin/clavulanic acid" "Table 2B-3" 16 128 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Ticarcillin/clavulanic acid" "Table 2B-5" 16 128 FALSE -"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" "75μg" 24 15 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" "75ug" 24 15 FALSE "CLSI 2012" "MIC" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "Table 2B-1" 16 128 FALSE "CLSI 2012" "MIC" "Stenotrophomonas maltophilia" 2 "Ticarcillin/clavulanic acid" "Table 2B-4" 16 128 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Ticarcillin/clavulanic acid" "Table 2C" "75/10μg" 23 22 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Ticarcillin/clavulanic acid" "Table 2C" "75/10ug" 23 22 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Ticarcillin/clavulanic acid" "Table 2C" 8 16 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15μg" 20 14 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15μg" 16 128 FALSE -"CLSI 2012" "DISK" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" "30μg" 15 11 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15ug" 20 14 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15ug" 16 128 FALSE +"CLSI 2012" "DISK" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" "30ug" 15 11 FALSE "CLSI 2012" "MIC" "Acinetobacter" 3 "Tetracycline" "Table 2B-2" 4 16 FALSE -"CLSI 2012" "DISK" "Aeromonas" 3 "Tetracycline" "M45 Table 2" "30μg" 15 11 FALSE +"CLSI 2012" "DISK" "Aeromonas" 3 "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE "CLSI 2012" "MIC" "Aeromonas" 3 "Tetracycline" "M45 Table 2" 4 16 FALSE "CLSI 2012" "MIC" "Aggregatibacter" 3 "Tetracycline" "M45 Table 7" 2 8 FALSE "CLSI 2012" "MIC" "Bacillus" 3 "Tetracycline" "M45 Table 3" 4 16 FALSE @@ -19133,239 +19133,239 @@ "CLSI 2012" "MIC" "Campylobacter" 3 "Tetracycline" "M45 Table 3" 4 16 FALSE "CLSI 2012" "MIC" "Cardiobacterium" 3 "Tetracycline" "M45 Table 7" 2 8 FALSE "CLSI 2012" "MIC" "Eikenella" 3 "Tetracycline" "M45 Table 7" 2 8 FALSE -"CLSI 2012" "DISK" "Enterococcus" 3 "Tetracycline" "Table 2D" "30μg" 19 14 FALSE +"CLSI 2012" "DISK" "Enterococcus" 3 "Tetracycline" "Table 2D" "30ug" 19 14 FALSE "CLSI 2012" "MIC" "Enterococcus" 3 "Tetracycline" "Table 2D" 4 16 FALSE "CLSI 2012" "MIC" "Francisella tularensis tularensis" 1 "Tetracycline" "M45 Table 16" 4 2048 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Tetracycline" "Table 2B-5" 4 16 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Tetracycline" "Table 2E" "30μg" 29 25 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Tetracycline" "Table 2E" "30ug" 29 25 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Tetracycline" "Table 2E" 2 8 FALSE "CLSI 2012" "MIC" "Kingella" 3 "Tetracycline" "M45 Table 7" 2 8 FALSE -"CLSI 2012" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 12" "30μg" 29 24 FALSE +"CLSI 2012" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 12" "30ug" 29 24 FALSE "CLSI 2012" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" "M45 Table 12" 2 8 FALSE -"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" "30μg" 38 30 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" "30ug" 38 30 FALSE "CLSI 2012" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" "Table 2F" 0.25 2 FALSE -"CLSI 2012" "DISK" "Plesiomonas" 3 "Tetracycline" "M45 Table 2" "30μg" 15 11 FALSE +"CLSI 2012" "DISK" "Plesiomonas" 3 "Tetracycline" "M45 Table 2" "30ug" 15 11 FALSE "CLSI 2012" "MIC" "Plesiomonas" 3 "Tetracycline" "M45 Table 2" 4 16 FALSE -"CLSI 2012" "DISK" "Pasteurella" 3 "Tetracycline" "M45 Table 13" "30μg" 23 6 FALSE +"CLSI 2012" "DISK" "Pasteurella" 3 "Tetracycline" "M45 Table 13" "30ug" 23 6 FALSE "CLSI 2012" "MIC" "Pasteurella" 3 "Tetracycline" "M45 Table 13" 1 2048 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Tetracycline" "Table 2C" "30μg" 19 14 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Tetracycline" "Table 2C" "30ug" 19 14 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Tetracycline" "Table 2C" 4 16 FALSE -"CLSI 2012" "DISK" "Streptococcus" 3 "Tetracycline" "Table 2H-1" "30μg" 23 18 FALSE +"CLSI 2012" "DISK" "Streptococcus" 3 "Tetracycline" "Table 2H-1" "30ug" 23 18 FALSE "CLSI 2012" "MIC" "Streptococcus" 3 "Tetracycline" "Table 2H-1" 2 8 FALSE -"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" "30μg" 23 18 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" "30ug" 23 18 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" "Table 2G" 2 8 FALSE -"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" "30μg" 23 18 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" "30ug" 23 18 FALSE "CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "Table 2H-2" 2 8 FALSE "CLSI 2012" "MIC" "Yersinia pestis" 2 "Tetracycline" "M45 Table 16" 4 16 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Tetracycline" "Generic rules" "30μg" 15 11 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Tetracycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2012" "DISK" "Enterococcus" 3 "Teicoplanin" "Table 2D" "30μg" 14 10 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Tetracycline" "Generic rules" "30ug" 15 11 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Tetracycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2012" "DISK" "Enterococcus" 3 "Teicoplanin" "Table 2D" "30ug" 14 10 FALSE "CLSI 2012" "MIC" "Enterococcus" 3 "Teicoplanin" "Table 2D" 8 32 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Teicoplanin" "Table 2C" "30μg" 14 10 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Teicoplanin" "Table 2C" "30ug" 14 10 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Teicoplanin" "Table 2C" 8 32 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30μg" 14 10 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Tiamulin" "Generic rules" "30μg" 9 8 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Tiamulin" "Generic rules" "30μg" 16 32 FALSE -"CLSI 2012" "DISK" "Acinetobacter" 3 "Ticarcillin" "Table 2B-2" "75μg" 20 14 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30ug" 14 10 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Tiamulin" "Generic rules" "30ug" 9 8 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Tiamulin" "Generic rules" "30ug" 16 32 FALSE +"CLSI 2012" "DISK" "Acinetobacter" 3 "Ticarcillin" "Table 2B-2" "75ug" 20 14 FALSE "CLSI 2012" "MIC" "Acinetobacter" 3 "Ticarcillin" "Table 2B-2" 16 128 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Ticarcillin" "Table 2B-5" 16 128 FALSE -"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin" "Table 2B-1" "75μg" 24 15 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin" "Table 2B-1" "75ug" 24 15 FALSE "CLSI 2012" "MIC" "Pseudomonas aeruginosa" 2 "Ticarcillin" "Table 2B-1" 16 128 FALSE -"CLSI 2012" "DISK" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" "Vet Table" "15μg" 11 10 FALSE +"CLSI 2012" "DISK" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE "CLSI 2012" "MIC" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" "Vet Table" 16 32 FALSE -"CLSI 2012" "DISK" "Pasteurella multocida multocida" 1 "Tilmicosin" "Vet Table" "15μg" 11 10 FALSE +"CLSI 2012" "DISK" "Pasteurella multocida multocida" 1 "Tilmicosin" "Vet Table" "15ug" 11 10 FALSE "CLSI 2012" "MIC" "Pasteurella multocida multocida" 1 "Tilmicosin" "Vet Table" 16 32 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15μg" 14 10 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15μg" 8 32 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30μg" 2 8 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Telithromycin" "Table 2E" "15μg" 15 11 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15ug" 14 10 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15ug" 8 32 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30ug" 2 8 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Telithromycin" "Table 2E" "15ug" 15 11 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Telithromycin" "Table 2E" 4 16 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Telithromycin" "Table 2C" "15μg" 22 18 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Telithromycin" "Table 2C" "15ug" 22 18 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Telithromycin" "Table 2C" 1 4 FALSE -"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" "15μg" 19 15 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" "15ug" 19 15 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" "Table 2G" 1 4 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Telithromycin" "Generic rules" "15μg" 22 18 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Telithromycin" "Generic rules" "15μg" 1 4 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Trimethoprim" "Table 2C" "5μg" 16 10 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Telithromycin" "Generic rules" "15ug" 22 18 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Telithromycin" "Generic rules" "15ug" 1 4 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Trimethoprim" "Table 2C" "5ug" 16 10 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Trimethoprim" "Table 2C" 8 16 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5μg" 16 10 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5μg" 8 16 FALSE -"CLSI 2012" "DISK" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" "10μg" 15 12 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 16 10 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 8 16 FALSE +"CLSI 2012" "DISK" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" "10ug" 15 12 FALSE "CLSI 2012" "MIC" "Acinetobacter" 3 "Tobramycin" "Table 2B-2" 4 16 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Tobramycin" "Table 2B-5" 4 16 FALSE -"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" "10μg" 15 12 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" "10ug" 15 12 FALSE "CLSI 2012" "MIC" "Pseudomonas aeruginosa" 2 "Tobramycin" "Table 2B-1" 4 16 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Tobramycin" "Table 2C" "10μg" 15 12 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Tobramycin" "Table 2C" "10ug" 15 12 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Tobramycin" "Table 2C" 4 16 FALSE -"CLSI 2012" "DISK" "(unknown name)" 6 "Tobramycin" "Generic rules" "10μg" 15 12 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Tobramycin" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Trovafloxacin" "Table 2E" "10μg" 22 6 FALSE +"CLSI 2012" "DISK" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 15 12 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Trovafloxacin" "Table 2E" "10ug" 22 6 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Trovafloxacin" "Table 2E" 1 2048 FALSE -"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" "10μg" 34 6 FALSE +"CLSI 2012" "DISK" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" "10ug" 34 6 FALSE "CLSI 2012" "MIC" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "Table 2F" 0.25 2048 FALSE -"CLSI 2012" "DISK" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" "10μg" 19 15 FALSE +"CLSI 2012" "DISK" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" "10ug" 19 15 FALSE "CLSI 2012" "MIC" "Streptococcus" 3 "Trovafloxacin" "Table 2H-1" 1 4 FALSE -"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" "10μg" 19 15 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" "10ug" 19 15 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Trovafloxacin" "Table 2G" 1 4 FALSE -"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" "10μg" 19 15 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" "10ug" 19 15 FALSE "CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "Table 2H-2" 1 4 FALSE -"CLSI 2012" "DISK" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" "100μg" 21 17 FALSE +"CLSI 2012" "DISK" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" "100ug" 21 17 FALSE "CLSI 2012" "MIC" "Acinetobacter" 3 "Piperacillin/tazobactam" "Table 2B-2" 16 128 FALSE -"CLSI 2012" "DISK" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100μg" 21 17 FALSE +"CLSI 2012" "DISK" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE "CLSI 2012" "MIC" "Aeromonas" 3 "Piperacillin/tazobactam" "M45 Table 2" 16 128 FALSE "CLSI 2012" "MIC" "(unknown Gram-negatives)" 2 "Piperacillin/tazobactam" "Table 2B-5" 16 128 FALSE -"CLSI 2012" "DISK" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" "100μg" 21 6 FALSE +"CLSI 2012" "DISK" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" "100ug" 21 6 FALSE "CLSI 2012" "MIC" "Haemophilus" 3 "Piperacillin/tazobactam" "Table 2E" 1 2 FALSE -"CLSI 2012" "DISK" "Plesiomonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100μg" 21 17 FALSE +"CLSI 2012" "DISK" "Plesiomonas" 3 "Piperacillin/tazobactam" "M45 Table 2" "100ug" 21 17 FALSE "CLSI 2012" "MIC" "Plesiomonas" 3 "Piperacillin/tazobactam" "M45 Table 2" 16 128 FALSE -"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" "100μg" 21 14 FALSE +"CLSI 2012" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" "100ug" 21 14 FALSE "CLSI 2012" "MIC" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "Table 2B-1" 16 128 FALSE -"CLSI 2012" "DISK" "Staphylococcus" 3 "Piperacillin/tazobactam" "Table 2C" "100/10μg" 18 17 FALSE +"CLSI 2012" "DISK" "Staphylococcus" 3 "Piperacillin/tazobactam" "Table 2C" "100/10ug" 18 17 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Piperacillin/tazobactam" "Table 2C" 8 16 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10μg" 16 128 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10ug" 16 128 FALSE "CLSI 2012" "MIC" "Abiotrophia" 3 "Vancomycin" "M45 Table 1" 1 2048 FALSE "CLSI 2012" "MIC" "Bacillus" 3 "Vancomycin" "M45 Table 3" 4 2048 FALSE -"CLSI 2012" "DISK" "Enterococcus" 3 "Vancomycin" "Table 2D" "30μg" 17 14 FALSE +"CLSI 2012" "DISK" "Enterococcus" 3 "Vancomycin" "Table 2D" "30ug" 17 14 FALSE "CLSI 2012" "MIC" "Enterococcus" 3 "Vancomycin" "Table 2D" 4 32 FALSE "CLSI 2012" "MIC" "Granulicatella" 3 "Vancomycin" "M45 Table 1" 1 2048 FALSE "CLSI 2012" "MIC" "Lactobacillus" 3 "Vancomycin" "M45 Table 9" 2 16 FALSE "CLSI 2012" "MIC" "Staphylococcus" 3 "Vancomycin" "Table 2C" 4 32 FALSE "CLSI 2012" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" "Table 2C" 2 16 FALSE -"CLSI 2012" "DISK" "Streptococcus" 3 "Vancomycin" "Table 2H-1" "30μg" 17 6 FALSE +"CLSI 2012" "DISK" "Streptococcus" 3 "Vancomycin" "Table 2H-1" "30ug" 17 6 FALSE "CLSI 2012" "MIC" "Streptococcus" 3 "Vancomycin" "Table 2H-1" 1 2048 FALSE -"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" "30μg" 17 6 FALSE +"CLSI 2012" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" "30ug" 17 6 FALSE "CLSI 2012" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" "Table 2G" 1 2048 FALSE -"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" "30μg" 17 6 FALSE +"CLSI 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" "30ug" 17 6 FALSE "CLSI 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Table 2H-2" 1 2048 FALSE -"CLSI 2012" "MIC" "(unknown name)" 6 "Vancomycin" "Generic rules" "30μg" 4 32 FALSE -"CLSI 2011" "DISK" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "20μg" 18 13 FALSE +"CLSI 2012" "MIC" "(unknown name)" 6 "Vancomycin" "Generic rules" "30ug" 4 32 FALSE +"CLSI 2011" "DISK" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "20ug" 18 13 FALSE "CLSI 2011" "MIC" "Aeromonas" 3 "Amoxicillin/clavulanic acid" 8 32 FALSE "CLSI 2011" "MIC" "Aggregatibacter" 3 "Amoxicillin/clavulanic acid" 4 8 FALSE "CLSI 2011" "MIC" "Burkholderia pseudomallei" 2 "Amoxicillin/clavulanic acid" 8 32 FALSE "CLSI 2011" "MIC" "Cardiobacterium" 3 "Amoxicillin/clavulanic acid" 4 8 FALSE "CLSI 2011" "MIC" "Eikenella" 3 "Amoxicillin/clavulanic acid" 4 8 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "20/10μg" 20 19 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "20/10ug" 20 19 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Amoxicillin/clavulanic acid" 4 8 FALSE -"CLSI 2011" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "200μg" 24 23 FALSE +"CLSI 2011" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "200ug" 24 23 FALSE "CLSI 2011" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" 4 8 FALSE -"CLSI 2011" "DISK" "Plesiomonas" 3 "Amoxicillin/clavulanic acid" "20μg" 18 13 FALSE +"CLSI 2011" "DISK" "Plesiomonas" 3 "Amoxicillin/clavulanic acid" "20ug" 18 13 FALSE "CLSI 2011" "MIC" "Plesiomonas" 3 "Amoxicillin/clavulanic acid" 8 32 FALSE -"CLSI 2011" "DISK" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "20μg" 27 6 FALSE +"CLSI 2011" "DISK" "Pasteurella" 3 "Amoxicillin/clavulanic acid" "20ug" 27 6 FALSE "CLSI 2011" "MIC" "Pasteurella" 3 "Amoxicillin/clavulanic acid" 0.5 2048 FALSE -"CLSI 2011" "DISK" "Staphylococcus" 3 "Amoxicillin/clavulanic acid" "20/10μg" 20 19 FALSE +"CLSI 2011" "DISK" "Staphylococcus" 3 "Amoxicillin/clavulanic acid" "20/10ug" 20 19 FALSE "CLSI 2011" "MIC" "Staphylococcus" 3 "Amoxicillin/clavulanic acid" 4 8 FALSE "CLSI 2011" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Amoxicillin/clavulanic acid" 2 8 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10μg" 18 13 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10μg" 8 32 FALSE -"CLSI 2011" "DISK" "Aeromonas" 3 "Amikacin" "30μg" 17 14 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 18 13 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 8 32 FALSE +"CLSI 2011" "DISK" "Aeromonas" 3 "Amikacin" "30ug" 17 14 FALSE "CLSI 2011" "MIC" "Aeromonas" 3 "Amikacin" 16 64 FALSE "CLSI 2011" "MIC" "Bacillus" 3 "Amikacin" 16 64 FALSE -"CLSI 2011" "DISK" "Plesiomonas" 3 "Amikacin" "30μg" 17 14 FALSE +"CLSI 2011" "DISK" "Plesiomonas" 3 "Amikacin" "30ug" 17 14 FALSE "CLSI 2011" "MIC" "Plesiomonas" 3 "Amikacin" 16 64 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Amikacin" "Generic rules" "30μg" 17 14 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Amikacin" "Generic rules" "30μg" 16 64 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 17 14 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 16 64 FALSE "CLSI 2011" "MIC" "Aggregatibacter" 3 "Ampicillin" 1 4 FALSE "CLSI 2011" "MIC" "Bacillus" 3 "Ampicillin" 0.25 0.5 FALSE "CLSI 2011" "MIC" "Cardiobacterium" 3 "Ampicillin" 1 4 FALSE "CLSI 2011" "MIC" "Eikenella" 3 "Ampicillin" 1 4 FALSE -"CLSI 2011" "DISK" "Enterococcus" 3 "Ampicillin" "10μg" 17 16 FALSE +"CLSI 2011" "DISK" "Enterococcus" 3 "Ampicillin" "10ug" 17 16 FALSE "CLSI 2011" "MIC" "Enterococcus" 3 "Ampicillin" 8 16 FALSE "CLSI 2011" "MIC" "Erysipelothrix rhusiopathiae" 2 "Ampicillin" "M45 Table 6" 0.25 2048 FALSE "CLSI 2011" "MIC" "Granulicatella" 3 "Ampicillin" 0.25 8 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Ampicillin" "10μg" 22 18 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Ampicillin" "10ug" 22 18 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Ampicillin" 1 4 FALSE "CLSI 2011" "MIC" "Leuconostoc" 3 "Ampicillin" 8 2048 FALSE "CLSI 2011" "MIC" "Lactobacillus" 3 "Ampicillin" 8 2048 FALSE "CLSI 2011" "MIC" "Listeria monocytogenes" 2 "Ampicillin" 2 2048 FALSE "CLSI 2011" "MIC" "Neisseria meningitidis" 2 "Ampicillin" 0.125 2 FALSE "CLSI 2011" "MIC" "Pediococcus" 3 "Ampicillin" 8 2048 FALSE -"CLSI 2011" "DISK" "Pasteurella" 3 "Ampicillin" "10μg" 27 6 FALSE +"CLSI 2011" "DISK" "Pasteurella" 3 "Ampicillin" "10ug" 27 6 FALSE "CLSI 2011" "MIC" "Pasteurella" 3 "Ampicillin" 0.5 2048 FALSE -"CLSI 2011" "DISK" "Staphylococcus" 3 "Ampicillin" "10μg" 29 28 FALSE +"CLSI 2011" "DISK" "Staphylococcus" 3 "Ampicillin" "10ug" 29 28 FALSE "CLSI 2011" "MIC" "Staphylococcus" 3 "Ampicillin" 0.25 0.5 FALSE -"CLSI 2011" "DISK" "Streptococcus" 3 "Ampicillin" "10μg" 24 6 FALSE +"CLSI 2011" "DISK" "Streptococcus" 3 "Ampicillin" "10ug" 24 6 FALSE "CLSI 2011" "MIC" "Streptococcus" 3 "Ampicillin" 0.25 2048 FALSE "CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" 0.25 8 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Ampicillin" "Generic rules" "10μg" 17 13 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Ampicillin" "Generic rules" "2μg" 8 32 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Ampicillin" "Generic rules" "10ug" 17 13 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Ampicillin" "Generic rules" "2ug" 8 32 FALSE "CLSI 2011" "MIC" "Pasteurella" 3 "Amoxicillin" 0.5 2048 FALSE "CLSI 2011" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Amoxicillin" 2 8 FALSE -"CLSI 2011" "DISK" "Aeromonas" 3 "Aztreonam" "30μg" 21 17 FALSE +"CLSI 2011" "DISK" "Aeromonas" 3 "Aztreonam" "30ug" 21 17 FALSE "CLSI 2011" "MIC" "Aeromonas" 3 "Aztreonam" 4 16 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Aztreonam" "30μg" 26 6 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Aztreonam" "30ug" 26 6 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Aztreonam" 2 2048 FALSE -"CLSI 2011" "DISK" "Plesiomonas" 3 "Aztreonam" "30μg" 21 17 FALSE +"CLSI 2011" "DISK" "Plesiomonas" 3 "Aztreonam" "30ug" 21 17 FALSE "CLSI 2011" "MIC" "Plesiomonas" 3 "Aztreonam" 4 16 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Aztreonam" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Aztreonam" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Azlocillin" "Generic rules" "75μg" 18 17 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Azlocillin" "Generic rules" "75μg" 64 128 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Azlocillin" "Generic rules" "75ug" 18 17 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Azlocillin" "Generic rules" "75ug" 64 128 FALSE "CLSI 2011" "MIC" "Aggregatibacter" 3 "Azithromycin" 4 2048 FALSE "CLSI 2011" "MIC" "Cardiobacterium" 3 "Azithromycin" 4 2048 FALSE "CLSI 2011" "MIC" "Eikenella" 3 "Azithromycin" 4 2048 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Azithromycin" "15μg" 12 6 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Azithromycin" "15ug" 12 6 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Azithromycin" 4 2048 FALSE "CLSI 2011" "MIC" "Kingella" 3 "Azithromycin" 4 2048 FALSE -"CLSI 2011" "DISK" "Moraxella catarrhalis" 2 "Azithromycin" "15μg" 26 6 FALSE +"CLSI 2011" "DISK" "Moraxella catarrhalis" 2 "Azithromycin" "15ug" 26 6 FALSE "CLSI 2011" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" 0.25 2048 FALSE -"CLSI 2011" "DISK" "Neisseria meningitidis" 2 "Azithromycin" "15μg" 20 6 FALSE +"CLSI 2011" "DISK" "Neisseria meningitidis" 2 "Azithromycin" "15ug" 20 6 FALSE "CLSI 2011" "MIC" "Neisseria meningitidis" 2 "Azithromycin" 2 2048 FALSE -"CLSI 2011" "DISK" "Pasteurella" 3 "Azithromycin" "15μg" 20 6 FALSE +"CLSI 2011" "DISK" "Pasteurella" 3 "Azithromycin" "15ug" 20 6 FALSE "CLSI 2011" "MIC" "Pasteurella" 3 "Azithromycin" 1 2048 FALSE "CLSI 2011" "MIC" "Streptococcus" 3 "Azithromycin" 0.5 2 FALSE -"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Azithromycin" "15μg" 18 13 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Azithromycin" "15ug" 18 13 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" 0.5 2 FALSE -"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "15μg" 18 13 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" "15ug" 18 13 FALSE "CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Azithromycin" 0.5 2 FALSE "CLSI 2011" "MIC" "Vibrio cholerae" 2 "Azithromycin" 2 2048 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Azithromycin" "Generic rules" "15μg" 18 13 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Azithromycin" "Generic rules" "15μg" 2 8 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Cefetamet" "10μg" 18 14 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Azithromycin" "Generic rules" "15ug" 18 13 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Azithromycin" "Generic rules" "15ug" 2 8 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Cefetamet" "10ug" 18 14 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Cefetamet" 4 16 FALSE -"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Cefetamet" "10μg" 29 6 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Cefetamet" "10ug" 29 6 FALSE "CLSI 2011" "MIC" "Neisseria gonorrhoeae" 2 "Cefetamet" 0.5 2048 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Cefetamet" "Generic rules" "10μg" 18 14 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Cefetamet" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2011" "DISK" "Aeromonas" 3 "Ceftazidime" "30μg" 21 17 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Cefetamet" "Generic rules" "10ug" 18 14 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Cefetamet" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2011" "DISK" "Aeromonas" 3 "Ceftazidime" "30ug" 21 17 FALSE "CLSI 2011" "MIC" "Aeromonas" 3 "Ceftazidime" 4 16 FALSE "CLSI 2011" "MIC" "Bacillus" 3 "Ceftazidime" 8 32 FALSE -"CLSI 2011" "DISK" "Bacillus cereus" 2 "Ceftazidime" "30μg" 21 17 FALSE -"CLSI 2011" "DISK" "Burkholderia cepacia" 2 "Ceftazidime" "30μg" 21 17 FALSE +"CLSI 2011" "DISK" "Bacillus cereus" 2 "Ceftazidime" "30ug" 21 17 FALSE +"CLSI 2011" "DISK" "Burkholderia cepacia" 2 "Ceftazidime" "30ug" 21 17 FALSE "CLSI 2011" "MIC" "Burkholderia mallei" 2 "Ceftazidime" 8 32 FALSE "CLSI 2011" "MIC" "Burkholderia pseudomallei" 2 "Ceftazidime" 8 32 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Ceftazidime" "30μg" 26 6 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Ceftazidime" "30ug" 26 6 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Ceftazidime" 2 2048 FALSE "CLSI 2011" "MIC" "Moraxella catarrhalis" 2 "Ceftazidime" 2 2048 FALSE -"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Ceftazidime" "30μg" 31 6 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Ceftazidime" "30ug" 31 6 FALSE "CLSI 2011" "MIC" "Neisseria gonorrhoeae" 2 "Ceftazidime" 0.5 2048 FALSE -"CLSI 2011" "DISK" "Plesiomonas" 3 "Ceftazidime" "30μg" 21 17 FALSE +"CLSI 2011" "DISK" "Plesiomonas" 3 "Ceftazidime" "30ug" 21 17 FALSE "CLSI 2011" "MIC" "Plesiomonas" 3 "Ceftazidime" 4 16 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Cefdinir" "5μg" 20 6 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Cefdinir" "5ug" 20 6 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Cefdinir" 1 2048 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Cefdinir" 0.5 2 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Cefdinir" "Generic rules" "5μg" 20 16 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Cefdinir" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Cefaclor" "30μg" 20 16 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Cefdinir" "Generic rules" "5ug" 20 16 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Cefdinir" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Cefaclor" "30ug" 20 16 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Cefaclor" 8 32 FALSE "CLSI 2011" "MIC" "Moraxella catarrhalis" 2 "Cefaclor" 8 32 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" 1 4 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Cefaclor" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Cefaclor" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Cephalothin" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Cephalothin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Cefixime" "5μg" 21 6 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Cefaclor" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Cefaclor" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Cephalothin" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Cephalothin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Cefixime" "5ug" 21 6 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Cefixime" 1 2048 FALSE -"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Cefixime" "5μg" 31 6 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Cefixime" "5ug" 31 6 FALSE "CLSI 2011" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" 0.25 2048 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Cefixime" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Cefixime" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75μg" 21 15 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75μg" 16 64 FALSE -"CLSI 2011" "DISK" "Aeromonas" 3 "Chloramphenicol" "30μg" 18 12 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75ug" 21 15 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75ug" 16 64 FALSE +"CLSI 2011" "DISK" "Aeromonas" 3 "Chloramphenicol" "30ug" 18 12 FALSE "CLSI 2011" "MIC" "Aeromonas" 3 "Chloramphenicol" 8 32 FALSE "CLSI 2011" "MIC" "Aggregatibacter" 3 "Chloramphenicol" 4 16 FALSE "CLSI 2011" "MIC" "Bacillus" 3 "Chloramphenicol" 8 32 FALSE @@ -19373,34 +19373,34 @@ "CLSI 2011" "MIC" "Eikenella" 3 "Chloramphenicol" 4 16 FALSE "CLSI 2011" "MIC" "Francisella tularensis tularensis" 1 "Chloramphenicol" 8 2048 FALSE "CLSI 2011" "MIC" "Granulicatella" 3 "Chloramphenicol" 4 8 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Chloramphenicol" "30μg" 29 25 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Chloramphenicol" "30ug" 29 25 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Chloramphenicol" 2 8 FALSE "CLSI 2011" "MIC" "Kingella" 3 "Chloramphenicol" 4 16 FALSE "CLSI 2011" "MIC" "Leuconostoc" 3 "Chloramphenicol" 8 32 FALSE "CLSI 2011" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" 2 8 FALSE -"CLSI 2011" "DISK" "Neisseria meningitidis" 2 "Chloramphenicol" "30μg" 26 19 FALSE +"CLSI 2011" "DISK" "Neisseria meningitidis" 2 "Chloramphenicol" "30ug" 26 19 FALSE "CLSI 2011" "MIC" "Neisseria meningitidis" 2 "Chloramphenicol" 2 8 FALSE "CLSI 2011" "MIC" "Pediococcus" 3 "Chloramphenicol" 8 32 FALSE -"CLSI 2011" "DISK" "Plesiomonas" 3 "Chloramphenicol" "30μg" 18 12 FALSE +"CLSI 2011" "DISK" "Plesiomonas" 3 "Chloramphenicol" "30ug" 18 12 FALSE "CLSI 2011" "MIC" "Plesiomonas" 3 "Chloramphenicol" 8 32 FALSE -"CLSI 2011" "DISK" "Pasteurella" 3 "Chloramphenicol" "30μg" 28 6 FALSE +"CLSI 2011" "DISK" "Pasteurella" 3 "Chloramphenicol" "30ug" 28 6 FALSE "CLSI 2011" "MIC" "Pasteurella" 3 "Chloramphenicol" 2 2048 FALSE -"CLSI 2011" "DISK" "Streptococcus" 3 "Chloramphenicol" "30μg" 21 17 FALSE +"CLSI 2011" "DISK" "Streptococcus" 3 "Chloramphenicol" "30ug" 21 17 FALSE "CLSI 2011" "MIC" "Streptococcus" 3 "Chloramphenicol" 4 16 FALSE -"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "30μg" 21 20 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "30ug" 21 20 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" 4 8 FALSE -"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "30μg" 21 17 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" "30ug" 21 17 FALSE "CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Chloramphenicol" 4 16 FALSE "CLSI 2011" "MIC" "Yersinia pestis" 2 "Chloramphenicol" 8 32 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30μg" 18 12 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Cefonicid" "30μg" 20 16 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 18 12 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Cefonicid" "30ug" 20 16 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Cefonicid" 4 16 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Cefonicid" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Cefonicid" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100μg" 19 14 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100μg" 16 64 FALSE -"CLSI 2011" "DISK" "Aeromonas" 3 "Ciprofloxacin" "5μg" 21 15 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Cefonicid" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Cefonicid" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100ug" 19 14 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100ug" 16 64 FALSE +"CLSI 2011" "DISK" "Aeromonas" 3 "Ciprofloxacin" "5ug" 21 15 FALSE "CLSI 2011" "MIC" "Aeromonas" 3 "Ciprofloxacin" 1 4 FALSE "CLSI 2011" "MIC" "Aggregatibacter" 3 "Ciprofloxacin" 1 4 FALSE "CLSI 2011" "MIC" "Bacillus" 3 "Ciprofloxacin" 1 4 FALSE @@ -19411,73 +19411,73 @@ "CLSI 2011" "MIC" "Erysipelothrix rhusiopathiae" 2 "Ciprofloxacin" "M45 Table 6" 1 2048 FALSE "CLSI 2011" "MIC" "Francisella tularensis tularensis" 1 "Ciprofloxacin" 0.5 2048 FALSE "CLSI 2011" "MIC" "Granulicatella" 3 "Ciprofloxacin" 1 4 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Ciprofloxacin" "5μg" 21 6 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Ciprofloxacin" "5ug" 21 6 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Ciprofloxacin" 1 2048 FALSE "CLSI 2011" "MIC" "Kingella" 3 "Ciprofloxacin" 1 4 FALSE "CLSI 2011" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" 1 2048 FALSE -"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "5μg" 41 27 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "5ug" 41 27 FALSE "CLSI 2011" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" 0.064 1 FALSE -"CLSI 2011" "DISK" "Neisseria meningitidis" 2 "Ciprofloxacin" "5μg" 35 32 FALSE +"CLSI 2011" "DISK" "Neisseria meningitidis" 2 "Ciprofloxacin" "5ug" 35 32 FALSE "CLSI 2011" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" 0.032 0.12 FALSE -"CLSI 2011" "DISK" "Plesiomonas" 3 "Ciprofloxacin" "5μg" 21 15 FALSE +"CLSI 2011" "DISK" "Plesiomonas" 3 "Ciprofloxacin" "5ug" 21 15 FALSE "CLSI 2011" "MIC" "Plesiomonas" 3 "Ciprofloxacin" 1 4 FALSE "CLSI 2011" "MIC" "Yersinia pestis" 2 "Ciprofloxacin" 0.25 2048 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5μg" 21 15 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5μg" 1 4 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 21 15 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 1 4 FALSE "CLSI 2011" "MIC" "Bacillus" 3 "Clindamycin" 0.5 4 FALSE "CLSI 2011" "MIC" "Erysipelothrix rhusiopathiae" 2 "Clindamycin" "M45 Table 6" 0.25 1 FALSE "CLSI 2011" "MIC" "Granulicatella" 3 "Clindamycin" 0.25 1 FALSE "CLSI 2011" "MIC" "Lactobacillus" 3 "Clindamycin" 0.5 2 FALSE "CLSI 2011" "MIC" "Moraxella catarrhalis" 2 "Clindamycin" 0.5 4 FALSE -"CLSI 2011" "DISK" "Streptococcus" 3 "Clindamycin" "2μg" 19 15 FALSE +"CLSI 2011" "DISK" "Streptococcus" 3 "Clindamycin" "2ug" 19 15 FALSE "CLSI 2011" "MIC" "Streptococcus" 3 "Clindamycin" 0.25 1 FALSE -"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "2μg" 19 15 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "2ug" 19 15 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" 0.25 1 FALSE -"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "2μg" 19 15 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "2ug" 19 15 FALSE "CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" 0.25 1 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Clindamycin" "Generic rules" "2μg" 21 14 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Clindamycin" "Generic rules" "2μg" 0.5 4 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Clindamycin" "Generic rules" "2ug" 21 14 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Clindamycin" "Generic rules" "2ug" 0.5 4 FALSE "CLSI 2011" "MIC" "Aggregatibacter" 3 "Clarithromycin" 8 32 FALSE "CLSI 2011" "MIC" "Cardiobacterium" 3 "Clarithromycin" 8 32 FALSE "CLSI 2011" "MIC" "Eikenella" 3 "Clarithromycin" 8 32 FALSE "CLSI 2011" "MIC" "Helicobacter pylori" 2 "Clarithromycin" 0.25 1 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Clarithromycin" "15μg" 13 10 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Clarithromycin" "15ug" 13 10 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Clarithromycin" 8 32 FALSE "CLSI 2011" "MIC" "Kingella" 3 "Clarithromycin" 8 32 FALSE -"CLSI 2011" "DISK" "Moraxella catarrhalis" 2 "Clarithromycin" "15μg" 24 6 FALSE +"CLSI 2011" "DISK" "Moraxella catarrhalis" 2 "Clarithromycin" "15ug" 24 6 FALSE "CLSI 2011" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" 1 2048 FALSE -"CLSI 2011" "DISK" "Streptococcus" 3 "Clarithromycin" "15μg" 21 16 FALSE +"CLSI 2011" "DISK" "Streptococcus" 3 "Clarithromycin" "15ug" 21 16 FALSE "CLSI 2011" "MIC" "Streptococcus" 3 "Clarithromycin" 0.25 1 FALSE -"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Clarithromycin" "15μg" 21 16 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Clarithromycin" "15ug" 21 16 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" 0.25 1 FALSE -"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "15μg" 21 16 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" "15ug" 21 16 FALSE "CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clarithromycin" 0.25 1 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15μg" 18 13 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15μg" 2 8 FALSE -"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Cefmetazole" "30μg" 33 27 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15ug" 18 13 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15ug" 2 8 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Cefmetazole" "30ug" 33 27 FALSE "CLSI 2011" "MIC" "Neisseria gonorrhoeae" 2 "Cefmetazole" 2 8 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30μg" 16 64 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30ug" 16 64 FALSE "CLSI 2011" "MIC" "Acinetobacter" 3 "Colistin" 2 4 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Colistin" "Generic rules" "10μg" 11 10 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Colistin" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Cefpodoxime" "10μg" 21 6 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Colistin" "Generic rules" "10ug" 11 10 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Colistin" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Cefpodoxime" "10ug" 21 6 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Cefpodoxime" 2 2048 FALSE -"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "10μg" 29 6 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Cefpodoxime" "10ug" 29 6 FALSE "CLSI 2011" "MIC" "Neisseria gonorrhoeae" 2 "Cefpodoxime" 0.5 2048 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" 0.5 2 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10μg" 21 17 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Cefprozil" "30μg" 18 14 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 21 17 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Cefprozil" "30ug" 18 14 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Cefprozil" 8 32 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Cefprozil" 2 8 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Cefprozil" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Cefprozil" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2011" "DISK" "Pseudomonas aeruginosa" 2 "Carbenicillin" "100μg" 17 13 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Cefprozil" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Cefprozil" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2011" "DISK" "Pseudomonas aeruginosa" 2 "Carbenicillin" "100ug" 17 13 FALSE "CLSI 2011" "MIC" "Pseudomonas aeruginosa" 2 "Carbenicillin" 128 512 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Carbenicillin" "Generic rules" "100μg" 23 19 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Carbenicillin" "Generic rules" "100μg" 16 64 FALSE -"CLSI 2011" "DISK" "Aeromonas" 3 "Ceftriaxone" "30μg" 23 19 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Carbenicillin" "Generic rules" "100ug" 23 19 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Carbenicillin" "Generic rules" "100ug" 16 64 FALSE +"CLSI 2011" "DISK" "Aeromonas" 3 "Ceftriaxone" "30ug" 23 19 FALSE "CLSI 2011" "MIC" "Aeromonas" 3 "Ceftriaxone" 1 4 FALSE "CLSI 2011" "MIC" "Aggregatibacter" 3 "Ceftriaxone" 2 2048 FALSE "CLSI 2011" "MIC" "Bacillus" 3 "Ceftriaxone" 8 64 FALSE @@ -19485,35 +19485,35 @@ "CLSI 2011" "MIC" "Eikenella" 3 "Ceftriaxone" 2 2048 FALSE "CLSI 2011" "MIC" "Erysipelothrix rhusiopathiae" 2 "Ceftriaxone" "M45 Table 6" 1 2048 FALSE "CLSI 2011" "MIC" "Granulicatella" 3 "Ceftriaxone" 1 4 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Ceftriaxone" "30μg" 26 6 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Ceftriaxone" "30ug" 26 6 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Ceftriaxone" 2 2048 FALSE "CLSI 2011" "MIC" "Kingella" 3 "Ceftriaxone" 2 2048 FALSE "CLSI 2011" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" 2 2048 FALSE -"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "30μg" 35 6 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "30ug" 35 6 FALSE "CLSI 2011" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" 0.25 2048 FALSE -"CLSI 2011" "DISK" "Neisseria meningitidis" 2 "Ceftriaxone" "30μg" 34 6 FALSE +"CLSI 2011" "DISK" "Neisseria meningitidis" 2 "Ceftriaxone" "30ug" 34 6 FALSE "CLSI 2011" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" 0.125 2048 FALSE -"CLSI 2011" "DISK" "Plesiomonas" 3 "Ceftriaxone" "30μg" 23 19 FALSE +"CLSI 2011" "DISK" "Plesiomonas" 3 "Ceftriaxone" "30ug" 23 19 FALSE "CLSI 2011" "MIC" "Plesiomonas" 3 "Ceftriaxone" 1 4 FALSE -"CLSI 2011" "DISK" "Pasteurella" 3 "Ceftriaxone" "30μg" 34 6 FALSE +"CLSI 2011" "DISK" "Pasteurella" 3 "Ceftriaxone" "30ug" 34 6 FALSE "CLSI 2011" "MIC" "Pasteurella" 3 "Ceftriaxone" 0.125 2048 FALSE -"CLSI 2011" "DISK" "Streptococcus" 3 "Ceftriaxone" "30μg" 24 6 FALSE +"CLSI 2011" "DISK" "Streptococcus" 3 "Ceftriaxone" "30ug" 24 6 FALSE "CLSI 2011" "MIC" "Streptococcus" 3 "Ceftriaxone" 0.5 2048 FALSE "CLSI 2011" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Ceftriaxone" 0.5 2 FALSE "CLSI 2011" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Ceftriaxone" 1 4 FALSE -"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "30μg" 27 24 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "30ug" 27 24 FALSE "CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" 1 4 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30μg" 1 4 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Ceftibuten" "30μg" 28 6 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 1 4 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Ceftibuten" "30ug" 28 6 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Ceftibuten" 2 2048 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Cefotetan" "30μg" 26 19 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Cefotetan" "30ug" 26 19 FALSE "CLSI 2011" "MIC" "Neisseria gonorrhoeae" 2 "Cefotetan" 2 8 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Cefotetan" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Cefotetan" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2011" "DISK" "Aeromonas" 3 "Cefotaxime" "30μg" 26 22 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Cefotetan" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Cefotetan" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2011" "DISK" "Aeromonas" 3 "Cefotaxime" "30ug" 26 22 FALSE "CLSI 2011" "MIC" "Aeromonas" 3 "Cefotaxime" 1 4 FALSE "CLSI 2011" "MIC" "Aggregatibacter" 3 "Cefotaxime" 2 2048 FALSE "CLSI 2011" "MIC" "Bacillus" 3 "Cefotaxime" 8 64 FALSE @@ -19521,195 +19521,195 @@ "CLSI 2011" "MIC" "Eikenella" 3 "Cefotaxime" 2 2048 FALSE "CLSI 2011" "MIC" "Erysipelothrix rhusiopathiae" 2 "Cefotaxime" "M45 Table 6" 1 2048 FALSE "CLSI 2011" "MIC" "Granulicatella" 3 "Cefotaxime" 1 4 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Cefotaxime" "30μg" 26 6 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Cefotaxime" "30ug" 26 6 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Cefotaxime" 2 2048 FALSE "CLSI 2011" "MIC" "Kingella" 3 "Cefotaxime" 2 2048 FALSE "CLSI 2011" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" 2 2048 FALSE -"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Cefotaxime" "30μg" 31 6 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Cefotaxime" "30ug" 31 6 FALSE "CLSI 2011" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" 0.5 2048 FALSE -"CLSI 2011" "DISK" "Neisseria meningitidis" 2 "Cefotaxime" "30μg" 34 6 FALSE +"CLSI 2011" "DISK" "Neisseria meningitidis" 2 "Cefotaxime" "30ug" 34 6 FALSE "CLSI 2011" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" 0.125 2048 FALSE -"CLSI 2011" "DISK" "Plesiomonas" 3 "Cefotaxime" "30μg" 26 22 FALSE +"CLSI 2011" "DISK" "Plesiomonas" 3 "Cefotaxime" "30ug" 26 22 FALSE "CLSI 2011" "MIC" "Plesiomonas" 3 "Cefotaxime" 1 4 FALSE -"CLSI 2011" "DISK" "Streptococcus" 3 "Cefotaxime" "30μg" 24 6 FALSE +"CLSI 2011" "DISK" "Streptococcus" 3 "Cefotaxime" "30ug" 24 6 FALSE "CLSI 2011" "MIC" "Streptococcus" 3 "Cefotaxime" 0.5 2048 FALSE "CLSI 2011" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Cefotaxime" 0.5 2 FALSE "CLSI 2011" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Cefotaxime" 1 4 FALSE -"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "30μg" 28 25 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "30ug" 28 25 FALSE "CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" 1 4 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30μg" 26 22 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30μg" 1 4 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Cefuroxime axetil" "30μg" 20 16 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30ug" 26 22 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30ug" 1 4 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Cefuroxime axetil" "30ug" 20 16 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Cefuroxime axetil" 4 16 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Cefuroxime axetil" 1 4 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30μg" 23 14 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30μg" 4 32 FALSE -"CLSI 2011" "DISK" "Aeromonas" 3 "Cefuroxime" "30μg" 18 14 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 23 14 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 4 32 FALSE +"CLSI 2011" "DISK" "Aeromonas" 3 "Cefuroxime" "30ug" 18 14 FALSE "CLSI 2011" "MIC" "Aeromonas" 3 "Cefuroxime" 8 32 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Cefuroxime" "30μg" 20 16 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Cefuroxime" "30ug" 20 16 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Cefuroxime" 4 16 FALSE "CLSI 2011" "MIC" "Moraxella catarrhalis" 2 "Cefuroxime" 4 16 FALSE -"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Cefuroxime" "30μg" 31 25 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Cefuroxime" "30ug" 31 25 FALSE "CLSI 2011" "MIC" "Neisseria gonorrhoeae" 2 "Cefuroxime" 1 4 FALSE -"CLSI 2011" "DISK" "Plesiomonas" 3 "Cefuroxime" "30μg" 18 14 FALSE +"CLSI 2011" "DISK" "Plesiomonas" 3 "Cefuroxime" "30ug" 18 14 FALSE "CLSI 2011" "MIC" "Plesiomonas" 3 "Cefuroxime" 8 32 FALSE "CLSI 2011" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" 1 4 FALSE "CLSI 2011" "MIC" "Parenteral" "Streptococcus pneumoniae" 2 "Cefuroxime" 0.5 2 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30μg" 8 32 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 8 32 FALSE "CLSI 2011" "MIC" "Aeromonas" 3 "Cefazolin" 1 4 FALSE "CLSI 2011" "MIC" "Bacillus" 3 "Cefazolin" 8 16 FALSE "CLSI 2011" "MIC" "Plesiomonas" 3 "Cefazolin" 1 4 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Cefazolin" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Cefazolin" "Generic rules" "30μg" 2 8 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Ceftizoxime" "30μg" 26 6 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Cefazolin" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Cefazolin" "Generic rules" "30ug" 2 8 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Ceftizoxime" "30ug" 26 6 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Ceftizoxime" 2 2048 FALSE -"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "30μg" 38 6 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Ceftizoxime" "30ug" 38 6 FALSE "CLSI 2011" "MIC" "Neisseria gonorrhoeae" 2 "Ceftizoxime" 0.5 2048 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30μg" 25 21 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30μg" 1 4 FALSE -"CLSI 2011" "DISK" "Enterococcus" 3 "Daptomycin" "30μg" 11 6 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30ug" 25 21 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30ug" 1 4 FALSE +"CLSI 2011" "DISK" "Enterococcus" 3 "Daptomycin" "30ug" 11 6 FALSE "CLSI 2011" "MIC" "Enterococcus" 3 "Daptomycin" 4 2048 FALSE "CLSI 2011" "MIC" "Lactobacillus" 3 "Daptomycin" 4 2048 FALSE -"CLSI 2011" "DISK" "Streptococcus" 3 "Daptomycin" "30μg" 16 6 FALSE +"CLSI 2011" "DISK" "Streptococcus" 3 "Daptomycin" "30ug" 16 6 FALSE "CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Daptomycin" 1 2048 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Daptomycin" "Generic rules" "30μg" 1 2048 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Difloxacin" "Generic rules" "10μg" 21 17 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Difloxacin" "Generic rules" "10μg" 0.5 4 FALSE -"CLSI 2011" "DISK" "Streptococcus" 3 "Dirithromycin" "15μg" 18 13 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Daptomycin" "Generic rules" "30ug" 1 2048 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Difloxacin" "Generic rules" "10ug" 21 17 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Difloxacin" "Generic rules" "10ug" 0.5 4 FALSE +"CLSI 2011" "DISK" "Streptococcus" 3 "Dirithromycin" "15ug" 18 13 FALSE "CLSI 2011" "MIC" "Streptococcus" 3 "Dirithromycin" 0.5 2 FALSE -"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Dirithromycin" "15μg" 18 13 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Dirithromycin" "15ug" 18 13 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Dirithromycin" 0.5 2 FALSE -"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "15μg" 18 13 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" "15ug" 18 13 FALSE "CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Dirithromycin" 0.5 2 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15μg" 19 15 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15μg" 2 8 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Doripenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Doripenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2011" "DISK" "Acinetobacter" 3 "Doxycycline" "30μg" 13 9 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15ug" 19 15 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15ug" 2 8 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Doripenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Doripenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2011" "DISK" "Acinetobacter" 3 "Doxycycline" "30ug" 13 9 FALSE "CLSI 2011" "MIC" "Bacillus anthracis" 2 "Doxycycline" 1 2048 FALSE "CLSI 2011" "MIC" "Brucella" 3 "Doxycycline" 1 2048 FALSE "CLSI 2011" "MIC" "Burkholderia mallei" 2 "Doxycycline" 4 16 FALSE "CLSI 2011" "MIC" "Burkholderia pseudomallei" 2 "Doxycycline" 4 16 FALSE "CLSI 2011" "MIC" "Campylobacter" 3 "Doxycycline" 2 8 FALSE -"CLSI 2011" "DISK" "Enterococcus" 3 "Doxycycline" "30μg" 16 12 FALSE +"CLSI 2011" "DISK" "Enterococcus" 3 "Doxycycline" "30ug" 16 12 FALSE "CLSI 2011" "MIC" "Francisella tularensis tularensis" 1 "Doxycycline" 4 2048 FALSE -"CLSI 2011" "DISK" "Pasteurella" 3 "Doxycycline" "30μg" 23 6 FALSE +"CLSI 2011" "DISK" "Pasteurella" 3 "Doxycycline" "30ug" 23 6 FALSE "CLSI 2011" "MIC" "Pasteurella" 3 "Doxycycline" 0.5 2048 FALSE -"CLSI 2011" "DISK" "Staphylococcus" 3 "Doxycycline" "30μg" 16 12 FALSE -"CLSI 2011" "MIC" "Vibrio cholerae" 2 "Doxycycline" "30μg" 4 16 FALSE +"CLSI 2011" "DISK" "Staphylococcus" 3 "Doxycycline" "30ug" 16 12 FALSE +"CLSI 2011" "MIC" "Vibrio cholerae" 2 "Doxycycline" "30ug" 4 16 FALSE "CLSI 2011" "MIC" "Yersinia pestis" 2 "Doxycycline" 4 16 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Doxycycline" "Generic rules" "30μg" 14 10 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Doxycycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2011" "DISK" "Histophilus somni" 2 "Enrofloxacin" "5μg" 21 16 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Doxycycline" "Generic rules" "30ug" 14 10 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Doxycycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2011" "DISK" "Histophilus somni" 2 "Enrofloxacin" "5ug" 21 16 FALSE "CLSI 2011" "MIC" "Histophilus somni" 2 "Enrofloxacin" 0.25 2 FALSE -"CLSI 2011" "DISK" "Providencia heimbachae" 2 "Enrofloxacin" "5μg" 21 16 FALSE -"CLSI 2011" "DISK" "Pasteurella multocida multocida" 1 "Enrofloxacin" "5μg" 21 16 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5μg" 23 16 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5μg" 0.25 2 FALSE -"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Enoxacin" "10μg" 36 31 FALSE +"CLSI 2011" "DISK" "Providencia heimbachae" 2 "Enrofloxacin" "5ug" 21 16 FALSE +"CLSI 2011" "DISK" "Pasteurella multocida multocida" 1 "Enrofloxacin" "5ug" 21 16 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5ug" 23 16 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5ug" 0.25 2 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Enoxacin" "10ug" 36 31 FALSE "CLSI 2011" "MIC" "Neisseria gonorrhoeae" 2 "Enoxacin" 0.5 2 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Enoxacin" "Generic rules" "10μg" 18 14 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Enoxacin" "Generic rules" "10μg" 2 8 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Enoxacin" "Generic rules" "10ug" 18 14 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Enoxacin" "Generic rules" "10ug" 2 8 FALSE "CLSI 2011" "MIC" "Bacillus" 3 "Erythromycin" 0.5 8 FALSE "CLSI 2011" "MIC" "Campylobacter" 3 "Erythromycin" 8 32 FALSE "CLSI 2011" "MIC" "Erysipelothrix rhusiopathiae" 2 "Erythromycin" "M45 Table 6" 0.25 1 FALSE "CLSI 2011" "MIC" "Granulicatella" 3 "Erythromycin" 0.25 1 FALSE "CLSI 2011" "MIC" "Lactobacillus" 3 "Erythromycin" 0.5 8 FALSE -"CLSI 2011" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "15μg" 21 6 FALSE +"CLSI 2011" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "15ug" 21 6 FALSE "CLSI 2011" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" 2 2048 FALSE -"CLSI 2011" "DISK" "Pasteurella" 3 "Erythromycin" "15μg" 27 24 FALSE +"CLSI 2011" "DISK" "Pasteurella" 3 "Erythromycin" "15ug" 27 24 FALSE "CLSI 2011" "MIC" "Pasteurella" 3 "Erythromycin" 0.5 2 FALSE -"CLSI 2011" "DISK" "Streptococcus" 3 "Erythromycin" "15μg" 21 15 FALSE +"CLSI 2011" "DISK" "Streptococcus" 3 "Erythromycin" "15ug" 21 15 FALSE "CLSI 2011" "MIC" "Streptococcus" 3 "Erythromycin" 0.25 1 FALSE -"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "15μg" 21 15 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "15ug" 21 15 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" 0.25 1 FALSE -"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "15μg" 21 15 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" "15ug" 21 15 FALSE "CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Erythromycin" 0.25 1 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Erythromycin" "Generic rules" "15μg" 23 13 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Erythromycin" "Generic rules" "15μg" 0.5 8 FALSE -"CLSI 2011" "DISK" "Aeromonas" 3 "Ertapenem" "10μg" 19 15 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Erythromycin" "Generic rules" "15ug" 23 13 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Erythromycin" "Generic rules" "15ug" 0.5 8 FALSE +"CLSI 2011" "DISK" "Aeromonas" 3 "Ertapenem" "10ug" 19 15 FALSE "CLSI 2011" "MIC" "Aeromonas" 3 "Ertapenem" 2 8 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Ertapenem" "10μg" 19 6 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Ertapenem" "10ug" 19 6 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Ertapenem" 0.5 2048 FALSE -"CLSI 2011" "DISK" "Plesiomonas" 3 "Ertapenem" "10μg" 19 15 FALSE +"CLSI 2011" "DISK" "Plesiomonas" 3 "Ertapenem" "10ug" 19 15 FALSE "CLSI 2011" "MIC" "Plesiomonas" 3 "Ertapenem" 2 8 FALSE "CLSI 2011" "MIC" "Streptococcus" 3 "Ertapenem" 1 2048 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" 1 4 FALSE "CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" 1 2048 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Ertapenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Ertapenem" "Generic rules" "10μg" 0.25 1 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "5-fluorocytosine" "Generic rules" "10μg" 4 32 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 0.25 1 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "5-fluorocytosine" "Generic rules" "10ug" 4 32 FALSE "CLSI 2011" "MIC" "Abiotrophia" 3 "Cefepime" "M45 Table 1" 1 4 FALSE -"CLSI 2011" "DISK" "Aeromonas" 3 "Cefepime" "30μg" 18 14 FALSE +"CLSI 2011" "DISK" "Aeromonas" 3 "Cefepime" "30ug" 18 14 FALSE "CLSI 2011" "MIC" "Aeromonas" 3 "Cefepime" 8 32 FALSE "CLSI 2011" "MIC" "Erysipelothrix rhusiopathiae" 2 "Cefepime" "M45 Table 6" 1 2048 FALSE "CLSI 2011" "MIC" "Granulicatella" 3 "Cefepime" 1 4 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Cefepime" "30μg" 26 6 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Cefepime" "30ug" 26 6 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Cefepime" 2 2048 FALSE -"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Cefepime" "30μg" 31 6 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Cefepime" "30ug" 31 6 FALSE "CLSI 2011" "MIC" "Neisseria gonorrhoeae" 2 "Cefepime" 0.5 2048 FALSE -"CLSI 2011" "DISK" "Plesiomonas" 3 "Cefepime" "30μg" 18 14 FALSE +"CLSI 2011" "DISK" "Plesiomonas" 3 "Cefepime" "30ug" 18 14 FALSE "CLSI 2011" "MIC" "Plesiomonas" 3 "Cefepime" 8 32 FALSE -"CLSI 2011" "DISK" "Streptococcus" 3 "Cefepime" "30μg" 24 6 FALSE +"CLSI 2011" "DISK" "Streptococcus" 3 "Cefepime" "30ug" 24 6 FALSE "CLSI 2011" "MIC" "Streptococcus" 3 "Cefepime" 0.5 2048 FALSE "CLSI 2011" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Cefepime" 0.5 2 FALSE "CLSI 2011" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Cefepime" 1 4 FALSE -"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "30μg" 24 21 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "30ug" 24 21 FALSE "CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" 1 4 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Cefepime" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Cefepime" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Fleroxacin" "5μg" 19 6 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Fleroxacin" "5ug" 19 6 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Fleroxacin" 2 2048 FALSE -"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Fleroxacin" "5μg" 35 28 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Fleroxacin" "5ug" 35 28 FALSE "CLSI 2011" "MIC" "Neisseria gonorrhoeae" 2 "Fleroxacin" 0.25 1 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Florfenicol" "Generic rules" "30μg" 19 14 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Florfenicol" "Generic rules" "30μg" 2 8 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Fluconazole" "Generic rules" "25μg" 19 14 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Fluconazole" "Generic rules" "25μg" 8 64 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200μg" 16 12 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200μg" 64 256 FALSE -"CLSI 2011" "DISK" "Aeromonas" 3 "Cefoxitin" "30μg" 18 14 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Florfenicol" "Generic rules" "30ug" 19 14 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Florfenicol" "Generic rules" "30ug" 2 8 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Fluconazole" "Generic rules" "25ug" 19 14 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Fluconazole" "Generic rules" "25ug" 8 64 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200ug" 16 12 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200ug" 64 256 FALSE +"CLSI 2011" "DISK" "Aeromonas" 3 "Cefoxitin" "30ug" 18 14 FALSE "CLSI 2011" "MIC" "Aeromonas" 3 "Cefoxitin" 8 32 FALSE -"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Cefoxitin" "30μg" 28 23 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Cefoxitin" "30ug" 28 23 FALSE "CLSI 2011" "MIC" "Neisseria gonorrhoeae" 2 "Cefoxitin" 2 8 FALSE -"CLSI 2011" "DISK" "Plesiomonas" 3 "Cefoxitin" "30μg" 18 14 FALSE +"CLSI 2011" "DISK" "Plesiomonas" 3 "Cefoxitin" "30ug" 18 14 FALSE "CLSI 2011" "MIC" "Plesiomonas" 3 "Cefoxitin" 8 32 FALSE -"CLSI 2011" "DISK" "Staphylococcus" 3 "Cefoxitin" "30μg" 25 24 FALSE -"CLSI 2011" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "30μg" 22 21 FALSE +"CLSI 2011" "DISK" "Staphylococcus" 3 "Cefoxitin" "30ug" 25 24 FALSE +"CLSI 2011" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "30ug" 22 21 FALSE "CLSI 2011" "MIC" "Staphylococcus aureus aureus" 1 "Cefoxitin" 4 8 FALSE -"CLSI 2011" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "30μg" 22 21 FALSE +"CLSI 2011" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "30ug" 22 21 FALSE "CLSI 2011" "MIC" "Staphylococcus lugdunensis" 2 "Cefoxitin" 4 8 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30μg" 8 32 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30ug" 8 32 FALSE "CLSI 2011" "MIC" "Abiotrophia" 3 "Gatifloxacin" "M45 Table 1" 1 4 FALSE "CLSI 2011" "MIC" "Erysipelothrix rhusiopathiae" 2 "Gatifloxacin" "M45 Table 6" 1 2048 FALSE "CLSI 2011" "MIC" "Granulicatella" 3 "Gatifloxacin" 1 4 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Gatifloxacin" "5μg" 18 6 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Gatifloxacin" "5ug" 18 6 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Gatifloxacin" 1 2048 FALSE -"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "5μg" 38 33 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Gatifloxacin" "5ug" 38 33 FALSE "CLSI 2011" "MIC" "Neisseria gonorrhoeae" 2 "Gatifloxacin" 0.125 0.5 FALSE -"CLSI 2011" "DISK" "Staphylococcus" 3 "Gatifloxacin" "10μg" 23 19 FALSE +"CLSI 2011" "DISK" "Staphylococcus" 3 "Gatifloxacin" "10ug" 23 19 FALSE "CLSI 2011" "MIC" "Staphylococcus" 3 "Gatifloxacin" 0.5 2 FALSE -"CLSI 2011" "DISK" "Streptococcus" 3 "Gatifloxacin" "5μg" 21 17 FALSE +"CLSI 2011" "DISK" "Streptococcus" 3 "Gatifloxacin" "5ug" 21 17 FALSE "CLSI 2011" "MIC" "Streptococcus" 3 "Gatifloxacin" 1 4 FALSE -"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Gatifloxacin" "5μg" 21 17 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Gatifloxacin" "5ug" 21 17 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Gatifloxacin" 1 4 FALSE -"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "5μg" 21 17 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" "5ug" 21 17 FALSE "CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gatifloxacin" 1 4 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5μg" 18 14 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120μg" 10 6 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120μg" 512 560 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Gemifloxacin" "5μg" 18 6 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5ug" 18 14 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120ug" 10 6 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120ug" 512 560 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Gemifloxacin" "5ug" 18 6 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Gemifloxacin" 0.125 2048 FALSE -"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Gemifloxacin" "5μg" 23 19 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Gemifloxacin" "5ug" 23 19 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Gemifloxacin" 0.125 0.5 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5μg" 20 15 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5μg" 0.25 1 FALSE -"CLSI 2011" "DISK" "Aeromonas" 3 "Gentamicin" "10μg" 15 12 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5ug" 20 15 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5ug" 0.25 1 FALSE +"CLSI 2011" "DISK" "Aeromonas" 3 "Gentamicin" "10ug" 15 12 FALSE "CLSI 2011" "MIC" "Aeromonas" 3 "Gentamicin" 4 16 FALSE "CLSI 2011" "MIC" "Bacillus" 3 "Gentamicin" 4 16 FALSE "CLSI 2011" "MIC" "Brucella" 3 "Gentamicin" 4 2048 FALSE @@ -19717,25 +19717,25 @@ "CLSI 2011" "MIC" "Leuconostoc" 3 "Gentamicin" 4 16 FALSE "CLSI 2011" "MIC" "Lactobacillus" 3 "Gentamicin" 4 16 FALSE "CLSI 2011" "MIC" "Pediococcus" 3 "Gentamicin" 4 16 FALSE -"CLSI 2011" "DISK" "Plesiomonas" 3 "Gentamicin" "10μg" 15 12 FALSE +"CLSI 2011" "DISK" "Plesiomonas" 3 "Gentamicin" "10ug" 15 12 FALSE "CLSI 2011" "MIC" "Plesiomonas" 3 "Gentamicin" 4 16 FALSE "CLSI 2011" "MIC" "Yersinia pestis" 2 "Gentamicin" 4 16 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Gentamicin" "Generic rules" "10μg" 15 12 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Gentamicin" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Grepafloxacin" "5μg" 24 6 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 15 12 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Grepafloxacin" "5ug" 24 6 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Grepafloxacin" 0.5 2048 FALSE -"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "5μg" 37 27 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Grepafloxacin" "5ug" 37 27 FALSE "CLSI 2011" "MIC" "Neisseria gonorrhoeae" 2 "Grepafloxacin" 0.064 1 FALSE -"CLSI 2011" "DISK" "Streptococcus" 3 "Grepafloxacin" "5μg" 19 15 FALSE +"CLSI 2011" "DISK" "Streptococcus" 3 "Grepafloxacin" "5ug" 19 15 FALSE "CLSI 2011" "MIC" "Streptococcus" 3 "Grepafloxacin" 0.5 2 FALSE -"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Grepafloxacin" "5μg" 19 15 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Grepafloxacin" "5ug" 19 15 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Grepafloxacin" 0.5 2 FALSE -"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "5μg" 19 15 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" "5ug" 19 15 FALSE "CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Grepafloxacin" 0.5 2 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5μg" 18 14 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5μg" 1 4 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5ug" 18 14 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5ug" 1 4 FALSE "CLSI 2011" "MIC" "Abiotrophia" 3 "Imipenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2011" "DISK" "Aeromonas" 3 "Imipenem" "10μg" 16 13 FALSE +"CLSI 2011" "DISK" "Aeromonas" 3 "Imipenem" "10ug" 16 13 FALSE "CLSI 2011" "MIC" "Aeromonas" 3 "Imipenem" 4 16 FALSE "CLSI 2011" "MIC" "Aggregatibacter" 3 "Imipenem" 4 16 FALSE "CLSI 2011" "MIC" "Bacillus" 3 "Imipenem" 4 16 FALSE @@ -19745,44 +19745,44 @@ "CLSI 2011" "MIC" "Eikenella" 3 "Imipenem" 0.5 2 FALSE "CLSI 2011" "MIC" "Erysipelothrix rhusiopathiae" 2 "Imipenem" "M45 Table 6" 0.5 2048 FALSE "CLSI 2011" "MIC" "Granulicatella" 3 "Imipenem" 0.5 2 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Imipenem" "10μg" 16 6 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Imipenem" "10ug" 16 6 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Imipenem" 4 2048 FALSE "CLSI 2011" "MIC" "Kingella" 3 "Imipenem" 0.5 2 FALSE "CLSI 2011" "MIC" "Lactobacillus" 3 "Imipenem" 0.5 2 FALSE "CLSI 2011" "MIC" "Pediococcus" 3 "Imipenem" 0.5 2048 FALSE -"CLSI 2011" "DISK" "Plesiomonas" 3 "Imipenem" "10μg" 16 13 FALSE +"CLSI 2011" "DISK" "Plesiomonas" 3 "Imipenem" "10ug" 16 13 FALSE "CLSI 2011" "MIC" "Plesiomonas" 3 "Imipenem" 4 16 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" 0.125 1 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Imipenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Imipenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Kanamycin" "Generic rules" "30μg" 18 13 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Kanamycin" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2011" "DISK" "Enterococcus" 3 "Linezolid" "30μg" 23 20 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Kanamycin" "Generic rules" "30ug" 18 13 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Kanamycin" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2011" "DISK" "Enterococcus" 3 "Linezolid" "30ug" 23 20 FALSE "CLSI 2011" "MIC" "Enterococcus" 3 "Linezolid" 2 8 FALSE "CLSI 2011" "MIC" "Lactobacillus" 3 "Linezolid" 4 2048 FALSE -"CLSI 2011" "DISK" "Streptococcus" 3 "Linezolid" "30μg" 21 6 FALSE +"CLSI 2011" "DISK" "Streptococcus" 3 "Linezolid" "30ug" 21 6 FALSE "CLSI 2011" "MIC" "Streptococcus" 3 "Linezolid" 2 2048 FALSE -"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "30μg" 21 6 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "30ug" 21 6 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" 2 2048 FALSE -"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "30μg" 21 6 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" "30ug" 21 6 FALSE "CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Linezolid" 2 2048 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Linezolid" "Generic rules" "30μg" 21 20 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Linezolid" "Generic rules" "30μg" 4 8 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Lomefloxacin" "10μg" 22 6 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Linezolid" "Generic rules" "30ug" 21 20 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Linezolid" "Generic rules" "30ug" 4 8 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Lomefloxacin" "10ug" 22 6 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Lomefloxacin" 2 2048 FALSE -"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Lomefloxacin" "10μg" 38 26 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Lomefloxacin" "10ug" 38 26 FALSE "CLSI 2011" "MIC" "Neisseria gonorrhoeae" 2 "Lomefloxacin" 0.125 2 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10μg" 22 18 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Loracarbef" "30μg" 19 15 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10ug" 22 18 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Loracarbef" "30ug" 19 15 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Loracarbef" 8 32 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Loracarbef" 2 8 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Loracarbef" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Loracarbef" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Latamoxef" "Generic rules" "30μg" 23 14 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Latamoxef" "Generic rules" "30μg" 8 64 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Loracarbef" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Loracarbef" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Latamoxef" "Generic rules" "30ug" 23 14 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Latamoxef" "Generic rules" "30ug" 8 64 FALSE "CLSI 2011" "MIC" "Abiotrophia" 3 "Levofloxacin" "M45 Table 1" 2 8 FALSE -"CLSI 2011" "DISK" "Aeromonas" 3 "Levofloxacin" "5μg" 17 13 FALSE +"CLSI 2011" "DISK" "Aeromonas" 3 "Levofloxacin" "5ug" 17 13 FALSE "CLSI 2011" "MIC" "Aeromonas" 3 "Levofloxacin" 2 8 FALSE "CLSI 2011" "MIC" "Aggregatibacter" 3 "Levofloxacin" 2 8 FALSE "CLSI 2011" "MIC" "Bacillus" 3 "Levofloxacin" 2 8 FALSE @@ -19792,110 +19792,110 @@ "CLSI 2011" "MIC" "Erysipelothrix rhusiopathiae" 2 "Levofloxacin" "M45 Table 6" 2 2048 FALSE "CLSI 2011" "MIC" "Francisella tularensis tularensis" 1 "Levofloxacin" 0.5 2048 FALSE "CLSI 2011" "MIC" "Granulicatella" 3 "Levofloxacin" 2 8 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Levofloxacin" "5μg" 17 6 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Levofloxacin" "5ug" 17 6 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Levofloxacin" 2 2048 FALSE "CLSI 2011" "MIC" "Kingella" 3 "Levofloxacin" 2 8 FALSE "CLSI 2011" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" 2 2048 FALSE "CLSI 2011" "MIC" "Neisseria meningitidis" 2 "Levofloxacin" 0.032 0.12 FALSE -"CLSI 2011" "DISK" "Plesiomonas" 3 "Levofloxacin" "5μg" 17 13 FALSE +"CLSI 2011" "DISK" "Plesiomonas" 3 "Levofloxacin" "5ug" 17 13 FALSE "CLSI 2011" "MIC" "Plesiomonas" 3 "Levofloxacin" 2 8 FALSE -"CLSI 2011" "DISK" "Pasteurella" 3 "Levofloxacin" "5μg" 28 6 FALSE +"CLSI 2011" "DISK" "Pasteurella" 3 "Levofloxacin" "5ug" 28 6 FALSE "CLSI 2011" "MIC" "Pasteurella" 3 "Levofloxacin" 0.064 2048 FALSE -"CLSI 2011" "DISK" "Staphylococcus" 3 "Levofloxacin" "10μg" 19 15 FALSE +"CLSI 2011" "DISK" "Staphylococcus" 3 "Levofloxacin" "10ug" 19 15 FALSE "CLSI 2011" "MIC" "Staphylococcus" 3 "Levofloxacin" 1 4 FALSE -"CLSI 2011" "DISK" "Streptococcus" 3 "Levofloxacin" "5μg" 17 13 FALSE +"CLSI 2011" "DISK" "Streptococcus" 3 "Levofloxacin" "5ug" 17 13 FALSE "CLSI 2011" "MIC" "Streptococcus" 3 "Levofloxacin" 2 8 FALSE -"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "5μg" 17 13 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "5ug" 17 13 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" 2 8 FALSE -"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "5μg" 17 13 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" "5ug" 17 13 FALSE "CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Levofloxacin" 2 8 FALSE "CLSI 2011" "MIC" "Yersinia pestis" 2 "Levofloxacin" 0.25 2048 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5μg" 17 13 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5μg" 2 8 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 17 13 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 2 8 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Cefamandole" 4 16 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Cefamandole" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Cefamandole" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Mecillinam" "Generic rules" "10μg" 15 11 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Mecillinam" "Generic rules" "10μg" 8 32 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Cefamandole" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Cefamandole" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 15 11 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 8 32 FALSE "CLSI 2011" "MIC" "Abiotrophia" 3 "Meropenem" "M45 Table 1" 0.5 2 FALSE -"CLSI 2011" "DISK" "Aeromonas" 3 "Meropenem" "10μg" 16 13 FALSE +"CLSI 2011" "DISK" "Aeromonas" 3 "Meropenem" "10ug" 16 13 FALSE "CLSI 2011" "MIC" "Aeromonas" 3 "Meropenem" 4 16 FALSE "CLSI 2011" "MIC" "Aggregatibacter" 3 "Meropenem" 4 16 FALSE -"CLSI 2011" "DISK" "Bacillus cereus" 2 "Meropenem" "10μg" 20 15 FALSE -"CLSI 2011" "DISK" "Burkholderia cepacia" 2 "Meropenem" "10μg" 20 15 FALSE +"CLSI 2011" "DISK" "Bacillus cereus" 2 "Meropenem" "10ug" 20 15 FALSE +"CLSI 2011" "DISK" "Burkholderia cepacia" 2 "Meropenem" "10ug" 20 15 FALSE "CLSI 2011" "MIC" "Cardiobacterium" 3 "Meropenem" 0.5 2 FALSE "CLSI 2011" "MIC" "Eikenella" 3 "Meropenem" 0.5 2 FALSE "CLSI 2011" "MIC" "Erysipelothrix rhusiopathiae" 2 "Meropenem" "M45 Table 6" 0.5 2048 FALSE "CLSI 2011" "MIC" "Granulicatella" 3 "Meropenem" 0.5 2 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Meropenem" "10μg" 20 6 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Meropenem" "10ug" 20 6 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Meropenem" 0.5 2048 FALSE "CLSI 2011" "MIC" "Kingella" 3 "Meropenem" 0.5 2 FALSE -"CLSI 2011" "DISK" "Neisseria meningitidis" 2 "Meropenem" "10μg" 30 6 FALSE +"CLSI 2011" "DISK" "Neisseria meningitidis" 2 "Meropenem" "10ug" 30 6 FALSE "CLSI 2011" "MIC" "Neisseria meningitidis" 2 "Meropenem" 0.25 2048 FALSE -"CLSI 2011" "DISK" "Plesiomonas" 3 "Meropenem" "10μg" 16 13 FALSE +"CLSI 2011" "DISK" "Plesiomonas" 3 "Meropenem" "10ug" 16 13 FALSE "CLSI 2011" "MIC" "Plesiomonas" 3 "Meropenem" 4 16 FALSE "CLSI 2011" "MIC" "Streptococcus" 3 "Meropenem" 0.5 2048 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Meropenem" 0.25 1 FALSE "CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" 0.5 2048 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Meropenem" "Generic rules" "10μg" 23 19 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Meropenem" "Generic rules" "10μg" 1 4 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Methicillin" "Generic rules" "5μg" 14 9 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Methicillin" "Generic rules" "5μg" 8 16 FALSE -"CLSI 2011" "DISK" "Pseudomonas aeruginosa" 2 "Mezlocillin" "75μg" 16 15 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 23 19 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 1 4 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Methicillin" "Generic rules" "5ug" 14 9 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Methicillin" "Generic rules" "5ug" 8 16 FALSE +"CLSI 2011" "DISK" "Pseudomonas aeruginosa" 2 "Mezlocillin" "75ug" 16 15 FALSE "CLSI 2011" "MIC" "Pseudomonas aeruginosa" 2 "Mezlocillin" 64 128 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Mezlocillin" "Generic rules" "75μg" 21 17 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Mezlocillin" "Generic rules" "75μg" 16 128 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Moxifloxacin" "5μg" 18 6 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Mezlocillin" "Generic rules" "75ug" 21 17 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Mezlocillin" "Generic rules" "75ug" 16 128 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Moxifloxacin" "5ug" 18 6 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Moxifloxacin" 1 2048 FALSE -"CLSI 2011" "DISK" "Pasteurella" 3 "Moxifloxacin" "5μg" 28 6 FALSE +"CLSI 2011" "DISK" "Pasteurella" 3 "Moxifloxacin" "5ug" 28 6 FALSE "CLSI 2011" "MIC" "Pasteurella" 3 "Moxifloxacin" 0.064 2048 FALSE -"CLSI 2011" "DISK" "Staphylococcus" 3 "Moxifloxacin" "5μg" 24 20 FALSE -"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "5μg" 18 14 FALSE +"CLSI 2011" "DISK" "Staphylococcus" 3 "Moxifloxacin" "5ug" 24 20 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "5ug" 18 14 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" 1 4 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5μg" 24 20 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5μg" 0.5 2 FALSE -"CLSI 2011" "DISK" "Burkholderia cepacia" 2 "Minocycline" "30μg" 19 14 FALSE -"CLSI 2011" "DISK" "Enterococcus" 3 "Minocycline" "30μg" 19 14 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 24 20 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 0.5 2 FALSE +"CLSI 2011" "DISK" "Burkholderia cepacia" 2 "Minocycline" "30ug" 19 14 FALSE +"CLSI 2011" "DISK" "Enterococcus" 3 "Minocycline" "30ug" 19 14 FALSE "CLSI 2011" "MIC" "Leuconostoc" 3 "Minocycline" 4 16 FALSE -"CLSI 2011" "DISK" "Neisseria meningitidis" 2 "Minocycline" "30μg" 26 6 FALSE +"CLSI 2011" "DISK" "Neisseria meningitidis" 2 "Minocycline" "30ug" 26 6 FALSE "CLSI 2011" "MIC" "Neisseria meningitidis" 2 "Minocycline" 2 2048 FALSE -"CLSI 2011" "DISK" "Stenotrophomonas maltophilia" 2 "Minocycline" "30μg" 19 14 FALSE -"CLSI 2011" "DISK" "Staphylococcus" 3 "Minocycline" "30μg" 19 14 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Minocycline" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Minocycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Nafcillin" "Generic rules" "1μg" 13 10 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Nafcillin" "Generic rules" "1μg" 2 4 FALSE -"CLSI 2011" "DISK" "Neisseria meningitidis" 2 "Nalidixic acid" "30μg" 26 25 FALSE +"CLSI 2011" "DISK" "Stenotrophomonas maltophilia" 2 "Minocycline" "30ug" 19 14 FALSE +"CLSI 2011" "DISK" "Staphylococcus" 3 "Minocycline" "30ug" 19 14 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Minocycline" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Minocycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Nafcillin" "Generic rules" "1ug" 13 10 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Nafcillin" "Generic rules" "1ug" 2 4 FALSE +"CLSI 2011" "DISK" "Neisseria meningitidis" 2 "Nalidixic acid" "30ug" 26 25 FALSE "CLSI 2011" "MIC" "Neisseria meningitidis" 2 "Nalidixic acid" 4 8 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30μg" 19 13 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30μg" 16 32 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Netilmicin" "Generic rules" "30μg" 15 12 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Netilmicin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "300μg" 17 14 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100μg" 32 128 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10μg" 17 12 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Ofloxacin" "5μg" 16 6 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 19 13 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 16 32 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Netilmicin" "Generic rules" "30ug" 15 12 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Netilmicin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "300ug" 17 14 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100ug" 32 128 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10ug" 17 12 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Ofloxacin" "5ug" 16 6 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Ofloxacin" 2 2048 FALSE -"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Ofloxacin" "5μg" 31 24 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Ofloxacin" "5ug" 31 24 FALSE "CLSI 2011" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" 0.25 2 FALSE -"CLSI 2011" "DISK" "Staphylococcus" 3 "Ofloxacin" "10μg" 18 14 FALSE +"CLSI 2011" "DISK" "Staphylococcus" 3 "Ofloxacin" "10ug" 18 14 FALSE "CLSI 2011" "MIC" "Staphylococcus" 3 "Ofloxacin" 1 4 FALSE -"CLSI 2011" "DISK" "Streptococcus" 3 "Ofloxacin" "5μg" 16 12 FALSE +"CLSI 2011" "DISK" "Streptococcus" 3 "Ofloxacin" "5ug" 16 12 FALSE "CLSI 2011" "MIC" "Streptococcus" 3 "Ofloxacin" 2 8 FALSE -"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "5μg" 16 12 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "5ug" 16 12 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Ofloxacin" 2 8 FALSE -"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "5μg" 16 12 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" "5ug" 16 12 FALSE "CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ofloxacin" 2 8 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5μg" 16 12 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10μg" 23 17 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10μg" 1 8 FALSE -"CLSI 2011" "DISK" "Staphylococcus aureus aureus" 1 "Oxacillin" "1μg" 13 10 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 16 12 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10ug" 23 17 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10ug" 1 8 FALSE +"CLSI 2011" "DISK" "Staphylococcus aureus aureus" 1 "Oxacillin" "1ug" 13 10 FALSE "CLSI 2011" "MIC" "Staphylococcus aureus aureus" 1 "Oxacillin" 2 4 FALSE "CLSI 2011" "MIC" "Staphylococcus lugdunensis" 2 "Oxacillin" 2 4 FALSE -"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "1μg" 20 6 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Oxacillin" "Generic rules" "1μg" 0.25 0.5 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "1ug" 20 6 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Oxacillin" "Generic rules" "1ug" 0.25 0.5 FALSE "CLSI 2011" "MIC" "Abiotrophia" 3 "Benzylpenicillin" "M45 Table 1" 0.125 4 FALSE "CLSI 2011" "MIC" "Aggregatibacter" 3 "Benzylpenicillin" 1 4 FALSE "CLSI 2011" "MIC" "Bacillus" 3 "Benzylpenicillin" 0.125 0.25 FALSE @@ -19914,7 +19914,7 @@ "CLSI 2011" "MIC" "Neisseria gonorrhoeae" 2 "Benzylpenicillin" 0.064 2 FALSE "CLSI 2011" "MIC" "Neisseria meningitidis" 2 "Benzylpenicillin" 0.064 0.5 FALSE "CLSI 2011" "MIC" "Pediococcus" 3 "Benzylpenicillin" 8 2048 FALSE -"CLSI 2011" "DISK" "Pasteurella" 3 "Benzylpenicillin" "10μg" 25 6 FALSE +"CLSI 2011" "DISK" "Pasteurella" 3 "Benzylpenicillin" "10ug" 25 6 FALSE "CLSI 2011" "MIC" "Pasteurella" 3 "Benzylpenicillin" 0.5 2048 FALSE "CLSI 2011" "DISK" "Streptococcus" 3 "Benzylpenicillin" "10units" 24 6 FALSE "CLSI 2011" "MIC" "Streptococcus" 3 "Benzylpenicillin" 0.125 2048 FALSE @@ -19925,25 +19925,25 @@ "CLSI 2011" "DISK" "(unknown name)" 6 "Benzylpenicillin" "Generic rules" "10units" 29 28 FALSE "CLSI 2011" "MIC" "(unknown name)" 6 "Benzylpenicillin" "Generic rules" "10units" 0.125 0.25 FALSE "CLSI 2011" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Phenoxymethylpenicillin" 0.064 2 FALSE -"CLSI 2011" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin" "100μg" 18 17 FALSE +"CLSI 2011" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin" "100ug" 18 17 FALSE "CLSI 2011" "MIC" "Pseudomonas aeruginosa" 2 "Piperacillin" 64 128 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Piperacillin" "Generic rules" "100μg" 21 17 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Piperacillin" "Generic rules" "100μg" 16 128 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Piperacillin" "Generic rules" "100ug" 21 17 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Piperacillin" "Generic rules" "100ug" 16 128 FALSE "CLSI 2011" "MIC" "Acinetobacter" 3 "Polymyxin B" 2 4 FALSE "CLSI 2011" "DISK" "(unknown name)" 6 "Polymyxin B" "Generic rules" "300units" 12 11 FALSE "CLSI 2011" "MIC" "(unknown name)" 6 "Polymyxin B" "Generic rules" "300units" 2 8 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30μg" 18 14 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30μg" 1 4 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2μg" 13 12 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2μg" 2 4 FALSE -"CLSI 2011" "DISK" "Streptococcus" 3 "Quinupristin/dalfopristin" "15μg" 19 15 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30ug" 18 14 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30ug" 1 4 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2ug" 13 12 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2ug" 2 4 FALSE +"CLSI 2011" "DISK" "Streptococcus" 3 "Quinupristin/dalfopristin" "15ug" 19 15 FALSE "CLSI 2011" "MIC" "Streptococcus" 3 "Quinupristin/dalfopristin" 1 4 FALSE -"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "15μg" 19 15 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" "15ug" 19 15 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Quinupristin/dalfopristin" 1 4 FALSE -"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "15μg" 19 15 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" "15ug" 19 15 FALSE "CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Quinupristin/dalfopristin" 1 4 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15μg" 19 15 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15μg" 1 4 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15ug" 19 15 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15ug" 1 4 FALSE "CLSI 2011" "MIC" "Aggregatibacter" 3 "Rifampicin" 1 4 FALSE "CLSI 2011" "MIC" "Bacillus" 3 "Rifampicin" 1 4 FALSE "CLSI 2011" "MIC" "Cardiobacterium" 3 "Rifampicin" 1 4 FALSE @@ -19951,49 +19951,49 @@ "CLSI 2011" "MIC" "Haemophilus" 3 "Rifampicin" 1 4 FALSE "CLSI 2011" "MIC" "Kingella" 3 "Rifampicin" 1 4 FALSE "CLSI 2011" "MIC" "Moraxella catarrhalis" 2 "Rifampicin" 1 4 FALSE -"CLSI 2011" "DISK" "Neisseria meningitidis" 2 "Rifampicin" "5μg" 25 19 FALSE +"CLSI 2011" "DISK" "Neisseria meningitidis" 2 "Rifampicin" "5ug" 25 19 FALSE "CLSI 2011" "MIC" "Neisseria meningitidis" 2 "Rifampicin" 0.5 2 FALSE -"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "5μg" 19 16 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "5ug" 19 16 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" 1 4 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Rifampicin" "Generic rules" "5μg" 20 16 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Rifampicin" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2011" "DISK" "Aeromonas" 3 "Ampicillin/sulbactam" "10μg" 15 11 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Rifampicin" "Generic rules" "5ug" 20 16 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Rifampicin" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2011" "DISK" "Aeromonas" 3 "Ampicillin/sulbactam" "10ug" 15 11 FALSE "CLSI 2011" "MIC" "Aeromonas" 3 "Ampicillin/sulbactam" 8 32 FALSE "CLSI 2011" "MIC" "Aggregatibacter" 3 "Ampicillin/sulbactam" 2 4 FALSE "CLSI 2011" "MIC" "Cardiobacterium" 3 "Ampicillin/sulbactam" 2 4 FALSE "CLSI 2011" "MIC" "Eikenella" 3 "Ampicillin/sulbactam" 2 4 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Ampicillin/sulbactam" "10/10μg" 20 19 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Ampicillin/sulbactam" "10/10ug" 20 19 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Ampicillin/sulbactam" 2 4 FALSE -"CLSI 2011" "DISK" "Plesiomonas" 3 "Ampicillin/sulbactam" "10μg" 15 11 FALSE +"CLSI 2011" "DISK" "Plesiomonas" 3 "Ampicillin/sulbactam" "10ug" 15 11 FALSE "CLSI 2011" "MIC" "Plesiomonas" 3 "Ampicillin/sulbactam" 8 32 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10μg" 15 11 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10μg" 8 32 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300μg" 256 512 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10ug" 15 11 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10ug" 8 32 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300ug" 256 512 FALSE "CLSI 2011" "MIC" "Neisseria meningitidis" 2 "Sulfamethoxazole" 2 8 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300μg" 256 512 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300ug" 256 512 FALSE "CLSI 2011" "MIC" "Neisseria meningitidis" 2 "Sulfisoxazole" 2 8 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300μg" 256 512 FALSE -"CLSI 2011" "DISK" "Histophilus somni" 2 "Spectinomycin" "100μg" 14 10 FALSE -"CLSI 2011" "DISK" "Providencia heimbachae" 2 "Spectinomycin" "100μg" 14 10 FALSE -"CLSI 2011" "DISK" "Pasteurella multocida multocida" 1 "Spectinomycin" "100μg" 14 10 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Spectinomycin" "Generic rules" "100μg" 18 14 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Spectinomycin" "Generic rules" "100μg" 32 128 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300ug" 256 512 FALSE +"CLSI 2011" "DISK" "Histophilus somni" 2 "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2011" "DISK" "Providencia heimbachae" 2 "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2011" "DISK" "Pasteurella multocida multocida" 1 "Spectinomycin" "100ug" 14 10 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Spectinomycin" "Generic rules" "100ug" 18 14 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Spectinomycin" "Generic rules" "100ug" 32 128 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Sparfloxacin" 0.25 2048 FALSE -"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Sparfloxacin" "5μg" 19 15 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Sparfloxacin" "5ug" 19 15 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Sparfloxacin" 0.5 2 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5μg" 0.5 2 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5ug" 0.5 2 FALSE "CLSI 2011" "MIC" "Neisseria meningitidis" 2 "Sulfonamide" 2 8 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300μg" 10 6 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300μg" 1024 2048 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300ug" 10 6 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300ug" 1024 2048 FALSE "CLSI 2011" "MIC" "Brucella" 3 "Streptoduocin" 8 2048 FALSE "CLSI 2011" "MIC" "Francisella tularensis tularensis" 1 "Streptoduocin" 8 2048 FALSE "CLSI 2011" "MIC" "Yersinia pestis" 2 "Streptoduocin" 4 16 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Streptomycin" "Generic rules" "10μg" 15 11 FALSE -"CLSI 2011" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Streptomycin" "Generic rules" "10ug" 15 11 FALSE +"CLSI 2011" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2011" "MIC" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" 2 4 FALSE "CLSI 2011" "MIC" "Aggregatibacter" 3 "Trimethoprim/sulfamethoxazole" 0.5 4 FALSE "CLSI 2011" "MIC" "Bacillus" 3 "Trimethoprim/sulfamethoxazole" 2 4 FALSE @@ -20004,26 +20004,26 @@ "CLSI 2011" "MIC" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" 0.5 4 FALSE "CLSI 2011" "MIC" "Kingella" 3 "Trimethoprim/sulfamethoxazole" 0.5 4 FALSE "CLSI 2011" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" 0.5 4 FALSE -"CLSI 2011" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "1.25μg/23.75μg" 13 10 FALSE +"CLSI 2011" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 13 10 FALSE "CLSI 2011" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" 0.5 4 FALSE -"CLSI 2011" "DISK" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "1.25μg/23.75μg" 30 25 FALSE +"CLSI 2011" "DISK" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 30 25 FALSE "CLSI 2011" "MIC" "Neisseria meningitidis" 2 "Trimethoprim/sulfamethoxazole" 0.125 0.5 FALSE -"CLSI 2011" "DISK" "Plesiomonas" 3 "Trimethoprim/sulfamethoxazole" "1.25μg/23.75μg" 16 10 FALSE +"CLSI 2011" "DISK" "Plesiomonas" 3 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 16 10 FALSE "CLSI 2011" "MIC" "Plesiomonas" 3 "Trimethoprim/sulfamethoxazole" 2 4 FALSE -"CLSI 2011" "DISK" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "1.25μg/23.75μg" 24 6 FALSE +"CLSI 2011" "DISK" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 24 6 FALSE "CLSI 2011" "MIC" "Pasteurella" 3 "Trimethoprim/sulfamethoxazole" 0.5 2048 FALSE -"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "1.25μg/23.75μg" 19 15 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 19 15 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" 0.5 4 FALSE "CLSI 2011" "MIC" "Yersinia pestis" 2 "Trimethoprim/sulfamethoxazole" 2 4 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75μg" 16 10 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75μg" 2 4 FALSE -"CLSI 2011" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "75/10μg" 15 14 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 16 10 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 2 4 FALSE +"CLSI 2011" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" "75/10ug" 15 14 FALSE "CLSI 2011" "MIC" "Pseudomonas aeruginosa" 2 "Ticarcillin/clavulanic acid" 64 128 FALSE -"CLSI 2011" "DISK" "Staphylococcus" 3 "Ticarcillin/clavulanic acid" "75/10μg" 23 22 FALSE +"CLSI 2011" "DISK" "Staphylococcus" 3 "Ticarcillin/clavulanic acid" "75/10ug" 23 22 FALSE "CLSI 2011" "MIC" "Staphylococcus" 3 "Ticarcillin/clavulanic acid" 8 16 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15μg" 20 14 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15μg" 16 128 FALSE -"CLSI 2011" "DISK" "Aeromonas" 3 "Tetracycline" "30μg" 15 11 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15ug" 20 14 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15ug" 16 128 FALSE +"CLSI 2011" "DISK" "Aeromonas" 3 "Tetracycline" "30ug" 15 11 FALSE "CLSI 2011" "MIC" "Aeromonas" 3 "Tetracycline" 4 16 FALSE "CLSI 2011" "MIC" "Aggregatibacter" 3 "Tetracycline" 2 8 FALSE "CLSI 2011" "MIC" "Bacillus" 3 "Tetracycline" 4 16 FALSE @@ -20034,286 +20034,286 @@ "CLSI 2011" "MIC" "Campylobacter" 3 "Tetracycline" 4 16 FALSE "CLSI 2011" "MIC" "Cardiobacterium" 3 "Tetracycline" 2 8 FALSE "CLSI 2011" "MIC" "Eikenella" 3 "Tetracycline" 2 8 FALSE -"CLSI 2011" "DISK" "Enterococcus" 3 "Tetracycline" "30μg" 19 14 FALSE +"CLSI 2011" "DISK" "Enterococcus" 3 "Tetracycline" "30ug" 19 14 FALSE "CLSI 2011" "MIC" "Francisella tularensis tularensis" 1 "Tetracycline" 4 2048 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Tetracycline" "30μg" 29 25 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Tetracycline" "30ug" 29 25 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Tetracycline" 2 8 FALSE "CLSI 2011" "MIC" "Kingella" 3 "Tetracycline" 2 8 FALSE -"CLSI 2011" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "30μg" 29 24 FALSE +"CLSI 2011" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "30ug" 29 24 FALSE "CLSI 2011" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" 2 8 FALSE -"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Tetracycline" "30μg" 38 30 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Tetracycline" "30ug" 38 30 FALSE "CLSI 2011" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" 0.25 2 FALSE -"CLSI 2011" "DISK" "Plesiomonas" 3 "Tetracycline" "30μg" 15 11 FALSE +"CLSI 2011" "DISK" "Plesiomonas" 3 "Tetracycline" "30ug" 15 11 FALSE "CLSI 2011" "MIC" "Plesiomonas" 3 "Tetracycline" 4 16 FALSE -"CLSI 2011" "DISK" "Pasteurella" 3 "Tetracycline" "30μg" 23 6 FALSE +"CLSI 2011" "DISK" "Pasteurella" 3 "Tetracycline" "30ug" 23 6 FALSE "CLSI 2011" "MIC" "Pasteurella" 3 "Tetracycline" 1 2048 FALSE -"CLSI 2011" "DISK" "Staphylococcus" 3 "Tetracycline" "30μg" 19 14 FALSE -"CLSI 2011" "DISK" "Streptococcus" 3 "Tetracycline" "30μg" 23 18 FALSE +"CLSI 2011" "DISK" "Staphylococcus" 3 "Tetracycline" "30ug" 19 14 FALSE +"CLSI 2011" "DISK" "Streptococcus" 3 "Tetracycline" "30ug" 23 18 FALSE "CLSI 2011" "MIC" "Streptococcus" 3 "Tetracycline" 2 8 FALSE -"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "30μg" 23 18 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "30ug" 23 18 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" 2 8 FALSE -"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "30μg" 23 18 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" "30ug" 23 18 FALSE "CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Tetracycline" 2 8 FALSE "CLSI 2011" "MIC" "Yersinia pestis" 2 "Tetracycline" 4 16 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Tetracycline" "Generic rules" "30μg" 15 11 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Tetracycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30μg" 14 10 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Tiamulin" "Generic rules" "30μg" 9 8 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Tiamulin" "Generic rules" "30μg" 16 32 FALSE -"CLSI 2011" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin" "75μg" 15 14 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Tetracycline" "Generic rules" "30ug" 15 11 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Tetracycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30ug" 14 10 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Tiamulin" "Generic rules" "30ug" 9 8 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Tiamulin" "Generic rules" "30ug" 16 32 FALSE +"CLSI 2011" "DISK" "Pseudomonas aeruginosa" 2 "Ticarcillin" "75ug" 15 14 FALSE "CLSI 2011" "MIC" "Pseudomonas aeruginosa" 2 "Ticarcillin" 64 128 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Ticarcillin" "Generic rules" "75μg" 20 14 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Ticarcillin" "Generic rules" "75μg" 16 128 FALSE -"CLSI 2011" "DISK" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" "15μg" 11 10 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Ticarcillin" "Generic rules" "75ug" 20 14 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Ticarcillin" "Generic rules" "75ug" 16 128 FALSE +"CLSI 2011" "DISK" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" "15ug" 11 10 FALSE "CLSI 2011" "MIC" "Actinobacillus pleuropneumoniae" 2 "Tilmicosin" 16 32 FALSE -"CLSI 2011" "DISK" "Pasteurella multocida multocida" 1 "Tilmicosin" "15μg" 11 10 FALSE +"CLSI 2011" "DISK" "Pasteurella multocida multocida" 1 "Tilmicosin" "15ug" 11 10 FALSE "CLSI 2011" "MIC" "Pasteurella multocida multocida" 1 "Tilmicosin" 16 32 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15μg" 14 10 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15μg" 8 32 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30μg" 2 8 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Telithromycin" "15μg" 15 11 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15ug" 14 10 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15ug" 8 32 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30ug" 2 8 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Telithromycin" "15ug" 15 11 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Telithromycin" 4 16 FALSE -"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "15μg" 19 15 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "15ug" 19 15 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" 1 4 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Telithromycin" "Generic rules" "15μg" 22 18 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Telithromycin" "Generic rules" "15μg" 1 4 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5μg" 16 10 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5μg" 8 16 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Tobramycin" "Generic rules" "10μg" 15 12 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Tobramycin" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Trovafloxacin" "10μg" 22 6 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Telithromycin" "Generic rules" "15ug" 22 18 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Telithromycin" "Generic rules" "15ug" 1 4 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 16 10 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 8 16 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 15 12 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Trovafloxacin" "10ug" 22 6 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Trovafloxacin" 1 2048 FALSE -"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "10μg" 34 6 FALSE +"CLSI 2011" "DISK" "Neisseria gonorrhoeae" 2 "Trovafloxacin" "10ug" 34 6 FALSE "CLSI 2011" "MIC" "Neisseria gonorrhoeae" 2 "Trovafloxacin" 0.25 2048 FALSE -"CLSI 2011" "DISK" "Streptococcus" 3 "Trovafloxacin" "10μg" 19 15 FALSE +"CLSI 2011" "DISK" "Streptococcus" 3 "Trovafloxacin" "10ug" 19 15 FALSE "CLSI 2011" "MIC" "Streptococcus" 3 "Trovafloxacin" 1 4 FALSE -"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Trovafloxacin" "10μg" 19 15 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Trovafloxacin" "10ug" 19 15 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Trovafloxacin" 1 4 FALSE -"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "10μg" 19 15 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" "10ug" 19 15 FALSE "CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Trovafloxacin" 1 4 FALSE -"CLSI 2011" "DISK" "Aeromonas" 3 "Piperacillin/tazobactam" "100μg" 21 17 FALSE +"CLSI 2011" "DISK" "Aeromonas" 3 "Piperacillin/tazobactam" "100ug" 21 17 FALSE "CLSI 2011" "MIC" "Aeromonas" 3 "Piperacillin/tazobactam" 16 128 FALSE -"CLSI 2011" "DISK" "Haemophilus" 3 "Piperacillin/tazobactam" "100μg" 21 6 FALSE +"CLSI 2011" "DISK" "Haemophilus" 3 "Piperacillin/tazobactam" "100ug" 21 6 FALSE "CLSI 2011" "MIC" "Haemophilus" 3 "Piperacillin/tazobactam" 1 2 FALSE -"CLSI 2011" "DISK" "Plesiomonas" 3 "Piperacillin/tazobactam" "100μg" 21 17 FALSE +"CLSI 2011" "DISK" "Plesiomonas" 3 "Piperacillin/tazobactam" "100ug" 21 17 FALSE "CLSI 2011" "MIC" "Plesiomonas" 3 "Piperacillin/tazobactam" 16 128 FALSE -"CLSI 2011" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "100/10μg" 18 17 FALSE +"CLSI 2011" "DISK" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" "100/10ug" 18 17 FALSE "CLSI 2011" "MIC" "Pseudomonas aeruginosa" 2 "Piperacillin/tazobactam" 64 128 FALSE -"CLSI 2011" "DISK" "Staphylococcus" 3 "Piperacillin/tazobactam" "100/10μg" 18 17 FALSE +"CLSI 2011" "DISK" "Staphylococcus" 3 "Piperacillin/tazobactam" "100/10ug" 18 17 FALSE "CLSI 2011" "MIC" "Staphylococcus" 3 "Piperacillin/tazobactam" 8 16 FALSE -"CLSI 2011" "DISK" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10μg" 21 17 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10μg" 16 128 FALSE +"CLSI 2011" "DISK" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10ug" 21 17 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10ug" 16 128 FALSE "CLSI 2011" "MIC" "Abiotrophia" 3 "Vancomycin" "M45 Table 1" 1 2048 FALSE "CLSI 2011" "MIC" "Bacillus" 3 "Vancomycin" 4 2048 FALSE -"CLSI 2011" "DISK" "Enterococcus" 3 "Vancomycin" "30μg" 17 14 FALSE +"CLSI 2011" "DISK" "Enterococcus" 3 "Vancomycin" "30ug" 17 14 FALSE "CLSI 2011" "MIC" "Granulicatella" 3 "Vancomycin" 1 2048 FALSE "CLSI 2011" "MIC" "Lactobacillus" 3 "Vancomycin" 2 16 FALSE "CLSI 2011" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" 2 16 FALSE -"CLSI 2011" "DISK" "Streptococcus" 3 "Vancomycin" "30μg" 17 6 FALSE +"CLSI 2011" "DISK" "Streptococcus" 3 "Vancomycin" "30ug" 17 6 FALSE "CLSI 2011" "MIC" "Streptococcus" 3 "Vancomycin" 1 2048 FALSE -"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "30μg" 17 6 FALSE +"CLSI 2011" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "30ug" 17 6 FALSE "CLSI 2011" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" 1 2048 FALSE -"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "30μg" 17 6 FALSE +"CLSI 2011" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "30ug" 17 6 FALSE "CLSI 2011" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" 1 2048 FALSE -"CLSI 2011" "MIC" "(unknown name)" 6 "Vancomycin" "Generic rules" "30μg" 4 32 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10μg" 18 13 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10μg" 8 32 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Amikacin" "Generic rules" "30μg" 17 14 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Amikacin" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Ampicillin" "Generic rules" "10μg" 17 13 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Ampicillin" "Generic rules" "2μg" 8 32 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Aztreonam" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Aztreonam" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Azlocillin" "Generic rules" "75μg" 18 17 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Azlocillin" "Generic rules" "75μg" 64 128 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Azithromycin" "Generic rules" "15μg" 18 13 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Azithromycin" "Generic rules" "15μg" 2 8 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Cefetamet" "Generic rules" "10μg" 18 14 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Cefetamet" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Cefdinir" "Generic rules" "5μg" 20 16 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Cefdinir" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Cefaclor" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Cefaclor" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Cephalothin" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Cephalothin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Cefixime" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Cefixime" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75μg" 21 15 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75μg" 16 64 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30μg" 18 12 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Cefonicid" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Cefonicid" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100μg" 19 14 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100μg" 16 64 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5μg" 21 15 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Clindamycin" "Generic rules" "2μg" 21 14 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Clindamycin" "Generic rules" "2μg" 0.5 4 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15μg" 18 13 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15μg" 2 8 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Colistin" "Generic rules" "10μg" 11 10 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Colistin" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10μg" 21 17 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Cefprozil" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Cefprozil" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Carbenicillin" "Generic rules" "100μg" 23 19 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Carbenicillin" "Generic rules" "100μg" 16 64 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30μg" 23 19 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30μg" 1 4 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Cefotetan" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Cefotetan" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30μg" 26 22 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30μg" 1 4 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30μg" 23 14 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30μg" 4 32 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Cefazolin" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Cefazolin" "Generic rules" "30μg" 1 4 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30μg" 25 21 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30μg" 1 4 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Daptomycin" "Generic rules" "30μg" 1 2048 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Difloxacin" "Generic rules" "10μg" 21 17 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Difloxacin" "Generic rules" "10μg" 0.5 4 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15μg" 19 15 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15μg" 2 8 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Doxycycline" "Generic rules" "30μg" 14 10 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Doxycycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5μg" 23 16 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5μg" 0.25 2 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Enoxacin" "Generic rules" "10μg" 18 14 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Enoxacin" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Erythromycin" "Generic rules" "15μg" 23 13 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Erythromycin" "Generic rules" "15μg" 0.5 8 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Ertapenem" "Generic rules" "10μg" 19 15 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Ertapenem" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "5-fluorocytosine" "Generic rules" "10μg" 4 32 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Cefepime" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Cefepime" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Florfenicol" "Generic rules" "30μg" 19 14 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Florfenicol" "Generic rules" "30μg" 2 8 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Fluconazole" "Generic rules" "25μg" 19 14 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Fluconazole" "Generic rules" "25μg" 8 64 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200μg" 16 12 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200μg" 64 256 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5μg" 18 14 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120μg" 10 6 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120μg" 512 560 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5μg" 20 15 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5μg" 0.25 1 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Gentamicin" "Generic rules" "10μg" 15 12 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Gentamicin" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5μg" 18 14 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Imipenem" "Generic rules" "10μg" 16 13 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Imipenem" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Kanamycin" "Generic rules" "30μg" 18 13 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Kanamycin" "Generic rules" "30μg" 16 64 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Linezolid" "Generic rules" "30μg" 21 20 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Linezolid" "Generic rules" "30μg" 4 8 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10μg" 22 18 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10μg" 2 8 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Loracarbef" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Loracarbef" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Latamoxef" "Generic rules" "30μg" 23 14 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Latamoxef" "Generic rules" "30μg" 8 64 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5μg" 17 13 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Cefamandole" "Generic rules" "30μg" 18 14 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Cefamandole" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Mecillinam" "Generic rules" "10μg" 15 11 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Mecillinam" "Generic rules" "10μg" 8 32 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Meropenem" "Generic rules" "10μg" 16 13 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Meropenem" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Methicillin" "Generic rules" "5μg" 14 9 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Methicillin" "Generic rules" "5μg" 8 16 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Mezlocillin" "Generic rules" "75μg" 21 17 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Mezlocillin" "Generic rules" "75μg" 16 128 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5μg" 24 20 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5μg" 0.5 2 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Minocycline" "Generic rules" "30μg" 16 12 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Minocycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Nafcillin" "Generic rules" "1μg" 13 10 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Nafcillin" "Generic rules" "1μg" 2 4 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30μg" 19 13 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30μg" 16 32 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Netilmicin" "Generic rules" "30μg" 15 12 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Netilmicin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "300μg" 17 14 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100μg" 32 128 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10μg" 17 12 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5μg" 16 12 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5μg" 2 8 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10μg" 23 17 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10μg" 1 8 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Oxacillin" "Generic rules" "1μg" 0.25 0.5 FALSE +"CLSI 2011" "MIC" "(unknown name)" 6 "Vancomycin" "Generic rules" "30ug" 4 32 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 18 13 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 8 32 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 17 14 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Ampicillin" "Generic rules" "10ug" 17 13 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Ampicillin" "Generic rules" "2ug" 8 32 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Azlocillin" "Generic rules" "75ug" 18 17 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Azlocillin" "Generic rules" "75ug" 64 128 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Azithromycin" "Generic rules" "15ug" 18 13 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Azithromycin" "Generic rules" "15ug" 2 8 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Cefetamet" "Generic rules" "10ug" 18 14 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Cefetamet" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Ceftazidime" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Cefdinir" "Generic rules" "5ug" 20 16 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Cefdinir" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Cefaclor" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Cefaclor" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Cephalothin" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Cephalothin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75ug" 21 15 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Cefoperazone" "Generic rules" "75ug" 16 64 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 18 12 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Cefonicid" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Cefonicid" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100ug" 19 14 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Cinoxacin" "Generic rules" "100ug" 16 64 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 21 15 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Clindamycin" "Generic rules" "2ug" 21 14 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Clindamycin" "Generic rules" "2ug" 0.5 4 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15ug" 18 13 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Clarithromycin" "Generic rules" "15ug" 2 8 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Cefmetazole" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Colistin" "Generic rules" "10ug" 11 10 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Colistin" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 21 17 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Cefprozil" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Cefprozil" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Carbenicillin" "Generic rules" "100ug" 23 19 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Carbenicillin" "Generic rules" "100ug" 16 64 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 23 19 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 1 4 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Cefotetan" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Cefotetan" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30ug" 26 22 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Cefotaxime" "Generic rules" "30ug" 1 4 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 23 14 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 4 32 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Cefazolin" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Cefazolin" "Generic rules" "30ug" 1 4 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30ug" 25 21 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Ceftizoxime" "Generic rules" "30ug" 1 4 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Daptomycin" "Generic rules" "30ug" 1 2048 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Difloxacin" "Generic rules" "10ug" 21 17 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Difloxacin" "Generic rules" "10ug" 0.5 4 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15ug" 19 15 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Dirithromycin" "Generic rules" "15ug" 2 8 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Doxycycline" "Generic rules" "30ug" 14 10 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Doxycycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5ug" 23 16 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Enrofloxacin" "Generic rules" "5ug" 0.25 2 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Enoxacin" "Generic rules" "10ug" 18 14 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Enoxacin" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Erythromycin" "Generic rules" "15ug" 23 13 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Erythromycin" "Generic rules" "15ug" 0.5 8 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 19 15 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "5-fluorocytosine" "Generic rules" "10ug" 4 32 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Fleroxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Florfenicol" "Generic rules" "30ug" 19 14 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Florfenicol" "Generic rules" "30ug" 2 8 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Fluconazole" "Generic rules" "25ug" 19 14 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Fluconazole" "Generic rules" "25ug" 8 64 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200ug" 16 12 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200ug" 64 256 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Cefoxitin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5ug" 18 14 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Gatifloxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120ug" 10 6 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Gentamicin-high" "Generic rules" "120ug" 512 560 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5ug" 20 15 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Gemifloxacin" "Generic rules" "5ug" 0.25 1 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 15 12 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5ug" 18 14 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Grepafloxacin" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 16 13 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Kanamycin" "Generic rules" "30ug" 18 13 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Kanamycin" "Generic rules" "30ug" 16 64 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Linezolid" "Generic rules" "30ug" 21 20 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Linezolid" "Generic rules" "30ug" 4 8 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10ug" 22 18 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Lomefloxacin" "Generic rules" "10ug" 2 8 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Loracarbef" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Loracarbef" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Latamoxef" "Generic rules" "30ug" 23 14 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Latamoxef" "Generic rules" "30ug" 8 64 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 17 13 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Cefamandole" "Generic rules" "30ug" 18 14 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Cefamandole" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 15 11 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 8 32 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 16 13 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Methicillin" "Generic rules" "5ug" 14 9 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Methicillin" "Generic rules" "5ug" 8 16 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Mezlocillin" "Generic rules" "75ug" 21 17 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Mezlocillin" "Generic rules" "75ug" 16 128 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 24 20 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 0.5 2 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Minocycline" "Generic rules" "30ug" 16 12 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Minocycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Nafcillin" "Generic rules" "1ug" 13 10 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Nafcillin" "Generic rules" "1ug" 2 4 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 19 13 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 16 32 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Netilmicin" "Generic rules" "30ug" 15 12 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Netilmicin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "300ug" 17 14 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100ug" 32 128 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10ug" 17 12 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 16 12 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 2 8 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10ug" 23 17 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Orbifloxacin" "Generic rules" "10ug" 1 8 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Oxacillin" "Generic rules" "1ug" 0.25 0.5 FALSE "CLSI 2010" "DISK" "(unknown name)" 6 "Benzylpenicillin" "Generic rules" "10units" 29 28 FALSE "CLSI 2010" "MIC" "(unknown name)" 6 "Benzylpenicillin" "Generic rules" "10units" 0.125 0.25 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Piperacillin" "Generic rules" "100μg" 21 17 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Piperacillin" "Generic rules" "100μg" 16 128 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Piperacillin" "Generic rules" "100ug" 21 17 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Piperacillin" "Generic rules" "100ug" 16 128 FALSE "CLSI 2010" "DISK" "(unknown name)" 6 "Polymyxin B" "Generic rules" "300units" 12 11 FALSE "CLSI 2010" "MIC" "(unknown name)" 6 "Polymyxin B" "Generic rules" "300units" 2 8 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30μg" 18 14 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30μg" 1 4 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2μg" 13 12 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2μg" 2 4 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15μg" 19 15 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15μg" 1 4 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Rifampicin" "Generic rules" "5μg" 20 16 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Rifampicin" "Generic rules" "5μg" 1 4 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10μg" 15 11 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10μg" 8 32 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300μg" 256 512 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300μg" 256 512 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300μg" 17 12 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300μg" 256 512 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Spectinomycin" "Generic rules" "100μg" 18 14 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Spectinomycin" "Generic rules" "100μg" 32 128 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5μg" 19 15 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5μg" 0.5 2 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300μg" 10 6 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300μg" 1024 2048 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Streptomycin" "Generic rules" "10μg" 15 11 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75μg" 16 10 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75μg" 2 4 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15μg" 20 14 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15μg" 16 128 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Tetracycline" "Generic rules" "30μg" 15 11 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Tetracycline" "Generic rules" "30μg" 4 16 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30μg" 14 10 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30μg" 8 32 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Tiamulin" "Generic rules" "30μg" 9 8 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Tiamulin" "Generic rules" "30μg" 16 32 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Ticarcillin" "Generic rules" "75μg" 20 14 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Ticarcillin" "Generic rules" "75μg" 16 128 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15μg" 14 10 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15μg" 8 32 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30μg" 21 17 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30μg" 2 8 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Telithromycin" "Generic rules" "15μg" 22 18 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Telithromycin" "Generic rules" "15μg" 1 4 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5μg" 16 10 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5μg" 8 16 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Tobramycin" "Generic rules" "10μg" 15 12 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Tobramycin" "Generic rules" "10μg" 4 16 FALSE -"CLSI 2010" "DISK" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10μg" 21 17 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10μg" 16 128 FALSE -"CLSI 2010" "MIC" "(unknown name)" 6 "Vancomycin" "Generic rules" "30μg" 4 32 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30ug" 18 14 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Penicillin/novobiocin" "Generic rules" "10units/30ug" 1 4 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2ug" 13 12 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Pirlimycin" "Generic rules" "2ug" 2 4 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15ug" 19 15 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Quinupristin/dalfopristin" "Generic rules" "15ug" 1 4 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Rifampicin" "Generic rules" "5ug" 20 16 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Rifampicin" "Generic rules" "5ug" 1 4 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10ug" 15 11 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10ug" 8 32 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Sulfadiazine" "Generic rules" "200-300ug" 256 512 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Sulfamethoxazole" "Generic rules" "200-300ug" 256 512 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300ug" 17 12 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Sulfisoxazole" "Generic rules" "200-300ug" 256 512 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Spectinomycin" "Generic rules" "100ug" 18 14 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Spectinomycin" "Generic rules" "100ug" 32 128 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5ug" 19 15 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Sparfloxacin" "Generic rules" "5ug" 0.5 2 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300ug" 10 6 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Streptomycin-high" "Generic rules" "300ug" 1024 2048 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Streptomycin" "Generic rules" "10ug" 15 11 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 16 10 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 2 4 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15ug" 20 14 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15ug" 16 128 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Tetracycline" "Generic rules" "30ug" 15 11 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Tetracycline" "Generic rules" "30ug" 4 16 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30ug" 14 10 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Teicoplanin" "Generic rules" "30ug" 8 32 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Tiamulin" "Generic rules" "30ug" 9 8 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Tiamulin" "Generic rules" "30ug" 16 32 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Ticarcillin" "Generic rules" "75ug" 20 14 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Ticarcillin" "Generic rules" "75ug" 16 128 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15ug" 14 10 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Tilmicosin" "Generic rules" "15ug" 8 32 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30ug" 21 17 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Ceftiofur" "Generic rules" "30ug" 2 8 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Telithromycin" "Generic rules" "15ug" 22 18 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Telithromycin" "Generic rules" "15ug" 1 4 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 16 10 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 8 16 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 15 12 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 4 16 FALSE +"CLSI 2010" "DISK" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10ug" 21 17 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "100/10ug" 16 128 FALSE +"CLSI 2010" "MIC" "(unknown name)" 6 "Vancomycin" "Generic rules" "30ug" 4 32 FALSE diff --git a/data/rsi_translation.rda b/data/rsi_translation.rda index c5877211..cbd72a76 100644 Binary files a/data/rsi_translation.rda and b/data/rsi_translation.rda differ diff --git a/docs/articles/SPSS.html b/docs/articles/SPSS.html index 8b438700..0a72e9b5 100644 --- a/docs/articles/SPSS.html +++ b/docs/articles/SPSS.html @@ -44,7 +44,7 @@ AMR (for R) - 1.7.1.9068 + 1.7.1.9074 @@ -191,7 +191,7 @@

How to import data from SPSS / SAS / Stata

Dr. Matthijs Berends

-

12 December 2021

+

14 December 2021

Source: vignettes/SPSS.Rmd @@ -226,7 +226,7 @@
  • R has a huge community.

    -

    Many R users just ask questions on websites like StackOverflow.com, the largest online community for programmers. At the time of writing, 428,733 R-related questions have already been asked on this platform (that covers questions and answers for any programming language). In my own experience, most questions are answered within a couple of minutes.

    +

    Many R users just ask questions on websites like StackOverflow.com, the largest online community for programmers. At the time of writing, 429,535 R-related questions have already been asked on this platform (that covers questions and answers for any programming language). In my own experience, most questions are answered within a couple of minutes.

  • R understands any data type, including SPSS/SAS/Stata.

    @@ -308,7 +308,7 @@ # 8 10011 1 1 73.1 # 9 10017 1 1 56.7 # 10 10018 0 1 66.6 -# # … with 4,193 more rows +# # ... with 4,193 more rows as_factor(SPSS_data) # # A tibble: 4,203 x 4 @@ -324,7 +324,7 @@ # 8 10011 Male alive 73.1 # 9 10017 Male alive 56.7 # 10 10018 Female alive 66.6 -# # … with 4,193 more rows +# # ... with 4,193 more rows

    Base R diff --git a/docs/articles/index.html b/docs/articles/index.html index edbc1f51..5be25900 100644 --- a/docs/articles/index.html +++ b/docs/articles/index.html @@ -17,7 +17,7 @@ AMR (for R) - 1.7.1.9073 + 1.7.1.9074

    diff --git a/docs/news/index.html b/docs/news/index.html index 9f26b1f2..e2796c65 100644 --- a/docs/news/index.html +++ b/docs/news/index.html @@ -17,7 +17,7 @@ AMR (for R) - 1.7.1.9073 + 1.7.1.9074 @@ -157,13 +157,13 @@
    - +
    -

    Last updated: 14 December 2021

    +

    Last updated: 14 December 2021

    All functions in this package are now all considered to be stable. Updates to the AMR interpretation rules (such as by EUCAST and CLSI), the microbial taxonomy, and the antibiotic dosages will all be updated every 6 to 12 months from now on.

    -

    Breaking changes

    +

    Breaking changes

    • Removed p_symbol() and all filter_*() functions (except for filter_first_isolate()), which were all deprecated in a previous package version
    • Removed the key_antibiotics() and key_antibiotics_equal() functions, which were deprecated and superseded by key_antimicrobials() and antimicrobials_equal()
    • @@ -171,7 +171,7 @@
    • Renamed function get_locale() to get_AMR_locale() to prevent conflicts with other packages
    -

    New

    +

    New

    • Support for the CLSI 2021 guideline for interpreting MIC/disk diffusion values, which are incorporated in the rsi_translation data set. This data set now more strictly follows the WHONET software as well.

    • Support for EUCAST Intrinsic Resistance and Unusual Phenotypes v3.3 (October 2021). This is now the default EUCAST guideline in the package (all older guidelines are still available) for eucast_rules(), mo_is_intrinsic_resistant() and mdro(). The intrinsic_resistant data set was also updated accordingly.

    • Support for all antimicrobial drug (group) names and colloquial microorganism names in Danish, Dutch, English, French, German, Italian, Portuguese, Russian, Spanish and Swedish

    • @@ -186,7 +186,7 @@
    • Function ab_ddd_units() to get units of DDDs (daily defined doses), deprecating the use of ab_ddd(..., units = TRUE) to be more consistent in data types of function output

    -

    Changed

    +

    Changed

    • Updated the bacterial taxonomy to 5 October 2021 (according to LPSN), including all 11 new staphylococcal species named since 1 January last year
    • The antibiotics data set now contains all ATC codes that are available through the WHOCC website, regardless of drugs being present in more than one ATC group. This means that:
      • Some drugs now contain multiple ATC codes (e.g., metronidazole contains 5)
      • @@ -240,6 +240,8 @@
      • Fix for legends created with scale_rsi_colours() when using ggplot2 v3.3.4 or higher (this is ggplot2 bug 4511, soon to be fixed)
      • Fix for minor translation errors
      • Fix for the MIC interpretation of Morganellaceae (such as Morganella and Proteus) when using the EUCAST 2021 guideline
      • +
      • Improved algorithm of as.mo() +
      • Improved algorithm for generating random MICs with random_mic()
      • Improved plot legends for MICs and disk diffusion values
      • @@ -256,7 +258,7 @@ get_episode() and is_new_episode() can now cope with NAs
    -

    Other

    +

    Other

    • This package is now being maintained by two epidemiologists and a data scientist from two different non-profit healthcare organisations.
    @@ -1073,7 +1075,7 @@ This works for all drug combinations, such as ampicillin/sulbactam, ceftazidime/
  • Added support for 5,000 new fungi
  • Added support for unknown yeasts and fungi
  • -
  • Changed most microorganism IDs to improve readability. For example, the old code B_ENTRC_FAE could have been both E. faecalis and E. faecium. Its new code is B_ENTRC_FCLS and E. faecium has become B_ENTRC_FACM. Also, the Latin character æ (ae) is now preserved at the start of each genus and species abbreviation. For example, the old code for Aerococcus urinae was B_ARCCC_NAE. This is now B_AERCC_URIN. IMPORTANT: Old microorganism IDs are still supported, but support will be dropped in a future version. Use as.mo() on your old codes to transform them to the new format. Using functions from the mo_* family (like mo_name() and mo_gramstain()) on old codes, will throw a warning.
  • +
  • Changed most microorganism IDs to improve readability. For example, the old code B_ENTRC_FAE could have been both E. faecalis and E. faecium. Its new code is B_ENTRC_FCLS and E. faecium has become B_ENTRC_FACM. Also, the Latin character ae is now preserved at the start of each genus and species abbreviation. For example, the old code for Aerococcus urinae was B_ARCCC_NAE. This is now B_AERCC_URIN. IMPORTANT: Old microorganism IDs are still supported, but support will be dropped in a future version. Use as.mo() on your old codes to transform them to the new format. Using functions from the mo_* family (like mo_name() and mo_gramstain()) on old codes, will throw a warning.
  • More intelligent guessing for as.ab(), including bidirectional language support
  • Added support for the German national guideline (3MRGN/4MRGN) in the mdro() function, to determine multi-drug resistant organisms
  • @@ -1141,7 +1143,7 @@ This works for all drug combinations, such as ampicillin/sulbactam, ceftazidime/
  • EIEC (Entero-Invasive E. coli)
  • EPEC (Entero-Pathogenic E. coli)
  • ETEC (Entero-Toxigenic E. coli)
  • -
  • NMEC (Neonatal Meningitis‐causing E. coli)
  • +
  • NMEC (Neonatal Meningitis-causing E. coli)
  • STEC (Shiga-toxin producing E. coli)
  • UPEC (Uropathogenic E. coli)
  • All these lead to the microbial ID of E. coli:

    @@ -1414,15 +1416,7 @@ This works for all drug combinations, such as ampicillin/sulbactam, ceftazidime/
  • 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)"
    -
  • +
  • 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.

  • Fix for vector containing only empty values

  • Finds better results when input is in other languages

  • Better handling for subspecies

  • @@ -1460,7 +1454,7 @@ This works for all drug combinations, such as ampicillin/sulbactam, ceftazidime/
  • Frequency tables (freq() function):
    • 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
      @@ -1530,7 +1524,7 @@ This works for all drug combinations, such as ampicillin/sulbactam, ceftazidime/
       
    • 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"
      @@ -1546,7 +1540,7 @@ This works for all drug combinations, such as ampicillin/sulbactam, ceftazidime/
       

      Frequency tables - freq():

      • Support for grouping variables, test with:

        -
        +
         
         septic_patients %>% 
           group_by(hospital_id) %>% 
        @@ -1554,7 +1548,7 @@ This works for all drug combinations, such as ampicillin/sulbactam, ceftazidime/
         
      • Support for (un)selecting columns:

        -
        +
         
         septic_patients %>% 
           freq(hospital_id) %>% 
        @@ -1621,7 +1615,7 @@ This works for all drug combinations, such as ampicillin/sulbactam, ceftazidime/
         
      • Author and year: mo_ref

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

      -
      +
       
       mo_gramstain("E. coli")
       # [1] "Gram negative"
      @@ -1632,7 +1626,7 @@ This works for all drug combinations, such as ampicillin/sulbactam, ceftazidime/
       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)
      @@ -1645,7 +1639,7 @@ This works for all drug combinations, such as ampicillin/sulbactam, ceftazidime/
       
    • 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
      @@ -1654,7 +1648,7 @@ This works for all drug combinations, such as ampicillin/sulbactam, ceftazidime/
       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")
      @@ -1683,7 +1677,7 @@ This works for all drug combinations, such as ampicillin/sulbactam, ceftazidime/
       
      • 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"
        @@ -1700,7 +1694,7 @@ This works for all drug combinations, such as ampicillin/sulbactam, ceftazidime/
         
      • Added arguments 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.

        -
        +
         
         septic_patients %>% select(amox, cipr) %>% count_IR()
         # which is the same as:
        @@ -1720,12 +1714,12 @@ This works for all drug combinations, such as ampicillin/sulbactam, ceftazidime/
         
      • 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)

        For lists, subsetting is possible:

        -
        +
         
         my_list = list(age = septic_patients$age, gender = septic_patients$gender)
         my_list %>% freq(age)
        @@ -1769,7 +1763,7 @@ This works for all drug combinations, such as ampicillin/sulbactam, ceftazidime/
         
      • New Lancefield classification for Streptococcus to categorise them into Lancefield groups
    • For convience, new descriptive statistical functions kurtosis and skewness that are lacking in base R - they are generic functions and have support for vectors, data.frames and matrices
    • -
    • Function g.test to perform the Χ2 distributed G-test, which use is the same as chisq.test +
    • Function g.test to perform the X2 distributed G-test, which use is the same as chisq.test
    • Function ratio to transform a vector of values to a preset ratio diff --git a/docs/reference/as.mo.html b/docs/reference/as.mo.html index 48d7be17..b85ff781 100644 --- a/docs/reference/as.mo.html +++ b/docs/reference/as.mo.html @@ -17,7 +17,7 @@ AMR (for R) - 1.7.1.9070 + 1.7.1.9074
    • @@ -267,10 +267,10 @@

      Source

      -
      1. Becker K et al. Coagulase-Negative Staphylococci. 2014. Clin Microbiol Rev. 27(4): 870–926; doi: 10.1128/CMR.00109-13

      2. +
        1. Becker K et al. Coagulase-Negative Staphylococci. 2014. Clin Microbiol Rev. 27(4): 870-926; doi: 10.1128/CMR.00109-13

        2. Becker K et al. Implications of identifying the recently defined members of the S. aureus complex, S. argenteus and S. schweitzeri: A position paper of members of the ESCMID Study Group for staphylococci and Staphylococcal Diseases (ESGS). 2019. Clin Microbiol Infect; doi: 10.1016/j.cmi.2019.02.028

        3. Becker K et al. Emergence of coagulase-negative staphylococci 2020. Expert Rev Anti Infect Ther. 18(4):349-366; doi: 10.1080/14787210.2020.1730813

        4. -
        5. Lancefield RC A serological differentiation of human and other groups of hemolytic streptococci. 1933. J Exp Med. 57(4): 571–95; doi: 10.1084/jem.57.4.571

        6. +
        7. Lancefield RC A serological differentiation of human and other groups of hemolytic streptococci. 1933. J Exp Med. 57(4): 571-95; doi: 10.1084/jem.57.4.571

        8. Catalogue of Life: 2019 Annual Checklist, http://www.catalogueoflife.org

        9. List of Prokaryotic names with Standing in Nomenclature (5 October 2021), doi: 10.1099/ijsem.0.004332

        10. US Edition of SNOMED CT from 1 September 2020, retrieved from the Public Health Information Network Vocabulary Access and Distribution System (PHIN VADS), OID 2.16.840.1.114222.4.11.1009, version 12; url: https://phinvads.cdc.gov/vads/ViewValueSet.action?oid=2.16.840.1.114222.4.11.1009

        11. diff --git a/docs/reference/first_isolate.html b/docs/reference/first_isolate.html index bce19cb8..37bed60d 100644 --- a/docs/reference/first_isolate.html +++ b/docs/reference/first_isolate.html @@ -18,7 +18,7 @@ AMR (for R) - 1.7.1.9068 + 1.7.1.9074
      @@ -199,7 +199,7 @@

      Source

      Methodology of this function is strictly based on:

      • M39 Analysis and Presentation of Cumulative Antimicrobial Susceptibility Test Data, 4th Edition, 2014, Clinical and Laboratory Standards Institute (CLSI). https://clsi.org/standards/products/microbiology/documents/m39/.

      • -
      • Hindler JF and Stelling J (2007). Analysis and Presentation of Cumulative Antibiograms: A New Consensus Guideline from the Clinical and Laboratory Standards Institute. Clinical Infectious Diseases, 44(6), 867–873. doi: 10.1086/511864

      • +
      • Hindler JF and Stelling J (2007). Analysis and Presentation of Cumulative Antibiograms: A New Consensus Guideline from the Clinical and Laboratory Standards Institute. Clinical Infectious Diseases, 44(6), 867-873. doi: 10.1086/511864

      Arguments

      diff --git a/docs/reference/index.html b/docs/reference/index.html index aeb36b61..85f434ca 100644 --- a/docs/reference/index.html +++ b/docs/reference/index.html @@ -17,7 +17,7 @@ AMR (for R) - 1.7.1.9073 + 1.7.1.9074
      diff --git a/docs/reference/intrinsic_resistant.html b/docs/reference/intrinsic_resistant.html index 95614cb2..623576d7 100644 --- a/docs/reference/intrinsic_resistant.html +++ b/docs/reference/intrinsic_resistant.html @@ -17,7 +17,7 @@ AMR (for R) - 1.7.1.9073 + 1.7.1.9074
      @@ -188,15 +188,13 @@

      Examples

      -
      subset(intrinsic_resistant,
      -       antibiotic == "Vancomycin" & microorganism %like% "Enterococcus")$microorganism
      -#> [1] "Enterococcus casseliflavus" "Enterococcus gallinarum"
      -
      -# \donttest{
      +    
      # \donttest{
       if (require("dplyr")) {
         intrinsic_resistant %>%
      -    filter(antibiotic == "Vancomycin" & microorganism %like% "Enterococcus") %>% 
      -    pull(microorganism)
      +    mutate(mo = mo_name(mo),
      +           ab = ab_name(mo))
      +    filter(ab == "Vancomycin" & mo %like% "Enterococcus") %>% 
      +    pull(mo)
         #> [1] "Enterococcus casseliflavus" "Enterococcus gallinarum"
       }
       # }
      diff --git a/docs/reference/microorganisms.html b/docs/reference/microorganisms.html
      index 9402453b..99bd6974 100644
      --- a/docs/reference/microorganisms.html
      +++ b/docs/reference/microorganisms.html
      @@ -17,7 +17,7 @@
             
             
               AMR (for R)
      -        1.7.1.9068
      +        1.7.1.9074
             
           
      @@ -179,8 +179,8 @@

      Source

      Catalogue of Life: 2019 Annual Checklist as currently implemented in this AMR package:

      List of Prokaryotic names with Standing in Nomenclature (5 October 2021) as currently implemented in this AMR package:

      • Parte, A.C., Sarda Carbasse, J., Meier-Kolthoff, J.P., Reimer, L.C. and Goker, M. (2020). List of Prokaryotic names with Standing in Nomenclature (LPSN) moves to the DSMZ. International Journal of Systematic and Evolutionary Microbiology, 70, 5607-5612; doi: 10.1099/ijsem.0.004332

      • -
      • Parte, A.C. (2018). LPSN — List of Prokaryotic names with Standing in Nomenclature (bacterio.net), 20 years on. International Journal of Systematic and Evolutionary Microbiology, 68, 1825-1829; doi: 10.1099/ijsem.0.002786

      • -
      • Parte, A.C. (2014). LPSN — List of Prokaryotic names with Standing in Nomenclature. Nucleic Acids Research, 42, Issue D1, D613–D616; doi: 10.1093/nar/gkt1111

      • +
      • Parte, A.C. (2018). LPSN - List of Prokaryotic names with Standing in Nomenclature (bacterio.net), 20 years on. International Journal of Systematic and Evolutionary Microbiology, 68, 1825-1829; doi: 10.1099/ijsem.0.002786

      • +
      • Parte, A.C. (2014). LPSN - List of Prokaryotic names with Standing in Nomenclature. Nucleic Acids Research, 42, Issue D1, D613-D616; doi: 10.1093/nar/gkt1111

      • Euzeby, J.P. (1997). List of Bacterial Names with Standing in Nomenclature: a Folder Available on the Internet. International Journal of Systematic Bacteriology, 47, 590-592; doi: 10.1099/00207713-47-2-590

      US Edition of SNOMED CT from 1 September 2020 as currently implemented in this AMR package:

      diff --git a/docs/reference/microorganisms.old.html b/docs/reference/microorganisms.old.html index a514af42..0852e1ad 100644 --- a/docs/reference/microorganisms.old.html +++ b/docs/reference/microorganisms.old.html @@ -17,7 +17,7 @@ AMR (for R) - 1.7.1.9068 + 1.7.1.9074
      @@ -173,7 +173,7 @@

      Source

      Catalogue of Life: Annual Checklist (public online taxonomic database), http://www.catalogueoflife.org (check included annual version with catalogue_of_life_version()).

      -

      Parte, A.C. (2018). LPSN — List of Prokaryotic names with Standing in Nomenclature (bacterio.net), 20 years on. International Journal of Systematic and Evolutionary Microbiology, 68, 1825-1829; doi: 10.1099/ijsem.0.002786

      +

      Parte, A.C. (2018). LPSN - List of Prokaryotic names with Standing in Nomenclature (bacterio.net), 20 years on. International Journal of Systematic and Evolutionary Microbiology, 68, 1825-1829; doi: 10.1099/ijsem.0.002786

      Catalogue of Life

      diff --git a/docs/reference/mo_property.html b/docs/reference/mo_property.html index ad8567ae..c5cf5f2a 100644 --- a/docs/reference/mo_property.html +++ b/docs/reference/mo_property.html @@ -17,7 +17,7 @@ AMR (for R) - 1.7.1.9070 + 1.7.1.9074
      @@ -292,10 +292,10 @@ This package contains the complete taxonomic tree of almost all microorganisms (

      Source

      -
      1. Becker K et al. Coagulase-Negative Staphylococci. 2014. Clin Microbiol Rev. 27(4): 870–926; doi: 10.1128/CMR.00109-13

      2. +
        1. Becker K et al. Coagulase-Negative Staphylococci. 2014. Clin Microbiol Rev. 27(4): 870-926; doi: 10.1128/CMR.00109-13

        2. Becker K et al. Implications of identifying the recently defined members of the S. aureus complex, S. argenteus and S. schweitzeri: A position paper of members of the ESCMID Study Group for staphylococci and Staphylococcal Diseases (ESGS). 2019. Clin Microbiol Infect; doi: 10.1016/j.cmi.2019.02.028

        3. Becker K et al. Emergence of coagulase-negative staphylococci 2020. Expert Rev Anti Infect Ther. 18(4):349-366; doi: 10.1080/14787210.2020.1730813

        4. -
        5. Lancefield RC A serological differentiation of human and other groups of hemolytic streptococci. 1933. J Exp Med. 57(4): 571–95; doi: 10.1084/jem.57.4.571

        6. +
        7. Lancefield RC A serological differentiation of human and other groups of hemolytic streptococci. 1933. J Exp Med. 57(4): 571-95; doi: 10.1084/jem.57.4.571

        8. Catalogue of Life: 2019 Annual Checklist, http://www.catalogueoflife.org

        9. List of Prokaryotic names with Standing in Nomenclature (5 October 2021), doi: 10.1099/ijsem.0.004332

        10. US Edition of SNOMED CT from 1 September 2020, retrieved from the Public Health Information Network Vocabulary Access and Distribution System (PHIN VADS), OID 2.16.840.1.114222.4.11.1009, version 12; url: https://phinvads.cdc.gov/vads/ViewValueSet.action?oid=2.16.840.1.114222.4.11.1009

        11. diff --git a/inst/tinytest/test-data.R b/inst/tinytest/test-data.R index 1480e993..8828e4cb 100644 --- a/inst/tinytest/test-data.R +++ b/inst/tinytest/test-data.R @@ -92,3 +92,36 @@ expect_true(NROW(uncategorised) == 0, "All staphylococcal species categorised as CoNS/CoPS.", paste0("Staphylococcal species not categorised as CoNS/CoPS: S. ", uncategorised$species, " (", uncategorised$mo, ")"))) + +# THIS WILL CHECK NON-ASCII STRINGS IN ALL FILES: + +# check_non_ascii <- function() { +# purrr::map_df( +# .id = "file", +# # list common text files +# .x = fs::dir_ls( +# recurse = TRUE, +# type = "file", +# # ignore images, compressed +# regexp = "\\.(png|ico|rda|ai|tar.gz|zip|xlsx|csv|pdf|psd)$", +# invert = TRUE +# ), +# .f = function(path) { +# x <- readLines(path, warn = FALSE) +# # from tools::showNonASCII() +# asc <- iconv(x, "latin1", "ASCII") +# ind <- is.na(asc) | asc != x +# # make data frame +# if (any(ind)) { +# tibble::tibble( +# row = which(ind), +# line = iconv(x[ind], "latin1", "ASCII", sub = "byte") +# ) +# } else { +# tibble::tibble() +# } +# } +# ) +# } +# x <- check_non_ascii() %>% +# filter(file %unlike% "^(data-raw|docs|git_)") diff --git a/man/as.mo.Rd b/man/as.mo.Rd index a3ed10ec..d0e4a128 100644 --- a/man/as.mo.Rd +++ b/man/as.mo.Rd @@ -126,10 +126,10 @@ The intelligent rules consider the prevalence of microorganisms in humans groupe \section{Source}{ \enumerate{ -\item Becker K \emph{et al.} \strong{Coagulase-Negative Staphylococci}. 2014. Clin Microbiol Rev. 27(4): 870–926; \doi{10.1128/CMR.00109-13} +\item Becker K \emph{et al.} \strong{Coagulase-Negative Staphylococci}. 2014. Clin Microbiol Rev. 27(4): 870-926; \doi{10.1128/CMR.00109-13} \item Becker K \emph{et al.} \strong{Implications of identifying the recently defined members of the \emph{S. aureus} complex, \emph{S. argenteus} and \emph{S. schweitzeri}: A position paper of members of the ESCMID Study Group for staphylococci and Staphylococcal Diseases (ESGS).} 2019. Clin Microbiol Infect; \doi{10.1016/j.cmi.2019.02.028} \item Becker K \emph{et al.} \strong{Emergence of coagulase-negative staphylococci} 2020. Expert Rev Anti Infect Ther. 18(4):349-366; \doi{10.1080/14787210.2020.1730813} -\item Lancefield RC \strong{A serological differentiation of human and other groups of hemolytic streptococci}. 1933. J Exp Med. 57(4): 571–95; \doi{10.1084/jem.57.4.571} +\item Lancefield RC \strong{A serological differentiation of human and other groups of hemolytic streptococci}. 1933. J Exp Med. 57(4): 571-95; \doi{10.1084/jem.57.4.571} \item Catalogue of Life: 2019 Annual Checklist, \url{http://www.catalogueoflife.org} \item List of Prokaryotic names with Standing in Nomenclature (5 October 2021), \doi{10.1099/ijsem.0.004332} \item US Edition of SNOMED CT from 1 September 2020, retrieved from the Public Health Information Network Vocabulary Access and Distribution System (PHIN VADS), OID 2.16.840.1.114222.4.11.1009, version 12; url: \url{https://phinvads.cdc.gov/vads/ViewValueSet.action?oid=2.16.840.1.114222.4.11.1009} diff --git a/man/first_isolate.Rd b/man/first_isolate.Rd index 60f6edbf..44e6828d 100755 --- a/man/first_isolate.Rd +++ b/man/first_isolate.Rd @@ -8,7 +8,7 @@ Methodology of this function is strictly based on: \itemize{ \item \strong{M39 Analysis and Presentation of Cumulative Antimicrobial Susceptibility Test Data, 4th Edition}, 2014, \emph{Clinical and Laboratory Standards Institute (CLSI)}. \url{https://clsi.org/standards/products/microbiology/documents/m39/}. -\item Hindler JF and Stelling J (2007). \strong{Analysis and Presentation of Cumulative Antibiograms: A New Consensus Guideline from the Clinical and Laboratory Standards Institute.} Clinical Infectious Diseases, 44(6), 867–873. \doi{10.1086/511864} +\item Hindler JF and Stelling J (2007). \strong{Analysis and Presentation of Cumulative Antibiograms: A New Consensus Guideline from the Clinical and Laboratory Standards Institute.} Clinical Infectious Diseases, 44(6), 867-873. \doi{10.1086/511864} } } \usage{ diff --git a/man/intrinsic_resistant.Rd b/man/intrinsic_resistant.Rd index 692df98f..6859d0d0 100644 --- a/man/intrinsic_resistant.Rd +++ b/man/intrinsic_resistant.Rd @@ -33,15 +33,13 @@ On our website \url{https://msberends.github.io/AMR/} you can find \href{https:/ } \examples{ -subset(intrinsic_resistant, - antibiotic == "Vancomycin" & microorganism \%like\% "Enterococcus")$microorganism -#> [1] "Enterococcus casseliflavus" "Enterococcus gallinarum" - \donttest{ if (require("dplyr")) { intrinsic_resistant \%>\% - filter(antibiotic == "Vancomycin" & microorganism \%like\% "Enterococcus") \%>\% - pull(microorganism) + mutate(mo = mo_name(mo), + ab = ab_name(mo)) + filter(ab == "Vancomycin" & mo \%like\% "Enterococcus") \%>\% + pull(mo) #> [1] "Enterococcus casseliflavus" "Enterococcus gallinarum" } } diff --git a/man/microorganisms.Rd b/man/microorganisms.Rd index 9afb6f38..e3b82800 100755 --- a/man/microorganisms.Rd +++ b/man/microorganisms.Rd @@ -27,8 +27,8 @@ Catalogue of Life: 2019 Annual Checklist as currently implemented in this \code{ List of Prokaryotic names with Standing in Nomenclature (5 October 2021) as currently implemented in this \code{AMR} package: \itemize{ \item Parte, A.C., Sarda Carbasse, J., Meier-Kolthoff, J.P., Reimer, L.C. and Goker, M. (2020). List of Prokaryotic names with Standing in Nomenclature (LPSN) moves to the DSMZ. International Journal of Systematic and Evolutionary Microbiology, 70, 5607-5612; \doi{10.1099/ijsem.0.004332} -\item Parte, A.C. (2018). LPSN — List of Prokaryotic names with Standing in Nomenclature (bacterio.net), 20 years on. International Journal of Systematic and Evolutionary Microbiology, 68, 1825-1829; \doi{10.1099/ijsem.0.002786} -\item Parte, A.C. (2014). LPSN — List of Prokaryotic names with Standing in Nomenclature. Nucleic Acids Research, 42, Issue D1, D613–D616; \doi{10.1093/nar/gkt1111} +\item Parte, A.C. (2018). LPSN - List of Prokaryotic names with Standing in Nomenclature (bacterio.net), 20 years on. International Journal of Systematic and Evolutionary Microbiology, 68, 1825-1829; \doi{10.1099/ijsem.0.002786} +\item Parte, A.C. (2014). LPSN - List of Prokaryotic names with Standing in Nomenclature. Nucleic Acids Research, 42, Issue D1, D613-D616; \doi{10.1093/nar/gkt1111} \item Euzeby, J.P. (1997). List of Bacterial Names with Standing in Nomenclature: a Folder Available on the Internet. International Journal of Systematic Bacteriology, 47, 590-592; \doi{10.1099/00207713-47-2-590} } diff --git a/man/microorganisms.old.Rd b/man/microorganisms.old.Rd index e88b7c2d..58ed4ca4 100644 --- a/man/microorganisms.old.Rd +++ b/man/microorganisms.old.Rd @@ -16,7 +16,7 @@ A \link{data.frame} with 14,338 observations and 4 variables: \source{ Catalogue of Life: Annual Checklist (public online taxonomic database), \url{http://www.catalogueoflife.org} (check included annual version with \code{\link[=catalogue_of_life_version]{catalogue_of_life_version()}}). -Parte, A.C. (2018). LPSN — List of Prokaryotic names with Standing in Nomenclature (bacterio.net), 20 years on. International Journal of Systematic and Evolutionary Microbiology, 68, 1825-1829; \doi{10.1099/ijsem.0.002786} +Parte, A.C. (2018). LPSN - List of Prokaryotic names with Standing in Nomenclature (bacterio.net), 20 years on. International Journal of Systematic and Evolutionary Microbiology, 68, 1825-1829; \doi{10.1099/ijsem.0.002786} } \usage{ microorganisms.old diff --git a/man/mo_property.Rd b/man/mo_property.Rd index 1c57aefe..188e14f0 100644 --- a/man/mo_property.Rd +++ b/man/mo_property.Rd @@ -181,10 +181,10 @@ This package contains the complete taxonomic tree of almost all microorganisms ( \section{Source}{ \enumerate{ -\item Becker K \emph{et al.} \strong{Coagulase-Negative Staphylococci}. 2014. Clin Microbiol Rev. 27(4): 870–926; \doi{10.1128/CMR.00109-13} +\item Becker K \emph{et al.} \strong{Coagulase-Negative Staphylococci}. 2014. Clin Microbiol Rev. 27(4): 870-926; \doi{10.1128/CMR.00109-13} \item Becker K \emph{et al.} \strong{Implications of identifying the recently defined members of the \emph{S. aureus} complex, \emph{S. argenteus} and \emph{S. schweitzeri}: A position paper of members of the ESCMID Study Group for staphylococci and Staphylococcal Diseases (ESGS).} 2019. Clin Microbiol Infect; \doi{10.1016/j.cmi.2019.02.028} \item Becker K \emph{et al.} \strong{Emergence of coagulase-negative staphylococci} 2020. Expert Rev Anti Infect Ther. 18(4):349-366; \doi{10.1080/14787210.2020.1730813} -\item Lancefield RC \strong{A serological differentiation of human and other groups of hemolytic streptococci}. 1933. J Exp Med. 57(4): 571–95; \doi{10.1084/jem.57.4.571} +\item Lancefield RC \strong{A serological differentiation of human and other groups of hemolytic streptococci}. 1933. J Exp Med. 57(4): 571-95; \doi{10.1084/jem.57.4.571} \item Catalogue of Life: 2019 Annual Checklist, \url{http://www.catalogueoflife.org} \item List of Prokaryotic names with Standing in Nomenclature (5 October 2021), \doi{10.1099/ijsem.0.004332} \item US Edition of SNOMED CT from 1 September 2020, retrieved from the Public Health Information Network Vocabulary Access and Distribution System (PHIN VADS), OID 2.16.840.1.114222.4.11.1009, version 12; url: \url{https://phinvads.cdc.gov/vads/ViewValueSet.action?oid=2.16.840.1.114222.4.11.1009} diff --git a/vignettes/SPSS.Rmd b/vignettes/SPSS.Rmd index 01e1e31b..5e276e29 100755 --- a/vignettes/SPSS.Rmd +++ b/vignettes/SPSS.Rmd @@ -126,7 +126,7 @@ SPSS_data # 8 10011 1 1 73.1 # 9 10017 1 1 56.7 # 10 10018 0 1 66.6 -# # … with 4,193 more rows +# # ... with 4,193 more rows as_factor(SPSS_data) # # A tibble: 4,203 x 4 @@ -142,7 +142,7 @@ as_factor(SPSS_data) # 8 10011 Male alive 73.1 # 9 10017 Male alive 56.7 # 10 10018 Female alive 66.6 -# # … with 4,193 more rows +# # ... with 4,193 more rows ``` ### Base R